Sascha Hauer | ce8ffef | 2008-07-05 10:02:52 +0200 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2008 Sascha Hauer, Pengutronix |
| 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. |
Sascha Hauer | ce8ffef | 2008-07-05 10:02:52 +0200 | [diff] [blame] | 13 | */ |
| 14 | |
| 15 | #include <linux/types.h> |
| 16 | #include <linux/init.h> |
Guennadi Liakhovetski | 32c1ad9 | 2009-06-18 12:40:48 +0200 | [diff] [blame] | 17 | #include <linux/dma-mapping.h> |
Sascha Hauer | ce8ffef | 2008-07-05 10:02:52 +0200 | [diff] [blame] | 18 | #include <linux/platform_device.h> |
| 19 | #include <linux/mtd/physmap.h> |
Sascha Hauer | 3dad21a | 2008-11-23 17:32:49 +0100 | [diff] [blame] | 20 | #include <linux/mtd/plat-ram.h> |
Sascha Hauer | ce8ffef | 2008-07-05 10:02:52 +0200 | [diff] [blame] | 21 | #include <linux/memory.h> |
Guennadi Liakhovetski | ba54b95 | 2008-11-11 15:12:00 +0100 | [diff] [blame] | 22 | #include <linux/gpio.h> |
Steve Glendinning | 4353318 | 2009-01-20 13:22:29 +0000 | [diff] [blame] | 23 | #include <linux/smsc911x.h> |
Guennadi Liakhovetski | ba54b95 | 2008-11-11 15:12:00 +0100 | [diff] [blame] | 24 | #include <linux/interrupt.h> |
Sascha Hauer | 7920675 | 2009-01-28 17:10:32 +0100 | [diff] [blame] | 25 | #include <linux/i2c.h> |
Bartosz Golaszewski | 3b8b2e1e | 2018-04-04 15:16:27 +0200 | [diff] [blame] | 26 | #include <linux/property.h> |
Sascha Hauer | dddd4a4 | 2009-03-10 11:56:10 +0100 | [diff] [blame] | 27 | #include <linux/delay.h> |
| 28 | #include <linux/spi/spi.h> |
| 29 | #include <linux/irq.h> |
Sascha Hauer | 91bf9a2 | 2009-06-23 13:21:28 +0200 | [diff] [blame] | 30 | #include <linux/can/platform/sja1000.h> |
Sascha Hauer | ee14373 | 2010-02-04 09:32:44 +0100 | [diff] [blame] | 31 | #include <linux/usb/otg.h> |
| 32 | #include <linux/usb/ulpi.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 33 | #include <linux/gfp.h> |
Sascha Hauer | 7dc3a6a | 2012-03-03 12:40:03 +0100 | [diff] [blame] | 34 | #include <linux/regulator/machine.h> |
| 35 | #include <linux/regulator/fixed.h> |
Sascha Hauer | ce8ffef | 2008-07-05 10:02:52 +0200 | [diff] [blame] | 36 | |
Sascha Hauer | ce8ffef | 2008-07-05 10:02:52 +0200 | [diff] [blame] | 37 | #include <asm/mach-types.h> |
| 38 | #include <asm/mach/arch.h> |
| 39 | #include <asm/mach/time.h> |
| 40 | #include <asm/mach/map.h> |
Sascha Hauer | ce8ffef | 2008-07-05 10:02:52 +0200 | [diff] [blame] | 41 | |
Shawn Guo | e337247 | 2012-09-13 21:01:00 +0800 | [diff] [blame] | 42 | #include "common.h" |
Uwe Kleine-König | a2ceeef | 2010-06-16 12:23:11 +0200 | [diff] [blame] | 43 | #include "devices-imx31.h" |
Shawn Guo | 641dfe8 | 2014-05-19 20:41:52 +0800 | [diff] [blame] | 44 | #include "ehci.h" |
Shawn Guo | 50f2de6 | 2012-09-14 14:14:45 +0800 | [diff] [blame] | 45 | #include "hardware.h" |
Shawn Guo | 267dd34 | 2012-09-13 13:26:00 +0800 | [diff] [blame] | 46 | #include "iomux-mx3.h" |
Guennadi Liakhovetski | 574ec54 | 2009-06-23 13:26:23 +0200 | [diff] [blame] | 47 | #include "pcm037.h" |
Shawn Guo | 39ef634 | 2012-09-13 21:46:09 +0800 | [diff] [blame] | 48 | #include "ulpi.h" |
Guennadi Liakhovetski | 574ec54 | 2009-06-23 13:26:23 +0200 | [diff] [blame] | 49 | |
| 50 | static enum pcm037_board_variant pcm037_instance = PCM037_PCM970; |
| 51 | |
| 52 | static int __init pcm037_variant_setup(char *str) |
| 53 | { |
| 54 | if (!strcmp("eet", str)) |
| 55 | pcm037_instance = PCM037_EET; |
| 56 | else if (strcmp("pcm970", str)) |
Joe Perches | 75fd32b | 2014-09-13 11:31:15 -0700 | [diff] [blame] | 57 | pr_warn("Unknown pcm037 baseboard variant %s\n", str); |
Guennadi Liakhovetski | 574ec54 | 2009-06-23 13:26:23 +0200 | [diff] [blame] | 58 | |
| 59 | return 1; |
| 60 | } |
| 61 | |
| 62 | /* Supported values: "pcm970" (default) and "eet" */ |
| 63 | __setup("pcm037_variant=", pcm037_variant_setup); |
| 64 | |
| 65 | enum pcm037_board_variant pcm037_variant(void) |
| 66 | { |
| 67 | return pcm037_instance; |
| 68 | } |
| 69 | |
| 70 | /* UART1 with RTS/CTS handshake signals */ |
| 71 | static unsigned int pcm037_uart1_handshake_pins[] = { |
| 72 | MX31_PIN_CTS1__CTS1, |
| 73 | MX31_PIN_RTS1__RTS1, |
| 74 | MX31_PIN_TXD1__TXD1, |
| 75 | MX31_PIN_RXD1__RXD1, |
| 76 | }; |
| 77 | |
| 78 | /* UART1 without RTS/CTS handshake signals */ |
| 79 | static unsigned int pcm037_uart1_pins[] = { |
| 80 | MX31_PIN_TXD1__TXD1, |
| 81 | MX31_PIN_RXD1__RXD1, |
| 82 | }; |
Sascha Hauer | 5cf0942 | 2008-09-09 10:19:41 +0200 | [diff] [blame] | 83 | |
Sascha Hauer | 01ac7d5 | 2009-03-13 19:52:41 +0100 | [diff] [blame] | 84 | static unsigned int pcm037_pins[] = { |
| 85 | /* I2C */ |
| 86 | MX31_PIN_CSPI2_MOSI__SCL, |
| 87 | MX31_PIN_CSPI2_MISO__SDA, |
Guennadi Liakhovetski | 32c1ad9 | 2009-06-18 12:40:48 +0200 | [diff] [blame] | 88 | MX31_PIN_CSPI2_SS2__I2C3_SDA, |
| 89 | MX31_PIN_CSPI2_SCLK__I2C3_SCL, |
Sascha Hauer | 01ac7d5 | 2009-03-13 19:52:41 +0100 | [diff] [blame] | 90 | /* SDHC1 */ |
| 91 | MX31_PIN_SD1_DATA3__SD1_DATA3, |
| 92 | MX31_PIN_SD1_DATA2__SD1_DATA2, |
| 93 | MX31_PIN_SD1_DATA1__SD1_DATA1, |
| 94 | MX31_PIN_SD1_DATA0__SD1_DATA0, |
| 95 | MX31_PIN_SD1_CLK__SD1_CLK, |
| 96 | MX31_PIN_SD1_CMD__SD1_CMD, |
| 97 | IOMUX_MODE(MX31_PIN_SCK6, IOMUX_CONFIG_GPIO), /* card detect */ |
| 98 | IOMUX_MODE(MX31_PIN_SFS6, IOMUX_CONFIG_GPIO), /* write protect */ |
| 99 | /* SPI1 */ |
| 100 | MX31_PIN_CSPI1_MOSI__MOSI, |
| 101 | MX31_PIN_CSPI1_MISO__MISO, |
| 102 | MX31_PIN_CSPI1_SCLK__SCLK, |
| 103 | MX31_PIN_CSPI1_SPI_RDY__SPI_RDY, |
| 104 | MX31_PIN_CSPI1_SS0__SS0, |
| 105 | MX31_PIN_CSPI1_SS1__SS1, |
| 106 | MX31_PIN_CSPI1_SS2__SS2, |
Sascha Hauer | 01ac7d5 | 2009-03-13 19:52:41 +0100 | [diff] [blame] | 107 | /* UART2 */ |
| 108 | MX31_PIN_TXD2__TXD2, |
| 109 | MX31_PIN_RXD2__RXD2, |
| 110 | MX31_PIN_CTS2__CTS2, |
| 111 | MX31_PIN_RTS2__RTS2, |
| 112 | /* UART3 */ |
| 113 | MX31_PIN_CSPI3_MOSI__RXD3, |
| 114 | MX31_PIN_CSPI3_MISO__TXD3, |
| 115 | MX31_PIN_CSPI3_SCLK__RTS3, |
| 116 | MX31_PIN_CSPI3_SPI_RDY__CTS3, |
| 117 | /* LAN9217 irq pin */ |
| 118 | IOMUX_MODE(MX31_PIN_GPIO3_1, IOMUX_CONFIG_GPIO), |
| 119 | /* Onewire */ |
| 120 | MX31_PIN_BATT_LINE__OWIRE, |
| 121 | /* Framebuffer */ |
| 122 | MX31_PIN_LD0__LD0, |
| 123 | MX31_PIN_LD1__LD1, |
| 124 | MX31_PIN_LD2__LD2, |
| 125 | MX31_PIN_LD3__LD3, |
| 126 | MX31_PIN_LD4__LD4, |
| 127 | MX31_PIN_LD5__LD5, |
| 128 | MX31_PIN_LD6__LD6, |
| 129 | MX31_PIN_LD7__LD7, |
| 130 | MX31_PIN_LD8__LD8, |
| 131 | MX31_PIN_LD9__LD9, |
| 132 | MX31_PIN_LD10__LD10, |
| 133 | MX31_PIN_LD11__LD11, |
| 134 | MX31_PIN_LD12__LD12, |
| 135 | MX31_PIN_LD13__LD13, |
| 136 | MX31_PIN_LD14__LD14, |
| 137 | MX31_PIN_LD15__LD15, |
| 138 | MX31_PIN_LD16__LD16, |
| 139 | MX31_PIN_LD17__LD17, |
| 140 | MX31_PIN_VSYNC3__VSYNC3, |
| 141 | MX31_PIN_HSYNC__HSYNC, |
| 142 | MX31_PIN_FPSHIFT__FPSHIFT, |
| 143 | MX31_PIN_DRDY0__DRDY0, |
| 144 | MX31_PIN_D3_REV__D3_REV, |
| 145 | MX31_PIN_CONTRAST__CONTRAST, |
| 146 | MX31_PIN_D3_SPL__D3_SPL, |
| 147 | MX31_PIN_D3_CLS__D3_CLS, |
Alexander Kurz | d7b5ccc | 2016-07-02 14:02:31 +0200 | [diff] [blame] | 148 | MX31_PIN_LCS0__GPIO3_23, |
Luotao Fu | e0fd4db | 2009-06-18 16:44:18 +0200 | [diff] [blame] | 149 | /* GPIO */ |
| 150 | IOMUX_MODE(MX31_PIN_ATA_DMACK, IOMUX_CONFIG_GPIO), |
Sascha Hauer | ee14373 | 2010-02-04 09:32:44 +0100 | [diff] [blame] | 151 | /* OTG */ |
Guennadi Liakhovetski | eb05bbe | 2009-05-04 13:13:52 +0200 | [diff] [blame] | 152 | MX31_PIN_USBOTG_DATA0__USBOTG_DATA0, |
| 153 | MX31_PIN_USBOTG_DATA1__USBOTG_DATA1, |
| 154 | MX31_PIN_USBOTG_DATA2__USBOTG_DATA2, |
| 155 | MX31_PIN_USBOTG_DATA3__USBOTG_DATA3, |
| 156 | MX31_PIN_USBOTG_DATA4__USBOTG_DATA4, |
| 157 | MX31_PIN_USBOTG_DATA5__USBOTG_DATA5, |
| 158 | MX31_PIN_USBOTG_DATA6__USBOTG_DATA6, |
| 159 | MX31_PIN_USBOTG_DATA7__USBOTG_DATA7, |
| 160 | MX31_PIN_USBOTG_CLK__USBOTG_CLK, |
| 161 | MX31_PIN_USBOTG_DIR__USBOTG_DIR, |
| 162 | MX31_PIN_USBOTG_NXT__USBOTG_NXT, |
| 163 | MX31_PIN_USBOTG_STP__USBOTG_STP, |
Sascha Hauer | ee14373 | 2010-02-04 09:32:44 +0100 | [diff] [blame] | 164 | /* USB host 2 */ |
| 165 | IOMUX_MODE(MX31_PIN_USBH2_CLK, IOMUX_CONFIG_FUNC), |
| 166 | IOMUX_MODE(MX31_PIN_USBH2_DIR, IOMUX_CONFIG_FUNC), |
| 167 | IOMUX_MODE(MX31_PIN_USBH2_NXT, IOMUX_CONFIG_FUNC), |
| 168 | IOMUX_MODE(MX31_PIN_USBH2_STP, IOMUX_CONFIG_FUNC), |
| 169 | IOMUX_MODE(MX31_PIN_USBH2_DATA0, IOMUX_CONFIG_FUNC), |
| 170 | IOMUX_MODE(MX31_PIN_USBH2_DATA1, IOMUX_CONFIG_FUNC), |
| 171 | IOMUX_MODE(MX31_PIN_STXD3, IOMUX_CONFIG_FUNC), |
| 172 | IOMUX_MODE(MX31_PIN_SRXD3, IOMUX_CONFIG_FUNC), |
| 173 | IOMUX_MODE(MX31_PIN_SCK3, IOMUX_CONFIG_FUNC), |
| 174 | IOMUX_MODE(MX31_PIN_SFS3, IOMUX_CONFIG_FUNC), |
| 175 | IOMUX_MODE(MX31_PIN_STXD6, IOMUX_CONFIG_FUNC), |
| 176 | IOMUX_MODE(MX31_PIN_SRXD6, IOMUX_CONFIG_FUNC), |
Guennadi Liakhovetski | eb05bbe | 2009-05-04 13:13:52 +0200 | [diff] [blame] | 177 | }; |
| 178 | |
Sascha Hauer | ee14373 | 2010-02-04 09:32:44 +0100 | [diff] [blame] | 179 | static struct physmap_flash_data pcm037_flash_data = { |
| 180 | .width = 2, |
| 181 | }; |
Guennadi Liakhovetski | eb05bbe | 2009-05-04 13:13:52 +0200 | [diff] [blame] | 182 | |
Sascha Hauer | ee14373 | 2010-02-04 09:32:44 +0100 | [diff] [blame] | 183 | static struct resource pcm037_flash_resource = { |
| 184 | .start = 0xa0000000, |
| 185 | .end = 0xa1ffffff, |
| 186 | .flags = IORESOURCE_MEM, |
Guennadi Liakhovetski | eb05bbe | 2009-05-04 13:13:52 +0200 | [diff] [blame] | 187 | }; |
| 188 | |
Sascha Hauer | ce8ffef | 2008-07-05 10:02:52 +0200 | [diff] [blame] | 189 | static struct platform_device pcm037_flash = { |
| 190 | .name = "physmap-flash", |
| 191 | .id = 0, |
| 192 | .dev = { |
| 193 | .platform_data = &pcm037_flash_data, |
| 194 | }, |
| 195 | .resource = &pcm037_flash_resource, |
| 196 | .num_resources = 1, |
| 197 | }; |
| 198 | |
Uwe Kleine-König | 16cf5c4 | 2010-06-23 11:46:16 +0200 | [diff] [blame] | 199 | static const struct imxuart_platform_data uart_pdata __initconst = { |
Sascha Hauer | a9b0623 | 2008-09-02 10:19:29 +0200 | [diff] [blame] | 200 | .flags = IMXUART_HAVE_RTSCTS, |
Sascha Hauer | ce8ffef | 2008-07-05 10:02:52 +0200 | [diff] [blame] | 201 | }; |
| 202 | |
Steve Glendinning | 4353318 | 2009-01-20 13:22:29 +0000 | [diff] [blame] | 203 | static struct resource smsc911x_resources[] = { |
Sascha Hauer | 3f4f54b | 2009-06-23 12:12:00 +0200 | [diff] [blame] | 204 | { |
Uwe Kleine-König | f568dd7 | 2009-12-09 11:57:21 +0100 | [diff] [blame] | 205 | .start = MX31_CS1_BASE_ADDR + 0x300, |
| 206 | .end = MX31_CS1_BASE_ADDR + 0x300 + SZ_64K - 1, |
Guennadi Liakhovetski | ba54b95 | 2008-11-11 15:12:00 +0100 | [diff] [blame] | 207 | .flags = IORESOURCE_MEM, |
Sascha Hauer | 3f4f54b | 2009-06-23 12:12:00 +0200 | [diff] [blame] | 208 | }, { |
Shawn Guo | ed17534 | 2011-12-02 20:00:33 +0800 | [diff] [blame] | 209 | /* irq number is run-time assigned */ |
Steve Glendinning | 4353318 | 2009-01-20 13:22:29 +0000 | [diff] [blame] | 210 | .flags = IORESOURCE_IRQ | IORESOURCE_IRQ_LOWLEVEL, |
Guennadi Liakhovetski | ba54b95 | 2008-11-11 15:12:00 +0100 | [diff] [blame] | 211 | }, |
| 212 | }; |
| 213 | |
Steve Glendinning | 4353318 | 2009-01-20 13:22:29 +0000 | [diff] [blame] | 214 | static struct smsc911x_platform_config smsc911x_info = { |
| 215 | .flags = SMSC911X_USE_32BIT | SMSC911X_FORCE_INTERNAL_PHY | |
| 216 | SMSC911X_SAVE_MAC_ADDRESS, |
| 217 | .irq_polarity = SMSC911X_IRQ_POLARITY_ACTIVE_LOW, |
| 218 | .irq_type = SMSC911X_IRQ_TYPE_OPEN_DRAIN, |
| 219 | .phy_interface = PHY_INTERFACE_MODE_MII, |
Guennadi Liakhovetski | ba54b95 | 2008-11-11 15:12:00 +0100 | [diff] [blame] | 220 | }; |
| 221 | |
| 222 | static struct platform_device pcm037_eth = { |
Steve Glendinning | 4353318 | 2009-01-20 13:22:29 +0000 | [diff] [blame] | 223 | .name = "smsc911x", |
Guennadi Liakhovetski | ba54b95 | 2008-11-11 15:12:00 +0100 | [diff] [blame] | 224 | .id = -1, |
Steve Glendinning | 4353318 | 2009-01-20 13:22:29 +0000 | [diff] [blame] | 225 | .num_resources = ARRAY_SIZE(smsc911x_resources), |
| 226 | .resource = smsc911x_resources, |
Guennadi Liakhovetski | ba54b95 | 2008-11-11 15:12:00 +0100 | [diff] [blame] | 227 | .dev = { |
Steve Glendinning | 4353318 | 2009-01-20 13:22:29 +0000 | [diff] [blame] | 228 | .platform_data = &smsc911x_info, |
Guennadi Liakhovetski | ba54b95 | 2008-11-11 15:12:00 +0100 | [diff] [blame] | 229 | }, |
| 230 | }; |
| 231 | |
Sascha Hauer | 3dad21a | 2008-11-23 17:32:49 +0100 | [diff] [blame] | 232 | static struct platdata_mtd_ram pcm038_sram_data = { |
| 233 | .bankwidth = 2, |
| 234 | }; |
| 235 | |
| 236 | static struct resource pcm038_sram_resource = { |
Uwe Kleine-König | f568dd7 | 2009-12-09 11:57:21 +0100 | [diff] [blame] | 237 | .start = MX31_CS4_BASE_ADDR, |
| 238 | .end = MX31_CS4_BASE_ADDR + 512 * 1024 - 1, |
Sascha Hauer | 3dad21a | 2008-11-23 17:32:49 +0100 | [diff] [blame] | 239 | .flags = IORESOURCE_MEM, |
| 240 | }; |
| 241 | |
| 242 | static struct platform_device pcm037_sram_device = { |
| 243 | .name = "mtd-ram", |
| 244 | .id = 0, |
| 245 | .dev = { |
| 246 | .platform_data = &pcm038_sram_data, |
| 247 | }, |
| 248 | .num_resources = 1, |
| 249 | .resource = &pcm038_sram_resource, |
| 250 | }; |
| 251 | |
Uwe Kleine-König | a2ceeef | 2010-06-16 12:23:11 +0200 | [diff] [blame] | 252 | static const struct mxc_nand_platform_data |
| 253 | pcm037_nand_board_info __initconst = { |
Sascha Hauer | 3287abb | 2008-11-23 17:34:04 +0100 | [diff] [blame] | 254 | .width = 1, |
| 255 | .hw_ecc = 1, |
| 256 | }; |
| 257 | |
Uwe Kleine-König | 4a9b8b0 | 2010-06-16 18:03:05 +0200 | [diff] [blame] | 258 | static const struct imxi2c_platform_data pcm037_i2c1_data __initconst = { |
Sascha Hauer | 7920675 | 2009-01-28 17:10:32 +0100 | [diff] [blame] | 259 | .bitrate = 100000, |
Sascha Hauer | 7920675 | 2009-01-28 17:10:32 +0100 | [diff] [blame] | 260 | }; |
| 261 | |
Uwe Kleine-König | 4a9b8b0 | 2010-06-16 18:03:05 +0200 | [diff] [blame] | 262 | static const struct imxi2c_platform_data pcm037_i2c2_data __initconst = { |
Guennadi Liakhovetski | 32c1ad9 | 2009-06-18 12:40:48 +0200 | [diff] [blame] | 263 | .bitrate = 20000, |
| 264 | }; |
| 265 | |
Bartosz Golaszewski | 3b8b2e1e | 2018-04-04 15:16:27 +0200 | [diff] [blame] | 266 | static const struct property_entry board_eeprom_properties[] = { |
| 267 | PROPERTY_ENTRY_U32("pagesize", 32), |
| 268 | { } |
Sascha Hauer | 7920675 | 2009-01-28 17:10:32 +0100 | [diff] [blame] | 269 | }; |
| 270 | |
| 271 | static struct i2c_board_info pcm037_i2c_devices[] = { |
Guennadi Liakhovetski | 32c1ad9 | 2009-06-18 12:40:48 +0200 | [diff] [blame] | 272 | { |
Bartosz Golaszewski | 3b8b2e1e | 2018-04-04 15:16:27 +0200 | [diff] [blame] | 273 | I2C_BOARD_INFO("24c32", 0x52), /* E0=0, E1=1, E2=0 */ |
| 274 | .properties = board_eeprom_properties, |
Sascha Hauer | 7920675 | 2009-01-28 17:10:32 +0100 | [diff] [blame] | 275 | }, { |
Sascha Hauer | cf87a6e | 2009-07-20 08:18:47 +0200 | [diff] [blame] | 276 | I2C_BOARD_INFO("pcf8563", 0x51), |
Sascha Hauer | 7920675 | 2009-01-28 17:10:32 +0100 | [diff] [blame] | 277 | } |
| 278 | }; |
Guennadi Liakhovetski | 32c1ad9 | 2009-06-18 12:40:48 +0200 | [diff] [blame] | 279 | |
Sascha Hauer | dddd4a4 | 2009-03-10 11:56:10 +0100 | [diff] [blame] | 280 | /* Not connected by default */ |
| 281 | #ifdef PCM970_SDHC_RW_SWITCH |
| 282 | static int pcm970_sdhc1_get_ro(struct device *dev) |
Sascha Hauer | f2cb641 | 2008-11-11 15:03:28 +0100 | [diff] [blame] | 283 | { |
Sascha Hauer | dddd4a4 | 2009-03-10 11:56:10 +0100 | [diff] [blame] | 284 | return gpio_get_value(IOMUX_TO_GPIO(MX31_PIN_SFS6)); |
| 285 | } |
| 286 | #endif |
| 287 | |
Sascha Hauer | 4f163eb | 2009-05-06 12:55:50 +0200 | [diff] [blame] | 288 | #define SDHC1_GPIO_WP IOMUX_TO_GPIO(MX31_PIN_SFS6) |
| 289 | #define SDHC1_GPIO_DET IOMUX_TO_GPIO(MX31_PIN_SCK6) |
| 290 | |
Sascha Hauer | dddd4a4 | 2009-03-10 11:56:10 +0100 | [diff] [blame] | 291 | static int pcm970_sdhc1_init(struct device *dev, irq_handler_t detect_irq, |
| 292 | void *data) |
| 293 | { |
| 294 | int ret; |
Sascha Hauer | dddd4a4 | 2009-03-10 11:56:10 +0100 | [diff] [blame] | 295 | |
Sascha Hauer | 4f163eb | 2009-05-06 12:55:50 +0200 | [diff] [blame] | 296 | ret = gpio_request(SDHC1_GPIO_DET, "sdhc-detect"); |
| 297 | if (ret) |
| 298 | return ret; |
Sascha Hauer | dddd4a4 | 2009-03-10 11:56:10 +0100 | [diff] [blame] | 299 | |
Sascha Hauer | 4f163eb | 2009-05-06 12:55:50 +0200 | [diff] [blame] | 300 | gpio_direction_input(SDHC1_GPIO_DET); |
| 301 | |
| 302 | #ifdef PCM970_SDHC_RW_SWITCH |
| 303 | ret = gpio_request(SDHC1_GPIO_WP, "sdhc-wp"); |
| 304 | if (ret) |
| 305 | goto err_gpio_free; |
| 306 | gpio_direction_input(SDHC1_GPIO_WP); |
| 307 | #endif |
Sascha Hauer | dddd4a4 | 2009-03-10 11:56:10 +0100 | [diff] [blame] | 308 | |
Shawn Guo | ed17534 | 2011-12-02 20:00:33 +0800 | [diff] [blame] | 309 | ret = request_irq(gpio_to_irq(IOMUX_TO_GPIO(MX31_PIN_SCK6)), detect_irq, |
Michael Opdenacker | 4c1dd3e | 2013-09-04 07:04:39 +0200 | [diff] [blame] | 310 | IRQF_TRIGGER_FALLING, "sdhc-detect", data); |
Sascha Hauer | 4f163eb | 2009-05-06 12:55:50 +0200 | [diff] [blame] | 311 | if (ret) |
| 312 | goto err_gpio_free_2; |
| 313 | |
| 314 | return 0; |
| 315 | |
| 316 | err_gpio_free_2: |
| 317 | #ifdef PCM970_SDHC_RW_SWITCH |
| 318 | gpio_free(SDHC1_GPIO_WP); |
| 319 | err_gpio_free: |
| 320 | #endif |
| 321 | gpio_free(SDHC1_GPIO_DET); |
| 322 | |
Sascha Hauer | dddd4a4 | 2009-03-10 11:56:10 +0100 | [diff] [blame] | 323 | return ret; |
Sascha Hauer | f2cb641 | 2008-11-11 15:03:28 +0100 | [diff] [blame] | 324 | } |
| 325 | |
| 326 | static void pcm970_sdhc1_exit(struct device *dev, void *data) |
| 327 | { |
Shawn Guo | ed17534 | 2011-12-02 20:00:33 +0800 | [diff] [blame] | 328 | free_irq(gpio_to_irq(IOMUX_TO_GPIO(MX31_PIN_SCK6)), data); |
Sascha Hauer | 4f163eb | 2009-05-06 12:55:50 +0200 | [diff] [blame] | 329 | gpio_free(SDHC1_GPIO_DET); |
| 330 | gpio_free(SDHC1_GPIO_WP); |
Sascha Hauer | f2cb641 | 2008-11-11 15:03:28 +0100 | [diff] [blame] | 331 | } |
| 332 | |
Uwe Kleine-König | 6a697e3 | 2010-11-12 11:10:55 +0100 | [diff] [blame] | 333 | static const struct imxmmc_platform_data sdhc_pdata __initconst = { |
Sascha Hauer | dddd4a4 | 2009-03-10 11:56:10 +0100 | [diff] [blame] | 334 | #ifdef PCM970_SDHC_RW_SWITCH |
| 335 | .get_ro = pcm970_sdhc1_get_ro, |
| 336 | #endif |
Sascha Hauer | f2cb641 | 2008-11-11 15:03:28 +0100 | [diff] [blame] | 337 | .init = pcm970_sdhc1_init, |
| 338 | .exit = pcm970_sdhc1_exit, |
| 339 | }; |
| 340 | |
Sascha Hauer | ce8ffef | 2008-07-05 10:02:52 +0200 | [diff] [blame] | 341 | static struct platform_device *devices[] __initdata = { |
| 342 | &pcm037_flash, |
Sascha Hauer | 3dad21a | 2008-11-23 17:32:49 +0100 | [diff] [blame] | 343 | &pcm037_sram_device, |
Sascha Hauer | ce8ffef | 2008-07-05 10:02:52 +0200 | [diff] [blame] | 344 | }; |
| 345 | |
Guennadi Liakhovetski | a8df0ee | 2009-04-15 14:32:52 +0200 | [diff] [blame] | 346 | static const struct fb_videomode fb_modedb[] = { |
| 347 | { |
| 348 | /* 240x320 @ 60 Hz Sharp */ |
| 349 | .name = "Sharp-LQ035Q7DH06-QVGA", |
| 350 | .refresh = 60, |
| 351 | .xres = 240, |
| 352 | .yres = 320, |
| 353 | .pixclock = 185925, |
| 354 | .left_margin = 9, |
| 355 | .right_margin = 16, |
| 356 | .upper_margin = 7, |
| 357 | .lower_margin = 9, |
| 358 | .hsync_len = 1, |
| 359 | .vsync_len = 1, |
| 360 | .sync = FB_SYNC_HOR_HIGH_ACT | FB_SYNC_SHARP_MODE | |
| 361 | FB_SYNC_CLK_INVERT | FB_SYNC_CLK_IDLE_EN, |
| 362 | .vmode = FB_VMODE_NONINTERLACED, |
| 363 | .flag = 0, |
| 364 | }, { |
| 365 | /* 240x320 @ 60 Hz */ |
| 366 | .name = "TX090", |
| 367 | .refresh = 60, |
| 368 | .xres = 240, |
| 369 | .yres = 320, |
| 370 | .pixclock = 38255, |
| 371 | .left_margin = 144, |
| 372 | .right_margin = 0, |
| 373 | .upper_margin = 7, |
| 374 | .lower_margin = 40, |
| 375 | .hsync_len = 96, |
| 376 | .vsync_len = 1, |
| 377 | .sync = FB_SYNC_VERT_HIGH_ACT | FB_SYNC_OE_ACT_HIGH, |
| 378 | .vmode = FB_VMODE_NONINTERLACED, |
| 379 | .flag = 0, |
Guennadi Liakhovetski | 574ec54 | 2009-06-23 13:26:23 +0200 | [diff] [blame] | 380 | }, { |
| 381 | /* 240x320 @ 60 Hz */ |
| 382 | .name = "CMEL-OLED", |
| 383 | .refresh = 60, |
| 384 | .xres = 240, |
| 385 | .yres = 320, |
| 386 | .pixclock = 185925, |
| 387 | .left_margin = 9, |
| 388 | .right_margin = 16, |
| 389 | .upper_margin = 7, |
| 390 | .lower_margin = 9, |
| 391 | .hsync_len = 1, |
| 392 | .vsync_len = 1, |
| 393 | .sync = FB_SYNC_OE_ACT_HIGH | FB_SYNC_CLK_INVERT, |
| 394 | .vmode = FB_VMODE_NONINTERLACED, |
| 395 | .flag = 0, |
Guennadi Liakhovetski | a8df0ee | 2009-04-15 14:32:52 +0200 | [diff] [blame] | 396 | }, |
| 397 | }; |
| 398 | |
| 399 | static struct mx3fb_platform_data mx3fb_pdata = { |
Guennadi Liakhovetski | a8df0ee | 2009-04-15 14:32:52 +0200 | [diff] [blame] | 400 | .name = "Sharp-LQ035Q7DH06-QVGA", |
| 401 | .mode = fb_modedb, |
| 402 | .num_modes = ARRAY_SIZE(fb_modedb), |
| 403 | }; |
| 404 | |
Sascha Hauer | 91bf9a2 | 2009-06-23 13:21:28 +0200 | [diff] [blame] | 405 | static struct resource pcm970_sja1000_resources[] = { |
| 406 | { |
Uwe Kleine-König | f568dd7 | 2009-12-09 11:57:21 +0100 | [diff] [blame] | 407 | .start = MX31_CS5_BASE_ADDR, |
| 408 | .end = MX31_CS5_BASE_ADDR + 0x100 - 1, |
Sascha Hauer | 91bf9a2 | 2009-06-23 13:21:28 +0200 | [diff] [blame] | 409 | .flags = IORESOURCE_MEM, |
| 410 | }, { |
Shawn Guo | ed17534 | 2011-12-02 20:00:33 +0800 | [diff] [blame] | 411 | /* irq number is run-time assigned */ |
Sascha Hauer | 91bf9a2 | 2009-06-23 13:21:28 +0200 | [diff] [blame] | 412 | .flags = IORESOURCE_IRQ | IORESOURCE_IRQ_LOWEDGE, |
| 413 | }, |
| 414 | }; |
| 415 | |
| 416 | struct sja1000_platform_data pcm970_sja1000_platform_data = { |
Wolfgang Grandegger | 56e6943b9 | 2010-05-17 22:39:48 -0700 | [diff] [blame] | 417 | .osc_freq = 16000000, |
| 418 | .ocr = OCR_TX1_PULLDOWN | OCR_TX0_PUSHPULL, |
| 419 | .cdr = CDR_CBP, |
Sascha Hauer | 91bf9a2 | 2009-06-23 13:21:28 +0200 | [diff] [blame] | 420 | }; |
| 421 | |
| 422 | static struct platform_device pcm970_sja1000 = { |
| 423 | .name = "sja1000_platform", |
| 424 | .dev = { |
| 425 | .platform_data = &pcm970_sja1000_platform_data, |
| 426 | }, |
| 427 | .resource = pcm970_sja1000_resources, |
| 428 | .num_resources = ARRAY_SIZE(pcm970_sja1000_resources), |
| 429 | }; |
| 430 | |
Sascha Hauer | 4bd597b | 2011-01-03 11:30:28 +0100 | [diff] [blame] | 431 | static int pcm037_otg_init(struct platform_device *pdev) |
| 432 | { |
| 433 | return mx31_initialize_usb_hw(pdev->id, MXC_EHCI_INTERFACE_DIFF_UNI); |
| 434 | } |
| 435 | |
Uwe Kleine-König | 2d58de2 | 2010-11-15 11:57:49 +0100 | [diff] [blame] | 436 | static struct mxc_usbh_platform_data otg_pdata __initdata = { |
Sascha Hauer | 4bd597b | 2011-01-03 11:30:28 +0100 | [diff] [blame] | 437 | .init = pcm037_otg_init, |
Sascha Hauer | ee14373 | 2010-02-04 09:32:44 +0100 | [diff] [blame] | 438 | .portsc = MXC_EHCI_MODE_ULPI, |
Sascha Hauer | ee14373 | 2010-02-04 09:32:44 +0100 | [diff] [blame] | 439 | }; |
| 440 | |
Sascha Hauer | 4bd597b | 2011-01-03 11:30:28 +0100 | [diff] [blame] | 441 | static int pcm037_usbh2_init(struct platform_device *pdev) |
| 442 | { |
| 443 | return mx31_initialize_usb_hw(pdev->id, MXC_EHCI_INTERFACE_DIFF_UNI); |
| 444 | } |
| 445 | |
Uwe Kleine-König | 2d58de2 | 2010-11-15 11:57:49 +0100 | [diff] [blame] | 446 | static struct mxc_usbh_platform_data usbh2_pdata __initdata = { |
Sascha Hauer | 4bd597b | 2011-01-03 11:30:28 +0100 | [diff] [blame] | 447 | .init = pcm037_usbh2_init, |
Sascha Hauer | ee14373 | 2010-02-04 09:32:44 +0100 | [diff] [blame] | 448 | .portsc = MXC_EHCI_MODE_ULPI, |
Sascha Hauer | ee14373 | 2010-02-04 09:32:44 +0100 | [diff] [blame] | 449 | }; |
| 450 | |
Uwe Kleine-König | 9e1dde3 | 2010-11-12 16:40:06 +0100 | [diff] [blame] | 451 | static const struct fsl_usb2_platform_data otg_device_pdata __initconst = { |
Sascha Hauer | ee14373 | 2010-02-04 09:32:44 +0100 | [diff] [blame] | 452 | .operating_mode = FSL_USB2_DR_DEVICE, |
| 453 | .phy_mode = FSL_USB2_PHY_ULPI, |
| 454 | }; |
| 455 | |
Benoît Thébaudeau | 33a264d | 2012-06-12 19:46:43 +0200 | [diff] [blame] | 456 | static bool otg_mode_host __initdata; |
Sascha Hauer | ee14373 | 2010-02-04 09:32:44 +0100 | [diff] [blame] | 457 | |
| 458 | static int __init pcm037_otg_mode(char *options) |
| 459 | { |
| 460 | if (!strcmp(options, "host")) |
Benoît Thébaudeau | 33a264d | 2012-06-12 19:46:43 +0200 | [diff] [blame] | 461 | otg_mode_host = true; |
Sascha Hauer | ee14373 | 2010-02-04 09:32:44 +0100 | [diff] [blame] | 462 | else if (!strcmp(options, "device")) |
Benoît Thébaudeau | 33a264d | 2012-06-12 19:46:43 +0200 | [diff] [blame] | 463 | otg_mode_host = false; |
Sascha Hauer | ee14373 | 2010-02-04 09:32:44 +0100 | [diff] [blame] | 464 | else |
| 465 | pr_info("otg_mode neither \"host\" nor \"device\". " |
| 466 | "Defaulting to device\n"); |
Benoît Thébaudeau | 33a264d | 2012-06-12 19:46:43 +0200 | [diff] [blame] | 467 | return 1; |
Sascha Hauer | ee14373 | 2010-02-04 09:32:44 +0100 | [diff] [blame] | 468 | } |
| 469 | __setup("otg_mode=", pcm037_otg_mode); |
| 470 | |
Sascha Hauer | 7dc3a6a | 2012-03-03 12:40:03 +0100 | [diff] [blame] | 471 | static struct regulator_consumer_supply dummy_supplies[] = { |
| 472 | REGULATOR_SUPPLY("vdd33a", "smsc911x"), |
| 473 | REGULATOR_SUPPLY("vddvario", "smsc911x"), |
| 474 | }; |
| 475 | |
Sascha Hauer | ce8ffef | 2008-07-05 10:02:52 +0200 | [diff] [blame] | 476 | /* |
| 477 | * Board specific initialization. |
| 478 | */ |
Uwe Kleine-König | e134fb2 | 2011-02-11 10:23:19 +0100 | [diff] [blame] | 479 | static void __init pcm037_init(void) |
Sascha Hauer | ce8ffef | 2008-07-05 10:02:52 +0200 | [diff] [blame] | 480 | { |
Shawn Guo | b78d8e5 | 2011-06-06 00:07:55 +0800 | [diff] [blame] | 481 | imx31_soc_init(); |
| 482 | |
Sascha Hauer | 7dc3a6a | 2012-03-03 12:40:03 +0100 | [diff] [blame] | 483 | regulator_register_fixed(0, dummy_supplies, ARRAY_SIZE(dummy_supplies)); |
| 484 | |
Sascha Hauer | ee14373 | 2010-02-04 09:32:44 +0100 | [diff] [blame] | 485 | mxc_iomux_set_gpr(MUX_PGP_UH2, 1); |
Sascha Hauer | 4f163eb | 2009-05-06 12:55:50 +0200 | [diff] [blame] | 486 | |
Sascha Hauer | 01ac7d5 | 2009-03-13 19:52:41 +0100 | [diff] [blame] | 487 | mxc_iomux_setup_multiple_pins(pcm037_pins, ARRAY_SIZE(pcm037_pins), |
| 488 | "pcm037"); |
| 489 | |
Sascha Hauer | ee14373 | 2010-02-04 09:32:44 +0100 | [diff] [blame] | 490 | #define H2_PAD_CFG (PAD_CTL_DRV_MAX | PAD_CTL_SRE_FAST | PAD_CTL_HYS_CMOS \ |
| 491 | | PAD_CTL_ODE_CMOS | PAD_CTL_100K_PU) |
| 492 | |
| 493 | mxc_iomux_set_pad(MX31_PIN_USBH2_CLK, H2_PAD_CFG); |
| 494 | mxc_iomux_set_pad(MX31_PIN_USBH2_DIR, H2_PAD_CFG); |
| 495 | mxc_iomux_set_pad(MX31_PIN_USBH2_NXT, H2_PAD_CFG); |
| 496 | mxc_iomux_set_pad(MX31_PIN_USBH2_STP, H2_PAD_CFG); |
| 497 | mxc_iomux_set_pad(MX31_PIN_USBH2_DATA0, H2_PAD_CFG); /* USBH2_DATA0 */ |
| 498 | mxc_iomux_set_pad(MX31_PIN_USBH2_DATA1, H2_PAD_CFG); /* USBH2_DATA1 */ |
| 499 | mxc_iomux_set_pad(MX31_PIN_SRXD6, H2_PAD_CFG); /* USBH2_DATA2 */ |
| 500 | mxc_iomux_set_pad(MX31_PIN_STXD6, H2_PAD_CFG); /* USBH2_DATA3 */ |
| 501 | mxc_iomux_set_pad(MX31_PIN_SFS3, H2_PAD_CFG); /* USBH2_DATA4 */ |
| 502 | mxc_iomux_set_pad(MX31_PIN_SCK3, H2_PAD_CFG); /* USBH2_DATA5 */ |
| 503 | mxc_iomux_set_pad(MX31_PIN_SRXD3, H2_PAD_CFG); /* USBH2_DATA6 */ |
| 504 | mxc_iomux_set_pad(MX31_PIN_STXD3, H2_PAD_CFG); /* USBH2_DATA7 */ |
| 505 | |
Guennadi Liakhovetski | 574ec54 | 2009-06-23 13:26:23 +0200 | [diff] [blame] | 506 | if (pcm037_variant() == PCM037_EET) |
| 507 | mxc_iomux_setup_multiple_pins(pcm037_uart1_pins, |
| 508 | ARRAY_SIZE(pcm037_uart1_pins), "pcm037_uart1"); |
| 509 | else |
| 510 | mxc_iomux_setup_multiple_pins(pcm037_uart1_handshake_pins, |
| 511 | ARRAY_SIZE(pcm037_uart1_handshake_pins), |
| 512 | "pcm037_uart1"); |
| 513 | |
Sascha Hauer | ce8ffef | 2008-07-05 10:02:52 +0200 | [diff] [blame] | 514 | platform_add_devices(devices, ARRAY_SIZE(devices)); |
| 515 | |
Benoît Thébaudeau | bec31a8 | 2012-07-04 16:35:54 +0200 | [diff] [blame] | 516 | imx31_add_imx2_wdt(); |
Uwe Kleine-König | 16cf5c4 | 2010-06-23 11:46:16 +0200 | [diff] [blame] | 517 | imx31_add_imx_uart0(&uart_pdata); |
| 518 | /* XXX: should't this have .flags = 0 (i.e. no RTSCTS) on PCM037_EET? */ |
| 519 | imx31_add_imx_uart1(&uart_pdata); |
| 520 | imx31_add_imx_uart2(&uart_pdata); |
Sascha Hauer | d517cab | 2008-12-01 14:15:40 -0800 | [diff] [blame] | 521 | |
Benoît Thébaudeau | bec31a8 | 2012-07-04 16:35:54 +0200 | [diff] [blame] | 522 | imx31_add_mxc_w1(); |
Guennadi Liakhovetski | ba54b95 | 2008-11-11 15:12:00 +0100 | [diff] [blame] | 523 | |
Guennadi Liakhovetski | 32c1ad9 | 2009-06-18 12:40:48 +0200 | [diff] [blame] | 524 | /* I2C adapters and devices */ |
Sascha Hauer | 7920675 | 2009-01-28 17:10:32 +0100 | [diff] [blame] | 525 | i2c_register_board_info(1, pcm037_i2c_devices, |
| 526 | ARRAY_SIZE(pcm037_i2c_devices)); |
| 527 | |
Uwe Kleine-König | 4a9b8b0 | 2010-06-16 18:03:05 +0200 | [diff] [blame] | 528 | imx31_add_imx_i2c1(&pcm037_i2c1_data); |
| 529 | imx31_add_imx_i2c2(&pcm037_i2c2_data); |
Guennadi Liakhovetski | 32c1ad9 | 2009-06-18 12:40:48 +0200 | [diff] [blame] | 530 | |
Uwe Kleine-König | a2ceeef | 2010-06-16 12:23:11 +0200 | [diff] [blame] | 531 | imx31_add_mxc_nand(&pcm037_nand_board_info); |
Shawn Guo | 88289c8 | 2012-06-13 14:07:31 +0800 | [diff] [blame] | 532 | imx31_add_ipu_core(); |
Uwe Kleine-König | afa77ef | 2011-03-03 21:32:02 +0100 | [diff] [blame] | 533 | imx31_add_mx3_sdc_fb(&mx3fb_pdata); |
Guennadi Liakhovetski | 32c1ad9 | 2009-06-18 12:40:48 +0200 | [diff] [blame] | 534 | |
Vladimir Zapolskiy | 347aa6c | 2016-09-19 04:37:17 +0300 | [diff] [blame] | 535 | if (otg_mode_host) { |
| 536 | otg_pdata.otg = imx_otg_ulpi_create(ULPI_OTG_DRVVBUS | |
| 537 | ULPI_OTG_DRVVBUS_EXT); |
| 538 | if (otg_pdata.otg) |
| 539 | imx31_add_mxc_ehci_otg(&otg_pdata); |
| 540 | } |
| 541 | |
| 542 | usbh2_pdata.otg = imx_otg_ulpi_create(ULPI_OTG_DRVVBUS | |
| 543 | ULPI_OTG_DRVVBUS_EXT); |
| 544 | if (usbh2_pdata.otg) |
| 545 | imx31_add_mxc_ehci_hs(2, &usbh2_pdata); |
| 546 | |
| 547 | if (!otg_mode_host) |
| 548 | imx31_add_fsl_usb2_udc(&otg_device_pdata); |
| 549 | } |
| 550 | |
| 551 | static void __init pcm037_timer_init(void) |
| 552 | { |
| 553 | mx31_clocks_init(26000000); |
| 554 | } |
| 555 | |
Vladimir Zapolskiy | 347aa6c | 2016-09-19 04:37:17 +0300 | [diff] [blame] | 556 | static void __init pcm037_init_late(void) |
| 557 | { |
| 558 | int ret; |
| 559 | |
| 560 | /* LAN9217 IRQ pin */ |
| 561 | ret = gpio_request(IOMUX_TO_GPIO(MX31_PIN_GPIO3_1), "lan9217-irq"); |
| 562 | if (!ret) { |
| 563 | gpio_direction_input(IOMUX_TO_GPIO(MX31_PIN_GPIO3_1)); |
| 564 | smsc911x_resources[1].start = |
| 565 | gpio_to_irq(IOMUX_TO_GPIO(MX31_PIN_GPIO3_1)); |
| 566 | smsc911x_resources[1].end = |
| 567 | gpio_to_irq(IOMUX_TO_GPIO(MX31_PIN_GPIO3_1)); |
| 568 | platform_device_register(&pcm037_eth); |
| 569 | } else { |
| 570 | pr_warn("could not get LAN irq gpio\n"); |
| 571 | } |
| 572 | |
| 573 | imx31_add_mxc_mmc(0, &sdhc_pdata); |
| 574 | |
Shawn Guo | ed17534 | 2011-12-02 20:00:33 +0800 | [diff] [blame] | 575 | pcm970_sja1000_resources[1].start = |
| 576 | gpio_to_irq(IOMUX_TO_GPIO(IOMUX_PIN(48, 105))); |
| 577 | pcm970_sja1000_resources[1].end = |
| 578 | gpio_to_irq(IOMUX_TO_GPIO(IOMUX_PIN(48, 105))); |
Sascha Hauer | 91bf9a2 | 2009-06-23 13:21:28 +0200 | [diff] [blame] | 579 | platform_device_register(&pcm970_sja1000); |
Sascha Hauer | ee14373 | 2010-02-04 09:32:44 +0100 | [diff] [blame] | 580 | |
Shawn Guo | 8321b75 | 2012-04-26 11:42:34 +0800 | [diff] [blame] | 581 | pcm037_eet_init_devices(); |
| 582 | } |
| 583 | |
Sascha Hauer | ce8ffef | 2008-07-05 10:02:52 +0200 | [diff] [blame] | 584 | MACHINE_START(PCM037, "Phytec Phycore pcm037") |
| 585 | /* Maintainer: Pengutronix */ |
Nicolas Pitre | dc8f190 | 2011-07-05 22:38:12 -0400 | [diff] [blame] | 586 | .atag_offset = 0x100, |
Uwe Kleine-König | 97976e2 | 2011-02-07 16:35:20 +0100 | [diff] [blame] | 587 | .map_io = mx31_map_io, |
| 588 | .init_early = imx31_init_early, |
| 589 | .init_irq = mx31_init_irq, |
Stephen Warren | 6bb27d7 | 2012-11-08 12:40:59 -0700 | [diff] [blame] | 590 | .init_time = pcm037_timer_init, |
Uwe Kleine-König | e134fb2 | 2011-02-11 10:23:19 +0100 | [diff] [blame] | 591 | .init_machine = pcm037_init, |
Shawn Guo | 8321b75 | 2012-04-26 11:42:34 +0800 | [diff] [blame] | 592 | .init_late = pcm037_init_late, |
Russell King | 65ea788 | 2011-11-06 17:12:08 +0000 | [diff] [blame] | 593 | .restart = mxc_restart, |
Sascha Hauer | ce8ffef | 2008-07-05 10:02:52 +0200 | [diff] [blame] | 594 | MACHINE_END |