at91sam9rl.c 9.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356
  1. /*
  2. * arch/arm/mach-at91/at91sam9rl.c
  3. *
  4. * Copyright (C) 2005 SAN People
  5. * Copyright (C) 2007 Atmel Corporation
  6. *
  7. * This file is subject to the terms and conditions of the GNU General Public
  8. * License. See the file COPYING in the main directory of this archive for
  9. * more details.
  10. */
  11. #include <linux/module.h>
  12. #include <asm/proc-fns.h>
  13. #include <asm/irq.h>
  14. #include <asm/mach/arch.h>
  15. #include <asm/mach/map.h>
  16. #include <asm/system_misc.h>
  17. #include <mach/cpu.h>
  18. #include <mach/at91_dbgu.h>
  19. #include <mach/at91sam9rl.h>
  20. #include <mach/at91_pmc.h>
  21. #include <mach/hardware.h>
  22. #include "at91_aic.h"
  23. #include "at91_rstc.h"
  24. #include "soc.h"
  25. #include "generic.h"
  26. #include "clock.h"
  27. #include "sam9_smc.h"
  28. #include "pm.h"
  29. /* --------------------------------------------------------------------
  30. * Clocks
  31. * -------------------------------------------------------------------- */
  32. /*
  33. * The peripheral clocks.
  34. */
  35. static struct clk pioA_clk = {
  36. .name = "pioA_clk",
  37. .pmc_mask = 1 << AT91SAM9RL_ID_PIOA,
  38. .type = CLK_TYPE_PERIPHERAL,
  39. };
  40. static struct clk pioB_clk = {
  41. .name = "pioB_clk",
  42. .pmc_mask = 1 << AT91SAM9RL_ID_PIOB,
  43. .type = CLK_TYPE_PERIPHERAL,
  44. };
  45. static struct clk pioC_clk = {
  46. .name = "pioC_clk",
  47. .pmc_mask = 1 << AT91SAM9RL_ID_PIOC,
  48. .type = CLK_TYPE_PERIPHERAL,
  49. };
  50. static struct clk pioD_clk = {
  51. .name = "pioD_clk",
  52. .pmc_mask = 1 << AT91SAM9RL_ID_PIOD,
  53. .type = CLK_TYPE_PERIPHERAL,
  54. };
  55. static struct clk usart0_clk = {
  56. .name = "usart0_clk",
  57. .pmc_mask = 1 << AT91SAM9RL_ID_US0,
  58. .type = CLK_TYPE_PERIPHERAL,
  59. };
  60. static struct clk usart1_clk = {
  61. .name = "usart1_clk",
  62. .pmc_mask = 1 << AT91SAM9RL_ID_US1,
  63. .type = CLK_TYPE_PERIPHERAL,
  64. };
  65. static struct clk usart2_clk = {
  66. .name = "usart2_clk",
  67. .pmc_mask = 1 << AT91SAM9RL_ID_US2,
  68. .type = CLK_TYPE_PERIPHERAL,
  69. };
  70. static struct clk usart3_clk = {
  71. .name = "usart3_clk",
  72. .pmc_mask = 1 << AT91SAM9RL_ID_US3,
  73. .type = CLK_TYPE_PERIPHERAL,
  74. };
  75. static struct clk mmc_clk = {
  76. .name = "mci_clk",
  77. .pmc_mask = 1 << AT91SAM9RL_ID_MCI,
  78. .type = CLK_TYPE_PERIPHERAL,
  79. };
  80. static struct clk twi0_clk = {
  81. .name = "twi0_clk",
  82. .pmc_mask = 1 << AT91SAM9RL_ID_TWI0,
  83. .type = CLK_TYPE_PERIPHERAL,
  84. };
  85. static struct clk twi1_clk = {
  86. .name = "twi1_clk",
  87. .pmc_mask = 1 << AT91SAM9RL_ID_TWI1,
  88. .type = CLK_TYPE_PERIPHERAL,
  89. };
  90. static struct clk spi_clk = {
  91. .name = "spi_clk",
  92. .pmc_mask = 1 << AT91SAM9RL_ID_SPI,
  93. .type = CLK_TYPE_PERIPHERAL,
  94. };
  95. static struct clk ssc0_clk = {
  96. .name = "ssc0_clk",
  97. .pmc_mask = 1 << AT91SAM9RL_ID_SSC0,
  98. .type = CLK_TYPE_PERIPHERAL,
  99. };
  100. static struct clk ssc1_clk = {
  101. .name = "ssc1_clk",
  102. .pmc_mask = 1 << AT91SAM9RL_ID_SSC1,
  103. .type = CLK_TYPE_PERIPHERAL,
  104. };
  105. static struct clk tc0_clk = {
  106. .name = "tc0_clk",
  107. .pmc_mask = 1 << AT91SAM9RL_ID_TC0,
  108. .type = CLK_TYPE_PERIPHERAL,
  109. };
  110. static struct clk tc1_clk = {
  111. .name = "tc1_clk",
  112. .pmc_mask = 1 << AT91SAM9RL_ID_TC1,
  113. .type = CLK_TYPE_PERIPHERAL,
  114. };
  115. static struct clk tc2_clk = {
  116. .name = "tc2_clk",
  117. .pmc_mask = 1 << AT91SAM9RL_ID_TC2,
  118. .type = CLK_TYPE_PERIPHERAL,
  119. };
  120. static struct clk pwm_clk = {
  121. .name = "pwm_clk",
  122. .pmc_mask = 1 << AT91SAM9RL_ID_PWMC,
  123. .type = CLK_TYPE_PERIPHERAL,
  124. };
  125. static struct clk tsc_clk = {
  126. .name = "tsc_clk",
  127. .pmc_mask = 1 << AT91SAM9RL_ID_TSC,
  128. .type = CLK_TYPE_PERIPHERAL,
  129. };
  130. static struct clk dma_clk = {
  131. .name = "dma_clk",
  132. .pmc_mask = 1 << AT91SAM9RL_ID_DMA,
  133. .type = CLK_TYPE_PERIPHERAL,
  134. };
  135. static struct clk udphs_clk = {
  136. .name = "udphs_clk",
  137. .pmc_mask = 1 << AT91SAM9RL_ID_UDPHS,
  138. .type = CLK_TYPE_PERIPHERAL,
  139. };
  140. static struct clk lcdc_clk = {
  141. .name = "lcdc_clk",
  142. .pmc_mask = 1 << AT91SAM9RL_ID_LCDC,
  143. .type = CLK_TYPE_PERIPHERAL,
  144. };
  145. static struct clk ac97_clk = {
  146. .name = "ac97_clk",
  147. .pmc_mask = 1 << AT91SAM9RL_ID_AC97C,
  148. .type = CLK_TYPE_PERIPHERAL,
  149. };
  150. static struct clk *periph_clocks[] __initdata = {
  151. &pioA_clk,
  152. &pioB_clk,
  153. &pioC_clk,
  154. &pioD_clk,
  155. &usart0_clk,
  156. &usart1_clk,
  157. &usart2_clk,
  158. &usart3_clk,
  159. &mmc_clk,
  160. &twi0_clk,
  161. &twi1_clk,
  162. &spi_clk,
  163. &ssc0_clk,
  164. &ssc1_clk,
  165. &tc0_clk,
  166. &tc1_clk,
  167. &tc2_clk,
  168. &pwm_clk,
  169. &tsc_clk,
  170. &dma_clk,
  171. &udphs_clk,
  172. &lcdc_clk,
  173. &ac97_clk,
  174. // irq0
  175. };
  176. static struct clk_lookup periph_clocks_lookups[] = {
  177. CLKDEV_CON_DEV_ID("hclk", "at91sam9rl-lcdfb.0", &lcdc_clk),
  178. CLKDEV_CON_DEV_ID("hclk", "atmel_usba_udc", &utmi_clk),
  179. CLKDEV_CON_DEV_ID("pclk", "atmel_usba_udc", &udphs_clk),
  180. CLKDEV_CON_DEV_ID("t0_clk", "atmel_tcb.0", &tc0_clk),
  181. CLKDEV_CON_DEV_ID("t1_clk", "atmel_tcb.0", &tc1_clk),
  182. CLKDEV_CON_DEV_ID("t2_clk", "atmel_tcb.0", &tc2_clk),
  183. CLKDEV_CON_DEV_ID("pclk", "at91rm9200_ssc.0", &ssc0_clk),
  184. CLKDEV_CON_DEV_ID("pclk", "at91rm9200_ssc.1", &ssc1_clk),
  185. CLKDEV_CON_DEV_ID("pclk", "fffc0000.ssc", &ssc0_clk),
  186. CLKDEV_CON_DEV_ID("pclk", "fffc4000.ssc", &ssc1_clk),
  187. CLKDEV_CON_DEV_ID(NULL, "i2c-at91sam9g20.0", &twi0_clk),
  188. CLKDEV_CON_DEV_ID(NULL, "i2c-at91sam9g20.1", &twi1_clk),
  189. CLKDEV_CON_ID("pioA", &pioA_clk),
  190. CLKDEV_CON_ID("pioB", &pioB_clk),
  191. CLKDEV_CON_ID("pioC", &pioC_clk),
  192. CLKDEV_CON_ID("pioD", &pioD_clk),
  193. };
  194. static struct clk_lookup usart_clocks_lookups[] = {
  195. CLKDEV_CON_DEV_ID("usart", "atmel_usart.0", &mck),
  196. CLKDEV_CON_DEV_ID("usart", "atmel_usart.1", &usart0_clk),
  197. CLKDEV_CON_DEV_ID("usart", "atmel_usart.2", &usart1_clk),
  198. CLKDEV_CON_DEV_ID("usart", "atmel_usart.3", &usart2_clk),
  199. CLKDEV_CON_DEV_ID("usart", "atmel_usart.4", &usart3_clk),
  200. };
  201. /*
  202. * The two programmable clocks.
  203. * You must configure pin multiplexing to bring these signals out.
  204. */
  205. static struct clk pck0 = {
  206. .name = "pck0",
  207. .pmc_mask = AT91_PMC_PCK0,
  208. .type = CLK_TYPE_PROGRAMMABLE,
  209. .id = 0,
  210. };
  211. static struct clk pck1 = {
  212. .name = "pck1",
  213. .pmc_mask = AT91_PMC_PCK1,
  214. .type = CLK_TYPE_PROGRAMMABLE,
  215. .id = 1,
  216. };
  217. static void __init at91sam9rl_register_clocks(void)
  218. {
  219. int i;
  220. for (i = 0; i < ARRAY_SIZE(periph_clocks); i++)
  221. clk_register(periph_clocks[i]);
  222. clkdev_add_table(periph_clocks_lookups,
  223. ARRAY_SIZE(periph_clocks_lookups));
  224. clkdev_add_table(usart_clocks_lookups,
  225. ARRAY_SIZE(usart_clocks_lookups));
  226. clk_register(&pck0);
  227. clk_register(&pck1);
  228. }
  229. /* --------------------------------------------------------------------
  230. * GPIO
  231. * -------------------------------------------------------------------- */
  232. static struct at91_gpio_bank at91sam9rl_gpio[] __initdata = {
  233. {
  234. .id = AT91SAM9RL_ID_PIOA,
  235. .regbase = AT91SAM9RL_BASE_PIOA,
  236. }, {
  237. .id = AT91SAM9RL_ID_PIOB,
  238. .regbase = AT91SAM9RL_BASE_PIOB,
  239. }, {
  240. .id = AT91SAM9RL_ID_PIOC,
  241. .regbase = AT91SAM9RL_BASE_PIOC,
  242. }, {
  243. .id = AT91SAM9RL_ID_PIOD,
  244. .regbase = AT91SAM9RL_BASE_PIOD,
  245. }
  246. };
  247. /* --------------------------------------------------------------------
  248. * AT91SAM9RL processor initialization
  249. * -------------------------------------------------------------------- */
  250. static void __init at91sam9rl_map_io(void)
  251. {
  252. unsigned long sram_size;
  253. switch (at91_soc_initdata.cidr & AT91_CIDR_SRAMSIZ) {
  254. case AT91_CIDR_SRAMSIZ_32K:
  255. sram_size = 2 * SZ_16K;
  256. break;
  257. case AT91_CIDR_SRAMSIZ_16K:
  258. default:
  259. sram_size = SZ_16K;
  260. }
  261. /* Map SRAM */
  262. at91_init_sram(0, AT91SAM9RL_SRAM_BASE, sram_size);
  263. }
  264. static void __init at91sam9rl_ioremap_registers(void)
  265. {
  266. at91_ioremap_shdwc(AT91SAM9RL_BASE_SHDWC);
  267. at91_ioremap_rstc(AT91SAM9RL_BASE_RSTC);
  268. at91_ioremap_ramc(0, AT91SAM9RL_BASE_SDRAMC, 512);
  269. at91sam926x_ioremap_pit(AT91SAM9RL_BASE_PIT);
  270. at91sam9_ioremap_smc(0, AT91SAM9RL_BASE_SMC);
  271. at91_ioremap_matrix(AT91SAM9RL_BASE_MATRIX);
  272. at91_pm_set_standby(at91sam9_sdram_standby);
  273. }
  274. static void __init at91sam9rl_initialize(void)
  275. {
  276. arm_pm_idle = at91sam9_idle;
  277. arm_pm_restart = at91sam9_alt_restart;
  278. at91_sysirq_mask_rtc(AT91SAM9RL_BASE_RTC);
  279. at91_sysirq_mask_rtt(AT91SAM9RL_BASE_RTT);
  280. /* Register GPIO subsystem */
  281. at91_gpio_init(at91sam9rl_gpio, 4);
  282. }
  283. /* --------------------------------------------------------------------
  284. * Interrupt initialization
  285. * -------------------------------------------------------------------- */
  286. /*
  287. * The default interrupt priority levels (0 = lowest, 7 = highest).
  288. */
  289. static unsigned int at91sam9rl_default_irq_priority[NR_AIC_IRQS] __initdata = {
  290. 7, /* Advanced Interrupt Controller */
  291. 7, /* System Peripherals */
  292. 1, /* Parallel IO Controller A */
  293. 1, /* Parallel IO Controller B */
  294. 1, /* Parallel IO Controller C */
  295. 1, /* Parallel IO Controller D */
  296. 5, /* USART 0 */
  297. 5, /* USART 1 */
  298. 5, /* USART 2 */
  299. 5, /* USART 3 */
  300. 0, /* Multimedia Card Interface */
  301. 6, /* Two-Wire Interface 0 */
  302. 6, /* Two-Wire Interface 1 */
  303. 5, /* Serial Peripheral Interface */
  304. 4, /* Serial Synchronous Controller 0 */
  305. 4, /* Serial Synchronous Controller 1 */
  306. 0, /* Timer Counter 0 */
  307. 0, /* Timer Counter 1 */
  308. 0, /* Timer Counter 2 */
  309. 0,
  310. 0, /* Touch Screen Controller */
  311. 0, /* DMA Controller */
  312. 2, /* USB Device High speed port */
  313. 2, /* LCD Controller */
  314. 6, /* AC97 Controller */
  315. 0,
  316. 0,
  317. 0,
  318. 0,
  319. 0,
  320. 0,
  321. 0, /* Advanced Interrupt Controller */
  322. };
  323. AT91_SOC_START(at91sam9rl)
  324. .map_io = at91sam9rl_map_io,
  325. .default_irq_priority = at91sam9rl_default_irq_priority,
  326. .extern_irq = (1 << AT91SAM9RL_ID_IRQ0),
  327. .ioremap_registers = at91sam9rl_ioremap_registers,
  328. .register_clocks = at91sam9rl_register_clocks,
  329. .init = at91sam9rl_initialize,
  330. AT91_SOC_END