ioapic/x86_64: Add missing imen_lock/unlock
[dragonfly.git] / sys / platform / pc64 / apic / lapic.c
1 /*
2  * Copyright (c) 1996, by Steve Passe
3  * All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
8  * 1. Redistributions of source code must retain the above copyright
9  *    notice, this list of conditions and the following disclaimer.
10  * 2. The name of the developer may NOT be used to endorse or promote products
11  *    derived from this software without specific prior written permission.
12  *
13  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
14  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
15  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
16  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
17  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
18  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
19  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
20  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
21  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
22  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
23  * SUCH DAMAGE.
24  *
25  * $FreeBSD: src/sys/i386/i386/mpapic.c,v 1.37.2.7 2003/01/25 02:31:47 peter Exp $
26  */
27
28 #include <sys/param.h>
29 #include <sys/systm.h>
30 #include <sys/kernel.h>
31 #include <sys/bus.h>
32 #include <sys/machintr.h>
33 #include <machine/globaldata.h>
34 #include <machine/smp.h>
35 #include <machine/md_var.h>
36 #include <machine/pmap.h>
37 #include <machine_base/apic/lapic.h>
38 #include <machine_base/apic/ioapic.h>
39 #include <machine_base/apic/ioapic_abi.h>
40 #include <machine_base/apic/apicvar.h>
41 #include <machine_base/icu/icu_var.h>
42 #include <machine/segments.h>
43 #include <sys/thread2.h>
44
45 #include <machine/cputypes.h>
46 #include <machine/intr_machdep.h>
47
48 extern int naps;
49
50 volatile lapic_t *lapic;
51
52 static void     lapic_timer_calibrate(void);
53 static void     lapic_timer_set_divisor(int);
54 static void     lapic_timer_fixup_handler(void *);
55 static void     lapic_timer_restart_handler(void *);
56
57 void            lapic_timer_process(void);
58 void            lapic_timer_process_frame(struct intrframe *);
59 void            lapic_timer_always(struct intrframe *);
60
61 static int      lapic_timer_enable = 1;
62 TUNABLE_INT("hw.lapic_timer_enable", &lapic_timer_enable);
63
64 static void     lapic_timer_intr_reload(struct cputimer_intr *, sysclock_t);
65 static void     lapic_timer_intr_enable(struct cputimer_intr *);
66 static void     lapic_timer_intr_restart(struct cputimer_intr *);
67 static void     lapic_timer_intr_pmfixup(struct cputimer_intr *);
68
69 static struct cputimer_intr lapic_cputimer_intr = {
70         .freq = 0,
71         .reload = lapic_timer_intr_reload,
72         .enable = lapic_timer_intr_enable,
73         .config = cputimer_intr_default_config,
74         .restart = lapic_timer_intr_restart,
75         .pmfixup = lapic_timer_intr_pmfixup,
76         .initclock = cputimer_intr_default_initclock,
77         .next = SLIST_ENTRY_INITIALIZER,
78         .name = "lapic",
79         .type = CPUTIMER_INTR_LAPIC,
80         .prio = CPUTIMER_INTR_PRIO_LAPIC,
81         .caps = CPUTIMER_INTR_CAP_NONE
82 };
83
84 static int              lapic_timer_divisor_idx = -1;
85 static const uint32_t   lapic_timer_divisors[] = {
86         APIC_TDCR_2,    APIC_TDCR_4,    APIC_TDCR_8,    APIC_TDCR_16,
87         APIC_TDCR_32,   APIC_TDCR_64,   APIC_TDCR_128,  APIC_TDCR_1
88 };
89 #define APIC_TIMER_NDIVISORS (int)(NELEM(lapic_timer_divisors))
90
91 /*
92  * APIC ID <-> CPU ID mapping structures.
93  */
94 int     cpu_id_to_apic_id[NAPICID];
95 int     apic_id_to_cpu_id[NAPICID];
96 int     lapic_enable = 1;
97
98 /*
99  * Enable LAPIC, configure interrupts.
100  */
101 void
102 lapic_init(boolean_t bsp)
103 {
104         uint32_t timer;
105         u_int   temp;
106
107         /*
108          * Install vectors
109          *
110          * Since IDT is shared between BSP and APs, these vectors
111          * only need to be installed once; we do it on BSP.
112          */
113         if (bsp) {
114                 /* Install a 'Spurious INTerrupt' vector */
115                 setidt(XSPURIOUSINT_OFFSET, Xspuriousint,
116                     SDT_SYSIGT, SEL_KPL, 0);
117
118                 /* Install a timer vector */
119                 setidt(XTIMER_OFFSET, Xtimer,
120                     SDT_SYSIGT, SEL_KPL, 0);
121
122 #ifdef SMP
123                 /* Install an inter-CPU IPI for TLB invalidation */
124                 setidt(XINVLTLB_OFFSET, Xinvltlb,
125                     SDT_SYSIGT, SEL_KPL, 0);
126
127                 /* Install an inter-CPU IPI for IPIQ messaging */
128                 setidt(XIPIQ_OFFSET, Xipiq,
129                     SDT_SYSIGT, SEL_KPL, 0);
130
131                 /* Install an inter-CPU IPI for CPU stop/restart */
132                 setidt(XCPUSTOP_OFFSET, Xcpustop,
133                     SDT_SYSIGT, SEL_KPL, 0);
134 #endif
135         }
136
137         /*
138          * Setup LINT0 as ExtINT on the BSP.  This is theoretically an
139          * aggregate interrupt input from the 8259.  The INTA cycle
140          * will be routed to the external controller (the 8259) which
141          * is expected to supply the vector.
142          *
143          * Must be setup edge triggered, active high.
144          *
145          * Disable LINT0 on BSP, if I/O APIC is enabled.
146          *
147          * Disable LINT0 on the APs.  It doesn't matter what delivery
148          * mode we use because we leave it masked.
149          */
150         temp = lapic->lvt_lint0;
151         temp &= ~(APIC_LVT_MASKED | APIC_LVT_TRIG_MASK | 
152                   APIC_LVT_POLARITY_MASK | APIC_LVT_DM_MASK);
153         if (bsp) {
154                 temp |= APIC_LVT_DM_EXTINT;
155                 if (ioapic_enable)
156                         temp |= APIC_LVT_MASKED;
157         } else {
158                 temp |= APIC_LVT_DM_FIXED | APIC_LVT_MASKED;
159         }
160         lapic->lvt_lint0 = temp;
161
162         /*
163          * Setup LINT1 as NMI.
164          *
165          * Must be setup edge trigger, active high.
166          *
167          * Enable LINT1 on BSP, if I/O APIC is enabled.
168          *
169          * Disable LINT1 on the APs.
170          */
171         temp = lapic->lvt_lint1;
172         temp &= ~(APIC_LVT_MASKED | APIC_LVT_TRIG_MASK | 
173                   APIC_LVT_POLARITY_MASK | APIC_LVT_DM_MASK);
174         temp |= APIC_LVT_MASKED | APIC_LVT_DM_NMI;
175         if (bsp && ioapic_enable)
176                 temp &= ~APIC_LVT_MASKED;
177         lapic->lvt_lint1 = temp;
178
179         /*
180          * Mask the LAPIC error interrupt, LAPIC performance counter
181          * interrupt.
182          */
183         lapic->lvt_error = lapic->lvt_error | APIC_LVT_MASKED;
184         lapic->lvt_pcint = lapic->lvt_pcint | APIC_LVT_MASKED;
185
186         /*
187          * Set LAPIC timer vector and mask the LAPIC timer interrupt.
188          */
189         timer = lapic->lvt_timer;
190         timer &= ~APIC_LVTT_VECTOR;
191         timer |= XTIMER_OFFSET;
192         timer |= APIC_LVTT_MASKED;
193         lapic->lvt_timer = timer;
194
195         /*
196          * Set the Task Priority Register as needed.   At the moment allow
197          * interrupts on all cpus (the APs will remain CLId until they are
198          * ready to deal).
199          */
200         temp = lapic->tpr;
201         temp &= ~APIC_TPR_PRIO;         /* clear priority field */
202         lapic->tpr = temp;
203
204         /* 
205          * Enable the LAPIC 
206          */
207         temp = lapic->svr;
208         temp |= APIC_SVR_ENABLE;        /* enable the LAPIC */
209         temp &= ~APIC_SVR_FOCUS_DISABLE; /* enable lopri focus processor */
210
211         /*
212          * Set the spurious interrupt vector.  The low 4 bits of the vector
213          * must be 1111.
214          */
215         if ((XSPURIOUSINT_OFFSET & 0x0F) != 0x0F)
216                 panic("bad XSPURIOUSINT_OFFSET: 0x%08x", XSPURIOUSINT_OFFSET);
217         temp &= ~APIC_SVR_VECTOR;
218         temp |= XSPURIOUSINT_OFFSET;
219
220         lapic->svr = temp;
221
222         /*
223          * Pump out a few EOIs to clean out interrupts that got through
224          * before we were able to set the TPR.
225          */
226         lapic->eoi = 0;
227         lapic->eoi = 0;
228         lapic->eoi = 0;
229
230         if (bsp) {
231                 lapic_timer_calibrate();
232                 if (lapic_timer_enable) {
233                         cputimer_intr_register(&lapic_cputimer_intr);
234                         cputimer_intr_select(&lapic_cputimer_intr, 0);
235                 }
236         } else {
237                 lapic_timer_set_divisor(lapic_timer_divisor_idx);
238         }
239
240         if (bootverbose)
241                 apic_dump("apic_initialize()");
242 }
243
244 static void
245 lapic_timer_set_divisor(int divisor_idx)
246 {
247         KKASSERT(divisor_idx >= 0 && divisor_idx < APIC_TIMER_NDIVISORS);
248         lapic->dcr_timer = lapic_timer_divisors[divisor_idx];
249 }
250
251 static void
252 lapic_timer_oneshot(u_int count)
253 {
254         uint32_t value;
255
256         value = lapic->lvt_timer;
257         value &= ~APIC_LVTT_PERIODIC;
258         lapic->lvt_timer = value;
259         lapic->icr_timer = count;
260 }
261
262 static void
263 lapic_timer_oneshot_quick(u_int count)
264 {
265         lapic->icr_timer = count;
266 }
267
268 static void
269 lapic_timer_calibrate(void)
270 {
271         sysclock_t value;
272
273         /* Try to calibrate the local APIC timer. */
274         for (lapic_timer_divisor_idx = 0;
275              lapic_timer_divisor_idx < APIC_TIMER_NDIVISORS;
276              lapic_timer_divisor_idx++) {
277                 lapic_timer_set_divisor(lapic_timer_divisor_idx);
278                 lapic_timer_oneshot(APIC_TIMER_MAX_COUNT);
279                 DELAY(2000000);
280                 value = APIC_TIMER_MAX_COUNT - lapic->ccr_timer;
281                 if (value != APIC_TIMER_MAX_COUNT)
282                         break;
283         }
284         if (lapic_timer_divisor_idx >= APIC_TIMER_NDIVISORS)
285                 panic("lapic: no proper timer divisor?!\n");
286         lapic_cputimer_intr.freq = value / 2;
287
288         kprintf("lapic: divisor index %d, frequency %u Hz\n",
289                 lapic_timer_divisor_idx, lapic_cputimer_intr.freq);
290 }
291
292 static void
293 lapic_timer_process_oncpu(struct globaldata *gd, struct intrframe *frame)
294 {
295         sysclock_t count;
296
297         gd->gd_timer_running = 0;
298
299         count = sys_cputimer->count();
300         if (TAILQ_FIRST(&gd->gd_systimerq) != NULL)
301                 systimer_intr(&count, 0, frame);
302 }
303
304 void
305 lapic_timer_process(void)
306 {
307         lapic_timer_process_oncpu(mycpu, NULL);
308 }
309
310 void
311 lapic_timer_process_frame(struct intrframe *frame)
312 {
313         lapic_timer_process_oncpu(mycpu, frame);
314 }
315
316 /*
317  * This manual debugging code is called unconditionally from Xtimer
318  * (the lapic timer interrupt) whether the current thread is in a
319  * critical section or not) and can be useful in tracking down lockups.
320  *
321  * NOTE: MANUAL DEBUG CODE
322  */
323 #if 0
324 static int saveticks[SMP_MAXCPU];
325 static int savecounts[SMP_MAXCPU];
326 #endif
327
328 void
329 lapic_timer_always(struct intrframe *frame)
330 {
331 #if 0
332         globaldata_t gd = mycpu;
333         int cpu = gd->gd_cpuid;
334         char buf[64];
335         short *gptr;
336         int i;
337
338         if (cpu <= 20) {
339                 gptr = (short *)0xFFFFFFFF800b8000 + 80 * cpu;
340                 *gptr = ((*gptr + 1) & 0x00FF) | 0x0700;
341                 ++gptr;
342
343                 ksnprintf(buf, sizeof(buf), " %p %16s %d %16s ",
344                     (void *)frame->if_rip, gd->gd_curthread->td_comm, ticks,
345                     gd->gd_infomsg);
346                 for (i = 0; buf[i]; ++i) {
347                         gptr[i] = 0x0700 | (unsigned char)buf[i];
348                 }
349         }
350 #if 0
351         if (saveticks[gd->gd_cpuid] != ticks) {
352                 saveticks[gd->gd_cpuid] = ticks;
353                 savecounts[gd->gd_cpuid] = 0;
354         }
355         ++savecounts[gd->gd_cpuid];
356         if (savecounts[gd->gd_cpuid] > 2000 && panicstr == NULL) {
357                 panic("cpud %d panicing on ticks failure",
358                         gd->gd_cpuid);
359         }
360         for (i = 0; i < ncpus; ++i) {
361                 int delta;
362                 if (saveticks[i] && panicstr == NULL) {
363                         delta = saveticks[i] - ticks;
364                         if (delta < -10 || delta > 10) {
365                                 panic("cpu %d panicing on cpu %d watchdog",
366                                       gd->gd_cpuid, i);
367                         }
368                 }
369         }
370 #endif
371 #endif
372 }
373
374 static void
375 lapic_timer_intr_reload(struct cputimer_intr *cti, sysclock_t reload)
376 {
377         struct globaldata *gd = mycpu;
378
379         reload = (int64_t)reload * cti->freq / sys_cputimer->freq;
380         if (reload < 2)
381                 reload = 2;
382
383         if (gd->gd_timer_running) {
384                 if (reload < lapic->ccr_timer)
385                         lapic_timer_oneshot_quick(reload);
386         } else {
387                 gd->gd_timer_running = 1;
388                 lapic_timer_oneshot_quick(reload);
389         }
390 }
391
392 static void
393 lapic_timer_intr_enable(struct cputimer_intr *cti __unused)
394 {
395         uint32_t timer;
396
397         timer = lapic->lvt_timer;
398         timer &= ~(APIC_LVTT_MASKED | APIC_LVTT_PERIODIC);
399         lapic->lvt_timer = timer;
400
401         lapic_timer_fixup_handler(NULL);
402 }
403
404 static void
405 lapic_timer_fixup_handler(void *arg)
406 {
407         int *started = arg;
408
409         if (started != NULL)
410                 *started = 0;
411
412         if (cpu_vendor_id == CPU_VENDOR_AMD) {
413                 /*
414                  * Detect the presence of C1E capability mostly on latest
415                  * dual-cores (or future) k8 family.  This feature renders
416                  * the local APIC timer dead, so we disable it by reading
417                  * the Interrupt Pending Message register and clearing both
418                  * C1eOnCmpHalt (bit 28) and SmiOnCmpHalt (bit 27).
419                  * 
420                  * Reference:
421                  *   "BIOS and Kernel Developer's Guide for AMD NPT
422                  *    Family 0Fh Processors"
423                  *   #32559 revision 3.00
424                  */
425                 if ((cpu_id & 0x00000f00) == 0x00000f00 &&
426                     (cpu_id & 0x0fff0000) >= 0x00040000) {
427                         uint64_t msr;
428
429                         msr = rdmsr(0xc0010055);
430                         if (msr & 0x18000000) {
431                                 struct globaldata *gd = mycpu;
432
433                                 kprintf("cpu%d: AMD C1E detected\n",
434                                         gd->gd_cpuid);
435                                 wrmsr(0xc0010055, msr & ~0x18000000ULL);
436
437                                 /*
438                                  * We are kinda stalled;
439                                  * kick start again.
440                                  */
441                                 gd->gd_timer_running = 1;
442                                 lapic_timer_oneshot_quick(2);
443
444                                 if (started != NULL)
445                                         *started = 1;
446                         }
447                 }
448         }
449 }
450
451 static void
452 lapic_timer_restart_handler(void *dummy __unused)
453 {
454         int started;
455
456         lapic_timer_fixup_handler(&started);
457         if (!started) {
458                 struct globaldata *gd = mycpu;
459
460                 gd->gd_timer_running = 1;
461                 lapic_timer_oneshot_quick(2);
462         }
463 }
464
465 /*
466  * This function is called only by ACPI-CA code currently:
467  * - AMD C1E fixup.  AMD C1E only seems to happen after ACPI
468  *   module controls PM.  So once ACPI-CA is attached, we try
469  *   to apply the fixup to prevent LAPIC timer from hanging.
470  */
471 static void
472 lapic_timer_intr_pmfixup(struct cputimer_intr *cti __unused)
473 {
474 #ifdef SMP
475         lwkt_send_ipiq_mask(smp_active_mask,
476                             lapic_timer_fixup_handler, NULL);
477 #else
478         lapic_timer_fixup_handler(NULL);
479 #endif
480 }
481
482 static void
483 lapic_timer_intr_restart(struct cputimer_intr *cti __unused)
484 {
485 #ifdef SMP
486         lwkt_send_ipiq_mask(smp_active_mask, lapic_timer_restart_handler, NULL);
487 #else
488         lapic_timer_restart_handler(NULL);
489 #endif
490 }
491
492
493 /*
494  * dump contents of local APIC registers
495  */
496 void
497 apic_dump(char* str)
498 {
499         kprintf("SMP: CPU%d %s:\n", mycpu->gd_cpuid, str);
500         kprintf("     lint0: 0x%08x lint1: 0x%08x TPR: 0x%08x SVR: 0x%08x\n",
501                 lapic->lvt_lint0, lapic->lvt_lint1, lapic->tpr, lapic->svr);
502 }
503
504 #ifdef SMP
505
506 /*
507  * Inter Processor Interrupt functions.
508  */
509
510 /*
511  * Send APIC IPI 'vector' to 'destType' via 'deliveryMode'.
512  *
513  *  destType is 1 of: APIC_DEST_SELF, APIC_DEST_ALLISELF, APIC_DEST_ALLESELF
514  *  vector is any valid SYSTEM INT vector
515  *  delivery_mode is 1 of: APIC_DELMODE_FIXED, APIC_DELMODE_LOWPRIO
516  *
517  * A backlog of requests can create a deadlock between cpus.  To avoid this
518  * we have to be able to accept IPIs at the same time we are trying to send
519  * them.  The critical section prevents us from attempting to send additional
520  * IPIs reentrantly, but also prevents IPIQ processing so we have to call
521  * lwkt_process_ipiq() manually.  It's rather messy and expensive for this
522  * to occur but fortunately it does not happen too often.
523  */
524 int
525 apic_ipi(int dest_type, int vector, int delivery_mode)
526 {
527         u_long  icr_lo;
528
529         crit_enter();
530         if ((lapic->icr_lo & APIC_DELSTAT_MASK) != 0) {
531             unsigned long rflags = read_rflags();
532             cpu_enable_intr();
533             DEBUG_PUSH_INFO("apic_ipi");
534             while ((lapic->icr_lo & APIC_DELSTAT_MASK) != 0) {
535                 lwkt_process_ipiq();
536             }
537             DEBUG_POP_INFO();
538             write_rflags(rflags);
539         }
540
541         icr_lo = (lapic->icr_lo & APIC_ICRLO_RESV_MASK) | dest_type | 
542                 delivery_mode | vector;
543         lapic->icr_lo = icr_lo;
544         crit_exit();
545         return 0;
546 }
547
548 void
549 single_apic_ipi(int cpu, int vector, int delivery_mode)
550 {
551         u_long  icr_lo;
552         u_long  icr_hi;
553
554         crit_enter();
555         if ((lapic->icr_lo & APIC_DELSTAT_MASK) != 0) {
556             unsigned long rflags = read_rflags();
557             cpu_enable_intr();
558             DEBUG_PUSH_INFO("single_apic_ipi");
559             while ((lapic->icr_lo & APIC_DELSTAT_MASK) != 0) {
560                 lwkt_process_ipiq();
561             }
562             DEBUG_POP_INFO();
563             write_rflags(rflags);
564         }
565         icr_hi = lapic->icr_hi & ~APIC_ID_MASK;
566         icr_hi |= (CPUID_TO_APICID(cpu) << 24);
567         lapic->icr_hi = icr_hi;
568
569         /* build ICR_LOW */
570         icr_lo = (lapic->icr_lo & APIC_ICRLO_RESV_MASK)
571             | APIC_DEST_DESTFLD | delivery_mode | vector;
572
573         /* write APIC ICR */
574         lapic->icr_lo = icr_lo;
575         crit_exit();
576 }
577
578 #if 0   
579
580 /*
581  * Returns 0 if the apic is busy, 1 if we were able to queue the request.
582  *
583  * NOT WORKING YET!  The code as-is may end up not queueing an IPI at all
584  * to the target, and the scheduler does not 'poll' for IPI messages.
585  */
586 int
587 single_apic_ipi_passive(int cpu, int vector, int delivery_mode)
588 {
589         u_long  icr_lo;
590         u_long  icr_hi;
591
592         crit_enter();
593         if ((lapic->icr_lo & APIC_DELSTAT_MASK) != 0) {
594             crit_exit();
595             return(0);
596         }
597         icr_hi = lapic->icr_hi & ~APIC_ID_MASK;
598         icr_hi |= (CPUID_TO_APICID(cpu) << 24);
599         lapic->icr_hi = icr_hi;
600
601         /* build IRC_LOW */
602         icr_lo = (lapic->icr_lo & APIC_RESV2_MASK)
603             | APIC_DEST_DESTFLD | delivery_mode | vector;
604
605         /* write APIC ICR */
606         lapic->icr_lo = icr_lo;
607         crit_exit();
608         return(1);
609 }
610
611 #endif
612
613 /*
614  * Send APIC IPI 'vector' to 'target's via 'delivery_mode'.
615  *
616  * target is a bitmask of destination cpus.  Vector is any
617  * valid system INT vector.  Delivery mode may be either
618  * APIC_DELMODE_FIXED or APIC_DELMODE_LOWPRIO.
619  */
620 void
621 selected_apic_ipi(cpumask_t target, int vector, int delivery_mode)
622 {
623         crit_enter();
624         while (target) {
625                 int n = BSFCPUMASK(target);
626                 target &= ~CPUMASK(n);
627                 single_apic_ipi(n, vector, delivery_mode);
628         }
629         crit_exit();
630 }
631
632 #endif  /* SMP */
633
634 /*
635  * Timer code, in development...
636  *  - suggested by rgrimes@gndrsh.aac.dev.com
637  */
638 int
639 get_apic_timer_frequency(void)
640 {
641         return(lapic_cputimer_intr.freq);
642 }
643
644 /*
645  * Load a 'downcount time' in uSeconds.
646  */
647 void
648 set_apic_timer(int us)
649 {
650         u_int count;
651
652         /*
653          * When we reach here, lapic timer's frequency
654          * must have been calculated as well as the
655          * divisor (lapic->dcr_timer is setup during the
656          * divisor calculation).
657          */
658         KKASSERT(lapic_cputimer_intr.freq != 0 &&
659                  lapic_timer_divisor_idx >= 0);
660
661         count = ((us * (int64_t)lapic_cputimer_intr.freq) + 999999) / 1000000;
662         lapic_timer_oneshot(count);
663 }
664
665
666 /*
667  * Read remaining time in timer.
668  */
669 int
670 read_apic_timer(void)
671 {
672 #if 0
673         /** XXX FIXME: we need to return the actual remaining time,
674          *         for now we just return the remaining count.
675          */
676 #else
677         return lapic->ccr_timer;
678 #endif
679 }
680
681
682 /*
683  * Spin-style delay, set delay time in uS, spin till it drains.
684  */
685 void
686 u_sleep(int count)
687 {
688         set_apic_timer(count);
689         while (read_apic_timer())
690                  /* spin */ ;
691 }
692
693 int
694 lapic_unused_apic_id(int start)
695 {
696         int i;
697
698         for (i = start; i < NAPICID; ++i) {
699                 if (APICID_TO_CPUID(i) == -1)
700                         return i;
701         }
702         return NAPICID;
703 }
704
705 void
706 lapic_map(vm_paddr_t lapic_addr)
707 {
708         lapic = pmap_mapdev_uncacheable(lapic_addr, sizeof(struct LAPIC));
709 }
710
711 static TAILQ_HEAD(, lapic_enumerator) lapic_enumerators =
712         TAILQ_HEAD_INITIALIZER(lapic_enumerators);
713
714 int
715 lapic_config(void)
716 {
717         struct lapic_enumerator *e;
718         int error, i, ap_max;
719
720         KKASSERT(lapic_enable);
721
722         for (i = 0; i < NAPICID; ++i)
723                 APICID_TO_CPUID(i) = -1;
724
725         TAILQ_FOREACH(e, &lapic_enumerators, lapic_link) {
726                 error = e->lapic_probe(e);
727                 if (!error)
728                         break;
729         }
730         if (e == NULL) {
731                 kprintf("LAPIC: Can't find LAPIC\n");
732                 return ENXIO;
733         }
734
735         e->lapic_enumerate(e);
736
737         ap_max = MAXCPU - 1;
738         TUNABLE_INT_FETCH("hw.ap_max", &ap_max);
739         if (ap_max > MAXCPU - 1)
740                 ap_max = MAXCPU - 1;
741
742         if (naps > ap_max) {
743                 kprintf("LAPIC: Warning use only %d out of %d "
744                         "available APs\n",
745                         ap_max, naps);
746                 naps = ap_max;
747         }
748
749         return 0;
750 }
751
752 void
753 lapic_enumerator_register(struct lapic_enumerator *ne)
754 {
755         struct lapic_enumerator *e;
756
757         TAILQ_FOREACH(e, &lapic_enumerators, lapic_link) {
758                 if (e->lapic_prio < ne->lapic_prio) {
759                         TAILQ_INSERT_BEFORE(e, ne, lapic_link);
760                         return;
761                 }
762         }
763         TAILQ_INSERT_TAIL(&lapic_enumerators, ne, lapic_link);
764 }
765
766 void
767 lapic_set_cpuid(int cpu_id, int apic_id)
768 {
769         CPUID_TO_APICID(cpu_id) = apic_id;
770         APICID_TO_CPUID(apic_id) = cpu_id;
771 }
772
773 void
774 lapic_fixup_noioapic(void)
775 {
776         u_int   temp;
777
778         /* Only allowed on BSP */
779         KKASSERT(mycpuid == 0);
780         KKASSERT(!ioapic_enable);
781
782         temp = lapic->lvt_lint0;
783         temp &= ~APIC_LVT_MASKED;
784         lapic->lvt_lint0 = temp;
785
786         temp = lapic->lvt_lint1;
787         temp |= APIC_LVT_MASKED;
788         lapic->lvt_lint1 = temp;
789 }
790
791 static void
792 lapic_sysinit(void *dummy __unused)
793 {
794         if (lapic_enable) {
795                 int error;
796
797                 error = lapic_config();
798                 if (error)
799                         lapic_enable = 0;
800         }
801
802         if (lapic_enable) {
803                 /* Initialize BSP's local APIC */
804                 lapic_init(TRUE);
805         } else if (ioapic_enable) {
806                 ioapic_enable = 0;
807                 icu_reinit_noioapic();
808         }
809 }
810 SYSINIT(lapic, SI_BOOT2_LAPIC, SI_ORDER_FIRST, lapic_sysinit, NULL)