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 | */ |
Shawn Guo | e0557c0 | 2012-09-13 15:51:15 +0800 | [diff] [blame] | 9 | #include "devices/devices-common.h" |
Uwe Kleine-König | 6348e6b | 2010-06-16 15:26:07 +0200 | [diff] [blame] | 10 | |
Richard Zhao | af12e3a | 2011-03-31 18:16:23 +0800 | [diff] [blame] | 11 | extern const struct imx_imx_fb_data imx1_imx_fb_data; |
Gwenhael Goavec-Merou | 9685a36 | 2011-03-02 08:11:05 +0000 | [diff] [blame] | 12 | #define imx1_add_imx_fb(pdata) \ |
| 13 | imx_add_imx_fb(&imx1_imx_fb_data, pdata) |
| 14 | |
Richard Zhao | af12e3a | 2011-03-31 18:16:23 +0800 | [diff] [blame] | 15 | 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] | 16 | #define imx1_add_imx_i2c(pdata) \ |
Uwe Kleine-König | 64de5ec | 2010-09-21 12:13:34 +0200 | [diff] [blame] | 17 | imx_add_imx_i2c(&imx1_imx_i2c_data, pdata) |
Uwe Kleine-König | d112f4e | 2010-06-22 14:50:59 +0200 | [diff] [blame] | 18 | |
Richard Zhao | af12e3a | 2011-03-31 18:16:23 +0800 | [diff] [blame] | 19 | 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] | 20 | #define imx1_add_imx_uart(id, pdata) \ |
| 21 | imx_add_imx_uart_3irq(&imx1_imx_uart_data[id], pdata) |
| 22 | #define imx1_add_imx_uart0(pdata) imx1_add_imx_uart(0, pdata) |
| 23 | #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] | 24 | |
Richard Zhao | af12e3a | 2011-03-31 18:16:23 +0800 | [diff] [blame] | 25 | extern const struct imx_spi_imx_data imx1_cspi_data[]; |
Gwenhael Goavec-Merou | 19373c0 | 2011-02-23 16:58:39 +0000 | [diff] [blame] | 26 | #define imx1_add_cspi(id, pdata) \ |
| 27 | imx_add_spi_imx(&imx1_cspi_data[id], pdata) |
| 28 | |
| 29 | #define imx1_add_spi_imx0(pdata) imx1_add_cspi(0, pdata) |
| 30 | #define imx1_add_spi_imx1(pdata) imx1_add_cspi(1, pdata) |