core.c 7.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289
  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 <asm/mach/map.h>
  15. #include <asm/mach/time.h>
  16. #include <asm/mach/irq.h>
  17. #include <asm/hardware/gic.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. .shift = 8,
  122. .features = CLOCK_EVT_FEAT_PERIODIC | CLOCK_EVT_FEAT_ONESHOT,
  123. .set_mode = cns3xxx_timer_set_mode,
  124. .set_next_event = cns3xxx_timer_set_next_event,
  125. .rating = 350,
  126. .cpumask = cpu_all_mask,
  127. };
  128. static void __init cns3xxx_clockevents_init(unsigned int timer_irq)
  129. {
  130. cns3xxx_tmr1_clockevent.irq = timer_irq;
  131. cns3xxx_tmr1_clockevent.mult =
  132. div_sc((cns3xxx_cpu_clock() >> 3) * 1000000, NSEC_PER_SEC,
  133. cns3xxx_tmr1_clockevent.shift);
  134. cns3xxx_tmr1_clockevent.max_delta_ns =
  135. clockevent_delta2ns(0xffffffff, &cns3xxx_tmr1_clockevent);
  136. cns3xxx_tmr1_clockevent.min_delta_ns =
  137. clockevent_delta2ns(0xf, &cns3xxx_tmr1_clockevent);
  138. clockevents_register_device(&cns3xxx_tmr1_clockevent);
  139. }
  140. /*
  141. * IRQ handler for the timer
  142. */
  143. static irqreturn_t cns3xxx_timer_interrupt(int irq, void *dev_id)
  144. {
  145. struct clock_event_device *evt = &cns3xxx_tmr1_clockevent;
  146. u32 __iomem *stat = cns3xxx_tmr1 + TIMER1_2_INTERRUPT_STATUS_OFFSET;
  147. u32 val;
  148. /* Clear the interrupt */
  149. val = readl(stat);
  150. writel(val & ~(1 << 2), stat);
  151. evt->event_handler(evt);
  152. return IRQ_HANDLED;
  153. }
  154. static struct irqaction cns3xxx_timer_irq = {
  155. .name = "timer",
  156. .flags = IRQF_DISABLED | IRQF_TIMER | IRQF_IRQPOLL,
  157. .handler = cns3xxx_timer_interrupt,
  158. };
  159. /*
  160. * Set up the clock source and clock events devices
  161. */
  162. static void __init __cns3xxx_timer_init(unsigned int timer_irq)
  163. {
  164. u32 val;
  165. u32 irq_mask;
  166. /*
  167. * Initialise to a known state (all timers off)
  168. */
  169. /* disable timer1 and timer2 */
  170. writel(0, cns3xxx_tmr1 + TIMER1_2_CONTROL_OFFSET);
  171. /* stop free running timer3 */
  172. writel(0, cns3xxx_tmr1 + TIMER_FREERUN_CONTROL_OFFSET);
  173. /* timer1 */
  174. writel(0x5C800, cns3xxx_tmr1 + TIMER1_COUNTER_OFFSET);
  175. writel(0x5C800, cns3xxx_tmr1 + TIMER1_AUTO_RELOAD_OFFSET);
  176. writel(0, cns3xxx_tmr1 + TIMER1_MATCH_V1_OFFSET);
  177. writel(0, cns3xxx_tmr1 + TIMER1_MATCH_V2_OFFSET);
  178. /* mask irq, non-mask timer1 overflow */
  179. irq_mask = readl(cns3xxx_tmr1 + TIMER1_2_INTERRUPT_MASK_OFFSET);
  180. irq_mask &= ~(1 << 2);
  181. irq_mask |= 0x03;
  182. writel(irq_mask, cns3xxx_tmr1 + TIMER1_2_INTERRUPT_MASK_OFFSET);
  183. /* down counter */
  184. val = readl(cns3xxx_tmr1 + TIMER1_2_CONTROL_OFFSET);
  185. val |= (1 << 9);
  186. writel(val, cns3xxx_tmr1 + TIMER1_2_CONTROL_OFFSET);
  187. /* timer2 */
  188. writel(0, cns3xxx_tmr1 + TIMER2_MATCH_V1_OFFSET);
  189. writel(0, cns3xxx_tmr1 + TIMER2_MATCH_V2_OFFSET);
  190. /* mask irq */
  191. irq_mask = readl(cns3xxx_tmr1 + TIMER1_2_INTERRUPT_MASK_OFFSET);
  192. irq_mask |= ((1 << 3) | (1 << 4) | (1 << 5));
  193. writel(irq_mask, cns3xxx_tmr1 + TIMER1_2_INTERRUPT_MASK_OFFSET);
  194. /* down counter */
  195. val = readl(cns3xxx_tmr1 + TIMER1_2_CONTROL_OFFSET);
  196. val |= (1 << 10);
  197. writel(val, cns3xxx_tmr1 + TIMER1_2_CONTROL_OFFSET);
  198. /* Make irqs happen for the system timer */
  199. setup_irq(timer_irq, &cns3xxx_timer_irq);
  200. cns3xxx_clockevents_init(timer_irq);
  201. }
  202. static void __init cns3xxx_timer_init(void)
  203. {
  204. cns3xxx_tmr1 = IOMEM(CNS3XXX_TIMER1_2_3_BASE_VIRT);
  205. __cns3xxx_timer_init(IRQ_CNS3XXX_TIMER0);
  206. }
  207. struct sys_timer cns3xxx_timer = {
  208. .init = cns3xxx_timer_init,
  209. };
  210. #ifdef CONFIG_CACHE_L2X0
  211. void __init cns3xxx_l2x0_init(void)
  212. {
  213. void __iomem *base = ioremap(CNS3XXX_L2C_BASE, SZ_4K);
  214. u32 val;
  215. if (WARN_ON(!base))
  216. return;
  217. /*
  218. * Tag RAM Control register
  219. *
  220. * bit[10:8] - 1 cycle of write accesses latency
  221. * bit[6:4] - 1 cycle of read accesses latency
  222. * bit[3:0] - 1 cycle of setup latency
  223. *
  224. * 1 cycle of latency for setup, read and write accesses
  225. */
  226. val = readl(base + L2X0_TAG_LATENCY_CTRL);
  227. val &= 0xfffff888;
  228. writel(val, base + L2X0_TAG_LATENCY_CTRL);
  229. /*
  230. * Data RAM Control register
  231. *
  232. * bit[10:8] - 1 cycles of write accesses latency
  233. * bit[6:4] - 1 cycles of read accesses latency
  234. * bit[3:0] - 1 cycle of setup latency
  235. *
  236. * 1 cycle of latency for setup, read and write accesses
  237. */
  238. val = readl(base + L2X0_DATA_LATENCY_CTRL);
  239. val &= 0xfffff888;
  240. writel(val, base + L2X0_DATA_LATENCY_CTRL);
  241. /* 32 KiB, 8-way, parity disable */
  242. l2x0_init(base, 0x00540000, 0xfe000fff);
  243. }
  244. #endif /* CONFIG_CACHE_L2X0 */