apb_timer.c 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413
  1. /*
  2. * apb_timer.c: Driver for Langwell APB timers
  3. *
  4. * (C) Copyright 2009 Intel Corporation
  5. * Author: Jacob Pan (jacob.jun.pan@intel.com)
  6. *
  7. * This program is free software; you can redistribute it and/or
  8. * modify it under the terms of the GNU General Public License
  9. * as published by the Free Software Foundation; version 2
  10. * of the License.
  11. *
  12. * Note:
  13. * Langwell is the south complex of Intel Moorestown MID platform. There are
  14. * eight external timers in total that can be used by the operating system.
  15. * The timer information, such as frequency and addresses, is provided to the
  16. * OS via SFI tables.
  17. * Timer interrupts are routed via FW/HW emulated IOAPIC independently via
  18. * individual redirection table entries (RTE).
  19. * Unlike HPET, there is no master counter, therefore one of the timers are
  20. * used as clocksource. The overall allocation looks like:
  21. * - timer 0 - NR_CPUs for per cpu timer
  22. * - one timer for clocksource
  23. * - one timer for watchdog driver.
  24. * It is also worth notice that APB timer does not support true one-shot mode,
  25. * free-running mode will be used here to emulate one-shot mode.
  26. * APB timer can also be used as broadcast timer along with per cpu local APIC
  27. * timer, but by default APB timer has higher rating than local APIC timers.
  28. */
  29. #include <linux/delay.h>
  30. #include <linux/dw_apb_timer.h>
  31. #include <linux/errno.h>
  32. #include <linux/init.h>
  33. #include <linux/slab.h>
  34. #include <linux/pm.h>
  35. #include <linux/sfi.h>
  36. #include <linux/interrupt.h>
  37. #include <linux/cpu.h>
  38. #include <linux/irq.h>
  39. #include <asm/fixmap.h>
  40. #include <asm/apb_timer.h>
  41. #include <asm/intel-mid.h>
  42. #include <asm/time.h>
  43. #define APBT_CLOCKEVENT_RATING 110
  44. #define APBT_CLOCKSOURCE_RATING 250
  45. #define APBT_CLOCKEVENT0_NUM (0)
  46. #define APBT_CLOCKSOURCE_NUM (2)
  47. static phys_addr_t apbt_address;
  48. static int apb_timer_block_enabled;
  49. static void __iomem *apbt_virt_address;
  50. /*
  51. * Common DW APB timer info
  52. */
  53. static unsigned long apbt_freq;
  54. struct apbt_dev {
  55. struct dw_apb_clock_event_device *timer;
  56. unsigned int num;
  57. int cpu;
  58. unsigned int irq;
  59. char name[10];
  60. };
  61. static struct dw_apb_clocksource *clocksource_apbt;
  62. static inline void __iomem *adev_virt_addr(struct apbt_dev *adev)
  63. {
  64. return apbt_virt_address + adev->num * APBTMRS_REG_SIZE;
  65. }
  66. static DEFINE_PER_CPU(struct apbt_dev, cpu_apbt_dev);
  67. #ifdef CONFIG_SMP
  68. static unsigned int apbt_num_timers_used;
  69. #endif
  70. static inline void apbt_set_mapping(void)
  71. {
  72. struct sfi_timer_table_entry *mtmr;
  73. int phy_cs_timer_id = 0;
  74. if (apbt_virt_address) {
  75. pr_debug("APBT base already mapped\n");
  76. return;
  77. }
  78. mtmr = sfi_get_mtmr(APBT_CLOCKEVENT0_NUM);
  79. if (mtmr == NULL) {
  80. printk(KERN_ERR "Failed to get MTMR %d from SFI\n",
  81. APBT_CLOCKEVENT0_NUM);
  82. return;
  83. }
  84. apbt_address = (phys_addr_t)mtmr->phys_addr;
  85. if (!apbt_address) {
  86. printk(KERN_WARNING "No timer base from SFI, use default\n");
  87. apbt_address = APBT_DEFAULT_BASE;
  88. }
  89. apbt_virt_address = ioremap_nocache(apbt_address, APBT_MMAP_SIZE);
  90. if (!apbt_virt_address) {
  91. pr_debug("Failed mapping APBT phy address at %lu\n",\
  92. (unsigned long)apbt_address);
  93. goto panic_noapbt;
  94. }
  95. apbt_freq = mtmr->freq_hz;
  96. sfi_free_mtmr(mtmr);
  97. /* Now figure out the physical timer id for clocksource device */
  98. mtmr = sfi_get_mtmr(APBT_CLOCKSOURCE_NUM);
  99. if (mtmr == NULL)
  100. goto panic_noapbt;
  101. /* Now figure out the physical timer id */
  102. pr_debug("Use timer %d for clocksource\n",
  103. (int)(mtmr->phys_addr & 0xff) / APBTMRS_REG_SIZE);
  104. phy_cs_timer_id = (unsigned int)(mtmr->phys_addr & 0xff) /
  105. APBTMRS_REG_SIZE;
  106. clocksource_apbt = dw_apb_clocksource_init(APBT_CLOCKSOURCE_RATING,
  107. "apbt0", apbt_virt_address + phy_cs_timer_id *
  108. APBTMRS_REG_SIZE, apbt_freq);
  109. return;
  110. panic_noapbt:
  111. panic("Failed to setup APB system timer\n");
  112. }
  113. static inline void apbt_clear_mapping(void)
  114. {
  115. iounmap(apbt_virt_address);
  116. apbt_virt_address = NULL;
  117. }
  118. static int __init apbt_clockevent_register(void)
  119. {
  120. struct sfi_timer_table_entry *mtmr;
  121. struct apbt_dev *adev = this_cpu_ptr(&cpu_apbt_dev);
  122. mtmr = sfi_get_mtmr(APBT_CLOCKEVENT0_NUM);
  123. if (mtmr == NULL) {
  124. printk(KERN_ERR "Failed to get MTMR %d from SFI\n",
  125. APBT_CLOCKEVENT0_NUM);
  126. return -ENODEV;
  127. }
  128. adev->num = smp_processor_id();
  129. adev->timer = dw_apb_clockevent_init(smp_processor_id(), "apbt0",
  130. intel_mid_timer_options == INTEL_MID_TIMER_LAPIC_APBT ?
  131. APBT_CLOCKEVENT_RATING - 100 : APBT_CLOCKEVENT_RATING,
  132. adev_virt_addr(adev), 0, apbt_freq);
  133. /* Firmware does EOI handling for us. */
  134. adev->timer->eoi = NULL;
  135. if (intel_mid_timer_options == INTEL_MID_TIMER_LAPIC_APBT) {
  136. global_clock_event = &adev->timer->ced;
  137. printk(KERN_DEBUG "%s clockevent registered as global\n",
  138. global_clock_event->name);
  139. }
  140. dw_apb_clockevent_register(adev->timer);
  141. sfi_free_mtmr(mtmr);
  142. return 0;
  143. }
  144. #ifdef CONFIG_SMP
  145. static void apbt_setup_irq(struct apbt_dev *adev)
  146. {
  147. irq_modify_status(adev->irq, 0, IRQ_MOVE_PCNTXT);
  148. irq_set_affinity(adev->irq, cpumask_of(adev->cpu));
  149. }
  150. /* Should be called with per cpu */
  151. void apbt_setup_secondary_clock(void)
  152. {
  153. struct apbt_dev *adev;
  154. int cpu;
  155. /* Don't register boot CPU clockevent */
  156. cpu = smp_processor_id();
  157. if (!cpu)
  158. return;
  159. adev = this_cpu_ptr(&cpu_apbt_dev);
  160. if (!adev->timer) {
  161. adev->timer = dw_apb_clockevent_init(cpu, adev->name,
  162. APBT_CLOCKEVENT_RATING, adev_virt_addr(adev),
  163. adev->irq, apbt_freq);
  164. adev->timer->eoi = NULL;
  165. } else {
  166. dw_apb_clockevent_resume(adev->timer);
  167. }
  168. printk(KERN_INFO "Registering CPU %d clockevent device %s, cpu %08x\n",
  169. cpu, adev->name, adev->cpu);
  170. apbt_setup_irq(adev);
  171. dw_apb_clockevent_register(adev->timer);
  172. return;
  173. }
  174. /*
  175. * this notify handler process CPU hotplug events. in case of S0i3, nonboot
  176. * cpus are disabled/enabled frequently, for performance reasons, we keep the
  177. * per cpu timer irq registered so that we do need to do free_irq/request_irq.
  178. *
  179. * TODO: it might be more reliable to directly disable percpu clockevent device
  180. * without the notifier chain. currently, cpu 0 may get interrupts from other
  181. * cpu timers during the offline process due to the ordering of notification.
  182. * the extra interrupt is harmless.
  183. */
  184. static int apbt_cpuhp_notify(struct notifier_block *n,
  185. unsigned long action, void *hcpu)
  186. {
  187. unsigned long cpu = (unsigned long)hcpu;
  188. struct apbt_dev *adev = &per_cpu(cpu_apbt_dev, cpu);
  189. switch (action & 0xf) {
  190. case CPU_DEAD:
  191. dw_apb_clockevent_pause(adev->timer);
  192. if (system_state == SYSTEM_RUNNING) {
  193. pr_debug("skipping APBT CPU %lu offline\n", cpu);
  194. } else {
  195. pr_debug("APBT clockevent for cpu %lu offline\n", cpu);
  196. dw_apb_clockevent_stop(adev->timer);
  197. }
  198. break;
  199. default:
  200. pr_debug("APBT notified %lu, no action\n", action);
  201. }
  202. return NOTIFY_OK;
  203. }
  204. static __init int apbt_late_init(void)
  205. {
  206. if (intel_mid_timer_options == INTEL_MID_TIMER_LAPIC_APBT ||
  207. !apb_timer_block_enabled)
  208. return 0;
  209. /* This notifier should be called after workqueue is ready */
  210. hotcpu_notifier(apbt_cpuhp_notify, -20);
  211. return 0;
  212. }
  213. fs_initcall(apbt_late_init);
  214. #else
  215. void apbt_setup_secondary_clock(void) {}
  216. #endif /* CONFIG_SMP */
  217. static int apbt_clocksource_register(void)
  218. {
  219. u64 start, now;
  220. cycle_t t1;
  221. /* Start the counter, use timer 2 as source, timer 0/1 for event */
  222. dw_apb_clocksource_start(clocksource_apbt);
  223. /* Verify whether apbt counter works */
  224. t1 = dw_apb_clocksource_read(clocksource_apbt);
  225. start = rdtsc();
  226. /*
  227. * We don't know the TSC frequency yet, but waiting for
  228. * 200000 TSC cycles is safe:
  229. * 4 GHz == 50us
  230. * 1 GHz == 200us
  231. */
  232. do {
  233. rep_nop();
  234. now = rdtsc();
  235. } while ((now - start) < 200000UL);
  236. /* APBT is the only always on clocksource, it has to work! */
  237. if (t1 == dw_apb_clocksource_read(clocksource_apbt))
  238. panic("APBT counter not counting. APBT disabled\n");
  239. dw_apb_clocksource_register(clocksource_apbt);
  240. return 0;
  241. }
  242. /*
  243. * Early setup the APBT timer, only use timer 0 for booting then switch to
  244. * per CPU timer if possible.
  245. * returns 1 if per cpu apbt is setup
  246. * returns 0 if no per cpu apbt is chosen
  247. * panic if set up failed, this is the only platform timer on Moorestown.
  248. */
  249. void __init apbt_time_init(void)
  250. {
  251. #ifdef CONFIG_SMP
  252. int i;
  253. struct sfi_timer_table_entry *p_mtmr;
  254. struct apbt_dev *adev;
  255. #endif
  256. if (apb_timer_block_enabled)
  257. return;
  258. apbt_set_mapping();
  259. if (!apbt_virt_address)
  260. goto out_noapbt;
  261. /*
  262. * Read the frequency and check for a sane value, for ESL model
  263. * we extend the possible clock range to allow time scaling.
  264. */
  265. if (apbt_freq < APBT_MIN_FREQ || apbt_freq > APBT_MAX_FREQ) {
  266. pr_debug("APBT has invalid freq 0x%lx\n", apbt_freq);
  267. goto out_noapbt;
  268. }
  269. if (apbt_clocksource_register()) {
  270. pr_debug("APBT has failed to register clocksource\n");
  271. goto out_noapbt;
  272. }
  273. if (!apbt_clockevent_register())
  274. apb_timer_block_enabled = 1;
  275. else {
  276. pr_debug("APBT has failed to register clockevent\n");
  277. goto out_noapbt;
  278. }
  279. #ifdef CONFIG_SMP
  280. /* kernel cmdline disable apb timer, so we will use lapic timers */
  281. if (intel_mid_timer_options == INTEL_MID_TIMER_LAPIC_APBT) {
  282. printk(KERN_INFO "apbt: disabled per cpu timer\n");
  283. return;
  284. }
  285. pr_debug("%s: %d CPUs online\n", __func__, num_online_cpus());
  286. if (num_possible_cpus() <= sfi_mtimer_num)
  287. apbt_num_timers_used = num_possible_cpus();
  288. else
  289. apbt_num_timers_used = 1;
  290. pr_debug("%s: %d APB timers used\n", __func__, apbt_num_timers_used);
  291. /* here we set up per CPU timer data structure */
  292. for (i = 0; i < apbt_num_timers_used; i++) {
  293. adev = &per_cpu(cpu_apbt_dev, i);
  294. adev->num = i;
  295. adev->cpu = i;
  296. p_mtmr = sfi_get_mtmr(i);
  297. if (p_mtmr)
  298. adev->irq = p_mtmr->irq;
  299. else
  300. printk(KERN_ERR "Failed to get timer for cpu %d\n", i);
  301. snprintf(adev->name, sizeof(adev->name) - 1, "apbt%d", i);
  302. }
  303. #endif
  304. return;
  305. out_noapbt:
  306. apbt_clear_mapping();
  307. apb_timer_block_enabled = 0;
  308. panic("failed to enable APB timer\n");
  309. }
  310. /* called before apb_timer_enable, use early map */
  311. unsigned long apbt_quick_calibrate(void)
  312. {
  313. int i, scale;
  314. u64 old, new;
  315. cycle_t t1, t2;
  316. unsigned long khz = 0;
  317. u32 loop, shift;
  318. apbt_set_mapping();
  319. dw_apb_clocksource_start(clocksource_apbt);
  320. /* check if the timer can count down, otherwise return */
  321. old = dw_apb_clocksource_read(clocksource_apbt);
  322. i = 10000;
  323. while (--i) {
  324. if (old != dw_apb_clocksource_read(clocksource_apbt))
  325. break;
  326. }
  327. if (!i)
  328. goto failed;
  329. /* count 16 ms */
  330. loop = (apbt_freq / 1000) << 4;
  331. /* restart the timer to ensure it won't get to 0 in the calibration */
  332. dw_apb_clocksource_start(clocksource_apbt);
  333. old = dw_apb_clocksource_read(clocksource_apbt);
  334. old += loop;
  335. t1 = rdtsc();
  336. do {
  337. new = dw_apb_clocksource_read(clocksource_apbt);
  338. } while (new < old);
  339. t2 = rdtsc();
  340. shift = 5;
  341. if (unlikely(loop >> shift == 0)) {
  342. printk(KERN_INFO
  343. "APBT TSC calibration failed, not enough resolution\n");
  344. return 0;
  345. }
  346. scale = (int)div_u64((t2 - t1), loop >> shift);
  347. khz = (scale * (apbt_freq / 1000)) >> shift;
  348. printk(KERN_INFO "TSC freq calculated by APB timer is %lu khz\n", khz);
  349. return khz;
  350. failed:
  351. return 0;
  352. }