blob: d9d40450bdc5d8c018b03c18305d282d1160faab [file] [log] [blame]
Kevin Hilman7c6337e2007-04-30 19:37:19 +01001/*
2 * TI DaVinci EVM board support
3 *
4 * Author: Kevin Hilman, MontaVista Software, Inc. <source@mvista.com>
5 *
6 * 2007 (c) MontaVista Software, Inc. This file is licensed under
7 * the terms of the GNU General Public License version 2. This program
8 * is licensed "as is" without any warranty of any kind, whether express
9 * or implied.
10 */
11#include <linux/kernel.h>
12#include <linux/module.h>
13#include <linux/init.h>
14#include <linux/dma-mapping.h>
15#include <linux/platform_device.h>
David Brownell7bff3c42008-09-07 23:43:02 -070016#include <linux/gpio.h>
17#include <linux/leds.h>
Kevin Hilmand0e47fb2009-04-14 11:30:11 -050018#include <linux/memory.h>
David Brownell7bff3c42008-09-07 23:43:02 -070019
20#include <linux/i2c.h>
21#include <linux/i2c/pcf857x.h>
22#include <linux/i2c/at24.h>
Kevin Hilmanac7b75b2009-05-07 06:19:40 -070023#include <linux/etherdevice.h>
Kevin Hilman7c6337e2007-04-30 19:37:19 +010024#include <linux/mtd/mtd.h>
Kevin Hilmand0e47fb2009-04-14 11:30:11 -050025#include <linux/mtd/nand.h>
Kevin Hilman7c6337e2007-04-30 19:37:19 +010026#include <linux/mtd/partitions.h>
27#include <linux/mtd/physmap.h>
Russell Kingfced80c2008-09-06 12:10:45 +010028#include <linux/io.h>
Kevin Hilmand0e47fb2009-04-14 11:30:11 -050029#include <linux/phy.h>
30#include <linux/clk.h>
Kevin Hilman7c6337e2007-04-30 19:37:19 +010031
32#include <asm/setup.h>
Kevin Hilman7c6337e2007-04-30 19:37:19 +010033#include <asm/mach-types.h>
Kevin Hilman7c6337e2007-04-30 19:37:19 +010034
35#include <asm/mach/arch.h>
36#include <asm/mach/map.h>
37#include <asm/mach/flash.h>
38
Kevin Hilmand0e47fb2009-04-14 11:30:11 -050039#include <mach/dm644x.h>
Russell Kinga09e64f2008-08-05 16:14:15 +010040#include <mach/common.h>
David Brownell7bff3c42008-09-07 23:43:02 -070041#include <mach/i2c.h>
Kevin Hilmand0e47fb2009-04-14 11:30:11 -050042#include <mach/serial.h>
43#include <mach/mux.h>
44#include <mach/psc.h>
45#include <mach/nand.h>
Kevin Hilman2dbf56ae2009-05-11 15:55:03 -070046#include <mach/mmc.h>
Mark A. Greerb14dc0f2009-04-15 12:41:27 -070047#include <mach/emac.h>
Mark A. Greer79c3c0b2009-04-15 12:38:58 -070048#include <mach/common.h>
Kevin Hilmand0e47fb2009-04-14 11:30:11 -050049
50#define DM644X_EVM_PHY_MASK (0x2)
51#define DM644X_EVM_MDIO_FREQUENCY (2200000) /* PHY bus frequency */
Kevin Hilman7c6337e2007-04-30 19:37:19 +010052
Kevin Hilmanf5c122d2009-04-14 07:04:16 -050053#define DAVINCI_CFC_ATA_BASE 0x01C66000
Kevin Hilmand0e47fb2009-04-14 11:30:11 -050054
55#define DAVINCI_ASYNC_EMIF_CONTROL_BASE 0x01e00000
Kevin Hilmanf5c122d2009-04-14 07:04:16 -050056#define DAVINCI_ASYNC_EMIF_DATA_CE0_BASE 0x02000000
Kevin Hilmand0e47fb2009-04-14 11:30:11 -050057#define DAVINCI_ASYNC_EMIF_DATA_CE1_BASE 0x04000000
58#define DAVINCI_ASYNC_EMIF_DATA_CE2_BASE 0x06000000
59#define DAVINCI_ASYNC_EMIF_DATA_CE3_BASE 0x08000000
Kevin Hilmanf5c122d2009-04-14 07:04:16 -050060
Kevin Hilmand0e47fb2009-04-14 11:30:11 -050061#define LXT971_PHY_ID (0x001378e2)
62#define LXT971_PHY_MASK (0xfffffff0)
Kevin Hilman7c6337e2007-04-30 19:37:19 +010063
David Brownell7bff3c42008-09-07 23:43:02 -070064static struct mtd_partition davinci_evm_norflash_partitions[] = {
Kevin Hilmand0e47fb2009-04-14 11:30:11 -050065 /* bootloader (UBL, U-Boot, etc) in first 5 sectors */
Kevin Hilman7c6337e2007-04-30 19:37:19 +010066 {
67 .name = "bootloader",
68 .offset = 0,
Kevin Hilmand0e47fb2009-04-14 11:30:11 -050069 .size = 5 * SZ_64K,
Kevin Hilman7c6337e2007-04-30 19:37:19 +010070 .mask_flags = MTD_WRITEABLE, /* force read-only */
71 },
72 /* bootloader params in the next 1 sectors */
73 {
74 .name = "params",
75 .offset = MTDPART_OFS_APPEND,
76 .size = SZ_64K,
77 .mask_flags = 0,
78 },
79 /* kernel */
80 {
81 .name = "kernel",
82 .offset = MTDPART_OFS_APPEND,
83 .size = SZ_2M,
84 .mask_flags = 0
85 },
86 /* file system */
87 {
88 .name = "filesystem",
89 .offset = MTDPART_OFS_APPEND,
90 .size = MTDPART_SIZ_FULL,
91 .mask_flags = 0
92 }
93};
94
David Brownell7bff3c42008-09-07 23:43:02 -070095static struct physmap_flash_data davinci_evm_norflash_data = {
Kevin Hilman7c6337e2007-04-30 19:37:19 +010096 .width = 2,
David Brownell7bff3c42008-09-07 23:43:02 -070097 .parts = davinci_evm_norflash_partitions,
98 .nr_parts = ARRAY_SIZE(davinci_evm_norflash_partitions),
Kevin Hilman7c6337e2007-04-30 19:37:19 +010099};
100
101/* NOTE: CFI probe will correctly detect flash part as 32M, but EMIF
102 * limits addresses to 16M, so using addresses past 16M will wrap */
David Brownell7bff3c42008-09-07 23:43:02 -0700103static struct resource davinci_evm_norflash_resource = {
104 .start = DAVINCI_ASYNC_EMIF_DATA_CE0_BASE,
105 .end = DAVINCI_ASYNC_EMIF_DATA_CE0_BASE + SZ_16M - 1,
Kevin Hilman7c6337e2007-04-30 19:37:19 +0100106 .flags = IORESOURCE_MEM,
107};
108
David Brownell7bff3c42008-09-07 23:43:02 -0700109static struct platform_device davinci_evm_norflash_device = {
Kevin Hilman7c6337e2007-04-30 19:37:19 +0100110 .name = "physmap-flash",
111 .id = 0,
112 .dev = {
David Brownell7bff3c42008-09-07 23:43:02 -0700113 .platform_data = &davinci_evm_norflash_data,
Kevin Hilman7c6337e2007-04-30 19:37:19 +0100114 },
115 .num_resources = 1,
David Brownell7bff3c42008-09-07 23:43:02 -0700116 .resource = &davinci_evm_norflash_resource,
Kevin Hilman7c6337e2007-04-30 19:37:19 +0100117};
118
David Brownell3e9c18e2009-04-15 14:19:21 -0500119/* DM644x EVM includes a 64 MByte small-page NAND flash (16K blocks).
120 * It may used instead of the (default) NOR chip to boot, using TI's
121 * tools to install the secondary boot loader (UBL) and U-Boot.
122 */
Kevin Hilmand0e47fb2009-04-14 11:30:11 -0500123struct mtd_partition davinci_evm_nandflash_partition[] = {
David Brownell3e9c18e2009-04-15 14:19:21 -0500124 /* Bootloader layout depends on whose u-boot is installed, but we
125 * can hide all the details.
126 * - block 0 for u-boot environment ... in mainline u-boot
127 * - block 1 for UBL (plus up to four backup copies in blocks 2..5)
128 * - blocks 6...? for u-boot
129 * - blocks 16..23 for u-boot environment ... in TI's u-boot
130 */
Kevin Hilmand0e47fb2009-04-14 11:30:11 -0500131 {
David Brownell3e9c18e2009-04-15 14:19:21 -0500132 .name = "bootloader",
133 .offset = 0,
134 .size = SZ_256K + SZ_128K,
135 .mask_flags = MTD_WRITEABLE, /* force read-only */
136 },
137 /* Kernel */
138 {
139 .name = "kernel",
140 .offset = MTDPART_OFS_APPEND,
141 .size = SZ_4M,
142 .mask_flags = 0,
143 },
144 /* File system (older GIT kernels started this on the 5MB mark) */
145 {
146 .name = "filesystem",
147 .offset = MTDPART_OFS_APPEND,
Kevin Hilmand0e47fb2009-04-14 11:30:11 -0500148 .size = MTDPART_SIZ_FULL,
149 .mask_flags = 0,
150 }
David Brownell3e9c18e2009-04-15 14:19:21 -0500151 /* A few blocks at end hold a flash BBT ... created by TI's CCS
152 * using flashwriter_nand.out, but ignored by TI's versions of
153 * Linux and u-boot. We boot faster by using them.
154 */
Kevin Hilmand0e47fb2009-04-14 11:30:11 -0500155};
David Brownell7bff3c42008-09-07 23:43:02 -0700156
Kevin Hilmand0e47fb2009-04-14 11:30:11 -0500157static struct davinci_nand_pdata davinci_evm_nandflash_data = {
158 .parts = davinci_evm_nandflash_partition,
159 .nr_parts = ARRAY_SIZE(davinci_evm_nandflash_partition),
160 .ecc_mode = NAND_ECC_HW,
David Brownell3e9c18e2009-04-15 14:19:21 -0500161 .options = NAND_USE_FLASH_BBT,
Kevin Hilmand0e47fb2009-04-14 11:30:11 -0500162};
163
164static struct resource davinci_evm_nandflash_resource[] = {
165 {
166 .start = DAVINCI_ASYNC_EMIF_DATA_CE0_BASE,
167 .end = DAVINCI_ASYNC_EMIF_DATA_CE0_BASE + SZ_16M - 1,
168 .flags = IORESOURCE_MEM,
169 }, {
170 .start = DAVINCI_ASYNC_EMIF_CONTROL_BASE,
171 .end = DAVINCI_ASYNC_EMIF_CONTROL_BASE + SZ_4K - 1,
172 .flags = IORESOURCE_MEM,
173 },
174};
175
176static struct platform_device davinci_evm_nandflash_device = {
177 .name = "davinci_nand",
178 .id = 0,
179 .dev = {
180 .platform_data = &davinci_evm_nandflash_data,
181 },
182 .num_resources = ARRAY_SIZE(davinci_evm_nandflash_resource),
183 .resource = davinci_evm_nandflash_resource,
184};
185
David Brownell3e9c18e2009-04-15 14:19:21 -0500186static u64 davinci_fb_dma_mask = DMA_BIT_MASK(32);
Kevin Hilmand0e47fb2009-04-14 11:30:11 -0500187
188static struct platform_device davinci_fb_device = {
189 .name = "davincifb",
190 .id = -1,
191 .dev = {
192 .dma_mask = &davinci_fb_dma_mask,
David Brownell3e9c18e2009-04-15 14:19:21 -0500193 .coherent_dma_mask = DMA_BIT_MASK(32),
Kevin Hilmand0e47fb2009-04-14 11:30:11 -0500194 },
195 .num_resources = 0,
196};
197
198static struct platform_device rtc_dev = {
199 .name = "rtc_davinci_evm",
200 .id = -1,
201};
David Brownell7bff3c42008-09-07 23:43:02 -0700202
203static struct resource ide_resources[] = {
204 {
205 .start = DAVINCI_CFC_ATA_BASE,
206 .end = DAVINCI_CFC_ATA_BASE + 0x7ff,
207 .flags = IORESOURCE_MEM,
208 },
209 {
210 .start = IRQ_IDE,
211 .end = IRQ_IDE,
212 .flags = IORESOURCE_IRQ,
213 },
214};
215
Kevin Hilmana029b702009-05-07 14:25:48 +0100216static u64 ide_dma_mask = DMA_BIT_MASK(32);
David Brownell7bff3c42008-09-07 23:43:02 -0700217
218static struct platform_device ide_dev = {
219 .name = "palm_bk3710",
220 .id = -1,
221 .resource = ide_resources,
222 .num_resources = ARRAY_SIZE(ide_resources),
223 .dev = {
224 .dma_mask = &ide_dma_mask,
Kevin Hilmana029b702009-05-07 14:25:48 +0100225 .coherent_dma_mask = DMA_BIT_MASK(32),
David Brownell7bff3c42008-09-07 23:43:02 -0700226 },
227};
228
David Brownell7bff3c42008-09-07 23:43:02 -0700229/*----------------------------------------------------------------------*/
230
231/*
232 * I2C GPIO expanders
233 */
234
235#define PCF_Uxx_BASE(x) (DAVINCI_N_GPIO + ((x) * 8))
236
237
238/* U2 -- LEDs */
239
240static struct gpio_led evm_leds[] = {
241 { .name = "DS8", .active_low = 1,
242 .default_trigger = "heartbeat", },
243 { .name = "DS7", .active_low = 1, },
244 { .name = "DS6", .active_low = 1, },
245 { .name = "DS5", .active_low = 1, },
246 { .name = "DS4", .active_low = 1, },
247 { .name = "DS3", .active_low = 1, },
248 { .name = "DS2", .active_low = 1,
249 .default_trigger = "mmc0", },
250 { .name = "DS1", .active_low = 1,
251 .default_trigger = "ide-disk", },
252};
253
254static const struct gpio_led_platform_data evm_led_data = {
255 .num_leds = ARRAY_SIZE(evm_leds),
256 .leds = evm_leds,
257};
258
259static struct platform_device *evm_led_dev;
260
261static int
262evm_led_setup(struct i2c_client *client, int gpio, unsigned ngpio, void *c)
263{
264 struct gpio_led *leds = evm_leds;
265 int status;
266
267 while (ngpio--) {
268 leds->gpio = gpio++;
269 leds++;
270 }
271
272 /* what an extremely annoying way to be forced to handle
273 * device unregistration ...
274 */
275 evm_led_dev = platform_device_alloc("leds-gpio", 0);
276 platform_device_add_data(evm_led_dev,
277 &evm_led_data, sizeof evm_led_data);
278
279 evm_led_dev->dev.parent = &client->dev;
280 status = platform_device_add(evm_led_dev);
281 if (status < 0) {
282 platform_device_put(evm_led_dev);
283 evm_led_dev = NULL;
284 }
285 return status;
286}
287
288static int
289evm_led_teardown(struct i2c_client *client, int gpio, unsigned ngpio, void *c)
290{
291 if (evm_led_dev) {
292 platform_device_unregister(evm_led_dev);
293 evm_led_dev = NULL;
294 }
295 return 0;
296}
297
298static struct pcf857x_platform_data pcf_data_u2 = {
299 .gpio_base = PCF_Uxx_BASE(0),
300 .setup = evm_led_setup,
301 .teardown = evm_led_teardown,
302};
303
304
305/* U18 - A/V clock generator and user switch */
306
307static int sw_gpio;
308
309static ssize_t
310sw_show(struct device *d, struct device_attribute *a, char *buf)
311{
312 char *s = gpio_get_value_cansleep(sw_gpio) ? "on\n" : "off\n";
313
314 strcpy(buf, s);
315 return strlen(s);
316}
317
318static DEVICE_ATTR(user_sw, S_IRUGO, sw_show, NULL);
319
320static int
321evm_u18_setup(struct i2c_client *client, int gpio, unsigned ngpio, void *c)
322{
323 int status;
324
325 /* export dip switch option */
326 sw_gpio = gpio + 7;
327 status = gpio_request(sw_gpio, "user_sw");
328 if (status == 0)
329 status = gpio_direction_input(sw_gpio);
330 if (status == 0)
331 status = device_create_file(&client->dev, &dev_attr_user_sw);
332 else
333 gpio_free(sw_gpio);
334 if (status != 0)
335 sw_gpio = -EINVAL;
336
337 /* audio PLL: 48 kHz (vs 44.1 or 32), single rate (vs double) */
338 gpio_request(gpio + 3, "pll_fs2");
339 gpio_direction_output(gpio + 3, 0);
340
341 gpio_request(gpio + 2, "pll_fs1");
342 gpio_direction_output(gpio + 2, 0);
343
344 gpio_request(gpio + 1, "pll_sr");
345 gpio_direction_output(gpio + 1, 0);
346
347 return 0;
348}
349
350static int
351evm_u18_teardown(struct i2c_client *client, int gpio, unsigned ngpio, void *c)
352{
353 gpio_free(gpio + 1);
354 gpio_free(gpio + 2);
355 gpio_free(gpio + 3);
356
357 if (sw_gpio > 0) {
358 device_remove_file(&client->dev, &dev_attr_user_sw);
359 gpio_free(sw_gpio);
360 }
361 return 0;
362}
363
364static struct pcf857x_platform_data pcf_data_u18 = {
365 .gpio_base = PCF_Uxx_BASE(1),
366 .n_latch = (1 << 3) | (1 << 2) | (1 << 1),
367 .setup = evm_u18_setup,
368 .teardown = evm_u18_teardown,
369};
370
371
372/* U35 - various I/O signals used to manage USB, CF, ATA, etc */
373
374static int
375evm_u35_setup(struct i2c_client *client, int gpio, unsigned ngpio, void *c)
376{
377 /* p0 = nDRV_VBUS (initial: don't supply it) */
378 gpio_request(gpio + 0, "nDRV_VBUS");
379 gpio_direction_output(gpio + 0, 1);
380
381 /* p1 = VDDIMX_EN */
382 gpio_request(gpio + 1, "VDDIMX_EN");
383 gpio_direction_output(gpio + 1, 1);
384
385 /* p2 = VLYNQ_EN */
386 gpio_request(gpio + 2, "VLYNQ_EN");
387 gpio_direction_output(gpio + 2, 1);
388
389 /* p3 = n3V3_CF_RESET (initial: stay in reset) */
390 gpio_request(gpio + 3, "nCF_RESET");
391 gpio_direction_output(gpio + 3, 0);
392
393 /* (p4 unused) */
394
395 /* p5 = 1V8_WLAN_RESET (initial: stay in reset) */
396 gpio_request(gpio + 5, "WLAN_RESET");
397 gpio_direction_output(gpio + 5, 1);
398
399 /* p6 = nATA_SEL (initial: select) */
400 gpio_request(gpio + 6, "nATA_SEL");
401 gpio_direction_output(gpio + 6, 0);
402
403 /* p7 = nCF_SEL (initial: deselect) */
404 gpio_request(gpio + 7, "nCF_SEL");
405 gpio_direction_output(gpio + 7, 1);
406
Kevin Hilmand0e47fb2009-04-14 11:30:11 -0500407 /* irlml6401 switches over 1A, in under 8 msec;
408 * now it can be managed by nDRV_VBUS ...
409 */
David Brownell34f32c92009-02-20 13:45:17 -0800410 setup_usb(500, 8);
411
David Brownell7bff3c42008-09-07 23:43:02 -0700412 return 0;
413}
414
415static int
416evm_u35_teardown(struct i2c_client *client, int gpio, unsigned ngpio, void *c)
417{
418 gpio_free(gpio + 7);
419 gpio_free(gpio + 6);
420 gpio_free(gpio + 5);
421 gpio_free(gpio + 3);
422 gpio_free(gpio + 2);
423 gpio_free(gpio + 1);
424 gpio_free(gpio + 0);
425 return 0;
426}
427
428static struct pcf857x_platform_data pcf_data_u35 = {
429 .gpio_base = PCF_Uxx_BASE(2),
430 .setup = evm_u35_setup,
431 .teardown = evm_u35_teardown,
432};
433
434/*----------------------------------------------------------------------*/
435
436/* Most of this EEPROM is unused, but U-Boot uses some data:
437 * - 0x7f00, 6 bytes Ethernet Address
438 * - 0x0039, 1 byte NTSC vs PAL (bit 0x80 == PAL)
439 * - ... newer boards may have more
440 */
Kevin Hilmand0e47fb2009-04-14 11:30:11 -0500441
David Brownell7bff3c42008-09-07 23:43:02 -0700442static struct at24_platform_data eeprom_info = {
443 .byte_len = (256*1024) / 8,
444 .page_size = 64,
445 .flags = AT24_FLAG_ADDR16,
Mark A. Greerb14dc0f2009-04-15 12:41:27 -0700446 .setup = davinci_get_mac_addr,
447 .context = (void *)0x7f00,
David Brownell7bff3c42008-09-07 23:43:02 -0700448};
449
Kevin Hilmand0e47fb2009-04-14 11:30:11 -0500450/*
451 * MSP430 supports RTC, card detection, input from IR remote, and
452 * a bit more. It triggers interrupts on GPIO(7) from pressing
453 * buttons on the IR remote, and for card detect switches.
454 */
455static struct i2c_client *dm6446evm_msp;
456
457static int dm6446evm_msp_probe(struct i2c_client *client,
458 const struct i2c_device_id *id)
459{
460 dm6446evm_msp = client;
461 return 0;
462}
463
464static int dm6446evm_msp_remove(struct i2c_client *client)
465{
466 dm6446evm_msp = NULL;
467 return 0;
468}
469
470static const struct i2c_device_id dm6446evm_msp_ids[] = {
471 { "dm6446evm_msp", 0, },
472 { /* end of list */ },
473};
474
475static struct i2c_driver dm6446evm_msp_driver = {
476 .driver.name = "dm6446evm_msp",
477 .id_table = dm6446evm_msp_ids,
478 .probe = dm6446evm_msp_probe,
479 .remove = dm6446evm_msp_remove,
480};
481
482static int dm6444evm_msp430_get_pins(void)
483{
484 static const char txbuf[2] = { 2, 4, };
485 char buf[4];
486 struct i2c_msg msg[2] = {
487 {
488 .addr = dm6446evm_msp->addr,
489 .flags = 0,
490 .len = 2,
491 .buf = (void __force *)txbuf,
492 },
493 {
494 .addr = dm6446evm_msp->addr,
495 .flags = I2C_M_RD,
496 .len = 4,
497 .buf = buf,
498 },
499 };
500 int status;
501
502 if (!dm6446evm_msp)
503 return -ENXIO;
504
505 /* Command 4 == get input state, returns port 2 and port3 data
506 * S Addr W [A] len=2 [A] cmd=4 [A]
507 * RS Addr R [A] [len=4] A [cmd=4] A [port2] A [port3] N P
508 */
509 status = i2c_transfer(dm6446evm_msp->adapter, msg, 2);
510 if (status < 0)
511 return status;
512
513 dev_dbg(&dm6446evm_msp->dev,
514 "PINS: %02x %02x %02x %02x\n",
515 buf[0], buf[1], buf[2], buf[3]);
516
517 return (buf[3] << 8) | buf[2];
518}
519
Kevin Hilman2dbf56ae2009-05-11 15:55:03 -0700520static int dm6444evm_mmc_get_cd(int module)
521{
522 int status = dm6444evm_msp430_get_pins();
523
524 return (status < 0) ? status : !(status & BIT(1));
525}
526
527static int dm6444evm_mmc_get_ro(int module)
528{
529 int status = dm6444evm_msp430_get_pins();
530
531 return (status < 0) ? status : status & BIT(6 + 8);
532}
533
534static struct davinci_mmc_config dm6446evm_mmc_config = {
535 .get_cd = dm6444evm_mmc_get_cd,
536 .get_ro = dm6444evm_mmc_get_ro,
537 .wires = 4,
538 .version = MMC_CTLR_VERSION_1
539};
540
David Brownell7bff3c42008-09-07 23:43:02 -0700541static struct i2c_board_info __initdata i2c_info[] = {
542 {
Kevin Hilmand0e47fb2009-04-14 11:30:11 -0500543 I2C_BOARD_INFO("dm6446evm_msp", 0x23),
544 },
545 {
David Brownell7bff3c42008-09-07 23:43:02 -0700546 I2C_BOARD_INFO("pcf8574", 0x38),
547 .platform_data = &pcf_data_u2,
548 },
549 {
550 I2C_BOARD_INFO("pcf8574", 0x39),
551 .platform_data = &pcf_data_u18,
552 },
553 {
554 I2C_BOARD_INFO("pcf8574", 0x3a),
555 .platform_data = &pcf_data_u35,
556 },
557 {
558 I2C_BOARD_INFO("24c256", 0x50),
559 .platform_data = &eeprom_info,
560 },
561 /* ALSO:
562 * - tvl320aic33 audio codec (0x1b)
David Brownell7bff3c42008-09-07 23:43:02 -0700563 * - tvp5146 video decoder (0x5d)
564 */
565};
566
567/* The msp430 uses a slow bitbanged I2C implementation (ergo 20 KHz),
568 * which requires 100 usec of idle bus after i2c writes sent to it.
569 */
570static struct davinci_i2c_platform_data i2c_pdata = {
571 .bus_freq = 20 /* kHz */,
572 .bus_delay = 100 /* usec */,
573};
574
575static void __init evm_init_i2c(void)
576{
577 davinci_init_i2c(&i2c_pdata);
Kevin Hilmand0e47fb2009-04-14 11:30:11 -0500578 i2c_add_driver(&dm6446evm_msp_driver);
David Brownell7bff3c42008-09-07 23:43:02 -0700579 i2c_register_board_info(1, i2c_info, ARRAY_SIZE(i2c_info));
580}
581
Kevin Hilman7c6337e2007-04-30 19:37:19 +0100582static struct platform_device *davinci_evm_devices[] __initdata = {
Kevin Hilmand0e47fb2009-04-14 11:30:11 -0500583 &davinci_fb_device,
584 &rtc_dev,
585};
586
587static struct davinci_uart_config uart_config __initdata = {
588 .enabled_uarts = (1 << 0),
Kevin Hilman7c6337e2007-04-30 19:37:19 +0100589};
590
591static void __init
592davinci_evm_map_io(void)
593{
Kevin Hilmand0e47fb2009-04-14 11:30:11 -0500594 dm644x_init();
Kevin Hilman7c6337e2007-04-30 19:37:19 +0100595}
596
Kevin Hilmand0e47fb2009-04-14 11:30:11 -0500597static int davinci_phy_fixup(struct phy_device *phydev)
598{
599 unsigned int control;
600 /* CRITICAL: Fix for increasing PHY signal drive strength for
601 * TX lockup issue. On DaVinci EVM, the Intel LXT971 PHY
602 * signal strength was low causing TX to fail randomly. The
603 * fix is to Set bit 11 (Increased MII drive strength) of PHY
604 * register 26 (Digital Config register) on this phy. */
605 control = phy_read(phydev, 26);
606 phy_write(phydev, 26, (control | 0x800));
607 return 0;
608}
609
610#if defined(CONFIG_BLK_DEV_PALMCHIP_BK3710) || \
611 defined(CONFIG_BLK_DEV_PALMCHIP_BK3710_MODULE)
612#define HAS_ATA 1
613#else
614#define HAS_ATA 0
615#endif
616
617#if defined(CONFIG_MTD_PHYSMAP) || \
618 defined(CONFIG_MTD_PHYSMAP_MODULE)
619#define HAS_NOR 1
620#else
621#define HAS_NOR 0
622#endif
623
624#if defined(CONFIG_MTD_NAND_DAVINCI) || \
625 defined(CONFIG_MTD_NAND_DAVINCI_MODULE)
626#define HAS_NAND 1
627#else
628#define HAS_NAND 0
629#endif
630
Kevin Hilman7c6337e2007-04-30 19:37:19 +0100631static __init void davinci_evm_init(void)
632{
Kevin Hilmand0e47fb2009-04-14 11:30:11 -0500633 struct clk *aemif_clk;
Mark A. Greer972412b2009-04-15 12:40:56 -0700634 struct davinci_soc_info *soc_info = &davinci_soc_info;
Kevin Hilmand0e47fb2009-04-14 11:30:11 -0500635
636 aemif_clk = clk_get(NULL, "aemif");
637 clk_enable(aemif_clk);
638
639 if (HAS_ATA) {
640 if (HAS_NAND || HAS_NOR)
641 pr_warning("WARNING: both IDE and Flash are "
642 "enabled, but they share AEMIF pins.\n"
643 "\tDisable IDE for NAND/NOR support.\n");
644 davinci_cfg_reg(DM644X_HPIEN_DISABLE);
645 davinci_cfg_reg(DM644X_ATAEN);
646 davinci_cfg_reg(DM644X_HDIREN);
647 platform_device_register(&ide_dev);
648 } else if (HAS_NAND || HAS_NOR) {
649 davinci_cfg_reg(DM644X_HPIEN_DISABLE);
650 davinci_cfg_reg(DM644X_ATAEN_DISABLE);
651
652 /* only one device will be jumpered and detected */
653 if (HAS_NAND) {
654 platform_device_register(&davinci_evm_nandflash_device);
655 evm_leds[7].default_trigger = "nand-disk";
656 if (HAS_NOR)
657 pr_warning("WARNING: both NAND and NOR flash "
658 "are enabled; disable one of them.\n");
659 } else if (HAS_NOR)
660 platform_device_register(&davinci_evm_norflash_device);
661 }
Kevin Hilman7c6337e2007-04-30 19:37:19 +0100662
663 platform_add_devices(davinci_evm_devices,
664 ARRAY_SIZE(davinci_evm_devices));
David Brownell7bff3c42008-09-07 23:43:02 -0700665 evm_init_i2c();
Kevin Hilmand0e47fb2009-04-14 11:30:11 -0500666
Kevin Hilman2dbf56ae2009-05-11 15:55:03 -0700667 davinci_setup_mmc(0, &dm6446evm_mmc_config);
668
Kevin Hilmand0e47fb2009-04-14 11:30:11 -0500669 davinci_serial_init(&uart_config);
670
Mark A. Greer972412b2009-04-15 12:40:56 -0700671 soc_info->emac_pdata->phy_mask = DM644X_EVM_PHY_MASK;
672 soc_info->emac_pdata->mdio_max_freq = DM644X_EVM_MDIO_FREQUENCY;
Kevin Hilmanac7b75b2009-05-07 06:19:40 -0700673
Kevin Hilmand0e47fb2009-04-14 11:30:11 -0500674 /* Register the fixup for PHY on DaVinci */
675 phy_register_fixup_for_uid(LXT971_PHY_ID, LXT971_PHY_MASK,
676 davinci_phy_fixup);
677
Kevin Hilman7c6337e2007-04-30 19:37:19 +0100678}
679
680static __init void davinci_evm_irq_init(void)
681{
Kevin Hilman7c6337e2007-04-30 19:37:19 +0100682 davinci_irq_init();
683}
684
Kevin Hilmand0e47fb2009-04-14 11:30:11 -0500685MACHINE_START(DAVINCI_EVM, "DaVinci DM644x EVM")
Kevin Hilman7c6337e2007-04-30 19:37:19 +0100686 /* Maintainer: MontaVista Software <source@mvista.com> */
687 .phys_io = IO_PHYS,
Kevin Hilmanac7643e2008-09-15 04:09:14 -0700688 .io_pg_offst = (__IO_ADDRESS(IO_PHYS) >> 18) & 0xfffc,
Kevin Hilman7c6337e2007-04-30 19:37:19 +0100689 .boot_params = (DAVINCI_DDR_BASE + 0x100),
690 .map_io = davinci_evm_map_io,
691 .init_irq = davinci_evm_irq_init,
692 .timer = &davinci_timer,
693 .init_machine = davinci_evm_init,
694MACHINE_END