The Design and Implementation of the FreeBSD Operating System, Second Edition
Now available: The Design and Implementation of the FreeBSD Operating System (Second Edition)


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]

FreeBSD/Linux Kernel Cross Reference
sys/i386/include/smp.h

Version: -  FREEBSD  -  FREEBSD-13-STABLE  -  FREEBSD-13-0  -  FREEBSD-12-STABLE  -  FREEBSD-12-0  -  FREEBSD-11-STABLE  -  FREEBSD-11-0  -  FREEBSD-10-STABLE  -  FREEBSD-10-0  -  FREEBSD-9-STABLE  -  FREEBSD-9-0  -  FREEBSD-8-STABLE  -  FREEBSD-8-0  -  FREEBSD-7-STABLE  -  FREEBSD-7-0  -  FREEBSD-6-STABLE  -  FREEBSD-6-0  -  FREEBSD-5-STABLE  -  FREEBSD-5-0  -  FREEBSD-4-STABLE  -  FREEBSD-3-STABLE  -  FREEBSD22  -  l41  -  OPENBSD  -  linux-2.6  -  MK84  -  PLAN9  -  xnu-8792 
SearchContext: -  none  -  3  -  10 

    1 /*-
    2  * ----------------------------------------------------------------------------
    3  * "THE BEER-WARE LICENSE" (Revision 42):
    4  * <phk@FreeBSD.org> wrote this file.  As long as you retain this notice you
    5  * can do whatever you want with this stuff. If we meet some day, and you think
    6  * this stuff is worth it, you can buy me a beer in return.   Poul-Henning Kamp
    7  * ----------------------------------------------------------------------------
    8  *
    9  * $FreeBSD: releng/6.1/sys/i386/include/smp.h 158179 2006-04-30 16:44:43Z cvs2svn $
   10  *
   11  */
   12 
   13 #ifndef _MACHINE_SMP_H_
   14 #define _MACHINE_SMP_H_
   15 
   16 #ifdef _KERNEL
   17 
   18 #ifdef SMP
   19 
   20 #ifndef LOCORE
   21 
   22 /*
   23  * For sending values to POST displays.
   24  * XXX FIXME: where does this really belong, isa.h/isa.c perhaps?
   25  */
   26 extern int current_postcode;  /** XXX currently in mp_machdep.c */
   27 #define POSTCODE(X)     current_postcode = (X), \
   28                         outb(0x80, current_postcode)
   29 #define POSTCODE_LO(X)  current_postcode &= 0xf0, \
   30                         current_postcode |= ((X) & 0x0f), \
   31                         outb(0x80, current_postcode)
   32 #define POSTCODE_HI(X)  current_postcode &= 0x0f, \
   33                         current_postcode |= (((X) << 4) & 0xf0), \
   34                         outb(0x80, current_postcode)
   35 
   36 #include <sys/bus.h>
   37 #include <machine/frame.h>
   38 #include <machine/intr_machdep.h>
   39 #include <machine/apicvar.h>
   40 
   41 /* global data in mpboot.s */
   42 extern int                      bootMP_size;
   43 
   44 /* functions in mpboot.s */
   45 void    bootMP(void);
   46 
   47 /* global data in mp_machdep.c */
   48 extern int                      mp_naps;
   49 extern int                      boot_cpu_id;
   50 extern struct pcb               stoppcbs[];
   51 extern struct mtx               smp_tlb_mtx;
   52 
   53 /* IPI handlers */
   54 inthand_t
   55         IDTVEC(invltlb),        /* TLB shootdowns - global */
   56         IDTVEC(invlpg),         /* TLB shootdowns - 1 page */
   57         IDTVEC(invlrng),        /* TLB shootdowns - page range */
   58         IDTVEC(ipi_intr_bitmap_handler), /* Bitmap based IPIs */ 
   59         IDTVEC(cpustop),        /* CPU stops & waits to be restarted */
   60         IDTVEC(rendezvous),     /* handle CPU rendezvous */
   61         IDTVEC(lazypmap);       /* handle lazy pmap release */
   62 
   63 /* functions in mp_machdep.c */
   64 void    cpu_add(u_int apic_id, char boot_cpu);
   65 void    init_secondary(void);
   66 void    ipi_selected(u_int cpus, u_int ipi);
   67 void    ipi_all(u_int ipi);
   68 void    ipi_all_but_self(u_int ipi);
   69 void    ipi_self(u_int ipi);
   70 void    ipi_bitmap_handler(struct clockframe frame);
   71 u_int   mp_bootaddress(u_int);
   72 int     mp_grab_cpu_hlt(void);
   73 void    mp_topology(void);
   74 void    smp_invlpg(vm_offset_t addr);
   75 void    smp_masked_invlpg(u_int mask, vm_offset_t addr);
   76 void    smp_invlpg_range(vm_offset_t startva, vm_offset_t endva);
   77 void    smp_masked_invlpg_range(u_int mask, vm_offset_t startva,
   78             vm_offset_t endva);
   79 void    smp_invltlb(void);
   80 void    smp_masked_invltlb(u_int mask);
   81 
   82 #ifdef KDB_STOP_NMI
   83 int ipi_nmi_handler(void);
   84 void ipi_nmi_selected(u_int32_t cpus);
   85 #endif
   86 
   87 #endif /* !LOCORE */
   88 #endif /* SMP */
   89 
   90 #endif /* _KERNEL */
   91 #endif /* _MACHINE_SMP_H_ */

Cache object: c986c0dbaea426a7766661db14b179d1


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]


This page is part of the FreeBSD/Linux Linux Kernel Cross-Reference, and was automatically generated using a modified version of the LXR engine.