| Fabio Estevam | 1553a1e | 2008-11-12 15:38:39 +0100 | [diff] [blame] | 1 | /* | 
|  | 2 | *  Copyright 2008 Freescale Semiconductor, Inc. All Rights Reserved. | 
|  | 3 | * | 
|  | 4 | * This program is free software; you can redistribute it and/or modify | 
|  | 5 | * it under the terms of the GNU General Public License as published by | 
|  | 6 | * the Free Software Foundation; either version 2 of the License, or | 
|  | 7 | * (at your option) any later version. | 
|  | 8 | * | 
|  | 9 | * This program is distributed in the hope that it will be useful, | 
|  | 10 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | 
|  | 11 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the | 
|  | 12 | * GNU General Public License for more details. | 
|  | 13 | * | 
|  | 14 | * You should have received a copy of the GNU General Public License | 
|  | 15 | * along with this program; if not, write to the Free Software | 
|  | 16 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA | 
|  | 17 | */ | 
|  | 18 |  | 
|  | 19 | #include <linux/types.h> | 
|  | 20 | #include <linux/init.h> | 
|  | 21 | #include <linux/clk.h> | 
|  | 22 | #include <linux/irq.h> | 
| Magnus Lilja | 135cad3 | 2009-05-17 20:18:08 +0200 | [diff] [blame] | 23 | #include <linux/gpio.h> | 
| Magnus Lilja | 2b0c367 | 2009-05-18 18:46:33 +0200 | [diff] [blame] | 24 | #include <linux/smsc911x.h> | 
|  | 25 | #include <linux/platform_device.h> | 
| Alberto Panizzo | ae7a3f1 | 2010-03-23 19:51:45 +0100 | [diff] [blame] | 26 | #include <linux/mfd/mc13783.h> | 
|  | 27 | #include <linux/spi/spi.h> | 
|  | 28 | #include <linux/regulator/machine.h> | 
| Fabio Estevam | 1553a1e | 2008-11-12 15:38:39 +0100 | [diff] [blame] | 29 |  | 
|  | 30 | #include <mach/hardware.h> | 
|  | 31 | #include <asm/mach-types.h> | 
|  | 32 | #include <asm/mach/arch.h> | 
|  | 33 | #include <asm/mach/time.h> | 
|  | 34 | #include <asm/memory.h> | 
|  | 35 | #include <asm/mach/map.h> | 
|  | 36 | #include <mach/common.h> | 
| Alberto Panizzo | 11a332adf | 2010-03-23 19:46:57 +0100 | [diff] [blame] | 37 | #include <mach/board-mx31_3ds.h> | 
| Fabio Estevam | 1553a1e | 2008-11-12 15:38:39 +0100 | [diff] [blame] | 38 | #include <mach/imx-uart.h> | 
|  | 39 | #include <mach/iomux-mx3.h> | 
| Alberto Panizzo | a1b67b9 | 2010-03-23 19:49:35 +0100 | [diff] [blame] | 40 | #include <mach/mxc_nand.h> | 
| Alberto Panizzo | a1ac442 | 2010-03-23 19:50:28 +0100 | [diff] [blame] | 41 | #include <mach/spi.h> | 
| Fabio Estevam | 1553a1e | 2008-11-12 15:38:39 +0100 | [diff] [blame] | 42 | #include "devices.h" | 
|  | 43 |  | 
|  | 44 | /*! | 
| Alberto Panizzo | 11a332adf | 2010-03-23 19:46:57 +0100 | [diff] [blame] | 45 | * @file mx31_3ds.c | 
| Fabio Estevam | 1553a1e | 2008-11-12 15:38:39 +0100 | [diff] [blame] | 46 | * | 
|  | 47 | * @brief This file contains the board-specific initialization routines. | 
|  | 48 | * | 
|  | 49 | * @ingroup System | 
|  | 50 | */ | 
|  | 51 |  | 
| Alberto Panizzo | 11a332adf | 2010-03-23 19:46:57 +0100 | [diff] [blame] | 52 | static int mx31_3ds_pins[] = { | 
| Magnus Lilja | 153fa1d | 2009-05-16 12:43:10 +0200 | [diff] [blame] | 53 | /* UART1 */ | 
| Valentin Longchamp | 63d97667 | 2009-01-28 15:13:53 +0100 | [diff] [blame] | 54 | MX31_PIN_CTS1__CTS1, | 
|  | 55 | MX31_PIN_RTS1__RTS1, | 
|  | 56 | MX31_PIN_TXD1__TXD1, | 
| Magnus Lilja | 135cad3 | 2009-05-17 20:18:08 +0200 | [diff] [blame] | 57 | MX31_PIN_RXD1__RXD1, | 
|  | 58 | IOMUX_MODE(MX31_PIN_GPIO1_1, IOMUX_CONFIG_GPIO), | 
| Alberto Panizzo | a1ac442 | 2010-03-23 19:50:28 +0100 | [diff] [blame] | 59 | /* SPI 1 */ | 
|  | 60 | MX31_PIN_CSPI2_SCLK__SCLK, | 
|  | 61 | MX31_PIN_CSPI2_MOSI__MOSI, | 
|  | 62 | MX31_PIN_CSPI2_MISO__MISO, | 
|  | 63 | MX31_PIN_CSPI2_SPI_RDY__SPI_RDY, | 
|  | 64 | MX31_PIN_CSPI2_SS0__SS0, | 
|  | 65 | MX31_PIN_CSPI2_SS2__SS2, /*CS for MC13783 */ | 
| Alberto Panizzo | ae7a3f1 | 2010-03-23 19:51:45 +0100 | [diff] [blame] | 66 | /* MC13783 IRQ */ | 
|  | 67 | IOMUX_MODE(MX31_PIN_GPIO1_3, IOMUX_CONFIG_GPIO), | 
|  | 68 | }; | 
|  | 69 |  | 
|  | 70 | /* Regulators */ | 
|  | 71 | static struct regulator_init_data pwgtx_init = { | 
|  | 72 | .constraints = { | 
|  | 73 | .boot_on	= 1, | 
|  | 74 | .always_on	= 1, | 
|  | 75 | }, | 
|  | 76 | }; | 
|  | 77 |  | 
|  | 78 | static struct mc13783_regulator_init_data mx31_3ds_regulators[] = { | 
|  | 79 | { | 
|  | 80 | .id = MC13783_REGU_PWGT1SPI, /* Power Gate for ARM core. */ | 
|  | 81 | .init_data = &pwgtx_init, | 
|  | 82 | }, { | 
|  | 83 | .id = MC13783_REGU_PWGT2SPI, /* Power Gate for L2 Cache. */ | 
|  | 84 | .init_data = &pwgtx_init, | 
|  | 85 | }, | 
|  | 86 | }; | 
|  | 87 |  | 
|  | 88 | /* MC13783 */ | 
|  | 89 | static struct mc13783_platform_data mc13783_pdata __initdata = { | 
|  | 90 | .regulators = mx31_3ds_regulators, | 
|  | 91 | .num_regulators = ARRAY_SIZE(mx31_3ds_regulators), | 
|  | 92 | .flags  = MC13783_USE_REGULATOR, | 
| Alberto Panizzo | a1ac442 | 2010-03-23 19:50:28 +0100 | [diff] [blame] | 93 | }; | 
|  | 94 |  | 
|  | 95 | /* SPI */ | 
|  | 96 | static int spi1_internal_chipselect[] = { | 
|  | 97 | MXC_SPI_CS(0), | 
|  | 98 | MXC_SPI_CS(2), | 
|  | 99 | }; | 
|  | 100 |  | 
|  | 101 | static struct spi_imx_master spi1_pdata = { | 
|  | 102 | .chipselect	= spi1_internal_chipselect, | 
|  | 103 | .num_chipselect	= ARRAY_SIZE(spi1_internal_chipselect), | 
| Valentin Longchamp | 63d97667 | 2009-01-28 15:13:53 +0100 | [diff] [blame] | 104 | }; | 
|  | 105 |  | 
| Alberto Panizzo | ae7a3f1 | 2010-03-23 19:51:45 +0100 | [diff] [blame] | 106 | static struct spi_board_info mx31_3ds_spi_devs[] __initdata = { | 
|  | 107 | { | 
|  | 108 | .modalias	= "mc13783", | 
|  | 109 | .max_speed_hz	= 1000000, | 
|  | 110 | .bus_num	= 1, | 
|  | 111 | .chip_select	= 1, /* SS2 */ | 
|  | 112 | .platform_data	= &mc13783_pdata, | 
|  | 113 | .irq		= IOMUX_TO_IRQ(MX31_PIN_GPIO1_3), | 
|  | 114 | .mode = SPI_CS_HIGH, | 
|  | 115 | }, | 
|  | 116 | }; | 
|  | 117 |  | 
| Alberto Panizzo | a1b67b9 | 2010-03-23 19:49:35 +0100 | [diff] [blame] | 118 | /* | 
|  | 119 | * NAND Flash | 
|  | 120 | */ | 
|  | 121 | static struct mxc_nand_platform_data imx31_3ds_nand_flash_pdata = { | 
|  | 122 | .width		= 1, | 
|  | 123 | .hw_ecc		= 1, | 
|  | 124 | #ifdef MACH_MX31_3DS_MXC_NAND_USE_BBT | 
|  | 125 | .flash_bbt	= 1, | 
|  | 126 | #endif | 
|  | 127 | }; | 
|  | 128 |  | 
| Magnus Lilja | 153fa1d | 2009-05-16 12:43:10 +0200 | [diff] [blame] | 129 | static struct imxuart_platform_data uart_pdata = { | 
|  | 130 | .flags = IMXUART_HAVE_RTSCTS, | 
|  | 131 | }; | 
| Fabio Estevam | 1553a1e | 2008-11-12 15:38:39 +0100 | [diff] [blame] | 132 |  | 
| Magnus Lilja | 135cad3 | 2009-05-17 20:18:08 +0200 | [diff] [blame] | 133 | /* | 
| Magnus Lilja | 2b0c367 | 2009-05-18 18:46:33 +0200 | [diff] [blame] | 134 | * Support for the SMSC9217 on the Debug board. | 
|  | 135 | */ | 
|  | 136 |  | 
|  | 137 | static struct smsc911x_platform_config smsc911x_config = { | 
|  | 138 | .irq_polarity	= SMSC911X_IRQ_POLARITY_ACTIVE_LOW, | 
|  | 139 | .irq_type	= SMSC911X_IRQ_TYPE_PUSH_PULL, | 
|  | 140 | .flags		= SMSC911X_USE_16BIT | SMSC911X_FORCE_INTERNAL_PHY, | 
|  | 141 | .phy_interface	= PHY_INTERFACE_MODE_MII, | 
|  | 142 | }; | 
|  | 143 |  | 
|  | 144 | static struct resource smsc911x_resources[] = { | 
|  | 145 | { | 
|  | 146 | .start		= LAN9217_BASE_ADDR, | 
|  | 147 | .end		= LAN9217_BASE_ADDR + 0xff, | 
|  | 148 | .flags		= IORESOURCE_MEM, | 
|  | 149 | }, { | 
|  | 150 | .start		= EXPIO_INT_ENET, | 
|  | 151 | .end		= EXPIO_INT_ENET, | 
|  | 152 | .flags		= IORESOURCE_IRQ, | 
|  | 153 | }, | 
|  | 154 | }; | 
|  | 155 |  | 
|  | 156 | static struct platform_device smsc911x_device = { | 
|  | 157 | .name		= "smsc911x", | 
|  | 158 | .id		= -1, | 
|  | 159 | .num_resources	= ARRAY_SIZE(smsc911x_resources), | 
|  | 160 | .resource	= smsc911x_resources, | 
|  | 161 | .dev		= { | 
|  | 162 | .platform_data = &smsc911x_config, | 
|  | 163 | }, | 
|  | 164 | }; | 
|  | 165 |  | 
|  | 166 | /* | 
| Magnus Lilja | 135cad3 | 2009-05-17 20:18:08 +0200 | [diff] [blame] | 167 | * Routines for the CPLD on the debug board. It contains a CPLD handling | 
|  | 168 | * LEDs, switches, interrupts for Ethernet. | 
|  | 169 | */ | 
|  | 170 |  | 
| Alberto Panizzo | 11a332adf | 2010-03-23 19:46:57 +0100 | [diff] [blame] | 171 | static void mx31_3ds_expio_irq_handler(uint32_t irq, struct irq_desc *desc) | 
| Magnus Lilja | 135cad3 | 2009-05-17 20:18:08 +0200 | [diff] [blame] | 172 | { | 
|  | 173 | uint32_t imr_val; | 
|  | 174 | uint32_t int_valid; | 
|  | 175 | uint32_t expio_irq; | 
|  | 176 |  | 
|  | 177 | imr_val = __raw_readw(CPLD_INT_MASK_REG); | 
|  | 178 | int_valid = __raw_readw(CPLD_INT_STATUS_REG) & ~imr_val; | 
|  | 179 |  | 
|  | 180 | expio_irq = MXC_EXP_IO_BASE; | 
|  | 181 | for (; int_valid != 0; int_valid >>= 1, expio_irq++) { | 
|  | 182 | if ((int_valid & 1) == 0) | 
|  | 183 | continue; | 
|  | 184 | generic_handle_irq(expio_irq); | 
|  | 185 | } | 
|  | 186 | } | 
|  | 187 |  | 
|  | 188 | /* | 
|  | 189 | * Disable an expio pin's interrupt by setting the bit in the imr. | 
|  | 190 | * @param irq           an expio virtual irq number | 
|  | 191 | */ | 
|  | 192 | static void expio_mask_irq(uint32_t irq) | 
|  | 193 | { | 
|  | 194 | uint16_t reg; | 
|  | 195 | uint32_t expio = MXC_IRQ_TO_EXPIO(irq); | 
|  | 196 |  | 
|  | 197 | /* mask the interrupt */ | 
|  | 198 | reg = __raw_readw(CPLD_INT_MASK_REG); | 
|  | 199 | reg |= 1 << expio; | 
|  | 200 | __raw_writew(reg, CPLD_INT_MASK_REG); | 
|  | 201 | } | 
|  | 202 |  | 
|  | 203 | /* | 
|  | 204 | * Acknowledge an expanded io pin's interrupt by clearing the bit in the isr. | 
|  | 205 | * @param irq           an expanded io virtual irq number | 
|  | 206 | */ | 
|  | 207 | static void expio_ack_irq(uint32_t irq) | 
|  | 208 | { | 
|  | 209 | uint32_t expio = MXC_IRQ_TO_EXPIO(irq); | 
|  | 210 |  | 
|  | 211 | /* clear the interrupt status */ | 
|  | 212 | __raw_writew(1 << expio, CPLD_INT_RESET_REG); | 
|  | 213 | __raw_writew(0, CPLD_INT_RESET_REG); | 
|  | 214 | /* mask the interrupt */ | 
|  | 215 | expio_mask_irq(irq); | 
|  | 216 | } | 
|  | 217 |  | 
|  | 218 | /* | 
|  | 219 | * Enable a expio pin's interrupt by clearing the bit in the imr. | 
|  | 220 | * @param irq           a expio virtual irq number | 
|  | 221 | */ | 
|  | 222 | static void expio_unmask_irq(uint32_t irq) | 
|  | 223 | { | 
|  | 224 | uint16_t reg; | 
|  | 225 | uint32_t expio = MXC_IRQ_TO_EXPIO(irq); | 
|  | 226 |  | 
|  | 227 | /* unmask the interrupt */ | 
|  | 228 | reg = __raw_readw(CPLD_INT_MASK_REG); | 
|  | 229 | reg &= ~(1 << expio); | 
|  | 230 | __raw_writew(reg, CPLD_INT_MASK_REG); | 
|  | 231 | } | 
|  | 232 |  | 
|  | 233 | static struct irq_chip expio_irq_chip = { | 
|  | 234 | .ack = expio_ack_irq, | 
|  | 235 | .mask = expio_mask_irq, | 
|  | 236 | .unmask = expio_unmask_irq, | 
|  | 237 | }; | 
|  | 238 |  | 
| Alberto Panizzo | 11a332adf | 2010-03-23 19:46:57 +0100 | [diff] [blame] | 239 | static int __init mx31_3ds_init_expio(void) | 
| Magnus Lilja | 135cad3 | 2009-05-17 20:18:08 +0200 | [diff] [blame] | 240 | { | 
|  | 241 | int i; | 
|  | 242 | int ret; | 
|  | 243 |  | 
|  | 244 | /* Check if there's a debug board connected */ | 
|  | 245 | if ((__raw_readw(CPLD_MAGIC_NUMBER1_REG) != 0xAAAA) || | 
|  | 246 | (__raw_readw(CPLD_MAGIC_NUMBER2_REG) != 0x5555) || | 
|  | 247 | (__raw_readw(CPLD_MAGIC_NUMBER3_REG) != 0xCAFE)) { | 
|  | 248 | /* No Debug board found */ | 
|  | 249 | return -ENODEV; | 
|  | 250 | } | 
|  | 251 |  | 
| Alberto Panizzo | 11a332adf | 2010-03-23 19:46:57 +0100 | [diff] [blame] | 252 | pr_info("i.MX31 3DS Debug board detected, rev = 0x%04X\n", | 
| Magnus Lilja | 135cad3 | 2009-05-17 20:18:08 +0200 | [diff] [blame] | 253 | __raw_readw(CPLD_CODE_VER_REG)); | 
|  | 254 |  | 
|  | 255 | /* | 
|  | 256 | * Configure INT line as GPIO input | 
|  | 257 | */ | 
|  | 258 | ret = gpio_request(IOMUX_TO_GPIO(MX31_PIN_GPIO1_1), "sms9217-irq"); | 
|  | 259 | if (ret) | 
|  | 260 | pr_warning("could not get LAN irq gpio\n"); | 
|  | 261 | else | 
|  | 262 | gpio_direction_input(IOMUX_TO_GPIO(MX31_PIN_GPIO1_1)); | 
|  | 263 |  | 
|  | 264 | /* Disable the interrupts and clear the status */ | 
|  | 265 | __raw_writew(0, CPLD_INT_MASK_REG); | 
|  | 266 | __raw_writew(0xFFFF, CPLD_INT_RESET_REG); | 
|  | 267 | __raw_writew(0, CPLD_INT_RESET_REG); | 
|  | 268 | __raw_writew(0x1F, CPLD_INT_MASK_REG); | 
|  | 269 | for (i = MXC_EXP_IO_BASE; | 
|  | 270 | i < (MXC_EXP_IO_BASE + MXC_MAX_EXP_IO_LINES); | 
|  | 271 | i++) { | 
|  | 272 | set_irq_chip(i, &expio_irq_chip); | 
|  | 273 | set_irq_handler(i, handle_level_irq); | 
|  | 274 | set_irq_flags(i, IRQF_VALID); | 
|  | 275 | } | 
|  | 276 | set_irq_type(EXPIO_PARENT_INT, IRQ_TYPE_LEVEL_LOW); | 
| Alberto Panizzo | 11a332adf | 2010-03-23 19:46:57 +0100 | [diff] [blame] | 277 | set_irq_chained_handler(EXPIO_PARENT_INT, mx31_3ds_expio_irq_handler); | 
| Magnus Lilja | 135cad3 | 2009-05-17 20:18:08 +0200 | [diff] [blame] | 278 |  | 
|  | 279 | return 0; | 
|  | 280 | } | 
|  | 281 |  | 
|  | 282 | /* | 
|  | 283 | * This structure defines the MX31 memory map. | 
|  | 284 | */ | 
| Alberto Panizzo | 11a332adf | 2010-03-23 19:46:57 +0100 | [diff] [blame] | 285 | static struct map_desc mx31_3ds_io_desc[] __initdata = { | 
| Magnus Lilja | 135cad3 | 2009-05-17 20:18:08 +0200 | [diff] [blame] | 286 | { | 
| Uwe Kleine-König | f568dd7 | 2009-12-09 11:57:21 +0100 | [diff] [blame] | 287 | .virtual = MX31_CS5_BASE_ADDR_VIRT, | 
|  | 288 | .pfn = __phys_to_pfn(MX31_CS5_BASE_ADDR), | 
|  | 289 | .length = MX31_CS5_SIZE, | 
| Magnus Lilja | 135cad3 | 2009-05-17 20:18:08 +0200 | [diff] [blame] | 290 | .type = MT_DEVICE, | 
|  | 291 | }, | 
|  | 292 | }; | 
|  | 293 |  | 
|  | 294 | /* | 
|  | 295 | * Set up static virtual mappings. | 
|  | 296 | */ | 
| Alberto Panizzo | 11a332adf | 2010-03-23 19:46:57 +0100 | [diff] [blame] | 297 | static void __init mx31_3ds_map_io(void) | 
| Magnus Lilja | 135cad3 | 2009-05-17 20:18:08 +0200 | [diff] [blame] | 298 | { | 
|  | 299 | mx31_map_io(); | 
| Alberto Panizzo | 11a332adf | 2010-03-23 19:46:57 +0100 | [diff] [blame] | 300 | iotable_init(mx31_3ds_io_desc, ARRAY_SIZE(mx31_3ds_io_desc)); | 
| Magnus Lilja | 135cad3 | 2009-05-17 20:18:08 +0200 | [diff] [blame] | 301 | } | 
|  | 302 |  | 
| Fabio Estevam | 1553a1e | 2008-11-12 15:38:39 +0100 | [diff] [blame] | 303 | /*! | 
| Fabio Estevam | 1553a1e | 2008-11-12 15:38:39 +0100 | [diff] [blame] | 304 | * Board specific initialization. | 
|  | 305 | */ | 
|  | 306 | static void __init mxc_board_init(void) | 
|  | 307 | { | 
| Alberto Panizzo | 11a332adf | 2010-03-23 19:46:57 +0100 | [diff] [blame] | 308 | mxc_iomux_setup_multiple_pins(mx31_3ds_pins, ARRAY_SIZE(mx31_3ds_pins), | 
|  | 309 | "mx31_3ds"); | 
| Magnus Lilja | 153fa1d | 2009-05-16 12:43:10 +0200 | [diff] [blame] | 310 |  | 
|  | 311 | mxc_register_device(&mxc_uart_device0, &uart_pdata); | 
| Alberto Panizzo | a1b67b9 | 2010-03-23 19:49:35 +0100 | [diff] [blame] | 312 | mxc_register_device(&mxc_nand_device, &imx31_3ds_nand_flash_pdata); | 
| Alberto Panizzo | ae7a3f1 | 2010-03-23 19:51:45 +0100 | [diff] [blame] | 313 |  | 
| Alberto Panizzo | a1ac442 | 2010-03-23 19:50:28 +0100 | [diff] [blame] | 314 | mxc_register_device(&mxc_spi_device1, &spi1_pdata); | 
| Alberto Panizzo | ae7a3f1 | 2010-03-23 19:51:45 +0100 | [diff] [blame] | 315 | spi_register_board_info(mx31_3ds_spi_devs, | 
|  | 316 | ARRAY_SIZE(mx31_3ds_spi_devs)); | 
| Magnus Lilja | 135cad3 | 2009-05-17 20:18:08 +0200 | [diff] [blame] | 317 |  | 
| Alberto Panizzo | 11a332adf | 2010-03-23 19:46:57 +0100 | [diff] [blame] | 318 | if (!mx31_3ds_init_expio()) | 
| Magnus Lilja | 2b0c367 | 2009-05-18 18:46:33 +0200 | [diff] [blame] | 319 | platform_device_register(&smsc911x_device); | 
| Fabio Estevam | 1553a1e | 2008-11-12 15:38:39 +0100 | [diff] [blame] | 320 | } | 
|  | 321 |  | 
| Alberto Panizzo | 11a332adf | 2010-03-23 19:46:57 +0100 | [diff] [blame] | 322 | static void __init mx31_3ds_timer_init(void) | 
| Fabio Estevam | 1553a1e | 2008-11-12 15:38:39 +0100 | [diff] [blame] | 323 | { | 
| Sascha Hauer | 30c730f | 2009-02-16 14:36:49 +0100 | [diff] [blame] | 324 | mx31_clocks_init(26000000); | 
| Fabio Estevam | 1553a1e | 2008-11-12 15:38:39 +0100 | [diff] [blame] | 325 | } | 
|  | 326 |  | 
| Alberto Panizzo | 11a332adf | 2010-03-23 19:46:57 +0100 | [diff] [blame] | 327 | static struct sys_timer mx31_3ds_timer = { | 
|  | 328 | .init	= mx31_3ds_timer_init, | 
| Fabio Estevam | 1553a1e | 2008-11-12 15:38:39 +0100 | [diff] [blame] | 329 | }; | 
|  | 330 |  | 
|  | 331 | /* | 
|  | 332 | * The following uses standard kernel macros defined in arch.h in order to | 
| Alberto Panizzo | 11a332adf | 2010-03-23 19:46:57 +0100 | [diff] [blame] | 333 | * initialize __mach_desc_MX31_3DS data structure. | 
| Fabio Estevam | 1553a1e | 2008-11-12 15:38:39 +0100 | [diff] [blame] | 334 | */ | 
|  | 335 | MACHINE_START(MX31_3DS, "Freescale MX31PDK (3DS)") | 
|  | 336 | /* Maintainer: Freescale Semiconductor, Inc. */ | 
| Uwe Kleine-König | f568dd7 | 2009-12-09 11:57:21 +0100 | [diff] [blame] | 337 | .phys_io	= MX31_AIPS1_BASE_ADDR, | 
| Uwe Kleine-König | 321ed16 | 2009-12-10 10:41:26 +0100 | [diff] [blame] | 338 | .io_pg_offst	= (MX31_AIPS1_BASE_ADDR_VIRT >> 18) & 0xfffc, | 
| Uwe Kleine-König | 3410123 | 2010-01-29 17:36:05 +0100 | [diff] [blame] | 339 | .boot_params    = MX3x_PHYS_OFFSET + 0x100, | 
| Alberto Panizzo | 11a332adf | 2010-03-23 19:46:57 +0100 | [diff] [blame] | 340 | .map_io         = mx31_3ds_map_io, | 
| Sascha Hauer | c5aa0ad | 2009-05-25 17:36:19 +0200 | [diff] [blame] | 341 | .init_irq       = mx31_init_irq, | 
| Fabio Estevam | 1553a1e | 2008-11-12 15:38:39 +0100 | [diff] [blame] | 342 | .init_machine   = mxc_board_init, | 
| Alberto Panizzo | 11a332adf | 2010-03-23 19:46:57 +0100 | [diff] [blame] | 343 | .timer          = &mx31_3ds_timer, | 
| Fabio Estevam | 1553a1e | 2008-11-12 15:38:39 +0100 | [diff] [blame] | 344 | MACHINE_END |