diff options
Diffstat (limited to 'arch/arm/mach-mxs/devices-mx28.h')
-rw-r--r-- | arch/arm/mach-mxs/devices-mx28.h | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/arch/arm/mach-mxs/devices-mx28.h b/arch/arm/mach-mxs/devices-mx28.h index 33773a6333a2..9d08555c4cf0 100644 --- a/arch/arm/mach-mxs/devices-mx28.h +++ b/arch/arm/mach-mxs/devices-mx28.h | |||
@@ -10,11 +10,34 @@ | |||
10 | */ | 10 | */ |
11 | #include <mach/mx28.h> | 11 | #include <mach/mx28.h> |
12 | #include <mach/devices-common.h> | 12 | #include <mach/devices-common.h> |
13 | #include <mach/mxsfb.h> | ||
13 | 14 | ||
14 | extern const struct amba_device mx28_duart_device __initconst; | 15 | extern const struct amba_device mx28_duart_device __initconst; |
15 | #define mx28_add_duart() \ | 16 | #define mx28_add_duart() \ |
16 | mxs_add_duart(&mx28_duart_device) | 17 | mxs_add_duart(&mx28_duart_device) |
17 | 18 | ||
19 | extern const struct mxs_auart_data mx28_auart_data[] __initconst; | ||
20 | #define mx28_add_auart(id) mxs_add_auart(&mx28_auart_data[id]) | ||
21 | #define mx28_add_auart0() mx28_add_auart(0) | ||
22 | #define mx28_add_auart1() mx28_add_auart(1) | ||
23 | #define mx28_add_auart2() mx28_add_auart(2) | ||
24 | #define mx28_add_auart3() mx28_add_auart(3) | ||
25 | #define mx28_add_auart4() mx28_add_auart(4) | ||
26 | |||
18 | extern const struct mxs_fec_data mx28_fec_data[] __initconst; | 27 | extern const struct mxs_fec_data mx28_fec_data[] __initconst; |
19 | #define mx28_add_fec(id, pdata) \ | 28 | #define mx28_add_fec(id, pdata) \ |
20 | mxs_add_fec(&mx28_fec_data[id], pdata) | 29 | mxs_add_fec(&mx28_fec_data[id], pdata) |
30 | |||
31 | extern const struct mxs_flexcan_data mx28_flexcan_data[] __initconst; | ||
32 | #define mx28_add_flexcan(id, pdata) \ | ||
33 | mxs_add_flexcan(&mx28_flexcan_data[id], pdata) | ||
34 | #define mx28_add_flexcan0(pdata) mx28_add_flexcan(0, pdata) | ||
35 | #define mx28_add_flexcan1(pdata) mx28_add_flexcan(1, pdata) | ||
36 | |||
37 | extern const struct mxs_i2c_data mx28_mxs_i2c_data[] __initconst; | ||
38 | #define mx28_add_mxs_i2c(id) mxs_add_mxs_i2c(&mx28_mxs_i2c_data[id]) | ||
39 | |||
40 | #define mx28_add_mxs_pwm(id) mxs_add_mxs_pwm(MX28_PWM_BASE_ADDR, id) | ||
41 | |||
42 | struct platform_device *__init mx28_add_mxsfb( | ||
43 | const struct mxsfb_platform_data *pdata); | ||