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>
30 #include <linux/gpio.h>
32 #include <asm/mach-types.h>
33 #include <asm/mach/arch.h>
34 #include <asm/mach/time.h>
36 #include "board-pcm038.h"
38 #include "devices-imx27.h"
40 #include "iomux-mx27.h"
43 static const int pcm038_pins[] __initconst = {
112 * Phytec's PCM038 comes with 2MiB battery buffered SRAM,
116 static struct platdata_mtd_ram pcm038_sram_data = {
120 static struct resource pcm038_sram_resource = {
121 .start = MX27_CS1_BASE_ADDR,
122 .end = MX27_CS1_BASE_ADDR + 512 * 1024 - 1,
123 .flags = IORESOURCE_MEM,
126 static struct platform_device pcm038_sram_mtd_device = {
130 .platform_data = &pcm038_sram_data,
133 .resource = &pcm038_sram_resource,
137 * Phytec's phyCORE-i.MX27 comes with 32MiB flash,
140 static struct physmap_flash_data pcm038_flash_data = {
144 static struct resource pcm038_flash_resource = {
147 .flags = IORESOURCE_MEM,
150 static struct platform_device pcm038_nor_mtd_device = {
151 .name = "physmap-flash",
154 .platform_data = &pcm038_flash_data,
157 .resource = &pcm038_flash_resource,
160 static const struct imxuart_platform_data uart_pdata __initconst = {
161 .flags = IMXUART_HAVE_RTSCTS,
164 static const struct mxc_nand_platform_data
165 pcm038_nand_board_info __initconst = {
170 static struct platform_device *platform_devices[] __initdata = {
171 &pcm038_nor_mtd_device,
172 &pcm038_sram_mtd_device,
175 /* On pcm038 there's a sram attached to CS1, we enable the chipselect here and
176 * setup other stuffs to access the sram. */
177 static void __init pcm038_init_sram(void)
179 __raw_writel(0x0000d843, MX27_IO_ADDRESS(MX27_WEIM_CSCRxU(1)));
180 __raw_writel(0x22252521, MX27_IO_ADDRESS(MX27_WEIM_CSCRxL(1)));
181 __raw_writel(0x22220a00, MX27_IO_ADDRESS(MX27_WEIM_CSCRxA(1)));
184 static const struct imxi2c_platform_data pcm038_i2c1_data __initconst = {
188 static struct at24_platform_data board_eeprom = {
191 .flags = AT24_FLAG_ADDR16,
194 static struct i2c_board_info pcm038_i2c_devices[] = {
196 I2C_BOARD_INFO("at24", 0x52), /* E0=0, E1=1, E2=0 */
197 .platform_data = &board_eeprom,
199 I2C_BOARD_INFO("pcf8563", 0x51),
201 I2C_BOARD_INFO("lm75", 0x4a),
205 static int pcm038_spi_cs[] = {GPIO_PORTD + 28};
207 static const struct spi_imx_master pcm038_spi0_data __initconst = {
208 .chipselect = pcm038_spi_cs,
209 .num_chipselect = ARRAY_SIZE(pcm038_spi_cs),
212 static struct regulator_consumer_supply sdhc1_consumers[] = {
214 .dev_name = "imx21-mmc.1",
215 .supply = "sdhc_vcc",
219 static struct regulator_init_data sdhc1_data = {
223 .valid_ops_mask = REGULATOR_CHANGE_VOLTAGE |
224 REGULATOR_CHANGE_MODE | REGULATOR_CHANGE_STATUS,
225 .valid_modes_mask = REGULATOR_MODE_NORMAL |
230 .num_consumer_supplies = ARRAY_SIZE(sdhc1_consumers),
231 .consumer_supplies = sdhc1_consumers,
234 static struct regulator_consumer_supply cam_consumers[] = {
237 .supply = "imx_cam_vcc",
241 static struct regulator_init_data cam_data = {
245 .valid_ops_mask = REGULATOR_CHANGE_VOLTAGE |
246 REGULATOR_CHANGE_MODE | REGULATOR_CHANGE_STATUS,
247 .valid_modes_mask = REGULATOR_MODE_NORMAL |
252 .num_consumer_supplies = ARRAY_SIZE(cam_consumers),
253 .consumer_supplies = cam_consumers,
256 static struct mc13xxx_regulator_init_data pcm038_regulators[] = {
258 .id = MC13783_REG_VCAM,
259 .init_data = &cam_data,
261 .id = MC13783_REG_VMMC1,
262 .init_data = &sdhc1_data,
266 static struct mc13xxx_platform_data pcm038_pmic = {
268 .regulators = pcm038_regulators,
269 .num_regulators = ARRAY_SIZE(pcm038_regulators),
271 .flags = MC13XXX_USE_ADC | MC13XXX_USE_TOUCHSCREEN,
274 static struct spi_board_info pcm038_spi_board_info[] __initdata = {
276 .modalias = "mc13783",
277 /* irq number is run-time assigned */
278 .max_speed_hz = 300000,
281 .platform_data = &pcm038_pmic,
286 static int pcm038_usbh2_init(struct platform_device *pdev)
288 return mx27_initialize_usb_hw(pdev->id, MXC_EHCI_POWER_PINS_ENABLED |
289 MXC_EHCI_INTERFACE_DIFF_UNI);
292 static const struct mxc_usbh_platform_data usbh2_pdata __initconst = {
293 .init = pcm038_usbh2_init,
294 .portsc = MXC_EHCI_MODE_ULPI,
297 static void __init pcm038_init(void)
301 mxc_gpio_setup_multiple_pins(pcm038_pins, ARRAY_SIZE(pcm038_pins),
306 imx27_add_imx_uart0(&uart_pdata);
307 imx27_add_imx_uart1(&uart_pdata);
308 imx27_add_imx_uart2(&uart_pdata);
310 mxc_gpio_mode(PE16_AF_OWIRE);
311 imx27_add_mxc_nand(&pcm038_nand_board_info);
313 /* only the i2c master 1 is used on this CPU card */
314 i2c_register_board_info(1, pcm038_i2c_devices,
315 ARRAY_SIZE(pcm038_i2c_devices));
317 imx27_add_imx_i2c(1, &pcm038_i2c1_data);
319 /* PE18 for user-LED D40 */
320 mxc_gpio_mode(GPIO_PORTE | 18 | GPIO_GPIO | GPIO_OUT);
322 mxc_gpio_mode(GPIO_PORTD | 28 | GPIO_GPIO | GPIO_OUT);
325 mxc_gpio_mode(GPIO_PORTB | 23 | GPIO_GPIO | GPIO_IN);
327 imx27_add_spi_imx0(&pcm038_spi0_data);
328 pcm038_spi_board_info[0].irq = gpio_to_irq(IMX_GPIO_NR(2, 23));
329 spi_register_board_info(pcm038_spi_board_info,
330 ARRAY_SIZE(pcm038_spi_board_info));
332 imx27_add_mxc_ehci_hs(2, &usbh2_pdata);
335 platform_add_devices(platform_devices, ARRAY_SIZE(platform_devices));
336 imx27_add_imx2_wdt();
339 #ifdef CONFIG_MACH_PCM970_BASEBOARD
340 pcm970_baseboard_init();
344 static void __init pcm038_timer_init(void)
346 mx27_clocks_init(26000000);
349 MACHINE_START(PCM038, "phyCORE-i.MX27")
350 .atag_offset = 0x100,
351 .map_io = mx27_map_io,
352 .init_early = imx27_init_early,
353 .init_irq = mx27_init_irq,
354 .handle_irq = imx27_handle_irq,
355 .init_time = pcm038_timer_init,
356 .init_machine = pcm038_init,
357 .restart = mxc_restart,