blob: 7528bb2d382af4bea30c9a86bc947b1c8bf57091 [file] [log] [blame]
Sascha Hauer24205632009-01-28 17:36:37 +01001/*
Uwe Kleine-König95c00462009-12-09 20:12:07 +01002 * linux/arch/arm/mach-mx1/mach-scb9328.c
Sascha Hauer24205632009-01-28 17:36:37 +01003 *
4 * Copyright (c) 2004 Sascha Hauer <saschahauer@web.de>
5 * Copyright (c) 2006-2008 Juergen Beisert <jbeisert@netscape.net>
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License version 2 as
9 * published by the Free Software Foundation.
10 *
11 */
12
13#include <linux/platform_device.h>
14#include <linux/mtd/physmap.h>
15#include <linux/interrupt.h>
16#include <linux/dm9000.h>
Shawn Guo438196c2011-12-05 10:12:28 +080017#include <linux/gpio.h>
Sascha Hauer24205632009-01-28 17:36:37 +010018
19#include <asm/mach-types.h>
20#include <asm/mach/arch.h>
21#include <asm/mach/time.h>
22
23#include <mach/common.h>
24#include <mach/hardware.h>
Sascha Hauer24205632009-01-28 17:36:37 +010025
Uwe Kleine-Königd112f4e2010-06-22 14:50:59 +020026#include "devices-imx1.h"
Shawn Guo267dd342012-09-13 13:26:00 +080027#include "iomux-mx1.h"
Sascha Hauer24205632009-01-28 17:36:37 +010028
29/*
30 * This scb9328 has a 32MiB flash
31 */
32static struct resource flash_resource = {
Uwe Kleine-König05a31852010-03-04 21:02:41 +010033 .start = MX1_CS0_PHYS,
34 .end = MX1_CS0_PHYS + (32 * 1024 * 1024) - 1,
Sascha Hauer24205632009-01-28 17:36:37 +010035 .flags = IORESOURCE_MEM,
36};
37
38static struct physmap_flash_data scb_flash_data = {
39 .width = 2,
40};
41
42static struct platform_device scb_flash_device = {
43 .name = "physmap-flash",
44 .id = 0,
45 .dev = {
46 .platform_data = &scb_flash_data,
47 },
48 .resource = &flash_resource,
49 .num_resources = 1,
50};
51
52/*
53 * scb9328 has a DM9000 network controller
54 * connected to CS5, with 16 bit data path
55 * and interrupt connected to GPIO 3
56 */
57
58/*
59 * internal datapath is fixed 16 bit
60 */
61static struct dm9000_plat_data dm9000_platdata = {
62 .flags = DM9000_PLATF_16BITONLY,
63};
64
65/*
66 * the DM9000 drivers wants two defined address spaces
67 * to gain access to address latch registers and the data path.
68 */
69static struct resource dm9000x_resources[] = {
Sascha Hauer9b0e6db2009-06-23 12:14:39 +020070 {
Sascha Hauer24205632009-01-28 17:36:37 +010071 .name = "address area",
Uwe Kleine-König05a31852010-03-04 21:02:41 +010072 .start = MX1_CS5_PHYS,
73 .end = MX1_CS5_PHYS + 1,
Sascha Hauer9b0e6db2009-06-23 12:14:39 +020074 .flags = IORESOURCE_MEM, /* address access */
75 }, {
Sascha Hauer24205632009-01-28 17:36:37 +010076 .name = "data area",
Uwe Kleine-König05a31852010-03-04 21:02:41 +010077 .start = MX1_CS5_PHYS + 4,
78 .end = MX1_CS5_PHYS + 5,
Sascha Hauer9b0e6db2009-06-23 12:14:39 +020079 .flags = IORESOURCE_MEM, /* data access */
80 }, {
Shawn Guo438196c2011-12-05 10:12:28 +080081 /* irq number is run-time assigned */
Sascha Hauer9b0e6db2009-06-23 12:14:39 +020082 .flags = IORESOURCE_IRQ | IORESOURCE_IRQ_LOWLEVEL,
Sascha Hauer24205632009-01-28 17:36:37 +010083 },
84};
85
86static struct platform_device dm9000x_device = {
87 .name = "dm9000",
88 .id = 0,
89 .num_resources = ARRAY_SIZE(dm9000x_resources),
90 .resource = dm9000x_resources,
91 .dev = {
92 .platform_data = &dm9000_platdata,
93 }
94};
95
Uwe Kleine-König6c80ee52010-09-28 21:53:31 +020096static const int mxc_uart1_pins[] = {
Sascha Hauer24205632009-01-28 17:36:37 +010097 PC9_PF_UART1_CTS,
98 PC10_PF_UART1_RTS,
99 PC11_PF_UART1_TXD,
100 PC12_PF_UART1_RXD,
101};
102
Uwe Kleine-Königd112f4e2010-06-22 14:50:59 +0200103static const struct imxuart_platform_data uart_pdata __initconst = {
Sascha Hauer24205632009-01-28 17:36:37 +0100104 .flags = IMXUART_HAVE_RTSCTS,
105};
106
107static struct platform_device *devices[] __initdata = {
108 &scb_flash_device,
109 &dm9000x_device,
110};
111
112/*
113 * scb9328_init - Init the CPU card itself
114 */
115static void __init scb9328_init(void)
116{
Shawn Guob78d8e52011-06-06 00:07:55 +0800117 imx1_soc_init();
118
Fabio Estevam31b738a2011-06-21 14:49:36 -0300119 mxc_gpio_setup_multiple_pins(mxc_uart1_pins,
120 ARRAY_SIZE(mxc_uart1_pins), "UART1");
121
Uwe Kleine-Königd112f4e2010-06-22 14:50:59 +0200122 imx1_add_imx_uart0(&uart_pdata);
Sascha Hauer24205632009-01-28 17:36:37 +0100123
124 printk(KERN_INFO"Scb9328: Adding devices\n");
Shawn Guo438196c2011-12-05 10:12:28 +0800125 dm9000x_resources[2].start = gpio_to_irq(IMX_GPIO_NR(3, 3));
126 dm9000x_resources[2].end = gpio_to_irq(IMX_GPIO_NR(3, 3));
Sascha Hauer24205632009-01-28 17:36:37 +0100127 platform_add_devices(devices, ARRAY_SIZE(devices));
128}
129
130static void __init scb9328_timer_init(void)
131{
132 mx1_clocks_init(32000);
133}
134
135static struct sys_timer scb9328_timer = {
136 .init = scb9328_timer_init,
137};
138
139MACHINE_START(SCB9328, "Synertronixx scb9328")
Uwe Kleine-König3dac2192011-02-07 16:35:19 +0100140 /* Sascha Hauer */
Nicolas Pitredc8f1902011-07-05 22:38:12 -0400141 .atag_offset = 100,
Uwe Kleine-König3dac2192011-02-07 16:35:19 +0100142 .map_io = mx1_map_io,
143 .init_early = imx1_init_early,
144 .init_irq = mx1_init_irq,
Sascha Hauerffa2ea32011-09-20 14:31:24 +0200145 .handle_irq = imx1_handle_irq,
Uwe Kleine-König3dac2192011-02-07 16:35:19 +0100146 .timer = &scb9328_timer,
147 .init_machine = scb9328_init,
Russell King65ea7882011-11-06 17:12:08 +0000148 .restart = mxc_restart,
Sascha Hauer24205632009-01-28 17:36:37 +0100149MACHINE_END