2010-12-09 18:12:46 +03:00
/*
* Copyright ( C ) 2010 Pengutronix
* Uwe Kleine - Koenig < u . kleine - koenig @ pengutronix . de >
*
* Copyright 2010 Freescale Semiconductor , Inc . All Rights Reserved .
*
* This program is free software ; you can redistribute it and / or modify it under
* the terms of the GNU General Public License version 2 as published by the
* Free Software Foundation .
*/
# include <mach/mx28.h>
# include <mach/devices-common.h>
2011-01-14 17:32:49 +03:00
# include <mach/mxsfb.h>
2010-12-09 18:12:46 +03:00
2011-01-04 09:20:52 +03:00
extern const struct amba_device mx28_duart_device __initconst ;
2010-12-09 18:12:46 +03:00
# define mx28_add_duart() \
2011-01-04 09:20:52 +03:00
mxs_add_duart ( & mx28_duart_device )
2010-12-09 18:12:47 +03:00
2011-01-11 17:56:40 +03:00
extern const struct mxs_auart_data mx28_auart_data [ ] __initconst ;
# define mx28_add_auart(id) mxs_add_auart(&mx28_auart_data[id])
# define mx28_add_auart0() mx28_add_auart(0)
# define mx28_add_auart1() mx28_add_auart(1)
# define mx28_add_auart2() mx28_add_auart(2)
# define mx28_add_auart3() mx28_add_auart(3)
# define mx28_add_auart4() mx28_add_auart(4)
2010-12-09 18:12:47 +03:00
extern const struct mxs_fec_data mx28_fec_data [ ] __initconst ;
# define mx28_add_fec(id, pdata) \
mxs_add_fec ( & mx28_fec_data [ id ] , pdata )
2011-02-02 15:50:30 +03:00
extern const struct mxs_flexcan_data mx28_flexcan_data [ ] __initconst ;
# define mx28_add_flexcan(id, pdata) \
mxs_add_flexcan ( & mx28_flexcan_data [ id ] , pdata )
# define mx28_add_flexcan0(pdata) mx28_add_flexcan(0, pdata)
# define mx28_add_flexcan1(pdata) mx28_add_flexcan(1, pdata)
2011-01-25 13:58:15 +03:00
2011-01-11 12:22:14 +03:00
extern const struct mxs_mxs_i2c_data mx28_mxs_i2c_data [ ] __initconst ;
2011-02-28 19:40:04 +03:00
# define mx28_add_mxs_i2c(id) mxs_add_mxs_i2c(&mx28_mxs_i2c_data[id])
2011-03-16 13:31:06 +03:00
extern const struct mxs_mxs_mmc_data mx28_mxs_mmc_data [ ] __initconst ;
# define mx28_add_mxs_mmc(id, pdata) \
mxs_add_mxs_mmc ( & mx28_mxs_mmc_data [ id ] , pdata )
2011-01-25 13:58:15 +03:00
# define mx28_add_mxs_pwm(id) mxs_add_mxs_pwm(MX28_PWM_BASE_ADDR, id)
2011-01-14 17:32:49 +03:00
struct platform_device * __init mx28_add_mxsfb (
const struct mxsfb_platform_data * pdata ) ;
2011-07-20 07:41:42 +04:00
extern const struct mxs_saif_data mx28_saif_data [ ] __initconst ;
# define mx28_add_saif(id) mxs_add_saif(&mx28_saif_data[id])
2011-05-02 18:21:49 +04:00
struct platform_device * __init mx28_add_rtc_stmp3xxx ( void ) ;