7133fe0f33
intr_pic_init_secondary. Replace them with a direct call. On BCM2836 and ARMADA XP we need to add this function, but it can be empty. Reviewed by: ian, imp Sponsored by: ABT Systems Ltd Differential Revision: https://reviews.freebsd.org/D5460
54 lines
1.2 KiB
C
54 lines
1.2 KiB
C
/* $FreeBSD$ */
|
|
|
|
#ifndef _MACHINE_SMP_H_
|
|
#define _MACHINE_SMP_H_
|
|
|
|
#include <sys/_cpuset.h>
|
|
#include <machine/pcb.h>
|
|
|
|
#ifdef ARM_INTRNG
|
|
enum {
|
|
IPI_AST,
|
|
IPI_PREEMPT,
|
|
IPI_RENDEZVOUS,
|
|
IPI_STOP,
|
|
IPI_STOP_HARD = IPI_STOP, /* These are synonyms on arm. */
|
|
IPI_HARDCLOCK,
|
|
IPI_TLB, /* Not used now, but keep it reserved. */
|
|
IPI_CACHE, /* Not used now, but keep it reserved. */
|
|
INTR_IPI_COUNT
|
|
};
|
|
#else
|
|
#define IPI_AST 0
|
|
#define IPI_PREEMPT 2
|
|
#define IPI_RENDEZVOUS 3
|
|
#define IPI_STOP 4
|
|
#define IPI_STOP_HARD 4
|
|
#define IPI_HARDCLOCK 6
|
|
#define IPI_TLB 7 /* Not used now, but keep it reserved. */
|
|
#define IPI_CACHE 8 /* Not used now, but keep it reserved. */
|
|
#endif /* INTRNG */
|
|
|
|
void init_secondary(int cpu);
|
|
void mpentry(void);
|
|
|
|
void ipi_all_but_self(u_int ipi);
|
|
void ipi_cpu(int cpu, u_int ipi);
|
|
void ipi_selected(cpuset_t cpus, u_int ipi);
|
|
|
|
/* PIC interface */
|
|
void pic_ipi_send(cpuset_t cpus, u_int ipi);
|
|
#ifndef ARM_INTRNG
|
|
void pic_ipi_clear(int ipi);
|
|
int pic_ipi_read(int arg);
|
|
#endif
|
|
|
|
/* Platform interface */
|
|
void platform_mp_setmaxid(void);
|
|
void platform_mp_start_ap(void);
|
|
|
|
/* global data in mp_machdep.c */
|
|
extern struct pcb stoppcbs[];
|
|
|
|
#endif /* !_MACHINE_SMP_H_ */
|