%PDF-1.5 %���� ºaâÚÎΞ-ÌE1ÍØÄ÷{òò2ÿ ÛÖ^ÔÀá TÎ{¦?§®¥kuµùÕ5sLOšuY
Server IP : 49.231.201.246 / Your IP : 216.73.216.149 Web Server : Apache/2.4.18 (Ubuntu) System : Linux 246 4.4.0-210-generic #242-Ubuntu SMP Fri Apr 16 09:57:56 UTC 2021 x86_64 User : root ( 0) PHP Version : 7.0.33-0ubuntu0.16.04.16 Disable Function : exec,passthru,shell_exec,system,proc_open,popen,pcntl_exec MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /lib/modules/4.4.0-112-generic/build/arch/arm/mach-mmp/include/mach/ |
Upload File : |
#ifndef __MACH_DEVICE_H #define __MACH_DEVICE_H #include <linux/types.h> #define MAX_RESOURCE_DMA 2 /* structure for describing the on-chip devices */ struct pxa_device_desc { const char *dev_name; const char *drv_name; int id; int irq; unsigned long start; unsigned long size; int dma[MAX_RESOURCE_DMA]; }; #define PXA168_DEVICE(_name, _drv, _id, _irq, _start, _size, _dma...) \ struct pxa_device_desc pxa168_device_##_name __initdata = { \ .dev_name = "pxa168-" #_name, \ .drv_name = _drv, \ .id = _id, \ .irq = IRQ_PXA168_##_irq, \ .start = _start, \ .size = _size, \ .dma = { _dma }, \ }; #define PXA910_DEVICE(_name, _drv, _id, _irq, _start, _size, _dma...) \ struct pxa_device_desc pxa910_device_##_name __initdata = { \ .dev_name = "pxa910-" #_name, \ .drv_name = _drv, \ .id = _id, \ .irq = IRQ_PXA910_##_irq, \ .start = _start, \ .size = _size, \ .dma = { _dma }, \ }; #define MMP2_DEVICE(_name, _drv, _id, _irq, _start, _size, _dma...) \ struct pxa_device_desc mmp2_device_##_name __initdata = { \ .dev_name = "mmp2-" #_name, \ .drv_name = _drv, \ .id = _id, \ .irq = IRQ_MMP2_##_irq, \ .start = _start, \ .size = _size, \ .dma = { _dma }, \ } extern int pxa_register_device(struct pxa_device_desc *, void *, size_t); extern int pxa_usb_phy_init(void __iomem *phy_reg); extern void pxa_usb_phy_deinit(void __iomem *phy_reg); #endif /* __MACH_DEVICE_H */