| Uwe Kleine-König | 6348e6b | 2010-06-16 15:26:07 +0200 | [diff] [blame] | 1 | /* | 
|  | 2 | * Copyright (C) 2010 Pengutronix | 
|  | 3 | * Uwe Kleine-Koenig <u.kleine-koenig@pengutronix.de> | 
|  | 4 | * | 
|  | 5 | * This program is free software; you can redistribute it and/or modify it under | 
|  | 6 | * the terms of the GNU General Public License version 2 as published by the | 
|  | 7 | * Free Software Foundation. | 
|  | 8 | */ | 
|  | 9 | #include <mach/mx1.h> | 
|  | 10 | #include <mach/devices-common.h> | 
|  | 11 |  | 
| Richard Zhao | af12e3a | 2011-03-31 18:16:23 +0800 | [diff] [blame] | 12 | extern const struct imx_imx_fb_data imx1_imx_fb_data; | 
| Gwenhael Goavec-Merou | 9685a36 | 2011-03-02 08:11:05 +0000 | [diff] [blame] | 13 | #define imx1_add_imx_fb(pdata) \ | 
|  | 14 | imx_add_imx_fb(&imx1_imx_fb_data, pdata) | 
|  | 15 |  | 
| Richard Zhao | af12e3a | 2011-03-31 18:16:23 +0800 | [diff] [blame] | 16 | extern const struct imx_imx_i2c_data imx1_imx_i2c_data; | 
| Uwe Kleine-König | 77a406d | 2010-08-25 12:19:50 +0200 | [diff] [blame] | 17 | #define imx1_add_imx_i2c(pdata)		\ | 
| Uwe Kleine-König | 64de5ec | 2010-09-21 12:13:34 +0200 | [diff] [blame] | 18 | imx_add_imx_i2c(&imx1_imx_i2c_data, pdata) | 
| Uwe Kleine-König | d112f4e | 2010-06-22 14:50:59 +0200 | [diff] [blame] | 19 |  | 
| Richard Zhao | af12e3a | 2011-03-31 18:16:23 +0800 | [diff] [blame] | 20 | extern const struct imx_imx_uart_3irq_data imx1_imx_uart_data[]; | 
| Uwe Kleine-König | 5162de0 | 2010-08-10 22:57:24 +0200 | [diff] [blame] | 21 | #define imx1_add_imx_uart(id, pdata)	\ | 
|  | 22 | imx_add_imx_uart_3irq(&imx1_imx_uart_data[id], pdata) | 
|  | 23 | #define imx1_add_imx_uart0(pdata)	imx1_add_imx_uart(0, pdata) | 
|  | 24 | #define imx1_add_imx_uart1(pdata)	imx1_add_imx_uart(1, pdata) | 
| Gwenhael Goavec-Merou | 19373c0 | 2011-02-23 16:58:39 +0000 | [diff] [blame] | 25 |  | 
| Richard Zhao | af12e3a | 2011-03-31 18:16:23 +0800 | [diff] [blame] | 26 | extern const struct imx_spi_imx_data imx1_cspi_data[]; | 
| Gwenhael Goavec-Merou | 19373c0 | 2011-02-23 16:58:39 +0000 | [diff] [blame] | 27 | #define imx1_add_cspi(id, pdata)   \ | 
|  | 28 | imx_add_spi_imx(&imx1_cspi_data[id], pdata) | 
|  | 29 |  | 
|  | 30 | #define imx1_add_spi_imx0(pdata) imx1_add_cspi(0, pdata) | 
|  | 31 | #define imx1_add_spi_imx1(pdata) imx1_add_cspi(1, pdata) |