core.c 6.5 KB

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