diff options
Diffstat (limited to 'arch/arm/mach-mxs/devices-mx28.h')
-rw-r--r-- | arch/arm/mach-mxs/devices-mx28.h | 47 |
1 files changed, 47 insertions, 0 deletions
diff --git a/arch/arm/mach-mxs/devices-mx28.h b/arch/arm/mach-mxs/devices-mx28.h new file mode 100644 index 00000000000..79b94523954 --- /dev/null +++ b/arch/arm/mach-mxs/devices-mx28.h | |||
@@ -0,0 +1,47 @@ | |||
1 | /* | ||
2 | * Copyright (C) 2010 Pengutronix | ||
3 | * Uwe Kleine-Koenig <u.kleine-koenig@pengutronix.de> | ||
4 | * | ||
5 | * Copyright 2010 Freescale Semiconductor, Inc. All Rights Reserved. | ||
6 | * | ||
7 | * This program is free software; you can redistribute it and/or modify it under | ||
8 | * the terms of the GNU General Public License version 2 as published by the | ||
9 | * Free Software Foundation. | ||
10 | */ | ||
11 | #include <mach/mx28.h> | ||
12 | #include <mach/devices-common.h> | ||
13 | #include <mach/mxsfb.h> | ||
14 | |||
15 | extern const struct amba_device mx28_duart_device __initconst; | ||
16 | #define mx28_add_duart() \ | ||
17 | mxs_add_duart(&mx28_duart_device) | ||
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 | |||
27 | extern const struct mxs_fec_data mx28_fec_data[] __initconst; | ||
28 | #define mx28_add_fec(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_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 | extern const struct mxs_mxs_mmc_data mx28_mxs_mmc_data[] __initconst; | ||
41 | #define mx28_add_mxs_mmc(id, pdata) \ | ||
42 | mxs_add_mxs_mmc(&mx28_mxs_mmc_data[id], pdata) | ||
43 | |||
44 | #define mx28_add_mxs_pwm(id) mxs_add_mxs_pwm(MX28_PWM_BASE_ADDR, id) | ||
45 | |||
46 | struct platform_device *__init mx28_add_mxsfb( | ||
47 | const struct mxsfb_platform_data *pdata); | ||