[Blackfin] arch: add Hitachi TX09D70VM1CDA TFT LCD driver resource to Blackfin board
[sfrench/cifs-2.6.git] / arch / blackfin / mach-bf537 / boards / cm_bf537.c
1 /*
2  * File:         arch/blackfin/mach-bf537/boards/cm_bf537.c
3  * Based on:     arch/blackfin/mach-bf533/boards/ezkit.c
4  * Author:       Aidan Williams <aidan@nicta.com.au>
5  *
6  * Created:      2005
7  * Description:  Board description file
8  *
9  * Modified:
10  *               Copyright 2005 National ICT Australia (NICTA)
11  *               Copyright 2004-2006 Analog Devices Inc.
12  *
13  * Bugs:         Enter bugs at http://blackfin.uclinux.org/
14  *
15  * This program is free software; you can redistribute it and/or modify
16  * it under the terms of the GNU General Public License as published by
17  * the Free Software Foundation; either version 2 of the License, or
18  * (at your option) any later version.
19  *
20  * This program is distributed in the hope that it will be useful,
21  * but WITHOUT ANY WARRANTY; without even the implied warranty of
22  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
23  * GNU General Public License for more details.
24  *
25  * You should have received a copy of the GNU General Public License
26  * along with this program; if not, see the file COPYING, or write
27  * to the Free Software Foundation, Inc.,
28  * 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
29  */
30
31 #include <linux/device.h>
32 #include <linux/platform_device.h>
33 #include <linux/mtd/mtd.h>
34 #include <linux/mtd/partitions.h>
35 #include <linux/spi/spi.h>
36 #include <linux/spi/flash.h>
37 #include <linux/usb/isp1362.h>
38 #include <linux/pata_platform.h>
39 #include <linux/irq.h>
40 #include <asm/dma.h>
41 #include <asm/bfin5xx_spi.h>
42 #include <asm/portmux.h>
43
44 /*
45  * Name the Board for the /proc/cpuinfo
46  */
47 const char bfin_board_name[] = "Bluetechnix CM BF537";
48
49 #if defined(CONFIG_SPI_BFIN) || defined(CONFIG_SPI_BFIN_MODULE)
50 /* all SPI peripherals info goes here */
51
52 #if defined(CONFIG_MTD_M25P80) || defined(CONFIG_MTD_M25P80_MODULE)
53 static struct mtd_partition bfin_spi_flash_partitions[] = {
54         {
55                 .name = "bootloader",
56                 .size = 0x00020000,
57                 .offset = 0,
58                 .mask_flags = MTD_CAP_ROM
59         }, {
60                 .name = "kernel",
61                 .size = 0xe0000,
62                 .offset = 0x20000
63         }, {
64                 .name = "file system",
65                 .size = 0x700000,
66                 .offset = 0x00100000,
67         }
68 };
69
70 static struct flash_platform_data bfin_spi_flash_data = {
71         .name = "m25p80",
72         .parts = bfin_spi_flash_partitions,
73         .nr_parts = ARRAY_SIZE(bfin_spi_flash_partitions),
74         .type = "m25p64",
75 };
76
77 /* SPI flash chip (m25p64) */
78 static struct bfin5xx_spi_chip spi_flash_chip_info = {
79         .enable_dma = 0,         /* use dma transfer with this chip*/
80         .bits_per_word = 8,
81 };
82 #endif
83
84 #if defined(CONFIG_SPI_ADC_BF533) || defined(CONFIG_SPI_ADC_BF533_MODULE)
85 /* SPI ADC chip */
86 static struct bfin5xx_spi_chip spi_adc_chip_info = {
87         .enable_dma = 1,         /* use dma transfer with this chip*/
88         .bits_per_word = 16,
89 };
90 #endif
91
92 #if defined(CONFIG_SND_BLACKFIN_AD1836) || defined(CONFIG_SND_BLACKFIN_AD1836_MODULE)
93 static struct bfin5xx_spi_chip ad1836_spi_chip_info = {
94         .enable_dma = 0,
95         .bits_per_word = 16,
96 };
97 #endif
98
99 #if defined(CONFIG_AD9960) || defined(CONFIG_AD9960_MODULE)
100 static struct bfin5xx_spi_chip ad9960_spi_chip_info = {
101         .enable_dma = 0,
102         .bits_per_word = 16,
103 };
104 #endif
105
106 #if defined(CONFIG_SPI_MMC) || defined(CONFIG_SPI_MMC_MODULE)
107 static struct bfin5xx_spi_chip spi_mmc_chip_info = {
108         .enable_dma = 1,
109         .bits_per_word = 8,
110 };
111 #endif
112
113 static struct spi_board_info bfin_spi_board_info[] __initdata = {
114 #if defined(CONFIG_MTD_M25P80) || defined(CONFIG_MTD_M25P80_MODULE)
115         {
116                 /* the modalias must be the same as spi device driver name */
117                 .modalias = "m25p80", /* Name of spi_driver for this device */
118                 .max_speed_hz = 25000000,     /* max spi clock (SCK) speed in HZ */
119                 .bus_num = 0, /* Framework bus number */
120                 .chip_select = 1, /* Framework chip select. On STAMP537 it is SPISSEL1*/
121                 .platform_data = &bfin_spi_flash_data,
122                 .controller_data = &spi_flash_chip_info,
123                 .mode = SPI_MODE_3,
124         },
125 #endif
126
127 #if defined(CONFIG_SPI_ADC_BF533) || defined(CONFIG_SPI_ADC_BF533_MODULE)
128         {
129                 .modalias = "bfin_spi_adc", /* Name of spi_driver for this device */
130                 .max_speed_hz = 6250000,     /* max spi clock (SCK) speed in HZ */
131                 .bus_num = 0, /* Framework bus number */
132                 .chip_select = 1, /* Framework chip select. */
133                 .platform_data = NULL, /* No spi_driver specific config */
134                 .controller_data = &spi_adc_chip_info,
135         },
136 #endif
137
138 #if defined(CONFIG_SND_BLACKFIN_AD1836) || defined(CONFIG_SND_BLACKFIN_AD1836_MODULE)
139         {
140                 .modalias = "ad1836-spi",
141                 .max_speed_hz = 3125000,     /* max spi clock (SCK) speed in HZ */
142                 .bus_num = 0,
143                 .chip_select = CONFIG_SND_BLACKFIN_SPI_PFBIT,
144                 .controller_data = &ad1836_spi_chip_info,
145         },
146 #endif
147
148 #if defined(CONFIG_AD9960) || defined(CONFIG_AD9960_MODULE)
149         {
150                 .modalias = "ad9960-spi",
151                 .max_speed_hz = 10000000,     /* max spi clock (SCK) speed in HZ */
152                 .bus_num = 0,
153                 .chip_select = 1,
154                 .controller_data = &ad9960_spi_chip_info,
155         },
156 #endif
157
158 #if defined(CONFIG_SPI_MMC) || defined(CONFIG_SPI_MMC_MODULE)
159         {
160                 .modalias = "spi_mmc_dummy",
161                 .max_speed_hz = 25000000,     /* max spi clock (SCK) speed in HZ */
162                 .bus_num = 0,
163                 .chip_select = 7,
164                 .platform_data = NULL,
165                 .controller_data = &spi_mmc_chip_info,
166                 .mode = SPI_MODE_3,
167         },
168         {
169                 .modalias = "spi_mmc",
170                 .max_speed_hz = 25000000,     /* max spi clock (SCK) speed in HZ */
171                 .bus_num = 0,
172                 .chip_select = CONFIG_SPI_MMC_CS_CHAN,
173                 .platform_data = NULL,
174                 .controller_data = &spi_mmc_chip_info,
175                 .mode = SPI_MODE_3,
176         },
177 #endif
178 };
179
180 /* SPI (0) */
181 static struct resource bfin_spi0_resource[] = {
182         [0] = {
183                 .start = SPI0_REGBASE,
184                 .end   = SPI0_REGBASE + 0xFF,
185                 .flags = IORESOURCE_MEM,
186                 },
187         [1] = {
188                 .start = CH_SPI,
189                 .end   = CH_SPI,
190                 .flags = IORESOURCE_IRQ,
191         }
192 };
193
194 /* SPI controller data */
195 static struct bfin5xx_spi_master bfin_spi0_info = {
196         .num_chipselect = 8,
197         .enable_dma = 1,  /* master has the ability to do dma transfer */
198         .pin_req = {P_SPI0_SCK, P_SPI0_MISO, P_SPI0_MOSI, 0},
199 };
200
201 static struct platform_device bfin_spi0_device = {
202         .name = "bfin-spi",
203         .id = 0, /* Bus number */
204         .num_resources = ARRAY_SIZE(bfin_spi0_resource),
205         .resource = bfin_spi0_resource,
206         .dev = {
207                 .platform_data = &bfin_spi0_info, /* Passed to driver */
208         },
209 };
210 #endif  /* spi master and devices */
211
212 #if defined(CONFIG_RTC_DRV_BFIN) || defined(CONFIG_RTC_DRV_BFIN_MODULE)
213 static struct platform_device rtc_device = {
214         .name = "rtc-bfin",
215         .id   = -1,
216 };
217 #endif
218
219 #if defined(CONFIG_FB_HITACHI_TX09) || defined(CONFIG_FB_HITACHI_TX09_MODULE)
220 static struct platform_device hitachi_fb_device = {
221         .name = "hitachi-tx09",
222 };
223 #endif
224
225 #if defined(CONFIG_SMC91X) || defined(CONFIG_SMC91X_MODULE)
226 static struct resource smc91x_resources[] = {
227         {
228                 .start = 0x20200300,
229                 .end = 0x20200300 + 16,
230                 .flags = IORESOURCE_MEM,
231         }, {
232                 .start = IRQ_PF14,
233                 .end = IRQ_PF14,
234                 .flags = IORESOURCE_IRQ | IORESOURCE_IRQ_HIGHLEVEL,
235                 },
236 };
237
238 static struct platform_device smc91x_device = {
239         .name = "smc91x",
240         .id = 0,
241         .num_resources = ARRAY_SIZE(smc91x_resources),
242         .resource = smc91x_resources,
243 };
244 #endif
245
246 #if defined(CONFIG_USB_ISP1362_HCD) || defined(CONFIG_USB_ISP1362_HCD_MODULE)
247 static struct resource isp1362_hcd_resources[] = {
248         {
249                 .start = 0x20308000,
250                 .end = 0x20308000,
251                 .flags = IORESOURCE_MEM,
252         }, {
253                 .start = 0x20308004,
254                 .end = 0x20308004,
255                 .flags = IORESOURCE_MEM,
256         }, {
257                 .start = IRQ_PG15,
258                 .end = IRQ_PG15,
259                 .flags = IORESOURCE_IRQ | IORESOURCE_IRQ_HIGHLEVEL,
260         },
261 };
262
263 static struct isp1362_platform_data isp1362_priv = {
264         .sel15Kres = 1,
265         .clknotstop = 0,
266         .oc_enable = 0,
267         .int_act_high = 0,
268         .int_edge_triggered = 0,
269         .remote_wakeup_connected = 0,
270         .no_power_switching = 1,
271         .power_switching_mode = 0,
272 };
273
274 static struct platform_device isp1362_hcd_device = {
275         .name = "isp1362-hcd",
276         .id = 0,
277         .dev = {
278                 .platform_data = &isp1362_priv,
279         },
280         .num_resources = ARRAY_SIZE(isp1362_hcd_resources),
281         .resource = isp1362_hcd_resources,
282 };
283 #endif
284
285 #if defined(CONFIG_USB_NET2272) || defined(CONFIG_USB_NET2272_MODULE)
286 static struct resource net2272_bfin_resources[] = {
287         {
288                 .start = 0x20200000,
289                 .end = 0x20200000 + 0x100,
290                 .flags = IORESOURCE_MEM,
291         }, {
292                 .start = IRQ_PH14,
293                 .end = IRQ_PH14,
294                 .flags = IORESOURCE_IRQ | IORESOURCE_IRQ_HIGHLEVEL,
295         },
296 };
297
298 static struct platform_device net2272_bfin_device = {
299         .name = "net2272",
300         .id = -1,
301         .num_resources = ARRAY_SIZE(net2272_bfin_resources),
302         .resource = net2272_bfin_resources,
303 };
304 #endif
305
306 #if defined(CONFIG_SERIAL_BFIN) || defined(CONFIG_SERIAL_BFIN_MODULE)
307 static struct resource bfin_uart_resources[] = {
308         {
309                 .start = 0xFFC00400,
310                 .end = 0xFFC004FF,
311                 .flags = IORESOURCE_MEM,
312         }, {
313                 .start = 0xFFC02000,
314                 .end = 0xFFC020FF,
315                 .flags = IORESOURCE_MEM,
316         },
317 };
318
319 static struct platform_device bfin_uart_device = {
320         .name = "bfin-uart",
321         .id = 1,
322         .num_resources = ARRAY_SIZE(bfin_uart_resources),
323         .resource = bfin_uart_resources,
324 };
325 #endif
326
327 #if defined(CONFIG_SERIAL_BFIN_SPORT) || defined(CONFIG_SERIAL_BFIN_SPORT_MODULE)
328 static struct platform_device bfin_sport0_uart_device = {
329         .name = "bfin-sport-uart",
330         .id = 0,
331 };
332
333 static struct platform_device bfin_sport1_uart_device = {
334         .name = "bfin-sport-uart",
335         .id = 1,
336 };
337 #endif
338
339 #if defined(CONFIG_BFIN_MAC) || defined(CONFIG_BFIN_MAC_MODULE)
340 static struct platform_device bfin_mac_device = {
341         .name = "bfin_mac",
342 };
343 #endif
344
345 #if defined(CONFIG_PATA_PLATFORM) || defined(CONFIG_PATA_PLATFORM_MODULE)
346 #define PATA_INT        64
347
348 static struct pata_platform_info bfin_pata_platform_data = {
349         .ioport_shift = 2,
350         .irq_type = IRQF_TRIGGER_HIGH | IRQF_DISABLED,
351 };
352
353 static struct resource bfin_pata_resources[] = {
354         {
355                 .start = 0x2030C000,
356                 .end = 0x2030C01F,
357                 .flags = IORESOURCE_MEM,
358         },
359         {
360                 .start = 0x2030D018,
361                 .end = 0x2030D01B,
362                 .flags = IORESOURCE_MEM,
363         },
364         {
365                 .start = PATA_INT,
366                 .end = PATA_INT,
367                 .flags = IORESOURCE_IRQ,
368         },
369 };
370
371 static struct platform_device bfin_pata_device = {
372         .name = "pata_platform",
373         .id = -1,
374         .num_resources = ARRAY_SIZE(bfin_pata_resources),
375         .resource = bfin_pata_resources,
376         .dev = {
377                 .platform_data = &bfin_pata_platform_data,
378         }
379 };
380 #endif
381
382 static struct platform_device *cm_bf537_devices[] __initdata = {
383 #if defined(CONFIG_FB_HITACHI_TX09) || defined(CONFIG_FB_HITACHI_TX09_MODULE)
384         &hitachi_fb_device,
385 #endif
386
387 #if defined(CONFIG_RTC_DRV_BFIN) || defined(CONFIG_RTC_DRV_BFIN_MODULE)
388         &rtc_device,
389 #endif
390
391 #if defined(CONFIG_SERIAL_BFIN) || defined(CONFIG_SERIAL_BFIN_MODULE)
392         &bfin_uart_device,
393 #endif
394
395 #if defined(CONFIG_SERIAL_BFIN_SPORT) || defined(CONFIG_SERIAL_BFIN_SPORT_MODULE)
396         &bfin_sport0_uart_device,
397         &bfin_sport1_uart_device,
398 #endif
399
400 #if defined(CONFIG_USB_ISP1362_HCD) || defined(CONFIG_USB_ISP1362_HCD_MODULE)
401         &isp1362_hcd_device,
402 #endif
403
404 #if defined(CONFIG_SMC91X) || defined(CONFIG_SMC91X_MODULE)
405         &smc91x_device,
406 #endif
407
408 #if defined(CONFIG_BFIN_MAC) || defined(CONFIG_BFIN_MAC_MODULE)
409         &bfin_mac_device,
410 #endif
411
412 #if defined(CONFIG_USB_NET2272) || defined(CONFIG_USB_NET2272_MODULE)
413         &net2272_bfin_device,
414 #endif
415
416 #if defined(CONFIG_SPI_BFIN) || defined(CONFIG_SPI_BFIN_MODULE)
417         &bfin_spi0_device,
418 #endif
419
420 #if defined(CONFIG_PATA_PLATFORM) || defined(CONFIG_PATA_PLATFORM_MODULE)
421         &bfin_pata_device,
422 #endif
423 };
424
425 static int __init cm_bf537_init(void)
426 {
427         printk(KERN_INFO "%s(): registering device resources\n", __FUNCTION__);
428         platform_add_devices(cm_bf537_devices, ARRAY_SIZE(cm_bf537_devices));
429 #if defined(CONFIG_SPI_BFIN) || defined(CONFIG_SPI_BFIN_MODULE)
430         spi_register_board_info(bfin_spi_board_info, ARRAY_SIZE(bfin_spi_board_info));
431 #endif
432
433 #if defined(CONFIG_PATA_PLATFORM) || defined(CONFIG_PATA_PLATFORM_MODULE)
434         irq_desc[PATA_INT].status |= IRQ_NOAUTOEN;
435 #endif
436         return 0;
437 }
438
439 arch_initcall(cm_bf537_init);
440
441 void bfin_get_ether_addr(char *addr)
442 {
443         random_ether_addr(addr);
444         printk(KERN_WARNING "%s:%s: Setting Ethernet MAC to a random one\n", __FILE__, __func__);
445 }
446 EXPORT_SYMBOL(bfin_get_ether_addr);