2 * Copyright 2007 Robert Schwebel <r.schwebel@pengutronix.de>, Pengutronix
3 * Copyright (C) 2008 Juergen Beisert (kernel@pengutronix.de)
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.
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,
20 #include <linux/i2c.h>
21 #include <linux/i2c/at24.h>
23 #include <linux/mtd/plat-ram.h>
24 #include <linux/mtd/physmap.h>
25 #include <linux/platform_device.h>
26 #include <linux/regulator/machine.h>
27 #include <linux/mfd/mc13783.h>
28 #include <linux/spi/spi.h>
29 #include <linux/irq.h>
31 #include <asm/mach-types.h>
32 #include <asm/mach/arch.h>
33 #include <asm/mach/time.h>
35 #include <mach/board-pcm038.h>
36 #include <mach/common.h>
37 #include <mach/hardware.h>
38 #include <mach/iomux-mx27.h>
39 #include <mach/mxc_nand.h>
40 #include <mach/ulpi.h>
42 #include "devices-imx27.h"
44 static const int pcm038_pins
[] __initconst
= {
113 * Phytec's PCM038 comes with 2MiB battery buffered SRAM,
117 static struct platdata_mtd_ram pcm038_sram_data
= {
121 static struct resource pcm038_sram_resource
= {
122 .start
= MX27_CS1_BASE_ADDR
,
123 .end
= MX27_CS1_BASE_ADDR
+ 512 * 1024 - 1,
124 .flags
= IORESOURCE_MEM
,
127 static struct platform_device pcm038_sram_mtd_device
= {
131 .platform_data
= &pcm038_sram_data
,
134 .resource
= &pcm038_sram_resource
,
138 * Phytec's phyCORE-i.MX27 comes with 32MiB flash,
141 static struct physmap_flash_data pcm038_flash_data
= {
145 static struct resource pcm038_flash_resource
= {
148 .flags
= IORESOURCE_MEM
,
151 static struct platform_device pcm038_nor_mtd_device
= {
152 .name
= "physmap-flash",
155 .platform_data
= &pcm038_flash_data
,
158 .resource
= &pcm038_flash_resource
,
161 static const struct imxuart_platform_data uart_pdata __initconst
= {
162 .flags
= IMXUART_HAVE_RTSCTS
,
165 static const struct mxc_nand_platform_data
166 pcm038_nand_board_info __initconst
= {
171 static struct platform_device
*platform_devices
[] __initdata
= {
172 &pcm038_nor_mtd_device
,
173 &pcm038_sram_mtd_device
,
176 /* On pcm038 there's a sram attached to CS1, we enable the chipselect here and
177 * setup other stuffs to access the sram. */
178 static void __init
pcm038_init_sram(void)
180 mx27_setup_weimcs(1, 0x0000d843, 0x22252521, 0x22220a00);
183 static const struct imxi2c_platform_data pcm038_i2c1_data __initconst
= {
187 static struct at24_platform_data board_eeprom
= {
190 .flags
= AT24_FLAG_ADDR16
,
193 static struct i2c_board_info pcm038_i2c_devices
[] = {
195 I2C_BOARD_INFO("at24", 0x52), /* E0=0, E1=1, E2=0 */
196 .platform_data
= &board_eeprom
,
198 I2C_BOARD_INFO("pcf8563", 0x51),
200 I2C_BOARD_INFO("lm75", 0x4a),
204 static int pcm038_spi_cs
[] = {GPIO_PORTD
+ 28};
206 static const struct spi_imx_master pcm038_spi0_data __initconst
= {
207 .chipselect
= pcm038_spi_cs
,
208 .num_chipselect
= ARRAY_SIZE(pcm038_spi_cs
),
211 static struct regulator_consumer_supply sdhc1_consumers
[] = {
213 .dev_name
= "mxc-mmc.1",
214 .supply
= "sdhc_vcc",
218 static struct regulator_init_data sdhc1_data
= {
222 .valid_ops_mask
= REGULATOR_CHANGE_VOLTAGE
|
223 REGULATOR_CHANGE_MODE
| REGULATOR_CHANGE_STATUS
,
224 .valid_modes_mask
= REGULATOR_MODE_NORMAL
|
229 .num_consumer_supplies
= ARRAY_SIZE(sdhc1_consumers
),
230 .consumer_supplies
= sdhc1_consumers
,
233 static struct regulator_consumer_supply cam_consumers
[] = {
236 .supply
= "imx_cam_vcc",
240 static struct regulator_init_data cam_data
= {
244 .valid_ops_mask
= REGULATOR_CHANGE_VOLTAGE
|
245 REGULATOR_CHANGE_MODE
| REGULATOR_CHANGE_STATUS
,
246 .valid_modes_mask
= REGULATOR_MODE_NORMAL
|
251 .num_consumer_supplies
= ARRAY_SIZE(cam_consumers
),
252 .consumer_supplies
= cam_consumers
,
255 static struct mc13783_regulator_init_data pcm038_regulators
[] = {
257 .id
= MC13783_REG_VCAM
,
258 .init_data
= &cam_data
,
260 .id
= MC13783_REG_VMMC1
,
261 .init_data
= &sdhc1_data
,
265 static struct mc13783_platform_data pcm038_pmic
= {
266 .regulators
= pcm038_regulators
,
267 .num_regulators
= ARRAY_SIZE(pcm038_regulators
),
268 .flags
= MC13783_USE_ADC
| MC13783_USE_REGULATOR
|
269 MC13783_USE_TOUCHSCREEN
,
272 static struct spi_board_info pcm038_spi_board_info
[] __initdata
= {
274 .modalias
= "mc13783",
275 .irq
= IRQ_GPIOB(23),
276 .max_speed_hz
= 300000,
279 .platform_data
= &pcm038_pmic
,
284 static const struct mxc_usbh_platform_data usbh2_pdata __initconst
= {
285 .portsc
= MXC_EHCI_MODE_ULPI
,
286 .flags
= MXC_EHCI_POWER_PINS_ENABLED
| MXC_EHCI_INTERFACE_DIFF_UNI
,
289 static void __init
pcm038_init(void)
291 mxc_gpio_setup_multiple_pins(pcm038_pins
, ARRAY_SIZE(pcm038_pins
),
296 imx27_add_imx_uart0(&uart_pdata
);
297 imx27_add_imx_uart1(&uart_pdata
);
298 imx27_add_imx_uart2(&uart_pdata
);
300 mxc_gpio_mode(PE16_AF_OWIRE
);
301 imx27_add_mxc_nand(&pcm038_nand_board_info
);
303 /* only the i2c master 1 is used on this CPU card */
304 i2c_register_board_info(1, pcm038_i2c_devices
,
305 ARRAY_SIZE(pcm038_i2c_devices
));
307 imx27_add_imx_i2c(1, &pcm038_i2c1_data
);
309 /* PE18 for user-LED D40 */
310 mxc_gpio_mode(GPIO_PORTE
| 18 | GPIO_GPIO
| GPIO_OUT
);
312 mxc_gpio_mode(GPIO_PORTD
| 28 | GPIO_GPIO
| GPIO_OUT
);
315 mxc_gpio_mode(GPIO_PORTB
| 23 | GPIO_GPIO
| GPIO_IN
);
317 imx27_add_spi_imx0(&pcm038_spi0_data
);
318 spi_register_board_info(pcm038_spi_board_info
,
319 ARRAY_SIZE(pcm038_spi_board_info
));
321 imx27_add_mxc_ehci_hs(2, &usbh2_pdata
);
324 platform_add_devices(platform_devices
, ARRAY_SIZE(platform_devices
));
325 imx27_add_imx2_wdt(NULL
);
326 imx27_add_mxc_w1(NULL
);
328 #ifdef CONFIG_MACH_PCM970_BASEBOARD
329 pcm970_baseboard_init();
333 static void __init
pcm038_timer_init(void)
335 mx27_clocks_init(26000000);
338 static struct sys_timer pcm038_timer
= {
339 .init
= pcm038_timer_init
,
342 MACHINE_START(PCM038
, "phyCORE-i.MX27")
343 .boot_params
= MX27_PHYS_OFFSET
+ 0x100,
344 .map_io
= mx27_map_io
,
345 .init_irq
= mx27_init_irq
,
346 .init_machine
= pcm038_init
,
347 .timer
= &pcm038_timer
,