2 * Copyright (C) 2010 Samsung Electronics Co. Ltd.
3 * Jaswinder Singh <jassi.brar@samsung.com>
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
11 #ifndef __S3C_DMA_PL330_H_
12 #define __S3C_DMA_PL330_H_
14 #define S3C2410_DMAF_AUTOSTART (1 << 0)
15 #define S3C2410_DMAF_CIRCULAR (1 << 1)
18 * PL330 can assign any channel to communicate with
19 * any of the peripherals attched to the DMAC.
20 * For the sake of consistency across client drivers,
21 * We keep the channel names unchanged and only add
22 * missing peripherals are added.
23 * Order is not important since S3C PL330 API driver
24 * use these just as IDs.
87 /* END Marker, also used to denote a reserved channel */
91 static inline bool s3c_dma_has_circular(void)
98 #endif /* __S3C_DMA_PL330_H_ */