ARM: pxa168: added keypad support
[deliverable/linux.git] / arch / arm / mach-mmp / include / mach / pxa168.h
CommitLineData
49cbe786
EM
1#ifndef __ASM_MACH_PXA168_H
2#define __ASM_MACH_PXA168_H
3
2728701d
EM
4struct sys_timer;
5
6extern struct sys_timer pxa168_timer;
7extern void __init pxa168_init_irq(void);
8
1a77920e 9#include <linux/i2c.h>
49cbe786 10#include <mach/devices.h>
1a77920e 11#include <plat/i2c.h>
a0f266c1 12#include <plat/pxa3xx_nand.h>
58cf68b8 13#include <video/pxa168fb.h>
6d109465 14#include <plat/pxa27x_keypad.h>
49cbe786
EM
15
16extern struct pxa_device_desc pxa168_device_uart1;
17extern struct pxa_device_desc pxa168_device_uart2;
1a77920e
EM
18extern struct pxa_device_desc pxa168_device_twsi0;
19extern struct pxa_device_desc pxa168_device_twsi1;
a27ba768
EM
20extern struct pxa_device_desc pxa168_device_pwm1;
21extern struct pxa_device_desc pxa168_device_pwm2;
22extern struct pxa_device_desc pxa168_device_pwm3;
23extern struct pxa_device_desc pxa168_device_pwm4;
7e499228
HZ
24extern struct pxa_device_desc pxa168_device_ssp1;
25extern struct pxa_device_desc pxa168_device_ssp2;
26extern struct pxa_device_desc pxa168_device_ssp3;
27extern struct pxa_device_desc pxa168_device_ssp4;
28extern struct pxa_device_desc pxa168_device_ssp5;
a0f266c1 29extern struct pxa_device_desc pxa168_device_nand;
58cf68b8 30extern struct pxa_device_desc pxa168_device_fb;
6d109465 31extern struct pxa_device_desc pxa168_device_keypad;
49cbe786
EM
32
33static inline int pxa168_add_uart(int id)
34{
35 struct pxa_device_desc *d = NULL;
36
37 switch (id) {
38 case 1: d = &pxa168_device_uart1; break;
39 case 2: d = &pxa168_device_uart2; break;
40 }
41
42 if (d == NULL)
43 return -EINVAL;
44
45 return pxa_register_device(d, NULL, 0);
46}
1a77920e
EM
47
48static inline int pxa168_add_twsi(int id, struct i2c_pxa_platform_data *data,
49 struct i2c_board_info *info, unsigned size)
50{
51 struct pxa_device_desc *d = NULL;
52 int ret;
53
54 switch (id) {
55 case 0: d = &pxa168_device_twsi0; break;
56 case 1: d = &pxa168_device_twsi1; break;
57 default:
58 return -EINVAL;
59 }
60
61 ret = i2c_register_board_info(id, info, size);
62 if (ret)
63 return ret;
64
65 return pxa_register_device(d, data, sizeof(*data));
66}
a27ba768
EM
67
68static inline int pxa168_add_pwm(int id)
69{
70 struct pxa_device_desc *d = NULL;
71
72 switch (id) {
73 case 1: d = &pxa168_device_pwm1; break;
74 case 2: d = &pxa168_device_pwm2; break;
75 case 3: d = &pxa168_device_pwm3; break;
76 case 4: d = &pxa168_device_pwm4; break;
77 default:
78 return -EINVAL;
79 }
80
81 return pxa_register_device(d, NULL, 0);
82}
a0f266c1 83
7e499228
HZ
84static inline int pxa168_add_ssp(int id)
85{
86 struct pxa_device_desc *d = NULL;
87
88 switch (id) {
89 case 1: d = &pxa168_device_ssp1; break;
90 case 2: d = &pxa168_device_ssp2; break;
91 case 3: d = &pxa168_device_ssp3; break;
92 case 4: d = &pxa168_device_ssp4; break;
93 case 5: d = &pxa168_device_ssp5; break;
94 default:
95 return -EINVAL;
96 }
97 return pxa_register_device(d, NULL, 0);
98}
99
a0f266c1
HZ
100static inline int pxa168_add_nand(struct pxa3xx_nand_platform_data *info)
101{
102 return pxa_register_device(&pxa168_device_nand, info, sizeof(*info));
103}
58cf68b8
MB
104
105static inline int pxa168_add_fb(struct pxa168fb_mach_info *mi)
106{
107 return pxa_register_device(&pxa168_device_fb, mi, sizeof(*mi));
108}
109
6d109465
MB
110static inline int pxa168_add_keypad(struct pxa27x_keypad_platform_data *data)
111{
112 return pxa_register_device(&pxa168_device_keypad, data, sizeof(*data));
113}
114
49cbe786 115#endif /* __ASM_MACH_PXA168_H */
This page took 0.159358 seconds and 5 git commands to generate.