ts72xx.c 6.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256
  1. /*
  2. * arch/arm/mach-ep93xx/ts72xx.c
  3. * Technologic Systems TS72xx SBC support.
  4. *
  5. * Copyright (C) 2006 Lennert Buytenhek <buytenh@wantstofly.org>
  6. *
  7. * This program is free software; you can redistribute it and/or modify
  8. * it under the terms of the GNU General Public License as published by
  9. * the Free Software Foundation; either version 2 of the License, or (at
  10. * your option) any later version.
  11. */
  12. #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
  13. #include <linux/kernel.h>
  14. #include <linux/init.h>
  15. #include <linux/platform_device.h>
  16. #include <linux/io.h>
  17. #include <linux/m48t86.h>
  18. #include <linux/mtd/nand.h>
  19. #include <linux/mtd/partitions.h>
  20. #include <mach/hardware.h>
  21. #include <mach/ts72xx.h>
  22. #include <asm/hardware/vic.h>
  23. #include <asm/mach-types.h>
  24. #include <asm/mach/map.h>
  25. #include <asm/mach/arch.h>
  26. #include "soc.h"
  27. static struct map_desc ts72xx_io_desc[] __initdata = {
  28. {
  29. .virtual = TS72XX_MODEL_VIRT_BASE,
  30. .pfn = __phys_to_pfn(TS72XX_MODEL_PHYS_BASE),
  31. .length = TS72XX_MODEL_SIZE,
  32. .type = MT_DEVICE,
  33. }, {
  34. .virtual = TS72XX_OPTIONS_VIRT_BASE,
  35. .pfn = __phys_to_pfn(TS72XX_OPTIONS_PHYS_BASE),
  36. .length = TS72XX_OPTIONS_SIZE,
  37. .type = MT_DEVICE,
  38. }, {
  39. .virtual = TS72XX_OPTIONS2_VIRT_BASE,
  40. .pfn = __phys_to_pfn(TS72XX_OPTIONS2_PHYS_BASE),
  41. .length = TS72XX_OPTIONS2_SIZE,
  42. .type = MT_DEVICE,
  43. }, {
  44. .virtual = TS72XX_RTC_INDEX_VIRT_BASE,
  45. .pfn = __phys_to_pfn(TS72XX_RTC_INDEX_PHYS_BASE),
  46. .length = TS72XX_RTC_INDEX_SIZE,
  47. .type = MT_DEVICE,
  48. }, {
  49. .virtual = TS72XX_RTC_DATA_VIRT_BASE,
  50. .pfn = __phys_to_pfn(TS72XX_RTC_DATA_PHYS_BASE),
  51. .length = TS72XX_RTC_DATA_SIZE,
  52. .type = MT_DEVICE,
  53. }
  54. };
  55. static void __init ts72xx_map_io(void)
  56. {
  57. ep93xx_map_io();
  58. iotable_init(ts72xx_io_desc, ARRAY_SIZE(ts72xx_io_desc));
  59. }
  60. /*************************************************************************
  61. * NAND flash
  62. *************************************************************************/
  63. #define TS72XX_NAND_CONTROL_ADDR_LINE 22 /* 0xN0400000 */
  64. #define TS72XX_NAND_BUSY_ADDR_LINE 23 /* 0xN0800000 */
  65. static void ts72xx_nand_hwcontrol(struct mtd_info *mtd,
  66. int cmd, unsigned int ctrl)
  67. {
  68. struct nand_chip *chip = mtd->priv;
  69. if (ctrl & NAND_CTRL_CHANGE) {
  70. void __iomem *addr = chip->IO_ADDR_R;
  71. unsigned char bits;
  72. addr += (1 << TS72XX_NAND_CONTROL_ADDR_LINE);
  73. bits = __raw_readb(addr) & ~0x07;
  74. bits |= (ctrl & NAND_NCE) << 2; /* bit 0 -> bit 2 */
  75. bits |= (ctrl & NAND_CLE); /* bit 1 -> bit 1 */
  76. bits |= (ctrl & NAND_ALE) >> 2; /* bit 2 -> bit 0 */
  77. __raw_writeb(bits, addr);
  78. }
  79. if (cmd != NAND_CMD_NONE)
  80. __raw_writeb(cmd, chip->IO_ADDR_W);
  81. }
  82. static int ts72xx_nand_device_ready(struct mtd_info *mtd)
  83. {
  84. struct nand_chip *chip = mtd->priv;
  85. void __iomem *addr = chip->IO_ADDR_R;
  86. addr += (1 << TS72XX_NAND_BUSY_ADDR_LINE);
  87. return !!(__raw_readb(addr) & 0x20);
  88. }
  89. static const char *ts72xx_nand_part_probes[] = { "cmdlinepart", NULL };
  90. #define TS72XX_BOOTROM_PART_SIZE (SZ_16K)
  91. #define TS72XX_REDBOOT_PART_SIZE (SZ_2M + SZ_1M)
  92. static struct mtd_partition ts72xx_nand_parts[] = {
  93. {
  94. .name = "TS-BOOTROM",
  95. .offset = 0,
  96. .size = TS72XX_BOOTROM_PART_SIZE,
  97. .mask_flags = MTD_WRITEABLE, /* force read-only */
  98. }, {
  99. .name = "Linux",
  100. .offset = MTDPART_OFS_RETAIN,
  101. .size = TS72XX_REDBOOT_PART_SIZE,
  102. /* leave so much for last partition */
  103. }, {
  104. .name = "RedBoot",
  105. .offset = MTDPART_OFS_APPEND,
  106. .size = MTDPART_SIZ_FULL,
  107. .mask_flags = MTD_WRITEABLE, /* force read-only */
  108. },
  109. };
  110. static struct platform_nand_data ts72xx_nand_data = {
  111. .chip = {
  112. .nr_chips = 1,
  113. .chip_offset = 0,
  114. .chip_delay = 15,
  115. .part_probe_types = ts72xx_nand_part_probes,
  116. .partitions = ts72xx_nand_parts,
  117. .nr_partitions = ARRAY_SIZE(ts72xx_nand_parts),
  118. },
  119. .ctrl = {
  120. .cmd_ctrl = ts72xx_nand_hwcontrol,
  121. .dev_ready = ts72xx_nand_device_ready,
  122. },
  123. };
  124. static struct resource ts72xx_nand_resource[] = {
  125. {
  126. .start = 0, /* filled in later */
  127. .end = 0, /* filled in later */
  128. .flags = IORESOURCE_MEM,
  129. },
  130. };
  131. static struct platform_device ts72xx_nand_flash = {
  132. .name = "gen_nand",
  133. .id = -1,
  134. .dev.platform_data = &ts72xx_nand_data,
  135. .resource = ts72xx_nand_resource,
  136. .num_resources = ARRAY_SIZE(ts72xx_nand_resource),
  137. };
  138. static void __init ts72xx_register_flash(void)
  139. {
  140. /*
  141. * TS7200 has NOR flash all other TS72xx board have NAND flash.
  142. */
  143. if (board_is_ts7200()) {
  144. ep93xx_register_flash(2, EP93XX_CS6_PHYS_BASE, SZ_16M);
  145. } else {
  146. resource_size_t start;
  147. if (is_ts9420_installed())
  148. start = EP93XX_CS7_PHYS_BASE;
  149. else
  150. start = EP93XX_CS6_PHYS_BASE;
  151. ts72xx_nand_resource[0].start = start;
  152. ts72xx_nand_resource[0].end = start + SZ_16M - 1;
  153. platform_device_register(&ts72xx_nand_flash);
  154. }
  155. }
  156. static unsigned char ts72xx_rtc_readbyte(unsigned long addr)
  157. {
  158. __raw_writeb(addr, TS72XX_RTC_INDEX_VIRT_BASE);
  159. return __raw_readb(TS72XX_RTC_DATA_VIRT_BASE);
  160. }
  161. static void ts72xx_rtc_writebyte(unsigned char value, unsigned long addr)
  162. {
  163. __raw_writeb(addr, TS72XX_RTC_INDEX_VIRT_BASE);
  164. __raw_writeb(value, TS72XX_RTC_DATA_VIRT_BASE);
  165. }
  166. static struct m48t86_ops ts72xx_rtc_ops = {
  167. .readbyte = ts72xx_rtc_readbyte,
  168. .writebyte = ts72xx_rtc_writebyte,
  169. };
  170. static struct platform_device ts72xx_rtc_device = {
  171. .name = "rtc-m48t86",
  172. .id = -1,
  173. .dev = {
  174. .platform_data = &ts72xx_rtc_ops,
  175. },
  176. .num_resources = 0,
  177. };
  178. static struct resource ts72xx_wdt_resources[] = {
  179. {
  180. .start = TS72XX_WDT_CONTROL_PHYS_BASE,
  181. .end = TS72XX_WDT_CONTROL_PHYS_BASE + SZ_4K - 1,
  182. .flags = IORESOURCE_MEM,
  183. },
  184. {
  185. .start = TS72XX_WDT_FEED_PHYS_BASE,
  186. .end = TS72XX_WDT_FEED_PHYS_BASE + SZ_4K - 1,
  187. .flags = IORESOURCE_MEM,
  188. },
  189. };
  190. static struct platform_device ts72xx_wdt_device = {
  191. .name = "ts72xx-wdt",
  192. .id = -1,
  193. .num_resources = ARRAY_SIZE(ts72xx_wdt_resources),
  194. .resource = ts72xx_wdt_resources,
  195. };
  196. static struct ep93xx_eth_data __initdata ts72xx_eth_data = {
  197. .phy_id = 1,
  198. };
  199. static void __init ts72xx_init_machine(void)
  200. {
  201. ep93xx_init_devices();
  202. ts72xx_register_flash();
  203. platform_device_register(&ts72xx_rtc_device);
  204. platform_device_register(&ts72xx_wdt_device);
  205. ep93xx_register_eth(&ts72xx_eth_data, 1);
  206. }
  207. MACHINE_START(TS72XX, "Technologic Systems TS-72xx SBC")
  208. /* Maintainer: Lennert Buytenhek <buytenh@wantstofly.org> */
  209. .atag_offset = 0x100,
  210. .map_io = ts72xx_map_io,
  211. .init_irq = ep93xx_init_irq,
  212. .handle_irq = vic_handle_irq,
  213. .timer = &ep93xx_timer,
  214. .init_machine = ts72xx_init_machine,
  215. .restart = ep93xx_restart,
  216. MACHINE_END