apb_timer.c 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417
  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. /* timer0 irq has been setup early */
  148. if (adev->irq == 0)
  149. return;
  150. irq_modify_status(adev->irq, 0, IRQ_MOVE_PCNTXT);
  151. irq_set_affinity(adev->irq, cpumask_of(adev->cpu));
  152. }
  153. /* Should be called with per cpu */
  154. void apbt_setup_secondary_clock(void)
  155. {
  156. struct apbt_dev *adev;
  157. int cpu;
  158. /* Don't register boot CPU clockevent */
  159. cpu = smp_processor_id();
  160. if (!cpu)
  161. return;
  162. adev = this_cpu_ptr(&cpu_apbt_dev);
  163. if (!adev->timer) {
  164. adev->timer = dw_apb_clockevent_init(cpu, adev->name,
  165. APBT_CLOCKEVENT_RATING, adev_virt_addr(adev),
  166. adev->irq, apbt_freq);
  167. adev->timer->eoi = NULL;
  168. } else {
  169. dw_apb_clockevent_resume(adev->timer);
  170. }
  171. printk(KERN_INFO "Registering CPU %d clockevent device %s, cpu %08x\n",
  172. cpu, adev->name, adev->cpu);
  173. apbt_setup_irq(adev);
  174. dw_apb_clockevent_register(adev->timer);
  175. return;
  176. }
  177. /*
  178. * this notify handler process CPU hotplug events. in case of S0i3, nonboot
  179. * cpus are disabled/enabled frequently, for performance reasons, we keep the
  180. * per cpu timer irq registered so that we do need to do free_irq/request_irq.
  181. *
  182. * TODO: it might be more reliable to directly disable percpu clockevent device
  183. * without the notifier chain. currently, cpu 0 may get interrupts from other
  184. * cpu timers during the offline process due to the ordering of notification.
  185. * the extra interrupt is harmless.
  186. */
  187. static int apbt_cpuhp_notify(struct notifier_block *n,
  188. unsigned long action, void *hcpu)
  189. {
  190. unsigned long cpu = (unsigned long)hcpu;
  191. struct apbt_dev *adev = &per_cpu(cpu_apbt_dev, cpu);
  192. switch (action & 0xf) {
  193. case CPU_DEAD:
  194. dw_apb_clockevent_pause(adev->timer);
  195. if (system_state == SYSTEM_RUNNING) {
  196. pr_debug("skipping APBT CPU %lu offline\n", cpu);
  197. } else {
  198. pr_debug("APBT clockevent for cpu %lu offline\n", cpu);
  199. dw_apb_clockevent_stop(adev->timer);
  200. }
  201. break;
  202. default:
  203. pr_debug("APBT notified %lu, no action\n", action);
  204. }
  205. return NOTIFY_OK;
  206. }
  207. static __init int apbt_late_init(void)
  208. {
  209. if (intel_mid_timer_options == INTEL_MID_TIMER_LAPIC_APBT ||
  210. !apb_timer_block_enabled)
  211. return 0;
  212. /* This notifier should be called after workqueue is ready */
  213. hotcpu_notifier(apbt_cpuhp_notify, -20);
  214. return 0;
  215. }
  216. fs_initcall(apbt_late_init);
  217. #else
  218. void apbt_setup_secondary_clock(void) {}
  219. #endif /* CONFIG_SMP */
  220. static int apbt_clocksource_register(void)
  221. {
  222. u64 start, now;
  223. cycle_t t1;
  224. /* Start the counter, use timer 2 as source, timer 0/1 for event */
  225. dw_apb_clocksource_start(clocksource_apbt);
  226. /* Verify whether apbt counter works */
  227. t1 = dw_apb_clocksource_read(clocksource_apbt);
  228. rdtscll(start);
  229. /*
  230. * We don't know the TSC frequency yet, but waiting for
  231. * 200000 TSC cycles is safe:
  232. * 4 GHz == 50us
  233. * 1 GHz == 200us
  234. */
  235. do {
  236. rep_nop();
  237. rdtscll(now);
  238. } while ((now - start) < 200000UL);
  239. /* APBT is the only always on clocksource, it has to work! */
  240. if (t1 == dw_apb_clocksource_read(clocksource_apbt))
  241. panic("APBT counter not counting. APBT disabled\n");
  242. dw_apb_clocksource_register(clocksource_apbt);
  243. return 0;
  244. }
  245. /*
  246. * Early setup the APBT timer, only use timer 0 for booting then switch to
  247. * per CPU timer if possible.
  248. * returns 1 if per cpu apbt is setup
  249. * returns 0 if no per cpu apbt is chosen
  250. * panic if set up failed, this is the only platform timer on Moorestown.
  251. */
  252. void __init apbt_time_init(void)
  253. {
  254. #ifdef CONFIG_SMP
  255. int i;
  256. struct sfi_timer_table_entry *p_mtmr;
  257. struct apbt_dev *adev;
  258. #endif
  259. if (apb_timer_block_enabled)
  260. return;
  261. apbt_set_mapping();
  262. if (!apbt_virt_address)
  263. goto out_noapbt;
  264. /*
  265. * Read the frequency and check for a sane value, for ESL model
  266. * we extend the possible clock range to allow time scaling.
  267. */
  268. if (apbt_freq < APBT_MIN_FREQ || apbt_freq > APBT_MAX_FREQ) {
  269. pr_debug("APBT has invalid freq 0x%lx\n", apbt_freq);
  270. goto out_noapbt;
  271. }
  272. if (apbt_clocksource_register()) {
  273. pr_debug("APBT has failed to register clocksource\n");
  274. goto out_noapbt;
  275. }
  276. if (!apbt_clockevent_register())
  277. apb_timer_block_enabled = 1;
  278. else {
  279. pr_debug("APBT has failed to register clockevent\n");
  280. goto out_noapbt;
  281. }
  282. #ifdef CONFIG_SMP
  283. /* kernel cmdline disable apb timer, so we will use lapic timers */
  284. if (intel_mid_timer_options == INTEL_MID_TIMER_LAPIC_APBT) {
  285. printk(KERN_INFO "apbt: disabled per cpu timer\n");
  286. return;
  287. }
  288. pr_debug("%s: %d CPUs online\n", __func__, num_online_cpus());
  289. if (num_possible_cpus() <= sfi_mtimer_num)
  290. apbt_num_timers_used = num_possible_cpus();
  291. else
  292. apbt_num_timers_used = 1;
  293. pr_debug("%s: %d APB timers used\n", __func__, apbt_num_timers_used);
  294. /* here we set up per CPU timer data structure */
  295. for (i = 0; i < apbt_num_timers_used; i++) {
  296. adev = &per_cpu(cpu_apbt_dev, i);
  297. adev->num = i;
  298. adev->cpu = i;
  299. p_mtmr = sfi_get_mtmr(i);
  300. if (p_mtmr)
  301. adev->irq = p_mtmr->irq;
  302. else
  303. printk(KERN_ERR "Failed to get timer for cpu %d\n", i);
  304. snprintf(adev->name, sizeof(adev->name) - 1, "apbt%d", i);
  305. }
  306. #endif
  307. return;
  308. out_noapbt:
  309. apbt_clear_mapping();
  310. apb_timer_block_enabled = 0;
  311. panic("failed to enable APB timer\n");
  312. }
  313. /* called before apb_timer_enable, use early map */
  314. unsigned long apbt_quick_calibrate(void)
  315. {
  316. int i, scale;
  317. u64 old, new;
  318. cycle_t t1, t2;
  319. unsigned long khz = 0;
  320. u32 loop, shift;
  321. apbt_set_mapping();
  322. dw_apb_clocksource_start(clocksource_apbt);
  323. /* check if the timer can count down, otherwise return */
  324. old = dw_apb_clocksource_read(clocksource_apbt);
  325. i = 10000;
  326. while (--i) {
  327. if (old != dw_apb_clocksource_read(clocksource_apbt))
  328. break;
  329. }
  330. if (!i)
  331. goto failed;
  332. /* count 16 ms */
  333. loop = (apbt_freq / 1000) << 4;
  334. /* restart the timer to ensure it won't get to 0 in the calibration */
  335. dw_apb_clocksource_start(clocksource_apbt);
  336. old = dw_apb_clocksource_read(clocksource_apbt);
  337. old += loop;
  338. t1 = __native_read_tsc();
  339. do {
  340. new = dw_apb_clocksource_read(clocksource_apbt);
  341. } while (new < old);
  342. t2 = __native_read_tsc();
  343. shift = 5;
  344. if (unlikely(loop >> shift == 0)) {
  345. printk(KERN_INFO
  346. "APBT TSC calibration failed, not enough resolution\n");
  347. return 0;
  348. }
  349. scale = (int)div_u64((t2 - t1), loop >> shift);
  350. khz = (scale * (apbt_freq / 1000)) >> shift;
  351. printk(KERN_INFO "TSC freq calculated by APB timer is %lu khz\n", khz);
  352. return khz;
  353. failed:
  354. return 0;
  355. }