board-dm365-evm.c 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499
  1. /*
  2. * TI DaVinci DM365 EVM board support
  3. *
  4. * Copyright (C) 2009 Texas Instruments Incorporated
  5. *
  6. * This program is free software; you can redistribute it and/or
  7. * modify it under the terms of the GNU General Public License as
  8. * published by the Free Software Foundation version 2.
  9. *
  10. * This program is distributed "as is" WITHOUT ANY WARRANTY of any
  11. * kind, whether express or implied; without even the implied warranty
  12. * of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  13. * GNU General Public License for more details.
  14. */
  15. #include <linux/kernel.h>
  16. #include <linux/module.h>
  17. #include <linux/init.h>
  18. #include <linux/dma-mapping.h>
  19. #include <linux/i2c.h>
  20. #include <linux/io.h>
  21. #include <linux/clk.h>
  22. #include <linux/i2c/at24.h>
  23. #include <linux/leds.h>
  24. #include <linux/mtd/mtd.h>
  25. #include <linux/mtd/partitions.h>
  26. #include <linux/mtd/nand.h>
  27. #include <asm/setup.h>
  28. #include <asm/mach-types.h>
  29. #include <asm/mach/arch.h>
  30. #include <asm/mach/map.h>
  31. #include <mach/mux.h>
  32. #include <mach/hardware.h>
  33. #include <mach/dm365.h>
  34. #include <mach/psc.h>
  35. #include <mach/common.h>
  36. #include <mach/i2c.h>
  37. #include <mach/serial.h>
  38. #include <mach/mmc.h>
  39. #include <mach/nand.h>
  40. static inline int have_imager(void)
  41. {
  42. /* REVISIT when it's supported, trigger via Kconfig */
  43. return 0;
  44. }
  45. static inline int have_tvp7002(void)
  46. {
  47. /* REVISIT when it's supported, trigger via Kconfig */
  48. return 0;
  49. }
  50. #define DM365_ASYNC_EMIF_CONTROL_BASE 0x01d10000
  51. #define DM365_ASYNC_EMIF_DATA_CE0_BASE 0x02000000
  52. #define DM365_ASYNC_EMIF_DATA_CE1_BASE 0x04000000
  53. #define DM365_EVM_PHY_MASK (0x2)
  54. #define DM365_EVM_MDIO_FREQUENCY (2200000) /* PHY bus frequency */
  55. /*
  56. * A MAX-II CPLD is used for various board control functions.
  57. */
  58. #define CPLD_OFFSET(a13a8,a2a1) (((a13a8) << 10) + ((a2a1) << 3))
  59. #define CPLD_VERSION CPLD_OFFSET(0,0) /* r/o */
  60. #define CPLD_TEST CPLD_OFFSET(0,1)
  61. #define CPLD_LEDS CPLD_OFFSET(0,2)
  62. #define CPLD_MUX CPLD_OFFSET(0,3)
  63. #define CPLD_SWITCH CPLD_OFFSET(1,0) /* r/o */
  64. #define CPLD_POWER CPLD_OFFSET(1,1)
  65. #define CPLD_VIDEO CPLD_OFFSET(1,2)
  66. #define CPLD_CARDSTAT CPLD_OFFSET(1,3) /* r/o */
  67. #define CPLD_DILC_OUT CPLD_OFFSET(2,0)
  68. #define CPLD_DILC_IN CPLD_OFFSET(2,1) /* r/o */
  69. #define CPLD_IMG_DIR0 CPLD_OFFSET(2,2)
  70. #define CPLD_IMG_MUX0 CPLD_OFFSET(2,3)
  71. #define CPLD_IMG_MUX1 CPLD_OFFSET(3,0)
  72. #define CPLD_IMG_DIR1 CPLD_OFFSET(3,1)
  73. #define CPLD_IMG_MUX2 CPLD_OFFSET(3,2)
  74. #define CPLD_IMG_MUX3 CPLD_OFFSET(3,3)
  75. #define CPLD_IMG_DIR2 CPLD_OFFSET(4,0)
  76. #define CPLD_IMG_MUX4 CPLD_OFFSET(4,1)
  77. #define CPLD_IMG_MUX5 CPLD_OFFSET(4,2)
  78. #define CPLD_RESETS CPLD_OFFSET(4,3)
  79. #define CPLD_CCD_DIR1 CPLD_OFFSET(0x3e,0)
  80. #define CPLD_CCD_IO1 CPLD_OFFSET(0x3e,1)
  81. #define CPLD_CCD_DIR2 CPLD_OFFSET(0x3e,2)
  82. #define CPLD_CCD_IO2 CPLD_OFFSET(0x3e,3)
  83. #define CPLD_CCD_DIR3 CPLD_OFFSET(0x3f,0)
  84. #define CPLD_CCD_IO3 CPLD_OFFSET(0x3f,1)
  85. static void __iomem *cpld;
  86. /* NOTE: this is geared for the standard config, with a socketed
  87. * 2 GByte Micron NAND (MT29F16G08FAA) using 128KB sectors. If you
  88. * swap chips with a different block size, partitioning will
  89. * need to be changed. This NAND chip MT29F16G08FAA is the default
  90. * NAND shipped with the Spectrum Digital DM365 EVM
  91. */
  92. #define NAND_BLOCK_SIZE SZ_128K
  93. static struct mtd_partition davinci_nand_partitions[] = {
  94. {
  95. /* UBL (a few copies) plus U-Boot */
  96. .name = "bootloader",
  97. .offset = 0,
  98. .size = 28 * NAND_BLOCK_SIZE,
  99. .mask_flags = MTD_WRITEABLE, /* force read-only */
  100. }, {
  101. /* U-Boot environment */
  102. .name = "params",
  103. .offset = MTDPART_OFS_APPEND,
  104. .size = 2 * NAND_BLOCK_SIZE,
  105. .mask_flags = 0,
  106. }, {
  107. .name = "kernel",
  108. .offset = MTDPART_OFS_APPEND,
  109. .size = SZ_4M,
  110. .mask_flags = 0,
  111. }, {
  112. .name = "filesystem1",
  113. .offset = MTDPART_OFS_APPEND,
  114. .size = SZ_512M,
  115. .mask_flags = 0,
  116. }, {
  117. .name = "filesystem2",
  118. .offset = MTDPART_OFS_APPEND,
  119. .size = MTDPART_SIZ_FULL,
  120. .mask_flags = 0,
  121. }
  122. /* two blocks with bad block table (and mirror) at the end */
  123. };
  124. static struct davinci_nand_pdata davinci_nand_data = {
  125. .mask_chipsel = BIT(14),
  126. .parts = davinci_nand_partitions,
  127. .nr_parts = ARRAY_SIZE(davinci_nand_partitions),
  128. .ecc_mode = NAND_ECC_HW,
  129. .options = NAND_USE_FLASH_BBT,
  130. .ecc_bits = 4,
  131. };
  132. static struct resource davinci_nand_resources[] = {
  133. {
  134. .start = DM365_ASYNC_EMIF_DATA_CE0_BASE,
  135. .end = DM365_ASYNC_EMIF_DATA_CE0_BASE + SZ_32M - 1,
  136. .flags = IORESOURCE_MEM,
  137. }, {
  138. .start = DM365_ASYNC_EMIF_CONTROL_BASE,
  139. .end = DM365_ASYNC_EMIF_CONTROL_BASE + SZ_4K - 1,
  140. .flags = IORESOURCE_MEM,
  141. },
  142. };
  143. static struct platform_device davinci_nand_device = {
  144. .name = "davinci_nand",
  145. .id = 0,
  146. .num_resources = ARRAY_SIZE(davinci_nand_resources),
  147. .resource = davinci_nand_resources,
  148. .dev = {
  149. .platform_data = &davinci_nand_data,
  150. },
  151. };
  152. static struct at24_platform_data eeprom_info = {
  153. .byte_len = (256*1024) / 8,
  154. .page_size = 64,
  155. .flags = AT24_FLAG_ADDR16,
  156. .setup = davinci_get_mac_addr,
  157. .context = (void *)0x7f00,
  158. };
  159. static struct snd_platform_data dm365_evm_snd_data;
  160. static struct i2c_board_info i2c_info[] = {
  161. {
  162. I2C_BOARD_INFO("24c256", 0x50),
  163. .platform_data = &eeprom_info,
  164. },
  165. {
  166. I2C_BOARD_INFO("tlv320aic3x", 0x18),
  167. },
  168. };
  169. static struct davinci_i2c_platform_data i2c_pdata = {
  170. .bus_freq = 400 /* kHz */,
  171. .bus_delay = 0 /* usec */,
  172. };
  173. static int cpld_mmc_get_cd(int module)
  174. {
  175. if (!cpld)
  176. return -ENXIO;
  177. /* low == card present */
  178. return !(__raw_readb(cpld + CPLD_CARDSTAT) & BIT(module ? 4 : 0));
  179. }
  180. static int cpld_mmc_get_ro(int module)
  181. {
  182. if (!cpld)
  183. return -ENXIO;
  184. /* high == card's write protect switch active */
  185. return !!(__raw_readb(cpld + CPLD_CARDSTAT) & BIT(module ? 5 : 1));
  186. }
  187. static struct davinci_mmc_config dm365evm_mmc_config = {
  188. .get_cd = cpld_mmc_get_cd,
  189. .get_ro = cpld_mmc_get_ro,
  190. .wires = 4,
  191. .max_freq = 50000000,
  192. .caps = MMC_CAP_MMC_HIGHSPEED | MMC_CAP_SD_HIGHSPEED,
  193. .version = MMC_CTLR_VERSION_2,
  194. };
  195. static void dm365evm_emac_configure(void)
  196. {
  197. /*
  198. * EMAC pins are multiplexed with GPIO and UART
  199. * Further details are available at the DM365 ARM
  200. * Subsystem Users Guide(sprufg5.pdf) pages 125 - 127
  201. */
  202. davinci_cfg_reg(DM365_EMAC_TX_EN);
  203. davinci_cfg_reg(DM365_EMAC_TX_CLK);
  204. davinci_cfg_reg(DM365_EMAC_COL);
  205. davinci_cfg_reg(DM365_EMAC_TXD3);
  206. davinci_cfg_reg(DM365_EMAC_TXD2);
  207. davinci_cfg_reg(DM365_EMAC_TXD1);
  208. davinci_cfg_reg(DM365_EMAC_TXD0);
  209. davinci_cfg_reg(DM365_EMAC_RXD3);
  210. davinci_cfg_reg(DM365_EMAC_RXD2);
  211. davinci_cfg_reg(DM365_EMAC_RXD1);
  212. davinci_cfg_reg(DM365_EMAC_RXD0);
  213. davinci_cfg_reg(DM365_EMAC_RX_CLK);
  214. davinci_cfg_reg(DM365_EMAC_RX_DV);
  215. davinci_cfg_reg(DM365_EMAC_RX_ER);
  216. davinci_cfg_reg(DM365_EMAC_CRS);
  217. davinci_cfg_reg(DM365_EMAC_MDIO);
  218. davinci_cfg_reg(DM365_EMAC_MDCLK);
  219. /*
  220. * EMAC interrupts are multiplexed with GPIO interrupts
  221. * Details are available at the DM365 ARM
  222. * Subsystem Users Guide(sprufg5.pdf) pages 133 - 134
  223. */
  224. davinci_cfg_reg(DM365_INT_EMAC_RXTHRESH);
  225. davinci_cfg_reg(DM365_INT_EMAC_RXPULSE);
  226. davinci_cfg_reg(DM365_INT_EMAC_TXPULSE);
  227. davinci_cfg_reg(DM365_INT_EMAC_MISCPULSE);
  228. }
  229. static void dm365evm_mmc_configure(void)
  230. {
  231. /*
  232. * MMC/SD pins are multiplexed with GPIO and EMIF
  233. * Further details are available at the DM365 ARM
  234. * Subsystem Users Guide(sprufg5.pdf) pages 118, 128 - 131
  235. */
  236. davinci_cfg_reg(DM365_SD1_CLK);
  237. davinci_cfg_reg(DM365_SD1_CMD);
  238. davinci_cfg_reg(DM365_SD1_DATA3);
  239. davinci_cfg_reg(DM365_SD1_DATA2);
  240. davinci_cfg_reg(DM365_SD1_DATA1);
  241. davinci_cfg_reg(DM365_SD1_DATA0);
  242. }
  243. static void __init evm_init_i2c(void)
  244. {
  245. davinci_init_i2c(&i2c_pdata);
  246. i2c_register_board_info(1, i2c_info, ARRAY_SIZE(i2c_info));
  247. }
  248. static struct platform_device *dm365_evm_nand_devices[] __initdata = {
  249. &davinci_nand_device,
  250. };
  251. static inline int have_leds(void)
  252. {
  253. #ifdef CONFIG_LEDS_CLASS
  254. return 1;
  255. #else
  256. return 0;
  257. #endif
  258. }
  259. struct cpld_led {
  260. struct led_classdev cdev;
  261. u8 mask;
  262. };
  263. static const struct {
  264. const char *name;
  265. const char *trigger;
  266. } cpld_leds[] = {
  267. { "dm365evm::ds2", },
  268. { "dm365evm::ds3", },
  269. { "dm365evm::ds4", },
  270. { "dm365evm::ds5", },
  271. { "dm365evm::ds6", "nand-disk", },
  272. { "dm365evm::ds7", "mmc1", },
  273. { "dm365evm::ds8", "mmc0", },
  274. { "dm365evm::ds9", "heartbeat", },
  275. };
  276. static void cpld_led_set(struct led_classdev *cdev, enum led_brightness b)
  277. {
  278. struct cpld_led *led = container_of(cdev, struct cpld_led, cdev);
  279. u8 reg = __raw_readb(cpld + CPLD_LEDS);
  280. if (b != LED_OFF)
  281. reg &= ~led->mask;
  282. else
  283. reg |= led->mask;
  284. __raw_writeb(reg, cpld + CPLD_LEDS);
  285. }
  286. static enum led_brightness cpld_led_get(struct led_classdev *cdev)
  287. {
  288. struct cpld_led *led = container_of(cdev, struct cpld_led, cdev);
  289. u8 reg = __raw_readb(cpld + CPLD_LEDS);
  290. return (reg & led->mask) ? LED_OFF : LED_FULL;
  291. }
  292. static int __init cpld_leds_init(void)
  293. {
  294. int i;
  295. if (!have_leds() || !cpld)
  296. return 0;
  297. /* setup LEDs */
  298. __raw_writeb(0xff, cpld + CPLD_LEDS);
  299. for (i = 0; i < ARRAY_SIZE(cpld_leds); i++) {
  300. struct cpld_led *led;
  301. led = kzalloc(sizeof(*led), GFP_KERNEL);
  302. if (!led)
  303. break;
  304. led->cdev.name = cpld_leds[i].name;
  305. led->cdev.brightness_set = cpld_led_set;
  306. led->cdev.brightness_get = cpld_led_get;
  307. led->cdev.default_trigger = cpld_leds[i].trigger;
  308. led->mask = BIT(i);
  309. if (led_classdev_register(NULL, &led->cdev) < 0) {
  310. kfree(led);
  311. break;
  312. }
  313. }
  314. return 0;
  315. }
  316. /* run after subsys_initcall() for LEDs */
  317. fs_initcall(cpld_leds_init);
  318. static void __init evm_init_cpld(void)
  319. {
  320. u8 mux, resets;
  321. const char *label;
  322. struct clk *aemif_clk;
  323. /* Make sure we can configure the CPLD through CS1. Then
  324. * leave it on for later access to MMC and LED registers.
  325. */
  326. aemif_clk = clk_get(NULL, "aemif");
  327. if (IS_ERR(aemif_clk))
  328. return;
  329. clk_enable(aemif_clk);
  330. if (request_mem_region(DM365_ASYNC_EMIF_DATA_CE1_BASE, SECTION_SIZE,
  331. "cpld") == NULL)
  332. goto fail;
  333. cpld = ioremap(DM365_ASYNC_EMIF_DATA_CE1_BASE, SECTION_SIZE);
  334. if (!cpld) {
  335. release_mem_region(DM365_ASYNC_EMIF_DATA_CE1_BASE,
  336. SECTION_SIZE);
  337. fail:
  338. pr_err("ERROR: can't map CPLD\n");
  339. clk_disable(aemif_clk);
  340. return;
  341. }
  342. /* External muxing for some signals */
  343. mux = 0;
  344. /* Read SW5 to set up NAND + keypad _or_ OneNAND (sync read).
  345. * NOTE: SW4 bus width setting must match!
  346. */
  347. if ((__raw_readb(cpld + CPLD_SWITCH) & BIT(5)) == 0) {
  348. /* external keypad mux */
  349. mux |= BIT(7);
  350. platform_add_devices(dm365_evm_nand_devices,
  351. ARRAY_SIZE(dm365_evm_nand_devices));
  352. } else {
  353. /* no OneNAND support yet */
  354. }
  355. /* Leave external chips in reset when unused. */
  356. resets = BIT(3) | BIT(2) | BIT(1) | BIT(0);
  357. /* Static video input config with SN74CBT16214 1-of-3 mux:
  358. * - port b1 == tvp7002 (mux lowbits == 1 or 6)
  359. * - port b2 == imager (mux lowbits == 2 or 7)
  360. * - port b3 == tvp5146 (mux lowbits == 5)
  361. *
  362. * Runtime switching could work too, with limitations.
  363. */
  364. if (have_imager()) {
  365. label = "HD imager";
  366. mux |= 1;
  367. /* externally mux MMC1/ENET/AIC33 to imager */
  368. mux |= BIT(6) | BIT(5) | BIT(3);
  369. } else {
  370. struct davinci_soc_info *soc_info = &davinci_soc_info;
  371. /* we can use MMC1 ... */
  372. dm365evm_mmc_configure();
  373. davinci_setup_mmc(1, &dm365evm_mmc_config);
  374. /* ... and ENET ... */
  375. dm365evm_emac_configure();
  376. soc_info->emac_pdata->phy_mask = DM365_EVM_PHY_MASK;
  377. soc_info->emac_pdata->mdio_max_freq = DM365_EVM_MDIO_FREQUENCY;
  378. resets &= ~BIT(3);
  379. /* ... and AIC33 */
  380. resets &= ~BIT(1);
  381. if (have_tvp7002()) {
  382. mux |= 2;
  383. resets &= ~BIT(2);
  384. label = "tvp7002 HD";
  385. } else {
  386. /* default to tvp5146 */
  387. mux |= 5;
  388. resets &= ~BIT(0);
  389. label = "tvp5146 SD";
  390. }
  391. }
  392. __raw_writeb(mux, cpld + CPLD_MUX);
  393. __raw_writeb(resets, cpld + CPLD_RESETS);
  394. pr_info("EVM: %s video input\n", label);
  395. /* REVISIT export switches: NTSC/PAL (SW5.6), EXTRA1 (SW5.2), etc */
  396. }
  397. static struct davinci_uart_config uart_config __initdata = {
  398. .enabled_uarts = (1 << 0),
  399. };
  400. static void __init dm365_evm_map_io(void)
  401. {
  402. dm365_init();
  403. }
  404. static __init void dm365_evm_init(void)
  405. {
  406. evm_init_i2c();
  407. davinci_serial_init(&uart_config);
  408. dm365evm_emac_configure();
  409. dm365evm_mmc_configure();
  410. davinci_setup_mmc(0, &dm365evm_mmc_config);
  411. /* maybe setup mmc1/etc ... _after_ mmc0 */
  412. evm_init_cpld();
  413. dm365_init_asp(&dm365_evm_snd_data);
  414. }
  415. static __init void dm365_evm_irq_init(void)
  416. {
  417. davinci_irq_init();
  418. }
  419. MACHINE_START(DAVINCI_DM365_EVM, "DaVinci DM365 EVM")
  420. .phys_io = IO_PHYS,
  421. .io_pg_offst = (__IO_ADDRESS(IO_PHYS) >> 18) & 0xfffc,
  422. .boot_params = (0x80000100),
  423. .map_io = dm365_evm_map_io,
  424. .init_irq = dm365_evm_irq_init,
  425. .timer = &davinci_timer,
  426. .init_machine = dm365_evm_init,
  427. MACHINE_END