1997-04-26 11:46:25 +00:00
|
|
|
/*
|
|
|
|
* ----------------------------------------------------------------------------
|
|
|
|
* "THE BEER-WARE LICENSE" (Revision 42):
|
|
|
|
* <phk@FreeBSD.org> wrote this file. As long as you retain this notice you
|
|
|
|
* can do whatever you want with this stuff. If we meet some day, and you think
|
|
|
|
* this stuff is worth it, you can buy me a beer in return. Poul-Henning Kamp
|
|
|
|
* ----------------------------------------------------------------------------
|
|
|
|
*
|
1997-07-31 05:39:49 +00:00
|
|
|
* $Id: smp.h,v 1.18 1997/07/30 22:44:20 smp Exp smp $
|
1997-04-26 11:46:25 +00:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _MACHINE_SMP_H_
|
|
|
|
#define _MACHINE_SMP_H_
|
|
|
|
|
|
|
|
#ifdef KERNEL
|
|
|
|
|
1997-05-06 21:29:57 +00:00
|
|
|
#if defined(SMP) && !defined(APIC_IO)
|
|
|
|
# error APIC_IO required for SMP, add "options APIC_IO" to your config file.
|
1997-06-27 23:12:31 +00:00
|
|
|
#endif /* SMP && !APIC_IO */
|
1997-05-06 21:29:57 +00:00
|
|
|
|
1997-07-28 03:59:54 +00:00
|
|
|
/* Number of CPUs. */
|
1997-04-26 11:46:25 +00:00
|
|
|
#if defined(SMP) && !defined(NCPU)
|
|
|
|
# define NCPU 2
|
|
|
|
#endif /* SMP && NCPU */
|
|
|
|
|
1997-07-28 03:59:54 +00:00
|
|
|
/* Number of IO APICs. */
|
|
|
|
#if defined(APIC_IO) && !defined(NAPIC)
|
|
|
|
# define NAPIC 1
|
|
|
|
#endif /* SMP && NAPIC */
|
|
|
|
|
|
|
|
|
1997-04-26 11:46:25 +00:00
|
|
|
#if defined(SMP) || defined(APIC_IO)
|
|
|
|
|
1997-07-28 03:59:54 +00:00
|
|
|
#ifndef LOCORE
|
|
|
|
|
1997-06-27 23:12:31 +00:00
|
|
|
/*
|
|
|
|
* For sending values to POST displays.
|
1997-07-06 23:40:15 +00:00
|
|
|
* XXX FIXME: where does this really belong, isa.h/isa.c perhaps?
|
1997-06-27 23:12:31 +00:00
|
|
|
*/
|
1997-07-06 23:40:15 +00:00
|
|
|
extern int current_postcode; /** XXX currently in mp_machdep.c */
|
|
|
|
#define POSTCODE(X) current_postcode = (X), \
|
|
|
|
outb(0x80, current_postcode)
|
|
|
|
#define POSTCODE_LO(X) current_postcode &= 0xf0, \
|
|
|
|
current_postcode |= ((X) & 0x0f), \
|
|
|
|
outb(0x80, current_postcode)
|
|
|
|
#define POSTCODE_HI(X) current_postcode &= 0x0f, \
|
|
|
|
current_postcode |= (((X) << 4) & 0xf0), \
|
|
|
|
outb(0x80, current_postcode)
|
|
|
|
|
1997-06-27 23:12:31 +00:00
|
|
|
|
1997-05-29 05:57:43 +00:00
|
|
|
#include <machine/apic.h>
|
|
|
|
|
1997-04-26 11:46:25 +00:00
|
|
|
/* global data in mpboot.s */
|
|
|
|
extern int bootMP_size;
|
|
|
|
|
|
|
|
/* functions in mpboot.s */
|
|
|
|
void bootMP __P((void));
|
|
|
|
|
|
|
|
/* global data in mplock.s */
|
|
|
|
extern u_int mp_lock;
|
|
|
|
|
|
|
|
/* functions in mplock.s */
|
|
|
|
void get_mplock __P((void));
|
|
|
|
void rel_mplock __P((void));
|
1997-04-30 19:04:26 +00:00
|
|
|
void try_mplock __P((void));
|
1997-04-26 11:46:25 +00:00
|
|
|
|
1997-06-27 23:12:31 +00:00
|
|
|
/* global data in apic_vector.s */
|
1997-07-22 20:12:32 +00:00
|
|
|
extern u_int ivectors[];
|
1997-06-27 23:12:31 +00:00
|
|
|
extern volatile u_int stopped_cpus;
|
|
|
|
extern volatile u_int started_cpus;
|
|
|
|
|
1997-07-22 20:12:32 +00:00
|
|
|
/* global data in apic_ipl.s */
|
|
|
|
extern u_int vec[];
|
|
|
|
extern u_int Xintr8254;
|
|
|
|
extern u_int mask8254;
|
1997-07-31 05:39:49 +00:00
|
|
|
extern volatile struct simple_lock imen_lock;
|
1997-07-22 20:12:32 +00:00
|
|
|
|
|
|
|
/* functions in apic_ipl.s */
|
|
|
|
void vec8254 __P((void));
|
|
|
|
void INTREN __P((u_int));
|
|
|
|
void INTRDIS __P((u_int));
|
|
|
|
void apic_eoi __P((void));
|
|
|
|
u_int io_apic_read __P((int, int));
|
|
|
|
void io_apic_write __P((int, int, u_int));
|
|
|
|
|
1997-07-24 23:48:53 +00:00
|
|
|
/* functions in simplelock.s */
|
1997-07-23 05:49:19 +00:00
|
|
|
#include <machine/param.h>
|
|
|
|
void s_lock_init __P((struct simplelock *));
|
|
|
|
void s_lock __P((__volatile struct simplelock *));
|
|
|
|
int s_lock_try __P((__volatile struct simplelock *));
|
|
|
|
void s_unlock __P((__volatile struct simplelock *));
|
|
|
|
|
1997-04-26 11:46:25 +00:00
|
|
|
/* global data in mp_machdep.c */
|
|
|
|
extern int mp_ncpus;
|
|
|
|
extern int mp_naps;
|
|
|
|
extern int mp_nbusses;
|
|
|
|
extern int mp_napics;
|
|
|
|
extern int mp_picmode;
|
|
|
|
extern int boot_cpu_id;
|
|
|
|
extern vm_offset_t cpu_apic_address;
|
|
|
|
extern vm_offset_t io_apic_address[];
|
|
|
|
extern u_int32_t cpu_apic_versions[];
|
|
|
|
extern u_int32_t io_apic_versions[];
|
|
|
|
extern int cpu_num_to_apic_id[];
|
|
|
|
extern int io_num_to_apic_id[];
|
|
|
|
extern int apic_id_to_logical[];
|
1997-06-27 23:12:31 +00:00
|
|
|
extern u_int all_cpus;
|
1997-06-22 16:04:22 +00:00
|
|
|
extern u_int SMP_prvpt[];
|
|
|
|
extern u_char SMP_ioapic[];
|
1997-04-26 11:46:25 +00:00
|
|
|
|
|
|
|
/* functions in mp_machdep.c */
|
|
|
|
u_int mp_bootaddress __P((u_int));
|
1997-05-28 18:44:11 +00:00
|
|
|
int mp_probe __P((void));
|
1997-04-26 11:46:25 +00:00
|
|
|
void mp_start __P((void));
|
|
|
|
void mp_announce __P((void));
|
1997-06-25 20:59:15 +00:00
|
|
|
u_int isa_apic_mask __P((u_int));
|
|
|
|
int isa_apic_pin __P((int));
|
|
|
|
int pci_apic_pin __P((int, int, int));
|
1997-05-05 22:56:37 +00:00
|
|
|
int undirect_isa_irq __P((int));
|
1997-04-26 11:46:25 +00:00
|
|
|
int undirect_pci_irq __P((int));
|
|
|
|
int apic_bus_type __P((int));
|
|
|
|
int apic_src_bus_id __P((int, int));
|
|
|
|
int apic_src_bus_irq __P((int, int));
|
|
|
|
int apic_int_type __P((int, int));
|
|
|
|
int apic_trigger __P((int, int));
|
|
|
|
int apic_polarity __P((int, int));
|
1997-07-08 23:32:58 +00:00
|
|
|
void bsp_apic_configure __P((void));
|
1997-04-26 11:46:25 +00:00
|
|
|
void init_secondary __P((void));
|
|
|
|
void smp_invltlb __P((void));
|
1997-06-27 23:12:31 +00:00
|
|
|
int stop_cpus __P((u_int));
|
|
|
|
int restart_cpus __P((u_int));
|
1997-04-26 11:46:25 +00:00
|
|
|
|
|
|
|
/* global data in mpapic.c */
|
1997-06-22 16:04:22 +00:00
|
|
|
extern volatile lapic_t lapic;
|
1997-04-26 11:46:25 +00:00
|
|
|
|
|
|
|
#if defined(MULTIPLE_IOAPICS)
|
|
|
|
#error MULTIPLE_IOAPICSXXX
|
|
|
|
#else
|
1997-06-22 16:04:22 +00:00
|
|
|
extern volatile ioapic_t *ioapic[];
|
1997-04-26 11:46:25 +00:00
|
|
|
#endif /* MULTIPLE_IOAPICS */
|
|
|
|
|
|
|
|
/* functions in mpapic.c */
|
1997-07-20 18:02:19 +00:00
|
|
|
void apic_dump __P((char*));
|
1997-07-08 23:32:58 +00:00
|
|
|
void apic_initialize __P((void));
|
1997-07-22 20:12:32 +00:00
|
|
|
void imen_dump __P((void));
|
1997-05-01 19:33:12 +00:00
|
|
|
int apic_ipi __P((int, int, int));
|
1997-04-26 11:46:25 +00:00
|
|
|
int selected_apic_ipi __P((u_int, int, int));
|
|
|
|
int io_apic_setup __P((int));
|
|
|
|
int ext_int_setup __P((int, int));
|
|
|
|
|
|
|
|
#if defined(READY)
|
|
|
|
void clr_io_apic_mask24 __P((int, u_int32_t));
|
|
|
|
void set_io_apic_mask24 __P((int, u_int32_t));
|
|
|
|
#endif /* READY */
|
|
|
|
|
|
|
|
void set_apic_timer __P((int));
|
|
|
|
int read_apic_timer __P((void));
|
|
|
|
void u_sleep __P((int));
|
|
|
|
|
|
|
|
/* global data in init_smp.c */
|
|
|
|
extern int smp_active;
|
1997-04-28 00:25:00 +00:00
|
|
|
extern int invltlb_ok;
|
1997-04-26 11:46:25 +00:00
|
|
|
|
1997-06-27 23:12:31 +00:00
|
|
|
/* 'private' global data in locore.s */
|
1997-06-22 16:04:22 +00:00
|
|
|
extern volatile u_int cpuid;
|
|
|
|
extern volatile u_int cpu_lockid;
|
1997-06-27 23:12:31 +00:00
|
|
|
extern volatile u_int other_cpus;
|
1997-04-26 11:46:25 +00:00
|
|
|
|
1997-07-28 03:59:54 +00:00
|
|
|
#endif /* !LOCORE */
|
1997-04-26 11:46:25 +00:00
|
|
|
#endif /* SMP || APIC_IO */
|
|
|
|
#endif /* KERNEL */
|
|
|
|
#endif /* _MACHINE_SMP_H_ */
|