aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFabio Estevam <festevam@gmail.com>2011-01-10 15:17:37 -0500
committerSascha Hauer <s.hauer@pengutronix.de>2011-01-11 05:44:16 -0500
commit92cb33f188e192c3803d6d430ea61151da3e026e (patch)
treea92232ad70cdcae10ba3b169d0562c76696f377a
parent2cad26a9d583ea16bb23a8cdc2f7a7df4662a72c (diff)
ARM: imx/mx27_3ds: Add debug board support
Signed-off-by: Fabio Estevam <fabio.estevam@freescale.com> Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
-rw-r--r--arch/arm/mach-imx/Kconfig1
-rw-r--r--arch/arm/mach-imx/mach-mx27_3ds.c6
2 files changed, 7 insertions, 0 deletions
diff --git a/arch/arm/mach-imx/Kconfig b/arch/arm/mach-imx/Kconfig
index 17d2e608a21..56684b51707 100644
--- a/arch/arm/mach-imx/Kconfig
+++ b/arch/arm/mach-imx/Kconfig
@@ -243,6 +243,7 @@ config MACH_MX27_3DS
243 select IMX_HAVE_PLATFORM_MXC_EHCI 243 select IMX_HAVE_PLATFORM_MXC_EHCI
244 select IMX_HAVE_PLATFORM_MXC_MMC 244 select IMX_HAVE_PLATFORM_MXC_MMC
245 select IMX_HAVE_PLATFORM_SPI_IMX 245 select IMX_HAVE_PLATFORM_SPI_IMX
246 select MXC_DEBUG_BOARD
246 select MXC_ULPI if USB_ULPI 247 select MXC_ULPI if USB_ULPI
247 help 248 help
248 Include support for MX27PDK platform. This includes specific 249 Include support for MX27PDK platform. This includes specific
diff --git a/arch/arm/mach-imx/mach-mx27_3ds.c b/arch/arm/mach-imx/mach-mx27_3ds.c
index 83f8e2b4fd5..164331518bd 100644
--- a/arch/arm/mach-imx/mach-mx27_3ds.c
+++ b/arch/arm/mach-imx/mach-mx27_3ds.c
@@ -37,12 +37,15 @@
37#include <mach/common.h> 37#include <mach/common.h>
38#include <mach/iomux-mx27.h> 38#include <mach/iomux-mx27.h>
39#include <mach/ulpi.h> 39#include <mach/ulpi.h>
40#include <mach/irqs.h>
41#include <mach/3ds_debugboard.h>
40 42
41#include "devices-imx27.h" 43#include "devices-imx27.h"
42 44
43#define SD1_EN_GPIO (GPIO_PORTB + 25) 45#define SD1_EN_GPIO (GPIO_PORTB + 25)
44#define OTG_PHY_RESET_GPIO (GPIO_PORTB + 23) 46#define OTG_PHY_RESET_GPIO (GPIO_PORTB + 23)
45#define SPI2_SS0 (GPIO_PORTD + 21) 47#define SPI2_SS0 (GPIO_PORTD + 21)
48#define EXPIO_PARENT_INT (MXC_INTERNAL_IRQS + GPIO_PORTC + 28)
46 49
47static const int mx27pdk_pins[] __initconst = { 50static const int mx27pdk_pins[] __initconst = {
48 /* UART1 */ 51 /* UART1 */
@@ -276,6 +279,9 @@ static void __init mx27pdk_init(void)
276 imx27_add_spi_imx1(&spi2_pdata); 279 imx27_add_spi_imx1(&spi2_pdata);
277 spi_register_board_info(mx27_3ds_spi_devs, 280 spi_register_board_info(mx27_3ds_spi_devs,
278 ARRAY_SIZE(mx27_3ds_spi_devs)); 281 ARRAY_SIZE(mx27_3ds_spi_devs));
282
283 if (mxc_expio_init(MX27_CS5_BASE_ADDR, EXPIO_PARENT_INT))
284 pr_warn("Init of the debugboard failed, all devices on the debugboard are unusable.\n");
279} 285}
280 286
281static void __init mx27pdk_timer_init(void) 287static void __init mx27pdk_timer_init(void)