blob: bb680af98374e2177702529fd179b0d78d377828 [file] [log] [blame]
Andrey Porodkoc16fe262009-11-13 19:16:51 +05001/*
2 * Neuros Technologies OSD2 board support
3 *
4 * Modified from original 644X-EVM board support.
5 * 2008 (c) Neuros Technology, LLC.
6 * 2009 (c) Jorge Luis Zapata Muga <jorgeluis.zapata@gmail.com>
7 * 2009 (c) Andrey A. Porodko <Andrey.Porodko@gmail.com>
8 *
9 * The Neuros OSD 2.0 is the hardware component of the Neuros Open
10 * Internet Television Platform. Hardware is very close to TI
11 * DM644X-EVM board. It has:
12 * DM6446M02 module with 256MB NAND, 256MB RAM, TLV320AIC32 AIC,
13 * USB, Ethernet, SD/MMC, UART, THS8200, TVP7000 for video.
Lucas De Marchi25985ed2011-03-30 22:57:33 -030014 * Additionally realtime clock, IR remote control receiver,
Andrey Porodkoc16fe262009-11-13 19:16:51 +050015 * IR Blaster based on MSP430 (firmware although is different
16 * from used in DM644X-EVM), internal ATA-6 3.5” HDD drive
17 * with PATA interface, two muxed red-green leds.
18 *
19 * For more information please refer to
20 * http://wiki.neurostechnology.com/index.php/OSD_2.0_HD
21 *
22 * This file is licensed under the terms of the GNU General Public
23 * License version 2. This program is licensed "as is" without any
24 * warranty of any kind, whether express or implied.
25 */
26#include <linux/platform_device.h>
27#include <linux/gpio.h>
28#include <linux/mtd/partitions.h>
Philip Avinash834acb22013-08-18 10:49:02 +053029#include <linux/platform_data/gpio-davinci.h>
30#include <linux/platform_data/i2c-davinci.h>
31#include <linux/platform_data/mmc-davinci.h>
32#include <linux/platform_data/mtd-davinci.h>
33#include <linux/platform_data/usb-davinci.h>
Andrey Porodkoc16fe262009-11-13 19:16:51 +050034
35#include <asm/mach-types.h>
36#include <asm/mach/arch.h>
37
Sergei Shtylyov7a9978a2010-04-21 18:11:33 +040038#include <mach/common.h>
Andrey Porodkoc16fe262009-11-13 19:16:51 +050039#include <mach/serial.h>
40#include <mach/mux.h>
Andrey Porodkoc16fe262009-11-13 19:16:51 +050041
Manjunath Hadli39c6d2d2011-12-21 19:13:35 +053042#include "davinci.h"
43
Sekhar Norif6f97582012-01-21 02:48:17 +053044#define NEUROS_OSD2_PHY_ID "davinci_mdio-0:01"
Andrey Porodkoc16fe262009-11-13 19:16:51 +050045#define LXT971_PHY_ID 0x001378e2
46#define LXT971_PHY_MASK 0xfffffff0
47
48#define NTOSD2_AUDIOSOC_I2C_ADDR 0x18
49#define NTOSD2_MSP430_I2C_ADDR 0x59
50#define NTOSD2_MSP430_IRQ 2
51
52/* Neuros OSD2 has a Samsung 256 MByte NAND flash (Dev ID of 0xAA,
53 * 2048 blocks in the device, 64 pages per block, 2048 bytes per
54 * page.
55 */
56
57#define NAND_BLOCK_SIZE SZ_128K
58
Kevin Hilman28552c22010-02-25 15:36:38 -080059static struct mtd_partition davinci_ntosd2_nandflash_partition[] = {
Andrey Porodkoc16fe262009-11-13 19:16:51 +050060 {
61 /* UBL (a few copies) plus U-Boot */
62 .name = "bootloader",
63 .offset = 0,
64 .size = 15 * NAND_BLOCK_SIZE,
65 .mask_flags = MTD_WRITEABLE, /* force read-only */
66 }, {
67 /* U-Boot environment */
68 .name = "params",
69 .offset = MTDPART_OFS_APPEND,
70 .size = 1 * NAND_BLOCK_SIZE,
71 .mask_flags = 0,
72 }, {
73 /* Kernel */
74 .name = "kernel",
75 .offset = MTDPART_OFS_APPEND,
76 .size = SZ_4M,
77 .mask_flags = 0,
78 }, {
79 /* File System */
80 .name = "filesystem",
81 .offset = MTDPART_OFS_APPEND,
82 .size = MTDPART_SIZ_FULL,
83 .mask_flags = 0,
84 }
85 /* A few blocks at end hold a flash Bad Block Table. */
86};
87
88static struct davinci_nand_pdata davinci_ntosd2_nandflash_data = {
89 .parts = davinci_ntosd2_nandflash_partition,
90 .nr_parts = ARRAY_SIZE(davinci_ntosd2_nandflash_partition),
91 .ecc_mode = NAND_ECC_HW,
Sekhar Noriacd36352013-08-16 14:43:48 +053092 .ecc_bits = 1,
Brian Norrisbb9ebd42011-05-31 16:31:23 -070093 .bbt_options = NAND_BBT_USE_FLASH,
Andrey Porodkoc16fe262009-11-13 19:16:51 +050094};
95
96static struct resource davinci_ntosd2_nandflash_resource[] = {
97 {
Sergei Shtylyov70342172010-04-16 21:29:11 +040098 .start = DM644X_ASYNC_EMIF_DATA_CE0_BASE,
99 .end = DM644X_ASYNC_EMIF_DATA_CE0_BASE + SZ_16M - 1,
Andrey Porodkoc16fe262009-11-13 19:16:51 +0500100 .flags = IORESOURCE_MEM,
101 }, {
Sergei Shtylyov70342172010-04-16 21:29:11 +0400102 .start = DM644X_ASYNC_EMIF_CONTROL_BASE,
103 .end = DM644X_ASYNC_EMIF_CONTROL_BASE + SZ_4K - 1,
Andrey Porodkoc16fe262009-11-13 19:16:51 +0500104 .flags = IORESOURCE_MEM,
105 },
106};
107
108static struct platform_device davinci_ntosd2_nandflash_device = {
109 .name = "davinci_nand",
110 .id = 0,
111 .dev = {
112 .platform_data = &davinci_ntosd2_nandflash_data,
113 },
114 .num_resources = ARRAY_SIZE(davinci_ntosd2_nandflash_resource),
115 .resource = davinci_ntosd2_nandflash_resource,
116};
117
118static u64 davinci_fb_dma_mask = DMA_BIT_MASK(32);
119
120static struct platform_device davinci_fb_device = {
121 .name = "davincifb",
122 .id = -1,
123 .dev = {
124 .dma_mask = &davinci_fb_dma_mask,
125 .coherent_dma_mask = DMA_BIT_MASK(32),
126 },
127 .num_resources = 0,
128};
129
Andrey Porodkoc16fe262009-11-13 19:16:51 +0500130static struct snd_platform_data dm644x_ntosd2_snd_data;
131
132static struct gpio_led ntosd2_leds[] = {
133 { .name = "led1_green", .gpio = GPIO(10), },
134 { .name = "led1_red", .gpio = GPIO(11), },
135 { .name = "led2_green", .gpio = GPIO(12), },
136 { .name = "led2_red", .gpio = GPIO(13), },
137};
138
139static struct gpio_led_platform_data ntosd2_leds_data = {
140 .num_leds = ARRAY_SIZE(ntosd2_leds),
141 .leds = ntosd2_leds,
142};
143
144static struct platform_device ntosd2_leds_dev = {
145 .name = "leds-gpio",
146 .id = -1,
147 .dev = {
148 .platform_data = &ntosd2_leds_data,
149 },
150};
151
152
153static struct platform_device *davinci_ntosd2_devices[] __initdata = {
154 &davinci_fb_device,
155 &ntosd2_leds_dev,
156};
157
Andrey Porodkoc16fe262009-11-13 19:16:51 +0500158static void __init davinci_ntosd2_map_io(void)
159{
160 dm644x_init();
161}
162
Andrey Porodkoc16fe262009-11-13 19:16:51 +0500163static struct davinci_mmc_config davinci_ntosd2_mmc_config = {
164 .wires = 4,
Andrey Porodkoc16fe262009-11-13 19:16:51 +0500165};
166
Lad, Prabhakara0a56db2013-04-01 12:43:44 +0530167#define HAS_ATA IS_ENABLED(CONFIG_BLK_DEV_PALMCHIP_BK3710)
Andrey Porodkoc16fe262009-11-13 19:16:51 +0500168
Lad, Prabhakara0a56db2013-04-01 12:43:44 +0530169#define HAS_NAND IS_ENABLED(CONFIG_MTD_NAND_DAVINCI)
Andrey Porodkoc16fe262009-11-13 19:16:51 +0500170
171static __init void davinci_ntosd2_init(void)
172{
Philip Avinash834acb22013-08-18 10:49:02 +0530173 int ret;
Andrey Porodkoc16fe262009-11-13 19:16:51 +0500174 struct clk *aemif_clk;
175 struct davinci_soc_info *soc_info = &davinci_soc_info;
Andrey Porodkoc16fe262009-11-13 19:16:51 +0500176
Philip Avinash834acb22013-08-18 10:49:02 +0530177 ret = dm644x_gpio_register();
178 if (ret)
179 pr_warn("%s: GPIO init failed: %d\n", __func__, ret);
180
Andrey Porodkoc16fe262009-11-13 19:16:51 +0500181 aemif_clk = clk_get(NULL, "aemif");
m-karicheri2@ti.comb6f1ffe2012-08-02 16:53:48 +0000182 clk_prepare_enable(aemif_clk);
Andrey Porodkoc16fe262009-11-13 19:16:51 +0500183
184 if (HAS_ATA) {
185 if (HAS_NAND)
186 pr_warning("WARNING: both IDE and Flash are "
187 "enabled, but they share AEMIF pins.\n"
188 "\tDisable IDE for NAND/NOR support.\n");
Sergei Shtylyov7a9978a2010-04-21 18:11:33 +0400189 davinci_init_ide();
Andrey Porodkoc16fe262009-11-13 19:16:51 +0500190 } else if (HAS_NAND) {
191 davinci_cfg_reg(DM644X_HPIEN_DISABLE);
192 davinci_cfg_reg(DM644X_ATAEN_DISABLE);
193
194 /* only one device will be jumpered and detected */
195 if (HAS_NAND)
196 platform_device_register(
197 &davinci_ntosd2_nandflash_device);
198 }
199
200 platform_add_devices(davinci_ntosd2_devices,
201 ARRAY_SIZE(davinci_ntosd2_devices));
202
Manjunathappa, Prakashfcf71572013-06-19 14:45:42 +0530203 davinci_serial_init(dm644x_serial_device);
Andrey Porodkoc16fe262009-11-13 19:16:51 +0500204 dm644x_init_asp(&dm644x_ntosd2_snd_data);
205
Cyril Chemparathy782f2d72010-09-15 10:11:25 -0400206 soc_info->emac_pdata->phy_id = NEUROS_OSD2_PHY_ID;
Andrey Porodkoc16fe262009-11-13 19:16:51 +0500207
208 davinci_setup_usb(1000, 8);
209 /*
210 * Mux the pins to be GPIOs, VLYNQEN is already done at startup.
211 * The AEAWx are five new AEAW pins that can be muxed by separately.
212 * They are a bitmask for GPIO management. According TI
213 * documentation (http://www.ti.com/lit/gpn/tms320dm6446) to employ
214 * gpio(10,11,12,13) for leds any combination of bits works except
215 * four last. So we are to reset all five.
216 */
217 davinci_cfg_reg(DM644X_AEAW0);
218 davinci_cfg_reg(DM644X_AEAW1);
219 davinci_cfg_reg(DM644X_AEAW2);
220 davinci_cfg_reg(DM644X_AEAW3);
221 davinci_cfg_reg(DM644X_AEAW4);
222
223 davinci_setup_mmc(0, &davinci_ntosd2_mmc_config);
224}
225
Andrey Porodkoc16fe262009-11-13 19:16:51 +0500226MACHINE_START(NEUROS_OSD2, "Neuros OSD2")
227 /* Maintainer: Neuros Technologies <neuros@groups.google.com> */
Nicolas Pitree7e56012011-07-05 22:38:11 -0400228 .atag_offset = 0x100,
Andrey Porodkoc16fe262009-11-13 19:16:51 +0500229 .map_io = davinci_ntosd2_map_io,
Cyril Chemparathybd808942010-05-07 17:06:37 -0400230 .init_irq = davinci_irq_init,
Stephen Warren6bb27d72012-11-08 12:40:59 -0700231 .init_time = davinci_timer_init,
Andrey Porodkoc16fe262009-11-13 19:16:51 +0500232 .init_machine = davinci_ntosd2_init,
Shawn Guo3aa3e842012-04-26 09:45:39 +0800233 .init_late = davinci_init_late,
Nicolas Pitref68deab2011-07-05 22:28:08 -0400234 .dma_zone_size = SZ_128M,
Sekhar Noric6121dd2011-12-05 11:29:46 +0100235 .restart = davinci_restart,
Andrey Porodkoc16fe262009-11-13 19:16:51 +0500236MACHINE_END