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