Eric Miao | 49cbe78 | 2009-01-20 14:15:18 +0800 | [diff] [blame] | 1 | #ifndef __ASM_MACH_PXA168_H |
| 2 | #define __ASM_MACH_PXA168_H |
| 3 | |
Eric Miao | 1a77920 | 2009-04-13 15:34:54 +0800 | [diff] [blame] | 4 | #include <linux/i2c.h> |
Eric Miao | 49cbe78 | 2009-01-20 14:15:18 +0800 | [diff] [blame] | 5 | #include <mach/devices.h> |
Eric Miao | 1a77920 | 2009-04-13 15:34:54 +0800 | [diff] [blame] | 6 | #include <plat/i2c.h> |
Haojian Zhuang | a0f266c | 2009-10-13 15:24:55 +0800 | [diff] [blame] | 7 | #include <plat/pxa3xx_nand.h> |
Eric Miao | 49cbe78 | 2009-01-20 14:15:18 +0800 | [diff] [blame] | 8 | |
| 9 | extern struct pxa_device_desc pxa168_device_uart1; |
| 10 | extern struct pxa_device_desc pxa168_device_uart2; |
Eric Miao | 1a77920 | 2009-04-13 15:34:54 +0800 | [diff] [blame] | 11 | extern struct pxa_device_desc pxa168_device_twsi0; |
| 12 | extern struct pxa_device_desc pxa168_device_twsi1; |
Eric Miao | a27ba76 | 2009-04-13 18:29:52 +0800 | [diff] [blame] | 13 | extern struct pxa_device_desc pxa168_device_pwm1; |
| 14 | extern struct pxa_device_desc pxa168_device_pwm2; |
| 15 | extern struct pxa_device_desc pxa168_device_pwm3; |
| 16 | extern struct pxa_device_desc pxa168_device_pwm4; |
Haojian Zhuang | 7e49922 | 2010-03-19 11:53:17 -0400 | [diff] [blame^] | 17 | extern struct pxa_device_desc pxa168_device_ssp1; |
| 18 | extern struct pxa_device_desc pxa168_device_ssp2; |
| 19 | extern struct pxa_device_desc pxa168_device_ssp3; |
| 20 | extern struct pxa_device_desc pxa168_device_ssp4; |
| 21 | extern struct pxa_device_desc pxa168_device_ssp5; |
Haojian Zhuang | a0f266c | 2009-10-13 15:24:55 +0800 | [diff] [blame] | 22 | extern struct pxa_device_desc pxa168_device_nand; |
Eric Miao | 49cbe78 | 2009-01-20 14:15:18 +0800 | [diff] [blame] | 23 | |
| 24 | static inline int pxa168_add_uart(int id) |
| 25 | { |
| 26 | struct pxa_device_desc *d = NULL; |
| 27 | |
| 28 | switch (id) { |
| 29 | case 1: d = &pxa168_device_uart1; break; |
| 30 | case 2: d = &pxa168_device_uart2; break; |
| 31 | } |
| 32 | |
| 33 | if (d == NULL) |
| 34 | return -EINVAL; |
| 35 | |
| 36 | return pxa_register_device(d, NULL, 0); |
| 37 | } |
Eric Miao | 1a77920 | 2009-04-13 15:34:54 +0800 | [diff] [blame] | 38 | |
| 39 | static inline int pxa168_add_twsi(int id, struct i2c_pxa_platform_data *data, |
| 40 | struct i2c_board_info *info, unsigned size) |
| 41 | { |
| 42 | struct pxa_device_desc *d = NULL; |
| 43 | int ret; |
| 44 | |
| 45 | switch (id) { |
| 46 | case 0: d = &pxa168_device_twsi0; break; |
| 47 | case 1: d = &pxa168_device_twsi1; break; |
| 48 | default: |
| 49 | return -EINVAL; |
| 50 | } |
| 51 | |
| 52 | ret = i2c_register_board_info(id, info, size); |
| 53 | if (ret) |
| 54 | return ret; |
| 55 | |
| 56 | return pxa_register_device(d, data, sizeof(*data)); |
| 57 | } |
Eric Miao | a27ba76 | 2009-04-13 18:29:52 +0800 | [diff] [blame] | 58 | |
| 59 | static inline int pxa168_add_pwm(int id) |
| 60 | { |
| 61 | struct pxa_device_desc *d = NULL; |
| 62 | |
| 63 | switch (id) { |
| 64 | case 1: d = &pxa168_device_pwm1; break; |
| 65 | case 2: d = &pxa168_device_pwm2; break; |
| 66 | case 3: d = &pxa168_device_pwm3; break; |
| 67 | case 4: d = &pxa168_device_pwm4; break; |
| 68 | default: |
| 69 | return -EINVAL; |
| 70 | } |
| 71 | |
| 72 | return pxa_register_device(d, NULL, 0); |
| 73 | } |
Haojian Zhuang | a0f266c | 2009-10-13 15:24:55 +0800 | [diff] [blame] | 74 | |
Haojian Zhuang | 7e49922 | 2010-03-19 11:53:17 -0400 | [diff] [blame^] | 75 | static inline int pxa168_add_ssp(int id) |
| 76 | { |
| 77 | struct pxa_device_desc *d = NULL; |
| 78 | |
| 79 | switch (id) { |
| 80 | case 1: d = &pxa168_device_ssp1; break; |
| 81 | case 2: d = &pxa168_device_ssp2; break; |
| 82 | case 3: d = &pxa168_device_ssp3; break; |
| 83 | case 4: d = &pxa168_device_ssp4; break; |
| 84 | case 5: d = &pxa168_device_ssp5; break; |
| 85 | default: |
| 86 | return -EINVAL; |
| 87 | } |
| 88 | return pxa_register_device(d, NULL, 0); |
| 89 | } |
| 90 | |
Haojian Zhuang | a0f266c | 2009-10-13 15:24:55 +0800 | [diff] [blame] | 91 | static inline int pxa168_add_nand(struct pxa3xx_nand_platform_data *info) |
| 92 | { |
| 93 | return pxa_register_device(&pxa168_device_nand, info, sizeof(*info)); |
| 94 | } |
Eric Miao | 49cbe78 | 2009-01-20 14:15:18 +0800 | [diff] [blame] | 95 | #endif /* __ASM_MACH_PXA168_H */ |