On Tue, Nov 06, 2007 at 02:33:53AM -0800, akpm@linux-foundation.org wrote:
[mmotm.git] / arch / blackfin / mach-bf533 / boards / ip0x.c
blob644be5e5ab6f4008568c69ba35dbf595fb53cc69
1 /*
2 * Copyright 2004-2009 Analog Devices Inc.
3 * 2007 David Rowe
4 * 2006 Intratrade Ltd.
5 * Ivan Danov <idanov@gmail.com>
6 * 2005 National ICT Australia (NICTA)
7 * Aidan Williams <aidan@nicta.com.au>
9 * Licensed under the GPL-2 or later.
12 #include <linux/device.h>
13 #include <linux/platform_device.h>
14 #include <linux/mtd/mtd.h>
15 #include <linux/mtd/partitions.h>
16 #include <linux/spi/spi.h>
17 #include <linux/spi/flash.h>
18 #if defined(CONFIG_USB_ISP1362_HCD) || defined(CONFIG_USB_ISP1362_HCD_MODULE)
19 #include <linux/usb/isp1362.h>
20 #endif
21 #include <asm/irq.h>
22 #include <asm/bfin5xx_spi.h>
25 * Name the Board for the /proc/cpuinfo
27 const char bfin_board_name[] = "IP04/IP08";
30 * Driver needs to know address, irq and flag pin.
32 #if defined(CONFIG_BFIN532_IP0X)
33 #if defined(CONFIG_DM9000) || defined(CONFIG_DM9000_MODULE)
35 #include <linux/dm9000.h>
37 static struct resource dm9000_resource1[] = {
39 .start = 0x20100000,
40 .end = 0x20100000 + 1,
41 .flags = IORESOURCE_MEM
42 },{
43 .start = 0x20100000 + 2,
44 .end = 0x20100000 + 3,
45 .flags = IORESOURCE_MEM
46 },{
47 .start = IRQ_PF15,
48 .end = IRQ_PF15,
49 .flags = IORESOURCE_IRQ | IORESOURCE_IRQ_HIGHEDGE
53 static struct resource dm9000_resource2[] = {
55 .start = 0x20200000,
56 .end = 0x20200000 + 1,
57 .flags = IORESOURCE_MEM
58 },{
59 .start = 0x20200000 + 2,
60 .end = 0x20200000 + 3,
61 .flags = IORESOURCE_MEM
62 },{
63 .start = IRQ_PF14,
64 .end = IRQ_PF14,
65 .flags = IORESOURCE_IRQ | IORESOURCE_IRQ_HIGHEDGE
70 * for the moment we limit ourselves to 16bit IO until some
71 * better IO routines can be written and tested
73 static struct dm9000_plat_data dm9000_platdata1 = {
74 .flags = DM9000_PLATF_16BITONLY,
77 static struct platform_device dm9000_device1 = {
78 .name = "dm9000",
79 .id = 0,
80 .num_resources = ARRAY_SIZE(dm9000_resource1),
81 .resource = dm9000_resource1,
82 .dev = {
83 .platform_data = &dm9000_platdata1,
87 static struct dm9000_plat_data dm9000_platdata2 = {
88 .flags = DM9000_PLATF_16BITONLY,
91 static struct platform_device dm9000_device2 = {
92 .name = "dm9000",
93 .id = 1,
94 .num_resources = ARRAY_SIZE(dm9000_resource2),
95 .resource = dm9000_resource2,
96 .dev = {
97 .platform_data = &dm9000_platdata2,
101 #endif
102 #endif
105 #if defined(CONFIG_SPI_BFIN) || defined(CONFIG_SPI_BFIN_MODULE)
106 /* all SPI peripherals info goes here */
108 #if defined(CONFIG_MMC_SPI) || defined(CONFIG_MMC_SPI_MODULE)
109 static struct bfin5xx_spi_chip mmc_spi_chip_info = {
111 * CPOL (Clock Polarity)
112 * 0 - Active high SCK
113 * 1 - Active low SCK
114 * CPHA (Clock Phase) Selects transfer format and operation mode
115 * 0 - SCLK toggles from middle of the first data bit, slave select
116 * pins controlled by hardware.
117 * 1 - SCLK toggles from beginning of first data bit, slave select
118 * pins controller by user software.
119 * .ctl_reg = 0x1c00, * CPOL=1,CPHA=1,Sandisk 1G work
120 * NO NO .ctl_reg = 0x1800, * CPOL=1,CPHA=0
121 * NO NO .ctl_reg = 0x1400, * CPOL=0,CPHA=1
123 .ctl_reg = 0x1000, /* CPOL=0,CPHA=0,Sandisk 1G work */
124 .enable_dma = 0, /* if 1 - block!!! */
125 .bits_per_word = 8,
127 #endif
129 /* Notice: for blackfin, the speed_hz is the value of register
130 * SPI_BAUD, not the real baudrate */
131 static struct spi_board_info bfin_spi_board_info[] __initdata = {
132 #if defined(CONFIG_MMC_SPI) || defined(CONFIG_MMC_SPI_MODULE)
134 .modalias = "mmc_spi",
135 .max_speed_hz = 2,
136 .bus_num = 1,
137 .chip_select = 5,
138 .controller_data = &mmc_spi_chip_info,
140 #endif
143 /* SPI controller data */
144 static struct bfin5xx_spi_master spi_bfin_master_info = {
145 .num_chipselect = 8,
146 .enable_dma = 1, /* master has the ability to do dma transfer */
149 static struct platform_device spi_bfin_master_device = {
150 .name = "bfin-spi-master",
151 .id = 1, /* Bus number */
152 .dev = {
153 .platform_data = &spi_bfin_master_info, /* Passed to driver */
156 #endif /* spi master and devices */
158 #if defined(CONFIG_SERIAL_BFIN) || defined(CONFIG_SERIAL_BFIN_MODULE)
159 static struct resource bfin_uart_resources[] = {
161 .start = 0xFFC00400,
162 .end = 0xFFC004FF,
163 .flags = IORESOURCE_MEM,
167 static struct platform_device bfin_uart_device = {
168 .name = "bfin-uart",
169 .id = 1,
170 .num_resources = ARRAY_SIZE(bfin_uart_resources),
171 .resource = bfin_uart_resources,
173 #endif
175 #if defined(CONFIG_BFIN_SIR) || defined(CONFIG_BFIN_SIR_MODULE)
176 #ifdef CONFIG_BFIN_SIR0
177 static struct resource bfin_sir0_resources[] = {
179 .start = 0xFFC00400,
180 .end = 0xFFC004FF,
181 .flags = IORESOURCE_MEM,
184 .start = IRQ_UART0_RX,
185 .end = IRQ_UART0_RX+1,
186 .flags = IORESOURCE_IRQ,
189 .start = CH_UART0_RX,
190 .end = CH_UART0_RX+1,
191 .flags = IORESOURCE_DMA,
195 static struct platform_device bfin_sir0_device = {
196 .name = "bfin_sir",
197 .id = 0,
198 .num_resources = ARRAY_SIZE(bfin_sir0_resources),
199 .resource = bfin_sir0_resources,
201 #endif
202 #endif
204 #if defined(CONFIG_USB_ISP1362_HCD) || defined(CONFIG_USB_ISP1362_HCD_MODULE)
205 static struct resource isp1362_hcd_resources[] = {
207 .start = 0x20300000,
208 .end = 0x20300000 + 1,
209 .flags = IORESOURCE_MEM,
211 .start = 0x20300000 + 2,
212 .end = 0x20300000 + 3,
213 .flags = IORESOURCE_MEM,
215 .start = IRQ_PF11,
216 .end = IRQ_PF11,
217 .flags = IORESOURCE_IRQ | IORESOURCE_IRQ_HIGHLEVEL,
221 static struct isp1362_platform_data isp1362_priv = {
222 .sel15Kres = 1,
223 .clknotstop = 0,
224 .oc_enable = 0, /* external OC */
225 .int_act_high = 0,
226 .int_edge_triggered = 0,
227 .remote_wakeup_connected = 0,
228 .no_power_switching = 1,
229 .power_switching_mode = 0,
232 static struct platform_device isp1362_hcd_device = {
233 .name = "isp1362-hcd",
234 .id = 0,
235 .dev = {
236 .platform_data = &isp1362_priv,
238 .num_resources = ARRAY_SIZE(isp1362_hcd_resources),
239 .resource = isp1362_hcd_resources,
241 #endif
244 static struct platform_device *ip0x_devices[] __initdata = {
245 #if defined(CONFIG_BFIN532_IP0X)
246 #if defined(CONFIG_DM9000) || defined(CONFIG_DM9000_MODULE)
247 &dm9000_device1,
248 &dm9000_device2,
249 #endif
250 #endif
252 #if defined(CONFIG_SPI_BFIN) || defined(CONFIG_SPI_BFIN_MODULE)
253 &spi_bfin_master_device,
254 #endif
256 #if defined(CONFIG_SERIAL_BFIN) || defined(CONFIG_SERIAL_BFIN_MODULE)
257 &bfin_uart_device,
258 #endif
260 #if defined(CONFIG_BFIN_SIR) || defined(CONFIG_BFIN_SIR_MODULE)
261 #ifdef CONFIG_BFIN_SIR0
262 &bfin_sir0_device,
263 #endif
264 #endif
266 #if defined(CONFIG_USB_ISP1362_HCD) || defined(CONFIG_USB_ISP1362_HCD_MODULE)
267 &isp1362_hcd_device,
268 #endif
271 static int __init ip0x_init(void)
273 int i;
275 printk(KERN_INFO "%s(): registering device resources\n", __func__);
276 platform_add_devices(ip0x_devices, ARRAY_SIZE(ip0x_devices));
278 #if defined(CONFIG_SPI_BFIN) || defined(CONFIG_SPI_BFIN_MODULE)
279 for (i = 0; i < ARRAY_SIZE(bfin_spi_board_info); ++i) {
280 int j = 1 << bfin_spi_board_info[i].chip_select;
281 /* set spi cs to 1 */
282 bfin_write_FIO_DIR(bfin_read_FIO_DIR() | j);
283 bfin_write_FIO_FLAG_S(j);
285 spi_register_board_info(bfin_spi_board_info, ARRAY_SIZE(bfin_spi_board_info));
286 #endif
288 return 0;
291 arch_initcall(ip0x_init);