core.c 7.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278
  1. /*
  2. * Copyright 1999 - 2003 ARM Limited
  3. * Copyright 2000 Deep Blue Solutions Ltd
  4. * Copyright 2008 Cavium Networks
  5. *
  6. * This file is free software; you can redistribute it and/or modify
  7. * it under the terms of the GNU General Public License, Version 2, as
  8. * published by the Free Software Foundation.
  9. */
  10. #include <linux/init.h>
  11. #include <linux/interrupt.h>
  12. #include <linux/clockchips.h>
  13. #include <linux/io.h>
  14. #include <linux/irqchip/arm-gic.h>
  15. #include <asm/mach/map.h>
  16. #include <asm/mach/time.h>
  17. #include <asm/mach/irq.h>
  18. #include <asm/hardware/cache-l2x0.h>
  19. #include <mach/cns3xxx.h>
  20. #include "core.h"
  21. static struct map_desc cns3xxx_io_desc[] __initdata = {
  22. {
  23. .virtual = CNS3XXX_TC11MP_TWD_BASE_VIRT,
  24. .pfn = __phys_to_pfn(CNS3XXX_TC11MP_TWD_BASE),
  25. .length = SZ_4K,
  26. .type = MT_DEVICE,
  27. }, {
  28. .virtual = CNS3XXX_TC11MP_GIC_CPU_BASE_VIRT,
  29. .pfn = __phys_to_pfn(CNS3XXX_TC11MP_GIC_CPU_BASE),
  30. .length = SZ_4K,
  31. .type = MT_DEVICE,
  32. }, {
  33. .virtual = CNS3XXX_TC11MP_GIC_DIST_BASE_VIRT,
  34. .pfn = __phys_to_pfn(CNS3XXX_TC11MP_GIC_DIST_BASE),
  35. .length = SZ_4K,
  36. .type = MT_DEVICE,
  37. }, {
  38. .virtual = CNS3XXX_TIMER1_2_3_BASE_VIRT,
  39. .pfn = __phys_to_pfn(CNS3XXX_TIMER1_2_3_BASE),
  40. .length = SZ_4K,
  41. .type = MT_DEVICE,
  42. }, {
  43. .virtual = CNS3XXX_GPIOA_BASE_VIRT,
  44. .pfn = __phys_to_pfn(CNS3XXX_GPIOA_BASE),
  45. .length = SZ_4K,
  46. .type = MT_DEVICE,
  47. }, {
  48. .virtual = CNS3XXX_GPIOB_BASE_VIRT,
  49. .pfn = __phys_to_pfn(CNS3XXX_GPIOB_BASE),
  50. .length = SZ_4K,
  51. .type = MT_DEVICE,
  52. }, {
  53. .virtual = CNS3XXX_MISC_BASE_VIRT,
  54. .pfn = __phys_to_pfn(CNS3XXX_MISC_BASE),
  55. .length = SZ_4K,
  56. .type = MT_DEVICE,
  57. }, {
  58. .virtual = CNS3XXX_PM_BASE_VIRT,
  59. .pfn = __phys_to_pfn(CNS3XXX_PM_BASE),
  60. .length = SZ_4K,
  61. .type = MT_DEVICE,
  62. },
  63. };
  64. void __init cns3xxx_map_io(void)
  65. {
  66. iotable_init(cns3xxx_io_desc, ARRAY_SIZE(cns3xxx_io_desc));
  67. }
  68. /* used by entry-macro.S */
  69. void __init cns3xxx_init_irq(void)
  70. {
  71. gic_init(0, 29, IOMEM(CNS3XXX_TC11MP_GIC_DIST_BASE_VIRT),
  72. IOMEM(CNS3XXX_TC11MP_GIC_CPU_BASE_VIRT));
  73. }
  74. void cns3xxx_power_off(void)
  75. {
  76. u32 __iomem *pm_base = IOMEM(CNS3XXX_PM_BASE_VIRT);
  77. u32 clkctrl;
  78. printk(KERN_INFO "powering system down...\n");
  79. clkctrl = readl(pm_base + PM_SYS_CLK_CTRL_OFFSET);
  80. clkctrl &= 0xfffff1ff;
  81. clkctrl |= (0x5 << 9); /* Hibernate */
  82. writel(clkctrl, pm_base + PM_SYS_CLK_CTRL_OFFSET);
  83. }
  84. /*
  85. * Timer
  86. */
  87. static void __iomem *cns3xxx_tmr1;
  88. static void cns3xxx_timer_set_mode(enum clock_event_mode mode,
  89. struct clock_event_device *clk)
  90. {
  91. unsigned long ctrl = readl(cns3xxx_tmr1 + TIMER1_2_CONTROL_OFFSET);
  92. int pclk = cns3xxx_cpu_clock() / 8;
  93. int reload;
  94. switch (mode) {
  95. case CLOCK_EVT_MODE_PERIODIC:
  96. reload = pclk * 20 / (3 * HZ) * 0x25000;
  97. writel(reload, cns3xxx_tmr1 + TIMER1_AUTO_RELOAD_OFFSET);
  98. ctrl |= (1 << 0) | (1 << 2) | (1 << 9);
  99. break;
  100. case CLOCK_EVT_MODE_ONESHOT:
  101. /* period set, and timer enabled in 'next_event' hook */
  102. ctrl |= (1 << 2) | (1 << 9);
  103. break;
  104. case CLOCK_EVT_MODE_UNUSED:
  105. case CLOCK_EVT_MODE_SHUTDOWN:
  106. default:
  107. ctrl = 0;
  108. }
  109. writel(ctrl, cns3xxx_tmr1 + TIMER1_2_CONTROL_OFFSET);
  110. }
  111. static int cns3xxx_timer_set_next_event(unsigned long evt,
  112. struct clock_event_device *unused)
  113. {
  114. unsigned long ctrl = readl(cns3xxx_tmr1 + TIMER1_2_CONTROL_OFFSET);
  115. writel(evt, cns3xxx_tmr1 + TIMER1_AUTO_RELOAD_OFFSET);
  116. writel(ctrl | (1 << 0), cns3xxx_tmr1 + TIMER1_2_CONTROL_OFFSET);
  117. return 0;
  118. }
  119. static struct clock_event_device cns3xxx_tmr1_clockevent = {
  120. .name = "cns3xxx timer1",
  121. .features = CLOCK_EVT_FEAT_PERIODIC | CLOCK_EVT_FEAT_ONESHOT,
  122. .set_mode = cns3xxx_timer_set_mode,
  123. .set_next_event = cns3xxx_timer_set_next_event,
  124. .rating = 350,
  125. .cpumask = cpu_all_mask,
  126. };
  127. static void __init cns3xxx_clockevents_init(unsigned int timer_irq)
  128. {
  129. cns3xxx_tmr1_clockevent.irq = timer_irq;
  130. clockevents_config_and_register(&cns3xxx_tmr1_clockevent,
  131. (cns3xxx_cpu_clock() >> 3) * 1000000,
  132. 0xf, 0xffffffff);
  133. }
  134. /*
  135. * IRQ handler for the timer
  136. */
  137. static irqreturn_t cns3xxx_timer_interrupt(int irq, void *dev_id)
  138. {
  139. struct clock_event_device *evt = &cns3xxx_tmr1_clockevent;
  140. u32 __iomem *stat = cns3xxx_tmr1 + TIMER1_2_INTERRUPT_STATUS_OFFSET;
  141. u32 val;
  142. /* Clear the interrupt */
  143. val = readl(stat);
  144. writel(val & ~(1 << 2), stat);
  145. evt->event_handler(evt);
  146. return IRQ_HANDLED;
  147. }
  148. static struct irqaction cns3xxx_timer_irq = {
  149. .name = "timer",
  150. .flags = IRQF_DISABLED | IRQF_TIMER | IRQF_IRQPOLL,
  151. .handler = cns3xxx_timer_interrupt,
  152. };
  153. /*
  154. * Set up the clock source and clock events devices
  155. */
  156. static void __init __cns3xxx_timer_init(unsigned int timer_irq)
  157. {
  158. u32 val;
  159. u32 irq_mask;
  160. /*
  161. * Initialise to a known state (all timers off)
  162. */
  163. /* disable timer1 and timer2 */
  164. writel(0, cns3xxx_tmr1 + TIMER1_2_CONTROL_OFFSET);
  165. /* stop free running timer3 */
  166. writel(0, cns3xxx_tmr1 + TIMER_FREERUN_CONTROL_OFFSET);
  167. /* timer1 */
  168. writel(0x5C800, cns3xxx_tmr1 + TIMER1_COUNTER_OFFSET);
  169. writel(0x5C800, cns3xxx_tmr1 + TIMER1_AUTO_RELOAD_OFFSET);
  170. writel(0, cns3xxx_tmr1 + TIMER1_MATCH_V1_OFFSET);
  171. writel(0, cns3xxx_tmr1 + TIMER1_MATCH_V2_OFFSET);
  172. /* mask irq, non-mask timer1 overflow */
  173. irq_mask = readl(cns3xxx_tmr1 + TIMER1_2_INTERRUPT_MASK_OFFSET);
  174. irq_mask &= ~(1 << 2);
  175. irq_mask |= 0x03;
  176. writel(irq_mask, cns3xxx_tmr1 + TIMER1_2_INTERRUPT_MASK_OFFSET);
  177. /* down counter */
  178. val = readl(cns3xxx_tmr1 + TIMER1_2_CONTROL_OFFSET);
  179. val |= (1 << 9);
  180. writel(val, cns3xxx_tmr1 + TIMER1_2_CONTROL_OFFSET);
  181. /* timer2 */
  182. writel(0, cns3xxx_tmr1 + TIMER2_MATCH_V1_OFFSET);
  183. writel(0, cns3xxx_tmr1 + TIMER2_MATCH_V2_OFFSET);
  184. /* mask irq */
  185. irq_mask = readl(cns3xxx_tmr1 + TIMER1_2_INTERRUPT_MASK_OFFSET);
  186. irq_mask |= ((1 << 3) | (1 << 4) | (1 << 5));
  187. writel(irq_mask, cns3xxx_tmr1 + TIMER1_2_INTERRUPT_MASK_OFFSET);
  188. /* down counter */
  189. val = readl(cns3xxx_tmr1 + TIMER1_2_CONTROL_OFFSET);
  190. val |= (1 << 10);
  191. writel(val, cns3xxx_tmr1 + TIMER1_2_CONTROL_OFFSET);
  192. /* Make irqs happen for the system timer */
  193. setup_irq(timer_irq, &cns3xxx_timer_irq);
  194. cns3xxx_clockevents_init(timer_irq);
  195. }
  196. void __init cns3xxx_timer_init(void)
  197. {
  198. cns3xxx_tmr1 = IOMEM(CNS3XXX_TIMER1_2_3_BASE_VIRT);
  199. __cns3xxx_timer_init(IRQ_CNS3XXX_TIMER0);
  200. }
  201. #ifdef CONFIG_CACHE_L2X0
  202. void __init cns3xxx_l2x0_init(void)
  203. {
  204. void __iomem *base = ioremap(CNS3XXX_L2C_BASE, SZ_4K);
  205. u32 val;
  206. if (WARN_ON(!base))
  207. return;
  208. /*
  209. * Tag RAM Control register
  210. *
  211. * bit[10:8] - 1 cycle of write accesses latency
  212. * bit[6:4] - 1 cycle of read accesses latency
  213. * bit[3:0] - 1 cycle of setup latency
  214. *
  215. * 1 cycle of latency for setup, read and write accesses
  216. */
  217. val = readl(base + L2X0_TAG_LATENCY_CTRL);
  218. val &= 0xfffff888;
  219. writel(val, base + L2X0_TAG_LATENCY_CTRL);
  220. /*
  221. * Data RAM Control register
  222. *
  223. * bit[10:8] - 1 cycles of write accesses latency
  224. * bit[6:4] - 1 cycles of read accesses latency
  225. * bit[3:0] - 1 cycle of setup latency
  226. *
  227. * 1 cycle of latency for setup, read and write accesses
  228. */
  229. val = readl(base + L2X0_DATA_LATENCY_CTRL);
  230. val &= 0xfffff888;
  231. writel(val, base + L2X0_DATA_LATENCY_CTRL);
  232. /* 32 KiB, 8-way, parity disable */
  233. l2x0_init(base, 0x00540000, 0xfe000fff);
  234. }
  235. #endif /* CONFIG_CACHE_L2X0 */