blob: 521e409772654123ef852c778a85ccf09f94b8dd [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>
Kevin Hilman7c6337e2007-04-30 19:37:19 +010012#include <linux/init.h>
13#include <linux/dma-mapping.h>
14#include <linux/platform_device.h>
David Brownell7bff3c42008-09-07 23:43:02 -070015#include <linux/gpio.h>
David Brownell7bff3c42008-09-07 23:43:02 -070016#include <linux/i2c.h>
17#include <linux/i2c/pcf857x.h>
Vivien Didelot25f73ed2013-09-27 15:06:28 -040018#include <linux/platform_data/at24.h>
Kevin Hilman7c6337e2007-04-30 19:37:19 +010019#include <linux/mtd/mtd.h>
Kevin Hilmand0e47fb2009-04-14 11:30:11 -050020#include <linux/mtd/nand.h>
Kevin Hilman7c6337e2007-04-30 19:37:19 +010021#include <linux/mtd/partitions.h>
22#include <linux/mtd/physmap.h>
Kevin Hilmand0e47fb2009-04-14 11:30:11 -050023#include <linux/phy.h>
24#include <linux/clk.h>
Muralidharan Karicheriab8e8df2009-09-16 11:53:18 -040025#include <linux/videodev2.h>
Hans Verkuil36864082012-10-01 11:39:46 -030026#include <linux/v4l2-dv-timings.h>
Paul Gortmakerdc280942011-07-31 16:17:29 -040027#include <linux/export.h>
Muralidharan Karicheriab8e8df2009-09-16 11:53:18 -040028
Mauro Carvalho Chehabb5dcee22015-11-10 12:01:44 -020029#include <media/i2c/tvp514x.h>
Kevin Hilman7c6337e2007-04-30 19:37:19 +010030
Kevin Hilman7c6337e2007-04-30 19:37:19 +010031#include <asm/mach-types.h>
Kevin Hilman7c6337e2007-04-30 19:37:19 +010032#include <asm/mach/arch.h>
Kevin Hilman7c6337e2007-04-30 19:37:19 +010033
Russell Kinga09e64f2008-08-05 16:14:15 +010034#include <mach/common.h>
Arnd Bergmannec2a0832012-08-24 15:11:34 +020035#include <linux/platform_data/i2c-davinci.h>
Kevin Hilmand0e47fb2009-04-14 11:30:11 -050036#include <mach/serial.h>
37#include <mach/mux.h>
Arnd Bergmannec2a0832012-08-24 15:11:34 +020038#include <linux/platform_data/mtd-davinci.h>
39#include <linux/platform_data/mmc-davinci.h>
40#include <linux/platform_data/usb-davinci.h>
41#include <linux/platform_data/mtd-davinci-aemif.h>
Kevin Hilmand0e47fb2009-04-14 11:30:11 -050042
Manjunath Hadli39c6d2d2011-12-21 19:13:35 +053043#include "davinci.h"
44
Sekhar Norif6f97582012-01-21 02:48:17 +053045#define DM644X_EVM_PHY_ID "davinci_mdio-0:01"
Kevin Hilmand0e47fb2009-04-14 11:30:11 -050046#define LXT971_PHY_ID (0x001378e2)
47#define LXT971_PHY_MASK (0xfffffff0)
Kevin Hilman7c6337e2007-04-30 19:37:19 +010048
David Brownell7bff3c42008-09-07 23:43:02 -070049static struct mtd_partition davinci_evm_norflash_partitions[] = {
Kevin Hilmand0e47fb2009-04-14 11:30:11 -050050 /* bootloader (UBL, U-Boot, etc) in first 5 sectors */
Kevin Hilman7c6337e2007-04-30 19:37:19 +010051 {
52 .name = "bootloader",
53 .offset = 0,
Kevin Hilmand0e47fb2009-04-14 11:30:11 -050054 .size = 5 * SZ_64K,
Kevin Hilman7c6337e2007-04-30 19:37:19 +010055 .mask_flags = MTD_WRITEABLE, /* force read-only */
56 },
57 /* bootloader params in the next 1 sectors */
58 {
59 .name = "params",
60 .offset = MTDPART_OFS_APPEND,
61 .size = SZ_64K,
62 .mask_flags = 0,
63 },
64 /* kernel */
65 {
66 .name = "kernel",
67 .offset = MTDPART_OFS_APPEND,
68 .size = SZ_2M,
69 .mask_flags = 0
70 },
71 /* file system */
72 {
73 .name = "filesystem",
74 .offset = MTDPART_OFS_APPEND,
75 .size = MTDPART_SIZ_FULL,
76 .mask_flags = 0
77 }
78};
79
David Brownell7bff3c42008-09-07 23:43:02 -070080static struct physmap_flash_data davinci_evm_norflash_data = {
Kevin Hilman7c6337e2007-04-30 19:37:19 +010081 .width = 2,
David Brownell7bff3c42008-09-07 23:43:02 -070082 .parts = davinci_evm_norflash_partitions,
83 .nr_parts = ARRAY_SIZE(davinci_evm_norflash_partitions),
Kevin Hilman7c6337e2007-04-30 19:37:19 +010084};
85
86/* NOTE: CFI probe will correctly detect flash part as 32M, but EMIF
87 * limits addresses to 16M, so using addresses past 16M will wrap */
David Brownell7bff3c42008-09-07 23:43:02 -070088static struct resource davinci_evm_norflash_resource = {
Sergei Shtylyov70342172010-04-16 21:29:11 +040089 .start = DM644X_ASYNC_EMIF_DATA_CE0_BASE,
90 .end = DM644X_ASYNC_EMIF_DATA_CE0_BASE + SZ_16M - 1,
Kevin Hilman7c6337e2007-04-30 19:37:19 +010091 .flags = IORESOURCE_MEM,
92};
93
David Brownell7bff3c42008-09-07 23:43:02 -070094static struct platform_device davinci_evm_norflash_device = {
Kevin Hilman7c6337e2007-04-30 19:37:19 +010095 .name = "physmap-flash",
96 .id = 0,
97 .dev = {
David Brownell7bff3c42008-09-07 23:43:02 -070098 .platform_data = &davinci_evm_norflash_data,
Kevin Hilman7c6337e2007-04-30 19:37:19 +010099 },
100 .num_resources = 1,
David Brownell7bff3c42008-09-07 23:43:02 -0700101 .resource = &davinci_evm_norflash_resource,
Kevin Hilman7c6337e2007-04-30 19:37:19 +0100102};
103
David Brownell3e9c18e2009-04-15 14:19:21 -0500104/* DM644x EVM includes a 64 MByte small-page NAND flash (16K blocks).
105 * It may used instead of the (default) NOR chip to boot, using TI's
106 * tools to install the secondary boot loader (UBL) and U-Boot.
107 */
Kevin Hilman28552c22010-02-25 15:36:38 -0800108static struct mtd_partition davinci_evm_nandflash_partition[] = {
David Brownell3e9c18e2009-04-15 14:19:21 -0500109 /* Bootloader layout depends on whose u-boot is installed, but we
110 * can hide all the details.
111 * - block 0 for u-boot environment ... in mainline u-boot
112 * - block 1 for UBL (plus up to four backup copies in blocks 2..5)
113 * - blocks 6...? for u-boot
114 * - blocks 16..23 for u-boot environment ... in TI's u-boot
115 */
Kevin Hilmand0e47fb2009-04-14 11:30:11 -0500116 {
David Brownell3e9c18e2009-04-15 14:19:21 -0500117 .name = "bootloader",
118 .offset = 0,
119 .size = SZ_256K + SZ_128K,
120 .mask_flags = MTD_WRITEABLE, /* force read-only */
121 },
122 /* Kernel */
123 {
124 .name = "kernel",
125 .offset = MTDPART_OFS_APPEND,
126 .size = SZ_4M,
127 .mask_flags = 0,
128 },
129 /* File system (older GIT kernels started this on the 5MB mark) */
130 {
131 .name = "filesystem",
132 .offset = MTDPART_OFS_APPEND,
Kevin Hilmand0e47fb2009-04-14 11:30:11 -0500133 .size = MTDPART_SIZ_FULL,
134 .mask_flags = 0,
135 }
David Brownell3e9c18e2009-04-15 14:19:21 -0500136 /* A few blocks at end hold a flash BBT ... created by TI's CCS
137 * using flashwriter_nand.out, but ignored by TI's versions of
138 * Linux and u-boot. We boot faster by using them.
139 */
Kevin Hilmand0e47fb2009-04-14 11:30:11 -0500140};
David Brownell7bff3c42008-09-07 23:43:02 -0700141
Sekhar Norife69c822010-08-09 15:46:37 +0530142static struct davinci_aemif_timing davinci_evm_nandflash_timing = {
143 .wsetup = 20,
144 .wstrobe = 40,
145 .whold = 20,
146 .rsetup = 10,
147 .rstrobe = 40,
148 .rhold = 10,
149 .ta = 40,
150};
151
Kevin Hilmand0e47fb2009-04-14 11:30:11 -0500152static struct davinci_nand_pdata davinci_evm_nandflash_data = {
153 .parts = davinci_evm_nandflash_partition,
154 .nr_parts = ARRAY_SIZE(davinci_evm_nandflash_partition),
155 .ecc_mode = NAND_ECC_HW,
Sekhar Noriacd36352013-08-16 14:43:48 +0530156 .ecc_bits = 1,
Brian Norrisbb9ebd42011-05-31 16:31:23 -0700157 .bbt_options = NAND_BBT_USE_FLASH,
Sekhar Norife69c822010-08-09 15:46:37 +0530158 .timing = &davinci_evm_nandflash_timing,
Kevin Hilmand0e47fb2009-04-14 11:30:11 -0500159};
160
161static struct resource davinci_evm_nandflash_resource[] = {
162 {
Sergei Shtylyov70342172010-04-16 21:29:11 +0400163 .start = DM644X_ASYNC_EMIF_DATA_CE0_BASE,
164 .end = DM644X_ASYNC_EMIF_DATA_CE0_BASE + SZ_16M - 1,
Kevin Hilmand0e47fb2009-04-14 11:30:11 -0500165 .flags = IORESOURCE_MEM,
166 }, {
Sergei Shtylyov70342172010-04-16 21:29:11 +0400167 .start = DM644X_ASYNC_EMIF_CONTROL_BASE,
168 .end = DM644X_ASYNC_EMIF_CONTROL_BASE + SZ_4K - 1,
Kevin Hilmand0e47fb2009-04-14 11:30:11 -0500169 .flags = IORESOURCE_MEM,
170 },
171};
172
173static struct platform_device davinci_evm_nandflash_device = {
174 .name = "davinci_nand",
175 .id = 0,
176 .dev = {
177 .platform_data = &davinci_evm_nandflash_data,
178 },
179 .num_resources = ARRAY_SIZE(davinci_evm_nandflash_resource),
180 .resource = davinci_evm_nandflash_resource,
181};
182
David Brownell3e9c18e2009-04-15 14:19:21 -0500183static u64 davinci_fb_dma_mask = DMA_BIT_MASK(32);
Kevin Hilmand0e47fb2009-04-14 11:30:11 -0500184
185static struct platform_device davinci_fb_device = {
186 .name = "davincifb",
187 .id = -1,
188 .dev = {
189 .dma_mask = &davinci_fb_dma_mask,
David Brownell3e9c18e2009-04-15 14:19:21 -0500190 .coherent_dma_mask = DMA_BIT_MASK(32),
Kevin Hilmand0e47fb2009-04-14 11:30:11 -0500191 },
192 .num_resources = 0,
193};
194
Manjunath Hadli314d73892011-12-21 19:13:38 +0530195static struct tvp514x_platform_data dm644xevm_tvp5146_pdata = {
Muralidharan Karicheriab8e8df2009-09-16 11:53:18 -0400196 .clk_polarity = 0,
197 .hs_polarity = 1,
198 .vs_polarity = 1
199};
200
201#define TVP514X_STD_ALL (V4L2_STD_NTSC | V4L2_STD_PAL)
202/* Inputs available at the TVP5146 */
Manjunath Hadli314d73892011-12-21 19:13:38 +0530203static struct v4l2_input dm644xevm_tvp5146_inputs[] = {
Muralidharan Karicheriab8e8df2009-09-16 11:53:18 -0400204 {
205 .index = 0,
206 .name = "Composite",
207 .type = V4L2_INPUT_TYPE_CAMERA,
208 .std = TVP514X_STD_ALL,
209 },
210 {
211 .index = 1,
212 .name = "S-Video",
213 .type = V4L2_INPUT_TYPE_CAMERA,
214 .std = TVP514X_STD_ALL,
215 },
216};
217
218/*
219 * this is the route info for connecting each input to decoder
220 * ouput that goes to vpfe. There is a one to one correspondence
221 * with tvp5146_inputs
222 */
Manjunath Hadli314d73892011-12-21 19:13:38 +0530223static struct vpfe_route dm644xevm_tvp5146_routes[] = {
Muralidharan Karicheriab8e8df2009-09-16 11:53:18 -0400224 {
225 .input = INPUT_CVBS_VI2B,
226 .output = OUTPUT_10BIT_422_EMBEDDED_SYNC,
227 },
228 {
229 .input = INPUT_SVIDEO_VI2C_VI1C,
230 .output = OUTPUT_10BIT_422_EMBEDDED_SYNC,
231 },
232};
233
Manjunath Hadli314d73892011-12-21 19:13:38 +0530234static struct vpfe_subdev_info dm644xevm_vpfe_sub_devs[] = {
Muralidharan Karicheriab8e8df2009-09-16 11:53:18 -0400235 {
236 .name = "tvp5146",
237 .grp_id = 0,
Manjunath Hadli314d73892011-12-21 19:13:38 +0530238 .num_inputs = ARRAY_SIZE(dm644xevm_tvp5146_inputs),
239 .inputs = dm644xevm_tvp5146_inputs,
240 .routes = dm644xevm_tvp5146_routes,
Muralidharan Karicheriab8e8df2009-09-16 11:53:18 -0400241 .can_route = 1,
242 .ccdc_if_params = {
243 .if_type = VPFE_BT656,
244 .hdpol = VPFE_PINPOL_POSITIVE,
245 .vdpol = VPFE_PINPOL_POSITIVE,
246 },
247 .board_info = {
248 I2C_BOARD_INFO("tvp5146", 0x5d),
Manjunath Hadli314d73892011-12-21 19:13:38 +0530249 .platform_data = &dm644xevm_tvp5146_pdata,
Muralidharan Karicheriab8e8df2009-09-16 11:53:18 -0400250 },
251 },
252};
253
Manjunath Hadli314d73892011-12-21 19:13:38 +0530254static struct vpfe_config dm644xevm_capture_cfg = {
255 .num_subdevs = ARRAY_SIZE(dm644xevm_vpfe_sub_devs),
Vaibhav Hiremath077639f2009-10-13 15:08:54 +0000256 .i2c_adapter_id = 1,
Manjunath Hadli314d73892011-12-21 19:13:38 +0530257 .sub_devs = dm644xevm_vpfe_sub_devs,
Muralidharan Karicheriab8e8df2009-09-16 11:53:18 -0400258 .card_name = "DM6446 EVM",
259 .ccdc = "DM6446 CCDC",
260};
261
Kevin Hilmand0e47fb2009-04-14 11:30:11 -0500262static struct platform_device rtc_dev = {
263 .name = "rtc_davinci_evm",
264 .id = -1,
265};
David Brownell7bff3c42008-09-07 23:43:02 -0700266
David Brownell7bff3c42008-09-07 23:43:02 -0700267/*----------------------------------------------------------------------*/
Arnd Bergmann8e580412016-02-01 21:35:58 +0100268#ifdef CONFIG_I2C
David Brownell7bff3c42008-09-07 23:43:02 -0700269/*
270 * I2C GPIO expanders
271 */
272
273#define PCF_Uxx_BASE(x) (DAVINCI_N_GPIO + ((x) * 8))
274
275
276/* U2 -- LEDs */
277
278static struct gpio_led evm_leds[] = {
279 { .name = "DS8", .active_low = 1,
280 .default_trigger = "heartbeat", },
281 { .name = "DS7", .active_low = 1, },
282 { .name = "DS6", .active_low = 1, },
283 { .name = "DS5", .active_low = 1, },
284 { .name = "DS4", .active_low = 1, },
285 { .name = "DS3", .active_low = 1, },
286 { .name = "DS2", .active_low = 1,
287 .default_trigger = "mmc0", },
288 { .name = "DS1", .active_low = 1,
Stephan Linze5808222016-06-10 07:59:59 +0200289 .default_trigger = "disk-activity", },
David Brownell7bff3c42008-09-07 23:43:02 -0700290};
291
292static const struct gpio_led_platform_data evm_led_data = {
293 .num_leds = ARRAY_SIZE(evm_leds),
294 .leds = evm_leds,
295};
296
297static struct platform_device *evm_led_dev;
298
299static int
300evm_led_setup(struct i2c_client *client, int gpio, unsigned ngpio, void *c)
301{
302 struct gpio_led *leds = evm_leds;
303 int status;
304
305 while (ngpio--) {
306 leds->gpio = gpio++;
307 leds++;
308 }
309
310 /* what an extremely annoying way to be forced to handle
311 * device unregistration ...
312 */
313 evm_led_dev = platform_device_alloc("leds-gpio", 0);
314 platform_device_add_data(evm_led_dev,
315 &evm_led_data, sizeof evm_led_data);
316
317 evm_led_dev->dev.parent = &client->dev;
318 status = platform_device_add(evm_led_dev);
319 if (status < 0) {
320 platform_device_put(evm_led_dev);
321 evm_led_dev = NULL;
322 }
323 return status;
324}
325
326static int
327evm_led_teardown(struct i2c_client *client, int gpio, unsigned ngpio, void *c)
328{
329 if (evm_led_dev) {
330 platform_device_unregister(evm_led_dev);
331 evm_led_dev = NULL;
332 }
333 return 0;
334}
335
336static struct pcf857x_platform_data pcf_data_u2 = {
337 .gpio_base = PCF_Uxx_BASE(0),
338 .setup = evm_led_setup,
339 .teardown = evm_led_teardown,
340};
341
342
343/* U18 - A/V clock generator and user switch */
344
345static int sw_gpio;
346
347static ssize_t
348sw_show(struct device *d, struct device_attribute *a, char *buf)
349{
350 char *s = gpio_get_value_cansleep(sw_gpio) ? "on\n" : "off\n";
351
352 strcpy(buf, s);
353 return strlen(s);
354}
355
356static DEVICE_ATTR(user_sw, S_IRUGO, sw_show, NULL);
357
358static int
359evm_u18_setup(struct i2c_client *client, int gpio, unsigned ngpio, void *c)
360{
361 int status;
362
363 /* export dip switch option */
364 sw_gpio = gpio + 7;
365 status = gpio_request(sw_gpio, "user_sw");
366 if (status == 0)
367 status = gpio_direction_input(sw_gpio);
368 if (status == 0)
369 status = device_create_file(&client->dev, &dev_attr_user_sw);
370 else
371 gpio_free(sw_gpio);
372 if (status != 0)
373 sw_gpio = -EINVAL;
374
375 /* audio PLL: 48 kHz (vs 44.1 or 32), single rate (vs double) */
376 gpio_request(gpio + 3, "pll_fs2");
377 gpio_direction_output(gpio + 3, 0);
378
379 gpio_request(gpio + 2, "pll_fs1");
380 gpio_direction_output(gpio + 2, 0);
381
382 gpio_request(gpio + 1, "pll_sr");
383 gpio_direction_output(gpio + 1, 0);
384
385 return 0;
386}
387
388static int
389evm_u18_teardown(struct i2c_client *client, int gpio, unsigned ngpio, void *c)
390{
391 gpio_free(gpio + 1);
392 gpio_free(gpio + 2);
393 gpio_free(gpio + 3);
394
395 if (sw_gpio > 0) {
396 device_remove_file(&client->dev, &dev_attr_user_sw);
397 gpio_free(sw_gpio);
398 }
399 return 0;
400}
401
402static struct pcf857x_platform_data pcf_data_u18 = {
403 .gpio_base = PCF_Uxx_BASE(1),
404 .n_latch = (1 << 3) | (1 << 2) | (1 << 1),
405 .setup = evm_u18_setup,
406 .teardown = evm_u18_teardown,
407};
408
409
410/* U35 - various I/O signals used to manage USB, CF, ATA, etc */
411
412static int
413evm_u35_setup(struct i2c_client *client, int gpio, unsigned ngpio, void *c)
414{
415 /* p0 = nDRV_VBUS (initial: don't supply it) */
416 gpio_request(gpio + 0, "nDRV_VBUS");
417 gpio_direction_output(gpio + 0, 1);
418
419 /* p1 = VDDIMX_EN */
420 gpio_request(gpio + 1, "VDDIMX_EN");
421 gpio_direction_output(gpio + 1, 1);
422
423 /* p2 = VLYNQ_EN */
424 gpio_request(gpio + 2, "VLYNQ_EN");
425 gpio_direction_output(gpio + 2, 1);
426
427 /* p3 = n3V3_CF_RESET (initial: stay in reset) */
428 gpio_request(gpio + 3, "nCF_RESET");
429 gpio_direction_output(gpio + 3, 0);
430
431 /* (p4 unused) */
432
433 /* p5 = 1V8_WLAN_RESET (initial: stay in reset) */
434 gpio_request(gpio + 5, "WLAN_RESET");
435 gpio_direction_output(gpio + 5, 1);
436
437 /* p6 = nATA_SEL (initial: select) */
438 gpio_request(gpio + 6, "nATA_SEL");
439 gpio_direction_output(gpio + 6, 0);
440
441 /* p7 = nCF_SEL (initial: deselect) */
442 gpio_request(gpio + 7, "nCF_SEL");
443 gpio_direction_output(gpio + 7, 1);
444
445 return 0;
446}
447
448static int
449evm_u35_teardown(struct i2c_client *client, int gpio, unsigned ngpio, void *c)
450{
451 gpio_free(gpio + 7);
452 gpio_free(gpio + 6);
453 gpio_free(gpio + 5);
454 gpio_free(gpio + 3);
455 gpio_free(gpio + 2);
456 gpio_free(gpio + 1);
457 gpio_free(gpio + 0);
458 return 0;
459}
460
461static struct pcf857x_platform_data pcf_data_u35 = {
462 .gpio_base = PCF_Uxx_BASE(2),
463 .setup = evm_u35_setup,
464 .teardown = evm_u35_teardown,
465};
466
467/*----------------------------------------------------------------------*/
468
469/* Most of this EEPROM is unused, but U-Boot uses some data:
470 * - 0x7f00, 6 bytes Ethernet Address
471 * - 0x0039, 1 byte NTSC vs PAL (bit 0x80 == PAL)
472 * - ... newer boards may have more
473 */
Kevin Hilmand0e47fb2009-04-14 11:30:11 -0500474
David Brownell7bff3c42008-09-07 23:43:02 -0700475static struct at24_platform_data eeprom_info = {
476 .byte_len = (256*1024) / 8,
477 .page_size = 64,
478 .flags = AT24_FLAG_ADDR16,
Mark A. Greerb14dc0f2009-04-15 12:41:27 -0700479 .setup = davinci_get_mac_addr,
480 .context = (void *)0x7f00,
David Brownell7bff3c42008-09-07 23:43:02 -0700481};
482
Kevin Hilmand0e47fb2009-04-14 11:30:11 -0500483/*
484 * MSP430 supports RTC, card detection, input from IR remote, and
485 * a bit more. It triggers interrupts on GPIO(7) from pressing
486 * buttons on the IR remote, and for card detect switches.
487 */
488static struct i2c_client *dm6446evm_msp;
489
490static int dm6446evm_msp_probe(struct i2c_client *client,
491 const struct i2c_device_id *id)
492{
493 dm6446evm_msp = client;
494 return 0;
495}
496
497static int dm6446evm_msp_remove(struct i2c_client *client)
498{
499 dm6446evm_msp = NULL;
500 return 0;
501}
502
503static const struct i2c_device_id dm6446evm_msp_ids[] = {
504 { "dm6446evm_msp", 0, },
505 { /* end of list */ },
506};
507
508static struct i2c_driver dm6446evm_msp_driver = {
509 .driver.name = "dm6446evm_msp",
510 .id_table = dm6446evm_msp_ids,
511 .probe = dm6446evm_msp_probe,
512 .remove = dm6446evm_msp_remove,
513};
514
515static int dm6444evm_msp430_get_pins(void)
516{
517 static const char txbuf[2] = { 2, 4, };
518 char buf[4];
519 struct i2c_msg msg[2] = {
520 {
Kevin Hilmand0e47fb2009-04-14 11:30:11 -0500521 .flags = 0,
522 .len = 2,
523 .buf = (void __force *)txbuf,
524 },
525 {
Kevin Hilmand0e47fb2009-04-14 11:30:11 -0500526 .flags = I2C_M_RD,
527 .len = 4,
528 .buf = buf,
529 },
530 };
531 int status;
532
533 if (!dm6446evm_msp)
534 return -ENXIO;
535
Wei Yongjun9ad90232012-09-10 04:49:23 +0000536 msg[0].addr = dm6446evm_msp->addr;
537 msg[1].addr = dm6446evm_msp->addr;
538
Kevin Hilmand0e47fb2009-04-14 11:30:11 -0500539 /* Command 4 == get input state, returns port 2 and port3 data
540 * S Addr W [A] len=2 [A] cmd=4 [A]
541 * RS Addr R [A] [len=4] A [cmd=4] A [port2] A [port3] N P
542 */
543 status = i2c_transfer(dm6446evm_msp->adapter, msg, 2);
544 if (status < 0)
545 return status;
546
Andy Shevchenkod1a31e92015-10-01 16:13:05 +0300547 dev_dbg(&dm6446evm_msp->dev, "PINS: %4ph\n", buf);
Kevin Hilmand0e47fb2009-04-14 11:30:11 -0500548
549 return (buf[3] << 8) | buf[2];
550}
551
Kevin Hilman2dbf56ae2009-05-11 15:55:03 -0700552static int dm6444evm_mmc_get_cd(int module)
553{
554 int status = dm6444evm_msp430_get_pins();
555
556 return (status < 0) ? status : !(status & BIT(1));
557}
558
559static int dm6444evm_mmc_get_ro(int module)
560{
561 int status = dm6444evm_msp430_get_pins();
562
563 return (status < 0) ? status : status & BIT(6 + 8);
564}
565
566static struct davinci_mmc_config dm6446evm_mmc_config = {
567 .get_cd = dm6444evm_mmc_get_cd,
568 .get_ro = dm6444evm_mmc_get_ro,
569 .wires = 4,
Kevin Hilman2dbf56ae2009-05-11 15:55:03 -0700570};
571
David Brownell7bff3c42008-09-07 23:43:02 -0700572static struct i2c_board_info __initdata i2c_info[] = {
573 {
Kevin Hilmand0e47fb2009-04-14 11:30:11 -0500574 I2C_BOARD_INFO("dm6446evm_msp", 0x23),
575 },
576 {
David Brownell7bff3c42008-09-07 23:43:02 -0700577 I2C_BOARD_INFO("pcf8574", 0x38),
578 .platform_data = &pcf_data_u2,
579 },
580 {
581 I2C_BOARD_INFO("pcf8574", 0x39),
582 .platform_data = &pcf_data_u18,
583 },
584 {
585 I2C_BOARD_INFO("pcf8574", 0x3a),
586 .platform_data = &pcf_data_u35,
587 },
588 {
589 I2C_BOARD_INFO("24c256", 0x50),
590 .platform_data = &eeprom_info,
591 },
Chaithrika U S1a7ff8f2009-08-25 15:20:05 +0300592 {
593 I2C_BOARD_INFO("tlv320aic33", 0x1b),
594 },
David Brownell7bff3c42008-09-07 23:43:02 -0700595};
596
597/* The msp430 uses a slow bitbanged I2C implementation (ergo 20 KHz),
598 * which requires 100 usec of idle bus after i2c writes sent to it.
599 */
600static struct davinci_i2c_platform_data i2c_pdata = {
601 .bus_freq = 20 /* kHz */,
602 .bus_delay = 100 /* usec */,
Philby John00642f62010-01-11 15:53:31 +0530603 .sda_pin = 44,
604 .scl_pin = 43,
David Brownell7bff3c42008-09-07 23:43:02 -0700605};
606
607static void __init evm_init_i2c(void)
608{
609 davinci_init_i2c(&i2c_pdata);
Kevin Hilmand0e47fb2009-04-14 11:30:11 -0500610 i2c_add_driver(&dm6446evm_msp_driver);
David Brownell7bff3c42008-09-07 23:43:02 -0700611 i2c_register_board_info(1, i2c_info, ARRAY_SIZE(i2c_info));
612}
Arnd Bergmann8e580412016-02-01 21:35:58 +0100613#endif
David Brownell7bff3c42008-09-07 23:43:02 -0700614
Manjunath Hadlid5be5f52012-02-23 15:17:46 +0530615#define VENC_STD_ALL (V4L2_STD_NTSC | V4L2_STD_PAL)
616
617/* venc standard timings */
618static struct vpbe_enc_mode_info dm644xevm_enc_std_timing[] = {
619 {
620 .name = "ntsc",
621 .timings_type = VPBE_ENC_STD,
Lad, Prabhakar89cdbba2013-04-12 07:46:19 -0300622 .std_id = V4L2_STD_NTSC,
Manjunath Hadlid5be5f52012-02-23 15:17:46 +0530623 .interlaced = 1,
624 .xres = 720,
625 .yres = 480,
626 .aspect = {11, 10},
627 .fps = {30000, 1001},
628 .left_margin = 0x79,
629 .upper_margin = 0x10,
630 },
631 {
632 .name = "pal",
633 .timings_type = VPBE_ENC_STD,
Lad, Prabhakar89cdbba2013-04-12 07:46:19 -0300634 .std_id = V4L2_STD_PAL,
Manjunath Hadlid5be5f52012-02-23 15:17:46 +0530635 .interlaced = 1,
636 .xres = 720,
637 .yres = 576,
638 .aspect = {54, 59},
639 .fps = {25, 1},
640 .left_margin = 0x7e,
641 .upper_margin = 0x16,
642 },
643};
644
645/* venc dv preset timings */
646static struct vpbe_enc_mode_info dm644xevm_enc_preset_timing[] = {
647 {
648 .name = "480p59_94",
Hans Verkuilef2d41b2013-02-15 15:06:28 -0300649 .timings_type = VPBE_ENC_DV_TIMINGS,
Hans Verkuil36864082012-10-01 11:39:46 -0300650 .dv_timings = V4L2_DV_BT_CEA_720X480P59_94,
Manjunath Hadlid5be5f52012-02-23 15:17:46 +0530651 .interlaced = 0,
652 .xres = 720,
653 .yres = 480,
654 .aspect = {1, 1},
655 .fps = {5994, 100},
656 .left_margin = 0x80,
657 .upper_margin = 0x20,
658 },
659 {
660 .name = "576p50",
Hans Verkuilef2d41b2013-02-15 15:06:28 -0300661 .timings_type = VPBE_ENC_DV_TIMINGS,
Hans Verkuil36864082012-10-01 11:39:46 -0300662 .dv_timings = V4L2_DV_BT_CEA_720X576P50,
Manjunath Hadlid5be5f52012-02-23 15:17:46 +0530663 .interlaced = 0,
664 .xres = 720,
665 .yres = 576,
666 .aspect = {1, 1},
667 .fps = {50, 1},
668 .left_margin = 0x7e,
669 .upper_margin = 0x30,
670 },
671};
672
673/*
674 * The outputs available from VPBE + encoders. Keep the order same
675 * as that of encoders. First those from venc followed by that from
676 * encoders. Index in the output refers to index on a particular encoder.
677 * Driver uses this index to pass it to encoder when it supports more
678 * than one output. Userspace applications use index of the array to
679 * set an output.
680 */
681static struct vpbe_output dm644xevm_vpbe_outputs[] = {
682 {
683 .output = {
684 .index = 0,
685 .name = "Composite",
686 .type = V4L2_OUTPUT_TYPE_ANALOG,
687 .std = VENC_STD_ALL,
688 .capabilities = V4L2_OUT_CAP_STD,
689 },
Lad, Prabhakarcaff80c2012-11-20 07:30:36 -0300690 .subdev_name = DM644X_VPBE_VENC_SUBDEV_NAME,
Manjunath Hadlid5be5f52012-02-23 15:17:46 +0530691 .default_mode = "ntsc",
692 .num_modes = ARRAY_SIZE(dm644xevm_enc_std_timing),
693 .modes = dm644xevm_enc_std_timing,
694 },
695 {
696 .output = {
697 .index = 1,
698 .name = "Component",
699 .type = V4L2_OUTPUT_TYPE_ANALOG,
Lad, Prabhakare32087b2012-10-03 02:25:42 -0300700 .capabilities = V4L2_OUT_CAP_DV_TIMINGS,
Manjunath Hadlid5be5f52012-02-23 15:17:46 +0530701 },
Lad, Prabhakarcaff80c2012-11-20 07:30:36 -0300702 .subdev_name = DM644X_VPBE_VENC_SUBDEV_NAME,
Manjunath Hadlid5be5f52012-02-23 15:17:46 +0530703 .default_mode = "480p59_94",
704 .num_modes = ARRAY_SIZE(dm644xevm_enc_preset_timing),
705 .modes = dm644xevm_enc_preset_timing,
706 },
707};
708
709static struct vpbe_config dm644xevm_display_cfg = {
710 .module_name = "dm644x-vpbe-display",
711 .i2c_adapter_id = 1,
712 .osd = {
Lad, Prabhakarcaff80c2012-11-20 07:30:36 -0300713 .module_name = DM644X_VPBE_OSD_SUBDEV_NAME,
Manjunath Hadlid5be5f52012-02-23 15:17:46 +0530714 },
715 .venc = {
Lad, Prabhakarcaff80c2012-11-20 07:30:36 -0300716 .module_name = DM644X_VPBE_VENC_SUBDEV_NAME,
Manjunath Hadlid5be5f52012-02-23 15:17:46 +0530717 },
718 .num_outputs = ARRAY_SIZE(dm644xevm_vpbe_outputs),
719 .outputs = dm644xevm_vpbe_outputs,
720};
721
Kevin Hilman7c6337e2007-04-30 19:37:19 +0100722static struct platform_device *davinci_evm_devices[] __initdata = {
Kevin Hilmand0e47fb2009-04-14 11:30:11 -0500723 &davinci_fb_device,
724 &rtc_dev,
725};
726
Kevin Hilman7c6337e2007-04-30 19:37:19 +0100727static void __init
728davinci_evm_map_io(void)
729{
Kevin Hilmand0e47fb2009-04-14 11:30:11 -0500730 dm644x_init();
Kevin Hilman7c6337e2007-04-30 19:37:19 +0100731}
732
Kevin Hilmand0e47fb2009-04-14 11:30:11 -0500733static int davinci_phy_fixup(struct phy_device *phydev)
734{
735 unsigned int control;
736 /* CRITICAL: Fix for increasing PHY signal drive strength for
737 * TX lockup issue. On DaVinci EVM, the Intel LXT971 PHY
738 * signal strength was low causing TX to fail randomly. The
739 * fix is to Set bit 11 (Increased MII drive strength) of PHY
740 * register 26 (Digital Config register) on this phy. */
741 control = phy_read(phydev, 26);
742 phy_write(phydev, 26, (control | 0x800));
743 return 0;
744}
745
Lad, Prabhakara0a56db2013-04-01 12:43:44 +0530746#define HAS_ATA IS_ENABLED(CONFIG_BLK_DEV_PALMCHIP_BK3710)
Kevin Hilmand0e47fb2009-04-14 11:30:11 -0500747
Lad, Prabhakara0a56db2013-04-01 12:43:44 +0530748#define HAS_NOR IS_ENABLED(CONFIG_MTD_PHYSMAP)
Kevin Hilmand0e47fb2009-04-14 11:30:11 -0500749
Lad, Prabhakara0a56db2013-04-01 12:43:44 +0530750#define HAS_NAND IS_ENABLED(CONFIG_MTD_NAND_DAVINCI)
Kevin Hilmand0e47fb2009-04-14 11:30:11 -0500751
Kevin Hilman7c6337e2007-04-30 19:37:19 +0100752static __init void davinci_evm_init(void)
753{
Philip Avinash834acb22013-08-18 10:49:02 +0530754 int ret;
Kevin Hilmand0e47fb2009-04-14 11:30:11 -0500755 struct clk *aemif_clk;
Mark A. Greer972412b2009-04-15 12:40:56 -0700756 struct davinci_soc_info *soc_info = &davinci_soc_info;
Kevin Hilmand0e47fb2009-04-14 11:30:11 -0500757
Philip Avinash834acb22013-08-18 10:49:02 +0530758 ret = dm644x_gpio_register();
759 if (ret)
760 pr_warn("%s: GPIO init failed: %d\n", __func__, ret);
761
Kevin Hilmand0e47fb2009-04-14 11:30:11 -0500762 aemif_clk = clk_get(NULL, "aemif");
m-karicheri2@ti.comb6f1ffe2012-08-02 16:53:48 +0000763 clk_prepare_enable(aemif_clk);
Kevin Hilmand0e47fb2009-04-14 11:30:11 -0500764
765 if (HAS_ATA) {
766 if (HAS_NAND || HAS_NOR)
Joe Perchesa7ca2bc2014-10-31 17:51:51 -0700767 pr_warn("WARNING: both IDE and Flash are enabled, but they share AEMIF pins\n"
768 "\tDisable IDE for NAND/NOR support\n");
Sergei Shtylyov7a9978a2010-04-21 18:11:33 +0400769 davinci_init_ide();
Kevin Hilmand0e47fb2009-04-14 11:30:11 -0500770 } else if (HAS_NAND || HAS_NOR) {
771 davinci_cfg_reg(DM644X_HPIEN_DISABLE);
772 davinci_cfg_reg(DM644X_ATAEN_DISABLE);
773
774 /* only one device will be jumpered and detected */
775 if (HAS_NAND) {
776 platform_device_register(&davinci_evm_nandflash_device);
Ivan Khoronzhuk67f51852014-01-30 13:03:40 +0200777
778 if (davinci_aemif_setup(&davinci_evm_nandflash_device))
Joe Perchesa7ca2bc2014-10-31 17:51:51 -0700779 pr_warn("%s: Cannot configure AEMIF\n",
Ivan Khoronzhuk67f51852014-01-30 13:03:40 +0200780 __func__);
781
Arnd Bergmann8e580412016-02-01 21:35:58 +0100782#ifdef CONFIG_I2C
Kevin Hilmand0e47fb2009-04-14 11:30:11 -0500783 evm_leds[7].default_trigger = "nand-disk";
Arnd Bergmann8e580412016-02-01 21:35:58 +0100784#endif
Kevin Hilmand0e47fb2009-04-14 11:30:11 -0500785 if (HAS_NOR)
Joe Perchesa7ca2bc2014-10-31 17:51:51 -0700786 pr_warn("WARNING: both NAND and NOR flash are enabled; disable one of them.\n");
Kevin Hilmand0e47fb2009-04-14 11:30:11 -0500787 } else if (HAS_NOR)
788 platform_device_register(&davinci_evm_norflash_device);
789 }
Kevin Hilman7c6337e2007-04-30 19:37:19 +0100790
791 platform_add_devices(davinci_evm_devices,
792 ARRAY_SIZE(davinci_evm_devices));
Arnd Bergmann8e580412016-02-01 21:35:58 +0100793#ifdef CONFIG_I2C
David Brownell7bff3c42008-09-07 23:43:02 -0700794 evm_init_i2c();
Kevin Hilman2dbf56ae2009-05-11 15:55:03 -0700795 davinci_setup_mmc(0, &dm6446evm_mmc_config);
Arnd Bergmann8e580412016-02-01 21:35:58 +0100796#endif
Manjunath Hadlid5be5f52012-02-23 15:17:46 +0530797 dm644x_init_video(&dm644xevm_capture_cfg, &dm644xevm_display_cfg);
Kevin Hilman2dbf56ae2009-05-11 15:55:03 -0700798
Manjunathappa, Prakashfcf71572013-06-19 14:45:42 +0530799 davinci_serial_init(dm644x_serial_device);
Petr Kulhavy6bce5ef2016-05-09 15:59:48 +0200800 dm644x_init_asp();
Kevin Hilmand0e47fb2009-04-14 11:30:11 -0500801
Sergei Shtylyov60d97a82011-03-13 20:06:59 +0000802 /* irlml6401 switches over 1A, in under 8 msec */
803 davinci_setup_usb(1000, 8);
804
Arnd Bergmann4bbef1d2014-03-13 17:50:35 +0100805 if (IS_BUILTIN(CONFIG_PHYLIB)) {
806 soc_info->emac_pdata->phy_id = DM644X_EVM_PHY_ID;
807 /* Register the fixup for PHY on DaVinci */
808 phy_register_fixup_for_uid(LXT971_PHY_ID, LXT971_PHY_MASK,
809 davinci_phy_fixup);
810 }
Kevin Hilman7c6337e2007-04-30 19:37:19 +0100811}
812
Kevin Hilmand0e47fb2009-04-14 11:30:11 -0500813MACHINE_START(DAVINCI_EVM, "DaVinci DM644x EVM")
Kevin Hilman7c6337e2007-04-30 19:37:19 +0100814 /* Maintainer: MontaVista Software <source@mvista.com> */
Nicolas Pitree7e56012011-07-05 22:38:11 -0400815 .atag_offset = 0x100,
Kevin Hilman7c6337e2007-04-30 19:37:19 +0100816 .map_io = davinci_evm_map_io,
Cyril Chemparathybd808942010-05-07 17:06:37 -0400817 .init_irq = davinci_irq_init,
Stephen Warren6bb27d72012-11-08 12:40:59 -0700818 .init_time = davinci_timer_init,
Kevin Hilman7c6337e2007-04-30 19:37:19 +0100819 .init_machine = davinci_evm_init,
Shawn Guo3aa3e842012-04-26 09:45:39 +0800820 .init_late = davinci_init_late,
Nicolas Pitref68deab2011-07-05 22:28:08 -0400821 .dma_zone_size = SZ_128M,
Sekhar Noric6121dd2011-12-05 11:29:46 +0100822 .restart = davinci_restart,
Kevin Hilman7c6337e2007-04-30 19:37:19 +0100823MACHINE_END