aboutsummaryrefslogtreecommitdiffstats
path: root/arch/arm/mach-mx3/mach-mx31_3ds.c
diff options
context:
space:
mode:
authorUwe Kleine-König <u.kleine-koenig@pengutronix.de>2010-03-08 10:57:19 -0500
committerUwe Kleine-König <u.kleine-koenig@pengutronix.de>2010-06-24 09:40:34 -0400
commitb396dc459cf38a9070032918ea6ae220d7f03586 (patch)
tree44989654922a2eeaa29e6fd71a6fe9bcd0047489 /arch/arm/mach-mx3/mach-mx31_3ds.c
parentd57351a30fb02a345b9328adb73250310425421c (diff)
ARM: mx3/mx31_3ds: fold board header in its only user
Moreover remove unused definitions. Signed-off-by: Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
Diffstat (limited to 'arch/arm/mach-mx3/mach-mx31_3ds.c')
-rw-r--r--arch/arm/mach-mx3/mach-mx31_3ds.c42
1 files changed, 35 insertions, 7 deletions
diff --git a/arch/arm/mach-mx3/mach-mx31_3ds.c b/arch/arm/mach-mx3/mach-mx31_3ds.c
index 58e57291b79d..53740b44b466 100644
--- a/arch/arm/mach-mx3/mach-mx31_3ds.c
+++ b/arch/arm/mach-mx3/mach-mx31_3ds.c
@@ -37,19 +37,47 @@
37#include <asm/memory.h> 37#include <asm/memory.h>
38#include <asm/mach/map.h> 38#include <asm/mach/map.h>
39#include <mach/common.h> 39#include <mach/common.h>
40#include <mach/board-mx31_3ds.h>
41#include <mach/imx-uart.h> 40#include <mach/imx-uart.h>
42#include <mach/iomux-mx3.h> 41#include <mach/iomux-mx3.h>
43#include <mach/mxc_nand.h> 42#include <mach/mxc_nand.h>
44#include <mach/spi.h> 43#include <mach/spi.h>
45#include "devices.h" 44#include "devices.h"
46 45
47/*! 46/* Definitions for components on the Debug board */
48 * @file mx31_3ds.c 47
49 * 48/* Base address of CPLD controller on the Debug board */
50 * @brief This file contains the board-specific initialization routines. 49#define DEBUG_BASE_ADDRESS CS5_IO_ADDRESS(MX3x_CS5_BASE_ADDR)
51 * 50
52 * @ingroup System 51/* LAN9217 ethernet base address */
52#define LAN9217_BASE_ADDR MX3x_CS5_BASE_ADDR
53
54/* CPLD config and interrupt base address */
55#define CPLD_ADDR (DEBUG_BASE_ADDRESS + 0x20000)
56
57/* status, interrupt */
58#define CPLD_INT_STATUS_REG (CPLD_ADDR + 0x10)
59#define CPLD_INT_MASK_REG (CPLD_ADDR + 0x38)
60#define CPLD_INT_RESET_REG (CPLD_ADDR + 0x20)
61/* magic word for debug CPLD */
62#define CPLD_MAGIC_NUMBER1_REG (CPLD_ADDR + 0x40)
63#define CPLD_MAGIC_NUMBER2_REG (CPLD_ADDR + 0x48)
64/* CPLD code version */
65#define CPLD_CODE_VER_REG (CPLD_ADDR + 0x50)
66/* magic word for debug CPLD */
67#define CPLD_MAGIC_NUMBER3_REG (CPLD_ADDR + 0x58)
68
69/* CPLD IRQ line for external uart, external ethernet etc */
70#define EXPIO_PARENT_INT IOMUX_TO_IRQ(MX31_PIN_GPIO1_1)
71
72#define MXC_EXP_IO_BASE (MXC_BOARD_IRQ_START)
73#define MXC_IRQ_TO_EXPIO(irq) ((irq) - MXC_EXP_IO_BASE)
74
75#define EXPIO_INT_ENET (MXC_EXP_IO_BASE + 0)
76
77#define MXC_MAX_EXP_IO_LINES 16
78
79/*
80 * This file contains the board-specific initialization routines.
53 */ 81 */
54 82
55static int mx31_3ds_pins[] = { 83static int mx31_3ds_pins[] = {