at91rm9200.c 9.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396
  1. /*
  2. * arch/arm/mach-at91/at91rm9200.c
  3. *
  4. * Copyright (C) 2005 SAN People
  5. *
  6. * This program is free software; you can redistribute it and/or modify
  7. * it under the terms of the GNU General Public License as published by
  8. * the Free Software Foundation; either version 2 of the License, or
  9. * (at your option) any later version.
  10. *
  11. */
  12. #include <linux/module.h>
  13. #include <asm/irq.h>
  14. #include <asm/mach/arch.h>
  15. #include <asm/mach/map.h>
  16. #include <mach/at91rm9200.h>
  17. #include <mach/at91_pmc.h>
  18. #include <mach/at91_st.h>
  19. #include <mach/cpu.h>
  20. #include "generic.h"
  21. #include "clock.h"
  22. static struct map_desc at91rm9200_io_desc[] __initdata = {
  23. {
  24. .virtual = AT91_VA_BASE_SYS,
  25. .pfn = __phys_to_pfn(AT91_BASE_SYS),
  26. .length = SZ_4K,
  27. .type = MT_DEVICE,
  28. }, {
  29. .virtual = AT91_VA_BASE_EMAC,
  30. .pfn = __phys_to_pfn(AT91RM9200_BASE_EMAC),
  31. .length = SZ_16K,
  32. .type = MT_DEVICE,
  33. }, {
  34. .virtual = AT91_IO_VIRT_BASE - AT91RM9200_SRAM_SIZE,
  35. .pfn = __phys_to_pfn(AT91RM9200_SRAM_BASE),
  36. .length = AT91RM9200_SRAM_SIZE,
  37. .type = MT_DEVICE,
  38. },
  39. };
  40. /* --------------------------------------------------------------------
  41. * Clocks
  42. * -------------------------------------------------------------------- */
  43. /*
  44. * The peripheral clocks.
  45. */
  46. static struct clk udc_clk = {
  47. .name = "udc_clk",
  48. .pmc_mask = 1 << AT91RM9200_ID_UDP,
  49. .type = CLK_TYPE_PERIPHERAL,
  50. };
  51. static struct clk ohci_clk = {
  52. .name = "ohci_clk",
  53. .pmc_mask = 1 << AT91RM9200_ID_UHP,
  54. .type = CLK_TYPE_PERIPHERAL,
  55. };
  56. static struct clk ether_clk = {
  57. .name = "ether_clk",
  58. .pmc_mask = 1 << AT91RM9200_ID_EMAC,
  59. .type = CLK_TYPE_PERIPHERAL,
  60. };
  61. static struct clk mmc_clk = {
  62. .name = "mci_clk",
  63. .pmc_mask = 1 << AT91RM9200_ID_MCI,
  64. .type = CLK_TYPE_PERIPHERAL,
  65. };
  66. static struct clk twi_clk = {
  67. .name = "twi_clk",
  68. .pmc_mask = 1 << AT91RM9200_ID_TWI,
  69. .type = CLK_TYPE_PERIPHERAL,
  70. };
  71. static struct clk usart0_clk = {
  72. .name = "usart0_clk",
  73. .pmc_mask = 1 << AT91RM9200_ID_US0,
  74. .type = CLK_TYPE_PERIPHERAL,
  75. };
  76. static struct clk usart1_clk = {
  77. .name = "usart1_clk",
  78. .pmc_mask = 1 << AT91RM9200_ID_US1,
  79. .type = CLK_TYPE_PERIPHERAL,
  80. };
  81. static struct clk usart2_clk = {
  82. .name = "usart2_clk",
  83. .pmc_mask = 1 << AT91RM9200_ID_US2,
  84. .type = CLK_TYPE_PERIPHERAL,
  85. };
  86. static struct clk usart3_clk = {
  87. .name = "usart3_clk",
  88. .pmc_mask = 1 << AT91RM9200_ID_US3,
  89. .type = CLK_TYPE_PERIPHERAL,
  90. };
  91. static struct clk spi_clk = {
  92. .name = "spi_clk",
  93. .pmc_mask = 1 << AT91RM9200_ID_SPI,
  94. .type = CLK_TYPE_PERIPHERAL,
  95. };
  96. static struct clk pioA_clk = {
  97. .name = "pioA_clk",
  98. .pmc_mask = 1 << AT91RM9200_ID_PIOA,
  99. .type = CLK_TYPE_PERIPHERAL,
  100. };
  101. static struct clk pioB_clk = {
  102. .name = "pioB_clk",
  103. .pmc_mask = 1 << AT91RM9200_ID_PIOB,
  104. .type = CLK_TYPE_PERIPHERAL,
  105. };
  106. static struct clk pioC_clk = {
  107. .name = "pioC_clk",
  108. .pmc_mask = 1 << AT91RM9200_ID_PIOC,
  109. .type = CLK_TYPE_PERIPHERAL,
  110. };
  111. static struct clk pioD_clk = {
  112. .name = "pioD_clk",
  113. .pmc_mask = 1 << AT91RM9200_ID_PIOD,
  114. .type = CLK_TYPE_PERIPHERAL,
  115. };
  116. static struct clk ssc0_clk = {
  117. .name = "ssc0_clk",
  118. .pmc_mask = 1 << AT91RM9200_ID_SSC0,
  119. .type = CLK_TYPE_PERIPHERAL,
  120. };
  121. static struct clk ssc1_clk = {
  122. .name = "ssc1_clk",
  123. .pmc_mask = 1 << AT91RM9200_ID_SSC1,
  124. .type = CLK_TYPE_PERIPHERAL,
  125. };
  126. static struct clk ssc2_clk = {
  127. .name = "ssc2_clk",
  128. .pmc_mask = 1 << AT91RM9200_ID_SSC2,
  129. .type = CLK_TYPE_PERIPHERAL,
  130. };
  131. static struct clk tc0_clk = {
  132. .name = "tc0_clk",
  133. .pmc_mask = 1 << AT91RM9200_ID_TC0,
  134. .type = CLK_TYPE_PERIPHERAL,
  135. };
  136. static struct clk tc1_clk = {
  137. .name = "tc1_clk",
  138. .pmc_mask = 1 << AT91RM9200_ID_TC1,
  139. .type = CLK_TYPE_PERIPHERAL,
  140. };
  141. static struct clk tc2_clk = {
  142. .name = "tc2_clk",
  143. .pmc_mask = 1 << AT91RM9200_ID_TC2,
  144. .type = CLK_TYPE_PERIPHERAL,
  145. };
  146. static struct clk tc3_clk = {
  147. .name = "tc3_clk",
  148. .pmc_mask = 1 << AT91RM9200_ID_TC3,
  149. .type = CLK_TYPE_PERIPHERAL,
  150. };
  151. static struct clk tc4_clk = {
  152. .name = "tc4_clk",
  153. .pmc_mask = 1 << AT91RM9200_ID_TC4,
  154. .type = CLK_TYPE_PERIPHERAL,
  155. };
  156. static struct clk tc5_clk = {
  157. .name = "tc5_clk",
  158. .pmc_mask = 1 << AT91RM9200_ID_TC5,
  159. .type = CLK_TYPE_PERIPHERAL,
  160. };
  161. static struct clk *periph_clocks[] __initdata = {
  162. &pioA_clk,
  163. &pioB_clk,
  164. &pioC_clk,
  165. &pioD_clk,
  166. &usart0_clk,
  167. &usart1_clk,
  168. &usart2_clk,
  169. &usart3_clk,
  170. &mmc_clk,
  171. &udc_clk,
  172. &twi_clk,
  173. &spi_clk,
  174. &ssc0_clk,
  175. &ssc1_clk,
  176. &ssc2_clk,
  177. &tc0_clk,
  178. &tc1_clk,
  179. &tc2_clk,
  180. &tc3_clk,
  181. &tc4_clk,
  182. &tc5_clk,
  183. &ohci_clk,
  184. &ether_clk,
  185. // irq0 .. irq6
  186. };
  187. static struct clk_lookup periph_clocks_lookups[] = {
  188. CLKDEV_CON_DEV_ID("t0_clk", "atmel_tcb.0", &tc0_clk),
  189. CLKDEV_CON_DEV_ID("t1_clk", "atmel_tcb.0", &tc1_clk),
  190. CLKDEV_CON_DEV_ID("t2_clk", "atmel_tcb.0", &tc2_clk),
  191. CLKDEV_CON_DEV_ID("t0_clk", "atmel_tcb.1", &tc3_clk),
  192. CLKDEV_CON_DEV_ID("t1_clk", "atmel_tcb.1", &tc4_clk),
  193. CLKDEV_CON_DEV_ID("t2_clk", "atmel_tcb.1", &tc5_clk),
  194. CLKDEV_CON_DEV_ID("ssc", "ssc.0", &ssc0_clk),
  195. CLKDEV_CON_DEV_ID("ssc", "ssc.1", &ssc1_clk),
  196. CLKDEV_CON_DEV_ID("ssc", "ssc.2", &ssc2_clk),
  197. };
  198. static struct clk_lookup usart_clocks_lookups[] = {
  199. CLKDEV_CON_DEV_ID("usart", "atmel_usart.0", &mck),
  200. CLKDEV_CON_DEV_ID("usart", "atmel_usart.1", &usart0_clk),
  201. CLKDEV_CON_DEV_ID("usart", "atmel_usart.2", &usart1_clk),
  202. CLKDEV_CON_DEV_ID("usart", "atmel_usart.3", &usart2_clk),
  203. CLKDEV_CON_DEV_ID("usart", "atmel_usart.4", &usart3_clk),
  204. };
  205. /*
  206. * The four programmable clocks.
  207. * You must configure pin multiplexing to bring these signals out.
  208. */
  209. static struct clk pck0 = {
  210. .name = "pck0",
  211. .pmc_mask = AT91_PMC_PCK0,
  212. .type = CLK_TYPE_PROGRAMMABLE,
  213. .id = 0,
  214. };
  215. static struct clk pck1 = {
  216. .name = "pck1",
  217. .pmc_mask = AT91_PMC_PCK1,
  218. .type = CLK_TYPE_PROGRAMMABLE,
  219. .id = 1,
  220. };
  221. static struct clk pck2 = {
  222. .name = "pck2",
  223. .pmc_mask = AT91_PMC_PCK2,
  224. .type = CLK_TYPE_PROGRAMMABLE,
  225. .id = 2,
  226. };
  227. static struct clk pck3 = {
  228. .name = "pck3",
  229. .pmc_mask = AT91_PMC_PCK3,
  230. .type = CLK_TYPE_PROGRAMMABLE,
  231. .id = 3,
  232. };
  233. static void __init at91rm9200_register_clocks(void)
  234. {
  235. int i;
  236. for (i = 0; i < ARRAY_SIZE(periph_clocks); i++)
  237. clk_register(periph_clocks[i]);
  238. clkdev_add_table(periph_clocks_lookups,
  239. ARRAY_SIZE(periph_clocks_lookups));
  240. clkdev_add_table(usart_clocks_lookups,
  241. ARRAY_SIZE(usart_clocks_lookups));
  242. clk_register(&pck0);
  243. clk_register(&pck1);
  244. clk_register(&pck2);
  245. clk_register(&pck3);
  246. }
  247. static struct clk_lookup console_clock_lookup;
  248. void __init at91rm9200_set_console_clock(int id)
  249. {
  250. if (id >= ARRAY_SIZE(usart_clocks_lookups))
  251. return;
  252. console_clock_lookup.con_id = "usart";
  253. console_clock_lookup.clk = usart_clocks_lookups[id].clk;
  254. clkdev_add(&console_clock_lookup);
  255. }
  256. /* --------------------------------------------------------------------
  257. * GPIO
  258. * -------------------------------------------------------------------- */
  259. static struct at91_gpio_bank at91rm9200_gpio[] = {
  260. {
  261. .id = AT91RM9200_ID_PIOA,
  262. .offset = AT91_PIOA,
  263. .clock = &pioA_clk,
  264. }, {
  265. .id = AT91RM9200_ID_PIOB,
  266. .offset = AT91_PIOB,
  267. .clock = &pioB_clk,
  268. }, {
  269. .id = AT91RM9200_ID_PIOC,
  270. .offset = AT91_PIOC,
  271. .clock = &pioC_clk,
  272. }, {
  273. .id = AT91RM9200_ID_PIOD,
  274. .offset = AT91_PIOD,
  275. .clock = &pioD_clk,
  276. }
  277. };
  278. static void at91rm9200_reset(void)
  279. {
  280. /*
  281. * Perform a hardware reset with the use of the Watchdog timer.
  282. */
  283. at91_sys_write(AT91_ST_WDMR, AT91_ST_RSTEN | AT91_ST_EXTEN | 1);
  284. at91_sys_write(AT91_ST_CR, AT91_ST_WDRST);
  285. }
  286. int rm9200_type;
  287. EXPORT_SYMBOL(rm9200_type);
  288. void __init at91rm9200_set_type(int type)
  289. {
  290. rm9200_type = type;
  291. }
  292. /* --------------------------------------------------------------------
  293. * AT91RM9200 processor initialization
  294. * -------------------------------------------------------------------- */
  295. void __init at91rm9200_map_io(void)
  296. {
  297. /* Map peripherals */
  298. iotable_init(at91rm9200_io_desc, ARRAY_SIZE(at91rm9200_io_desc));
  299. }
  300. void __init at91rm9200_initialize(unsigned long main_clock)
  301. {
  302. at91_arch_reset = at91rm9200_reset;
  303. at91_extern_irq = (1 << AT91RM9200_ID_IRQ0) | (1 << AT91RM9200_ID_IRQ1)
  304. | (1 << AT91RM9200_ID_IRQ2) | (1 << AT91RM9200_ID_IRQ3)
  305. | (1 << AT91RM9200_ID_IRQ4) | (1 << AT91RM9200_ID_IRQ5)
  306. | (1 << AT91RM9200_ID_IRQ6);
  307. /* Init clock subsystem */
  308. at91_clock_init(main_clock);
  309. /* Register the processor-specific clocks */
  310. at91rm9200_register_clocks();
  311. /* Initialize GPIO subsystem */
  312. at91_gpio_init(at91rm9200_gpio,
  313. cpu_is_at91rm9200_bga() ? AT91RM9200_BGA : AT91RM9200_PQFP);
  314. }
  315. /* --------------------------------------------------------------------
  316. * Interrupt initialization
  317. * -------------------------------------------------------------------- */
  318. /*
  319. * The default interrupt priority levels (0 = lowest, 7 = highest).
  320. */
  321. static unsigned int at91rm9200_default_irq_priority[NR_AIC_IRQS] __initdata = {
  322. 7, /* Advanced Interrupt Controller (FIQ) */
  323. 7, /* System Peripherals */
  324. 1, /* Parallel IO Controller A */
  325. 1, /* Parallel IO Controller B */
  326. 1, /* Parallel IO Controller C */
  327. 1, /* Parallel IO Controller D */
  328. 5, /* USART 0 */
  329. 5, /* USART 1 */
  330. 5, /* USART 2 */
  331. 5, /* USART 3 */
  332. 0, /* Multimedia Card Interface */
  333. 2, /* USB Device Port */
  334. 6, /* Two-Wire Interface */
  335. 5, /* Serial Peripheral Interface */
  336. 4, /* Serial Synchronous Controller 0 */
  337. 4, /* Serial Synchronous Controller 1 */
  338. 4, /* Serial Synchronous Controller 2 */
  339. 0, /* Timer Counter 0 */
  340. 0, /* Timer Counter 1 */
  341. 0, /* Timer Counter 2 */
  342. 0, /* Timer Counter 3 */
  343. 0, /* Timer Counter 4 */
  344. 0, /* Timer Counter 5 */
  345. 2, /* USB Host port */
  346. 3, /* Ethernet MAC */
  347. 0, /* Advanced Interrupt Controller (IRQ0) */
  348. 0, /* Advanced Interrupt Controller (IRQ1) */
  349. 0, /* Advanced Interrupt Controller (IRQ2) */
  350. 0, /* Advanced Interrupt Controller (IRQ3) */
  351. 0, /* Advanced Interrupt Controller (IRQ4) */
  352. 0, /* Advanced Interrupt Controller (IRQ5) */
  353. 0 /* Advanced Interrupt Controller (IRQ6) */
  354. };
  355. void __init at91rm9200_init_interrupts(unsigned int priority[NR_AIC_IRQS])
  356. {
  357. if (!priority)
  358. priority = at91rm9200_default_irq_priority;
  359. /* Initialize the AIC interrupt controller */
  360. at91_aic_init(priority);
  361. /* Enable GPIO interrupts */
  362. at91_gpio_irq_setup();
  363. }