Shawn Guo | dc38ad4 | 2010-12-09 23:12:46 +0800 | [diff] [blame] | 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> |
Sascha Hauer | 2e8fd69 | 2011-01-14 15:32:49 +0100 | [diff] [blame] | 13 | #include <mach/mxsfb.h> |
Shawn Guo | dc38ad4 | 2010-12-09 23:12:46 +0800 | [diff] [blame] | 14 | |
Shawn Guo | dbc4245 | 2011-01-04 14:20:52 +0800 | [diff] [blame] | 15 | extern const struct amba_device mx28_duart_device __initconst; |
Shawn Guo | dc38ad4 | 2010-12-09 23:12:46 +0800 | [diff] [blame] | 16 | #define mx28_add_duart() \ |
Shawn Guo | dbc4245 | 2011-01-04 14:20:52 +0800 | [diff] [blame] | 17 | mxs_add_duart(&mx28_duart_device) |
Shawn Guo | b9a2ada | 2010-12-09 23:12:47 +0800 | [diff] [blame] | 18 | |
Sascha Hauer | cf3567a | 2011-01-11 15:56:40 +0100 | [diff] [blame] | 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 | |
Shawn Guo | b9a2ada | 2010-12-09 23:12:47 +0800 | [diff] [blame] | 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) |
Marc Kleine-Budde | 22cbba1 | 2011-02-02 13:50:30 +0100 | [diff] [blame] | 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) |
Sascha Hauer | 2301dfa | 2011-01-25 11:58:15 +0100 | [diff] [blame] | 36 | |
Uwe Kleine-König | 01d8cf03 | 2011-01-11 10:22:14 +0100 | [diff] [blame] | 37 | extern const struct mxs_mxs_i2c_data mx28_mxs_i2c_data[] __initconst; |
Wolfram Sang | 30feed3 | 2011-02-28 17:40:04 +0100 | [diff] [blame] | 38 | #define mx28_add_mxs_i2c(id) mxs_add_mxs_i2c(&mx28_mxs_i2c_data[id]) |
| 39 | |
Shawn Guo | 47babe6 | 2011-03-16 11:31:06 +0100 | [diff] [blame] | 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 | |
Sascha Hauer | 2301dfa | 2011-01-25 11:58:15 +0100 | [diff] [blame] | 44 | #define mx28_add_mxs_pwm(id) mxs_add_mxs_pwm(MX28_PWM_BASE_ADDR, id) |
Sascha Hauer | 2e8fd69 | 2011-01-14 15:32:49 +0100 | [diff] [blame] | 45 | |
| 46 | struct platform_device *__init mx28_add_mxsfb( |
| 47 | const struct mxsfb_platform_data *pdata); |
Dong Aisheng | c8ebcac | 2011-07-20 11:41:42 +0800 | [diff] [blame] | 48 | |
| 49 | extern const struct mxs_saif_data mx28_saif_data[] __initconst; |
Dong Aisheng | 4c0174c | 2011-11-22 23:54:24 +0800 | [diff] [blame] | 50 | #define mx28_add_saif(id, pdata) \ |
| 51 | mxs_add_saif(&mx28_saif_data[id], pdata) |
Wolfram Sang | a4de042 | 2011-05-02 16:21:49 +0200 | [diff] [blame] | 52 | |
| 53 | struct platform_device *__init mx28_add_rtc_stmp3xxx(void); |