First Support on Ginger and OMAP TI
[linux-ginger.git] / arch / arm / mach-mmp / include / mach / devices.h
blob24585397217e7dff8035efd8c960738345a74a74
1 #include <linux/types.h>
3 #define MAX_RESOURCE_DMA 2
5 /* structure for describing the on-chip devices */
6 struct pxa_device_desc {
7 const char *dev_name;
8 const char *drv_name;
9 int id;
10 int irq;
11 unsigned long start;
12 unsigned long size;
13 int dma[MAX_RESOURCE_DMA];
16 #define PXA168_DEVICE(_name, _drv, _id, _irq, _start, _size, _dma...) \
17 struct pxa_device_desc pxa168_device_##_name __initdata = { \
18 .dev_name = "pxa168-" #_name, \
19 .drv_name = _drv, \
20 .id = _id, \
21 .irq = IRQ_PXA168_##_irq, \
22 .start = _start, \
23 .size = _size, \
24 .dma = { _dma }, \
27 #define PXA910_DEVICE(_name, _drv, _id, _irq, _start, _size, _dma...) \
28 struct pxa_device_desc pxa910_device_##_name __initdata = { \
29 .dev_name = "pxa910-" #_name, \
30 .drv_name = _drv, \
31 .id = _id, \
32 .irq = IRQ_PXA910_##_irq, \
33 .start = _start, \
34 .size = _size, \
35 .dma = { _dma }, \
37 extern int pxa_register_device(struct pxa_device_desc *, void *, size_t);