| Juergen Beisert | 7e5e9f5 | 2008-07-05 10:03:00 +0200 | [diff] [blame] | 1 | /* | 
|  | 2 | * Copyright 2007 Robert Schwebel <r.schwebel@pengutronix.de>, Pengutronix | 
|  | 3 | * Copyright (C) 2008 Juergen Beisert (kernel@pengutronix.de) | 
|  | 4 | * | 
|  | 5 | * This program is free software; you can redistribute it and/or | 
|  | 6 | * modify it under the terms of the GNU General Public License | 
|  | 7 | * as published by the Free Software Foundation; either version 2 | 
|  | 8 | * of the License, or (at your option) any later version. | 
|  | 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., 51 Franklin Street, Fifth Floor, Boston, | 
|  | 17 | * MA 02110-1301, USA. | 
|  | 18 | */ | 
|  | 19 |  | 
| Sascha Hauer | a4e9a65 | 2009-01-28 13:07:11 +0100 | [diff] [blame] | 20 | #include <linux/i2c.h> | 
|  | 21 | #include <linux/i2c/at24.h> | 
| Sascha Hauer | bff0b53 | 2009-04-29 09:17:03 +0200 | [diff] [blame] | 22 | #include <linux/io.h> | 
|  | 23 | #include <linux/mtd/plat-ram.h> | 
|  | 24 | #include <linux/mtd/physmap.h> | 
|  | 25 | #include <linux/platform_device.h> | 
| Sascha Hauer | 6153384 | 2009-09-24 10:01:53 +0200 | [diff] [blame] | 26 | #include <linux/regulator/machine.h> | 
|  | 27 | #include <linux/mfd/mc13783.h> | 
|  | 28 | #include <linux/spi/spi.h> | 
|  | 29 | #include <linux/irq.h> | 
| Sascha Hauer | a4e9a65 | 2009-01-28 13:07:11 +0100 | [diff] [blame] | 30 |  | 
| Juergen Beisert | 7e5e9f5 | 2008-07-05 10:03:00 +0200 | [diff] [blame] | 31 | #include <asm/mach-types.h> | 
| Sascha Hauer | bff0b53 | 2009-04-29 09:17:03 +0200 | [diff] [blame] | 32 | #include <asm/mach/arch.h> | 
|  | 33 | #include <asm/mach/time.h> | 
|  | 34 |  | 
|  | 35 | #include <mach/board-pcm038.h> | 
| Russell King | a09e64f | 2008-08-05 16:14:15 +0100 | [diff] [blame] | 36 | #include <mach/common.h> | 
|  | 37 | #include <mach/hardware.h> | 
| Sascha Hauer | a4e9a65 | 2009-01-28 13:07:11 +0100 | [diff] [blame] | 38 | #include <mach/i2c.h> | 
| Uwe Kleine-König | e835d88 | 2010-02-16 11:07:49 +0100 | [diff] [blame] | 39 | #include <mach/iomux-mx27.h> | 
| Russell King | a09e64f | 2008-08-05 16:14:15 +0100 | [diff] [blame] | 40 | #include <mach/imx-uart.h> | 
| Sascha Hauer | 01f71a3 | 2008-09-09 11:30:58 +0200 | [diff] [blame] | 41 | #include <mach/mxc_nand.h> | 
| Sascha Hauer | 6153384 | 2009-09-24 10:01:53 +0200 | [diff] [blame] | 42 | #include <mach/spi.h> | 
| Sascha Hauer | 773f206 | 2010-02-03 17:13:41 +0100 | [diff] [blame] | 43 | #include <mach/mxc_ehci.h> | 
|  | 44 | #include <mach/ulpi.h> | 
| Juergen Beisert | 7e5e9f5 | 2008-07-05 10:03:00 +0200 | [diff] [blame] | 45 |  | 
| Sascha Hauer | 7e90534 | 2008-09-09 10:19:41 +0200 | [diff] [blame] | 46 | #include "devices.h" | 
|  | 47 |  | 
| Sascha Hauer | f231ea4 | 2009-04-16 15:45:45 +0200 | [diff] [blame] | 48 | static int pcm038_pins[] = { | 
|  | 49 | /* UART1 */ | 
|  | 50 | PE12_PF_UART1_TXD, | 
|  | 51 | PE13_PF_UART1_RXD, | 
|  | 52 | PE14_PF_UART1_CTS, | 
|  | 53 | PE15_PF_UART1_RTS, | 
|  | 54 | /* UART2 */ | 
|  | 55 | PE3_PF_UART2_CTS, | 
|  | 56 | PE4_PF_UART2_RTS, | 
|  | 57 | PE6_PF_UART2_TXD, | 
|  | 58 | PE7_PF_UART2_RXD, | 
|  | 59 | /* UART3 */ | 
|  | 60 | PE8_PF_UART3_TXD, | 
|  | 61 | PE9_PF_UART3_RXD, | 
|  | 62 | PE10_PF_UART3_CTS, | 
|  | 63 | PE11_PF_UART3_RTS, | 
|  | 64 | /* FEC */ | 
|  | 65 | PD0_AIN_FEC_TXD0, | 
|  | 66 | PD1_AIN_FEC_TXD1, | 
|  | 67 | PD2_AIN_FEC_TXD2, | 
|  | 68 | PD3_AIN_FEC_TXD3, | 
|  | 69 | PD4_AOUT_FEC_RX_ER, | 
|  | 70 | PD5_AOUT_FEC_RXD1, | 
|  | 71 | PD6_AOUT_FEC_RXD2, | 
|  | 72 | PD7_AOUT_FEC_RXD3, | 
|  | 73 | PD8_AF_FEC_MDIO, | 
|  | 74 | PD9_AIN_FEC_MDC, | 
|  | 75 | PD10_AOUT_FEC_CRS, | 
|  | 76 | PD11_AOUT_FEC_TX_CLK, | 
|  | 77 | PD12_AOUT_FEC_RXD0, | 
|  | 78 | PD13_AOUT_FEC_RX_DV, | 
|  | 79 | PD14_AOUT_FEC_RX_CLK, | 
|  | 80 | PD15_AOUT_FEC_COL, | 
|  | 81 | PD16_AIN_FEC_TX_ER, | 
|  | 82 | PF23_AIN_FEC_TX_EN, | 
|  | 83 | /* I2C2 */ | 
|  | 84 | PC5_PF_I2C2_SDA, | 
|  | 85 | PC6_PF_I2C2_SCL, | 
|  | 86 | /* SPI1 */ | 
|  | 87 | PD25_PF_CSPI1_RDY, | 
| Sascha Hauer | f231ea4 | 2009-04-16 15:45:45 +0200 | [diff] [blame] | 88 | PD29_PF_CSPI1_SCLK, | 
|  | 89 | PD30_PF_CSPI1_MISO, | 
|  | 90 | PD31_PF_CSPI1_MOSI, | 
|  | 91 | /* SSI1 */ | 
|  | 92 | PC20_PF_SSI1_FS, | 
|  | 93 | PC21_PF_SSI1_RXD, | 
|  | 94 | PC22_PF_SSI1_TXD, | 
|  | 95 | PC23_PF_SSI1_CLK, | 
|  | 96 | /* SSI4 */ | 
|  | 97 | PC16_PF_SSI4_FS, | 
|  | 98 | PC17_PF_SSI4_RXD, | 
|  | 99 | PC18_PF_SSI4_TXD, | 
|  | 100 | PC19_PF_SSI4_CLK, | 
| Sascha Hauer | 773f206 | 2010-02-03 17:13:41 +0100 | [diff] [blame] | 101 | /* USB host */ | 
|  | 102 | PA0_PF_USBH2_CLK, | 
|  | 103 | PA1_PF_USBH2_DIR, | 
|  | 104 | PA2_PF_USBH2_DATA7, | 
|  | 105 | PA3_PF_USBH2_NXT, | 
|  | 106 | PA4_PF_USBH2_STP, | 
|  | 107 | PD19_AF_USBH2_DATA4, | 
|  | 108 | PD20_AF_USBH2_DATA3, | 
|  | 109 | PD21_AF_USBH2_DATA6, | 
|  | 110 | PD22_AF_USBH2_DATA0, | 
|  | 111 | PD23_AF_USBH2_DATA2, | 
|  | 112 | PD24_AF_USBH2_DATA1, | 
|  | 113 | PD26_AF_USBH2_DATA5, | 
| Sascha Hauer | f231ea4 | 2009-04-16 15:45:45 +0200 | [diff] [blame] | 114 | }; | 
|  | 115 |  | 
| Juergen Beisert | 7e5e9f5 | 2008-07-05 10:03:00 +0200 | [diff] [blame] | 116 | /* | 
| Sascha Hauer | 3620c0d | 2008-11-23 17:31:46 +0100 | [diff] [blame] | 117 | * Phytec's PCM038 comes with 2MiB battery buffered SRAM, | 
|  | 118 | * 16 bit width | 
|  | 119 | */ | 
|  | 120 |  | 
|  | 121 | static struct platdata_mtd_ram pcm038_sram_data = { | 
|  | 122 | .bankwidth = 2, | 
|  | 123 | }; | 
|  | 124 |  | 
|  | 125 | static struct resource pcm038_sram_resource = { | 
| Uwe Kleine-König | 3f35d1f | 2009-12-09 11:32:11 +0100 | [diff] [blame] | 126 | .start = MX27_CS1_BASE_ADDR, | 
|  | 127 | .end   = MX27_CS1_BASE_ADDR + 512 * 1024 - 1, | 
| Sascha Hauer | 3620c0d | 2008-11-23 17:31:46 +0100 | [diff] [blame] | 128 | .flags = IORESOURCE_MEM, | 
|  | 129 | }; | 
|  | 130 |  | 
|  | 131 | static struct platform_device pcm038_sram_mtd_device = { | 
|  | 132 | .name = "mtd-ram", | 
|  | 133 | .id = 0, | 
|  | 134 | .dev = { | 
|  | 135 | .platform_data = &pcm038_sram_data, | 
|  | 136 | }, | 
|  | 137 | .num_resources = 1, | 
|  | 138 | .resource = &pcm038_sram_resource, | 
|  | 139 | }; | 
|  | 140 |  | 
|  | 141 | /* | 
| Juergen Beisert | 7e5e9f5 | 2008-07-05 10:03:00 +0200 | [diff] [blame] | 142 | * Phytec's phyCORE-i.MX27 comes with 32MiB flash, | 
|  | 143 | * 16 bit width | 
|  | 144 | */ | 
|  | 145 | static struct physmap_flash_data pcm038_flash_data = { | 
|  | 146 | .width = 2, | 
|  | 147 | }; | 
|  | 148 |  | 
|  | 149 | static struct resource pcm038_flash_resource = { | 
|  | 150 | .start = 0xc0000000, | 
|  | 151 | .end   = 0xc1ffffff, | 
|  | 152 | .flags = IORESOURCE_MEM, | 
|  | 153 | }; | 
|  | 154 |  | 
|  | 155 | static struct platform_device pcm038_nor_mtd_device = { | 
|  | 156 | .name = "physmap-flash", | 
|  | 157 | .id = 0, | 
|  | 158 | .dev = { | 
|  | 159 | .platform_data = &pcm038_flash_data, | 
|  | 160 | }, | 
|  | 161 | .num_resources = 1, | 
|  | 162 | .resource = &pcm038_flash_resource, | 
|  | 163 | }; | 
|  | 164 |  | 
| Juergen Beisert | 7e5e9f5 | 2008-07-05 10:03:00 +0200 | [diff] [blame] | 165 | static struct imxuart_platform_data uart_pdata[] = { | 
|  | 166 | { | 
| Juergen Beisert | 7e5e9f5 | 2008-07-05 10:03:00 +0200 | [diff] [blame] | 167 | .flags = IMXUART_HAVE_RTSCTS, | 
|  | 168 | }, { | 
| Juergen Beisert | 7e5e9f5 | 2008-07-05 10:03:00 +0200 | [diff] [blame] | 169 | .flags = IMXUART_HAVE_RTSCTS, | 
|  | 170 | }, { | 
| Juergen Beisert | 7e5e9f5 | 2008-07-05 10:03:00 +0200 | [diff] [blame] | 171 | .flags = IMXUART_HAVE_RTSCTS, | 
|  | 172 | }, | 
|  | 173 | }; | 
|  | 174 |  | 
| Sascha Hauer | 01f71a3 | 2008-09-09 11:30:58 +0200 | [diff] [blame] | 175 | static struct mxc_nand_platform_data pcm038_nand_board_info = { | 
|  | 176 | .width = 1, | 
|  | 177 | .hw_ecc = 1, | 
|  | 178 | }; | 
|  | 179 |  | 
| Juergen Beisert | 7e5e9f5 | 2008-07-05 10:03:00 +0200 | [diff] [blame] | 180 | static struct platform_device *platform_devices[] __initdata = { | 
|  | 181 | &pcm038_nor_mtd_device, | 
| Sascha Hauer | d40a099 | 2008-12-01 14:15:40 -0800 | [diff] [blame] | 182 | &mxc_w1_master_device, | 
| Sascha Hauer | 879fea1 | 2009-01-26 17:26:02 +0100 | [diff] [blame] | 183 | &mxc_fec_device, | 
| Sascha Hauer | 3620c0d | 2008-11-23 17:31:46 +0100 | [diff] [blame] | 184 | &pcm038_sram_mtd_device, | 
| Wolfram Sang | f13899d | 2010-04-29 10:03:20 +0200 | [diff] [blame] | 185 | &mxc_wdt, | 
| Juergen Beisert | 7e5e9f5 | 2008-07-05 10:03:00 +0200 | [diff] [blame] | 186 | }; | 
|  | 187 |  | 
| Sascha Hauer | 3620c0d | 2008-11-23 17:31:46 +0100 | [diff] [blame] | 188 | /* On pcm038 there's a sram attached to CS1, we enable the chipselect here and | 
|  | 189 | * setup other stuffs to access the sram. */ | 
|  | 190 | static void __init pcm038_init_sram(void) | 
|  | 191 | { | 
| Uwe Kleine-König | a8dfb64 | 2010-01-07 11:27:17 +0100 | [diff] [blame] | 192 | mx27_setup_weimcs(1, 0x0000d843, 0x22252521, 0x22220a00); | 
| Sascha Hauer | 3620c0d | 2008-11-23 17:31:46 +0100 | [diff] [blame] | 193 | } | 
|  | 194 |  | 
| Sascha Hauer | a4e9a65 | 2009-01-28 13:07:11 +0100 | [diff] [blame] | 195 | static struct imxi2c_platform_data pcm038_i2c_1_data = { | 
|  | 196 | .bitrate = 100000, | 
| Sascha Hauer | a4e9a65 | 2009-01-28 13:07:11 +0100 | [diff] [blame] | 197 | }; | 
|  | 198 |  | 
|  | 199 | static struct at24_platform_data board_eeprom = { | 
|  | 200 | .byte_len = 4096, | 
|  | 201 | .page_size = 32, | 
|  | 202 | .flags = AT24_FLAG_ADDR16, | 
|  | 203 | }; | 
|  | 204 |  | 
|  | 205 | static struct i2c_board_info pcm038_i2c_devices[] = { | 
| Sascha Hauer | cf87a6e | 2009-07-20 08:18:47 +0200 | [diff] [blame] | 206 | { | 
| Sascha Hauer | a4e9a65 | 2009-01-28 13:07:11 +0100 | [diff] [blame] | 207 | I2C_BOARD_INFO("at24", 0x52), /* E0=0, E1=1, E2=0 */ | 
|  | 208 | .platform_data = &board_eeprom, | 
| Sascha Hauer | cf87a6e | 2009-07-20 08:18:47 +0200 | [diff] [blame] | 209 | }, { | 
|  | 210 | I2C_BOARD_INFO("pcf8563", 0x51), | 
|  | 211 | }, { | 
| Sascha Hauer | a4e9a65 | 2009-01-28 13:07:11 +0100 | [diff] [blame] | 212 | I2C_BOARD_INFO("lm75", 0x4a), | 
| Sascha Hauer | a4e9a65 | 2009-01-28 13:07:11 +0100 | [diff] [blame] | 213 | } | 
|  | 214 | }; | 
| Sascha Hauer | a4e9a65 | 2009-01-28 13:07:11 +0100 | [diff] [blame] | 215 |  | 
| Sascha Hauer | 6153384 | 2009-09-24 10:01:53 +0200 | [diff] [blame] | 216 | static int pcm038_spi_cs[] = {GPIO_PORTD + 28}; | 
|  | 217 |  | 
|  | 218 | static struct spi_imx_master pcm038_spi_0_data = { | 
|  | 219 | .chipselect = pcm038_spi_cs, | 
|  | 220 | .num_chipselect = ARRAY_SIZE(pcm038_spi_cs), | 
|  | 221 | }; | 
|  | 222 |  | 
|  | 223 | static struct regulator_consumer_supply sdhc1_consumers[] = { | 
|  | 224 | { | 
|  | 225 | .dev	= &mxc_sdhc_device1.dev, | 
|  | 226 | .supply	= "sdhc_vcc", | 
|  | 227 | }, | 
|  | 228 | }; | 
|  | 229 |  | 
|  | 230 | static struct regulator_init_data sdhc1_data = { | 
|  | 231 | .constraints = { | 
|  | 232 | .min_uV = 3000000, | 
|  | 233 | .max_uV = 3400000, | 
|  | 234 | .valid_ops_mask = REGULATOR_CHANGE_VOLTAGE | | 
|  | 235 | REGULATOR_CHANGE_MODE | REGULATOR_CHANGE_STATUS, | 
|  | 236 | .valid_modes_mask = REGULATOR_MODE_NORMAL | | 
|  | 237 | REGULATOR_MODE_FAST, | 
|  | 238 | .always_on = 0, | 
|  | 239 | .boot_on = 0, | 
|  | 240 | }, | 
|  | 241 | .num_consumer_supplies = ARRAY_SIZE(sdhc1_consumers), | 
|  | 242 | .consumer_supplies = sdhc1_consumers, | 
|  | 243 | }; | 
|  | 244 |  | 
|  | 245 | static struct regulator_consumer_supply cam_consumers[] = { | 
|  | 246 | { | 
|  | 247 | .dev	= NULL, | 
|  | 248 | .supply	= "imx_cam_vcc", | 
|  | 249 | }, | 
|  | 250 | }; | 
|  | 251 |  | 
|  | 252 | static struct regulator_init_data cam_data = { | 
|  | 253 | .constraints = { | 
|  | 254 | .min_uV = 3000000, | 
|  | 255 | .max_uV = 3400000, | 
|  | 256 | .valid_ops_mask = REGULATOR_CHANGE_VOLTAGE | | 
|  | 257 | REGULATOR_CHANGE_MODE | REGULATOR_CHANGE_STATUS, | 
|  | 258 | .valid_modes_mask = REGULATOR_MODE_NORMAL | | 
|  | 259 | REGULATOR_MODE_FAST, | 
|  | 260 | .always_on = 0, | 
|  | 261 | .boot_on = 0, | 
|  | 262 | }, | 
|  | 263 | .num_consumer_supplies = ARRAY_SIZE(cam_consumers), | 
|  | 264 | .consumer_supplies = cam_consumers, | 
|  | 265 | }; | 
|  | 266 |  | 
|  | 267 | struct mc13783_regulator_init_data pcm038_regulators[] = { | 
|  | 268 | { | 
|  | 269 | .id = MC13783_REGU_VCAM, | 
|  | 270 | .init_data = &cam_data, | 
|  | 271 | }, { | 
|  | 272 | .id = MC13783_REGU_VMMC1, | 
|  | 273 | .init_data = &sdhc1_data, | 
|  | 274 | }, | 
|  | 275 | }; | 
|  | 276 |  | 
|  | 277 | static struct mc13783_platform_data pcm038_pmic = { | 
|  | 278 | .regulators = pcm038_regulators, | 
|  | 279 | .num_regulators = ARRAY_SIZE(pcm038_regulators), | 
|  | 280 | .flags = MC13783_USE_ADC | MC13783_USE_REGULATOR | | 
|  | 281 | MC13783_USE_TOUCHSCREEN, | 
|  | 282 | }; | 
|  | 283 |  | 
|  | 284 | static struct spi_board_info pcm038_spi_board_info[] __initdata = { | 
|  | 285 | { | 
|  | 286 | .modalias = "mc13783", | 
|  | 287 | .irq = IRQ_GPIOB(23), | 
|  | 288 | .max_speed_hz = 300000, | 
|  | 289 | .bus_num = 0, | 
|  | 290 | .chip_select = 0, | 
|  | 291 | .platform_data = &pcm038_pmic, | 
|  | 292 | .mode = SPI_CS_HIGH, | 
|  | 293 | } | 
|  | 294 | }; | 
|  | 295 |  | 
| Sascha Hauer | 773f206 | 2010-02-03 17:13:41 +0100 | [diff] [blame] | 296 | static struct mxc_usbh_platform_data usbh2_pdata = { | 
|  | 297 | .portsc	= MXC_EHCI_MODE_ULPI, | 
|  | 298 | .flags	= MXC_EHCI_POWER_PINS_ENABLED | MXC_EHCI_INTERFACE_DIFF_UNI, | 
|  | 299 | }; | 
|  | 300 |  | 
| Juergen Beisert | 7e5e9f5 | 2008-07-05 10:03:00 +0200 | [diff] [blame] | 301 | static void __init pcm038_init(void) | 
|  | 302 | { | 
| Sascha Hauer | f231ea4 | 2009-04-16 15:45:45 +0200 | [diff] [blame] | 303 | mxc_gpio_setup_multiple_pins(pcm038_pins, ARRAY_SIZE(pcm038_pins), | 
|  | 304 | "PCM038"); | 
|  | 305 |  | 
| Sascha Hauer | 3620c0d | 2008-11-23 17:31:46 +0100 | [diff] [blame] | 306 | pcm038_init_sram(); | 
| Juergen Beisert | 7e5e9f5 | 2008-07-05 10:03:00 +0200 | [diff] [blame] | 307 |  | 
| Sascha Hauer | 7e90534 | 2008-09-09 10:19:41 +0200 | [diff] [blame] | 308 | mxc_register_device(&mxc_uart_device0, &uart_pdata[0]); | 
|  | 309 | mxc_register_device(&mxc_uart_device1, &uart_pdata[1]); | 
|  | 310 | mxc_register_device(&mxc_uart_device2, &uart_pdata[2]); | 
| Sascha Hauer | 01f71a3 | 2008-09-09 11:30:58 +0200 | [diff] [blame] | 311 |  | 
| Holger Schurig | ccfe30a | 2009-01-29 10:07:50 +0100 | [diff] [blame] | 312 | mxc_gpio_mode(PE16_AF_OWIRE); | 
| Uwe Kleine-König | 3636a14 | 2010-02-11 16:31:49 +0100 | [diff] [blame] | 313 | mxc_register_device(&imx27_nand_device, &pcm038_nand_board_info); | 
| Juergen Beisert | 7e5e9f5 | 2008-07-05 10:03:00 +0200 | [diff] [blame] | 314 |  | 
| Sascha Hauer | a4e9a65 | 2009-01-28 13:07:11 +0100 | [diff] [blame] | 315 | /* only the i2c master 1 is used on this CPU card */ | 
|  | 316 | i2c_register_board_info(1, pcm038_i2c_devices, | 
|  | 317 | ARRAY_SIZE(pcm038_i2c_devices)); | 
|  | 318 |  | 
|  | 319 | mxc_register_device(&mxc_i2c_device1, &pcm038_i2c_1_data); | 
| Sascha Hauer | a4e9a65 | 2009-01-28 13:07:11 +0100 | [diff] [blame] | 320 |  | 
| Luotao Fu | 0160651 | 2009-06-18 12:21:51 +0200 | [diff] [blame] | 321 | /* PE18 for user-LED D40 */ | 
|  | 322 | mxc_gpio_mode(GPIO_PORTE | 18 | GPIO_GPIO | GPIO_OUT); | 
|  | 323 |  | 
| Sascha Hauer | 6153384 | 2009-09-24 10:01:53 +0200 | [diff] [blame] | 324 | mxc_gpio_mode(GPIO_PORTD | 28 | GPIO_GPIO | GPIO_OUT); | 
|  | 325 |  | 
|  | 326 | /* MC13783 IRQ */ | 
|  | 327 | mxc_gpio_mode(GPIO_PORTB | 23 | GPIO_GPIO | GPIO_IN); | 
|  | 328 |  | 
|  | 329 | mxc_register_device(&mxc_spi_device0, &pcm038_spi_0_data); | 
|  | 330 | spi_register_board_info(pcm038_spi_board_info, | 
|  | 331 | ARRAY_SIZE(pcm038_spi_board_info)); | 
|  | 332 |  | 
| Sascha Hauer | 773f206 | 2010-02-03 17:13:41 +0100 | [diff] [blame] | 333 | mxc_register_device(&mxc_usbh2, &usbh2_pdata); | 
|  | 334 |  | 
| Juergen Beisert | 7e5e9f5 | 2008-07-05 10:03:00 +0200 | [diff] [blame] | 335 | platform_add_devices(platform_devices, ARRAY_SIZE(platform_devices)); | 
| Juergen Beisert | ff6552e | 2008-07-05 10:03:01 +0200 | [diff] [blame] | 336 |  | 
|  | 337 | #ifdef CONFIG_MACH_PCM970_BASEBOARD | 
|  | 338 | pcm970_baseboard_init(); | 
|  | 339 | #endif | 
| Juergen Beisert | 7e5e9f5 | 2008-07-05 10:03:00 +0200 | [diff] [blame] | 340 | } | 
|  | 341 |  | 
|  | 342 | static void __init pcm038_timer_init(void) | 
|  | 343 | { | 
| Sascha Hauer | 30c730f | 2009-02-16 14:36:49 +0100 | [diff] [blame] | 344 | mx27_clocks_init(26000000); | 
| Juergen Beisert | 7e5e9f5 | 2008-07-05 10:03:00 +0200 | [diff] [blame] | 345 | } | 
|  | 346 |  | 
| Holger Schurig | 058b7a6 | 2009-01-26 16:34:51 +0100 | [diff] [blame] | 347 | static struct sys_timer pcm038_timer = { | 
| Juergen Beisert | 7e5e9f5 | 2008-07-05 10:03:00 +0200 | [diff] [blame] | 348 | .init = pcm038_timer_init, | 
|  | 349 | }; | 
|  | 350 |  | 
|  | 351 | MACHINE_START(PCM038, "phyCORE-i.MX27") | 
| Uwe Kleine-König | 3f35d1f | 2009-12-09 11:32:11 +0100 | [diff] [blame] | 352 | .phys_io        = MX27_AIPI_BASE_ADDR, | 
|  | 353 | .io_pg_offst    = ((MX27_AIPI_BASE_ADDR_VIRT) >> 18) & 0xfffc, | 
| Uwe Kleine-König | 3410123 | 2010-01-29 17:36:05 +0100 | [diff] [blame] | 354 | .boot_params    = MX27_PHYS_OFFSET + 0x100, | 
| Sascha Hauer | cd4a05f | 2009-04-02 22:32:10 +0200 | [diff] [blame] | 355 | .map_io         = mx27_map_io, | 
| Sascha Hauer | c5aa0ad | 2009-05-25 17:36:19 +0200 | [diff] [blame] | 356 | .init_irq       = mx27_init_irq, | 
| Juergen Beisert | 7e5e9f5 | 2008-07-05 10:03:00 +0200 | [diff] [blame] | 357 | .init_machine   = pcm038_init, | 
|  | 358 | .timer          = &pcm038_timer, | 
|  | 359 | MACHINE_END |