Add skeleton machine dependent headers and c files for a port of freebsd
to a new architecture. This is the base of the sparc64 port, but contains
limited machine dependent code, and can be used a base for ports. Included
are:
- standard machine dependent headers, tweaked for a 64 bit, big endian
architecture, including empty versions of all the machine dependent
structures
- a machine independent atomic.h, which can be used until a port has
support for interrupts and the operations really need to be atomic
- stub versions of all the machine dependent functions, which panic
when called and print out the name of the function that needs to
be implemented. functions which are normally in assembly files are
not included, but this should reduce the number of different undefined
references on the first few compiles from hundreds to 5 or 6
Given minimal startup code and console support it should be trivial to
make this compile and run the first few sysinits on almost any architecture.
Requested by: alfred, imp, jhb
2001-07-31 05:45:16 +00:00
|
|
|
/*-
|
|
|
|
* Copyright (c) 2001 Jake Burkholder.
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
|
|
|
*
|
2001-08-09 02:09:34 +00:00
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
|
Add skeleton machine dependent headers and c files for a port of freebsd
to a new architecture. This is the base of the sparc64 port, but contains
limited machine dependent code, and can be used a base for ports. Included
are:
- standard machine dependent headers, tweaked for a 64 bit, big endian
architecture, including empty versions of all the machine dependent
structures
- a machine independent atomic.h, which can be used until a port has
support for interrupts and the operations really need to be atomic
- stub versions of all the machine dependent functions, which panic
when called and print out the name of the function that needs to
be implemented. functions which are normally in assembly files are
not included, but this should reduce the number of different undefined
references on the first few compiles from hundreds to 5 or 6
Given minimal startup code and console support it should be trivial to
make this compile and run the first few sysinits on almost any architecture.
Requested by: alfred, imp, jhb
2001-07-31 05:45:16 +00:00
|
|
|
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
2001-08-09 02:09:34 +00:00
|
|
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
|
Add skeleton machine dependent headers and c files for a port of freebsd
to a new architecture. This is the base of the sparc64 port, but contains
limited machine dependent code, and can be used a base for ports. Included
are:
- standard machine dependent headers, tweaked for a 64 bit, big endian
architecture, including empty versions of all the machine dependent
structures
- a machine independent atomic.h, which can be used until a port has
support for interrupts and the operations really need to be atomic
- stub versions of all the machine dependent functions, which panic
when called and print out the name of the function that needs to
be implemented. functions which are normally in assembly files are
not included, but this should reduce the number of different undefined
references on the first few compiles from hundreds to 5 or 6
Given minimal startup code and console support it should be trivial to
make this compile and run the first few sysinits on almost any architecture.
Requested by: alfred, imp, jhb
2001-07-31 05:45:16 +00:00
|
|
|
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
|
|
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
|
|
|
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
|
|
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
|
|
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
|
|
|
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
|
|
* SUCH DAMAGE.
|
|
|
|
*
|
|
|
|
* $FreeBSD$
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _MACHINE_SMP_H_
|
|
|
|
#define _MACHINE_SMP_H_
|
|
|
|
|
2008-09-18 13:56:30 +00:00
|
|
|
#ifdef SMP
|
|
|
|
|
- USIII-based machines can consist of CPUs running at different
frequencies (and having different cache sizes) so use the STICK
(System TICK) timer, which was introduced due to this and is
driven by the same frequency across all CPUs, instead of the
TICK timer, whose frequency varies with the CPU clock, to drive
hardclock. We try to use the STICK counter with all CPUs that are
USIII or beyond, even when not necessary due to identical CPUs,
as we can can also avoid the workaround for the BlackBird erratum
#1 there. Unfortunately, using the STICK counter currently causes
a hang with USIIIi MP machines for reasons unknown, so we still
use the TICK timer there (which is okay as they can only consist
of identical CPUs).
- Given that we only (try to) synchronize the (S)TICK timers of APs
with the BSP during startup, we could end up spinning forever in
DELAY(9) if that function is migrated to another CPU while we're
spinning due to clock drift afterwards, so pin to the CPU in order
to avoid migration. Unfortunately, pinning doesn't work at the
point DELAY(9) is required by the low-level console drivers, yet,
so switch to a function pointer, which is updated accordingly, for
implementing DELAY(9). For USIII and beyond, this would also allow
to easily use the STICK counter instead of the TICK one here,
there's no benefit in doing so however.
While at it, use cpu_spinwait(9) for spinning in the delay-
functions. This currently is a NOP though.
- Don't set the TICK timer of the BSP to 0 during at startup as
there's no need to do so.
- Implement cpu_est_clockrate().
- Unfortunately, USIIIi-based machines don't provide a timecounter
device besides the STICK and TICK counters (well, in theory the
Tomatillo bridges have a performance counter that can be (ab)used
as timecounter by configuring it to count bus cycles, though unlike
the performance counter of Schizo bridges, the Tomatillo one is
broken and counts Sun knows what in this mode). This means that
we've to use a (S)TICK counter for timecounting, which has the old
problem of not being in sync across CPUs, so provide an additional
timecounter function which binds itself to the BSP but has an
adequate low priority.
2008-09-03 17:39:19 +00:00
|
|
|
#define CPU_TICKSYNC 1
|
|
|
|
#define CPU_STICKSYNC 2
|
|
|
|
#define CPU_INIT 3
|
|
|
|
#define CPU_BOOTSTRAP 4
|
2002-01-08 05:50:26 +00:00
|
|
|
|
|
|
|
#ifndef LOCORE
|
|
|
|
|
2010-07-04 12:43:12 +00:00
|
|
|
#include <sys/proc.h>
|
|
|
|
#include <sys/sched.h>
|
|
|
|
|
2002-02-23 18:41:34 +00:00
|
|
|
#include <machine/intr_machdep.h>
|
2007-05-19 05:01:43 +00:00
|
|
|
#include <machine/pcb.h>
|
2002-03-04 07:12:36 +00:00
|
|
|
#include <machine/tte.h>
|
2002-02-23 18:41:34 +00:00
|
|
|
|
2007-06-16 23:26:00 +00:00
|
|
|
#define IDR_BUSY 0x0000000000000001ULL
|
|
|
|
#define IDR_NACK 0x0000000000000002ULL
|
|
|
|
#define IDR_CHEETAH_ALL_BUSY 0x5555555555555555ULL
|
|
|
|
#define IDR_CHEETAH_ALL_NACK (~IDR_CHEETAH_ALL_BUSY)
|
|
|
|
#define IDR_CHEETAH_MAX_BN_PAIRS 32
|
|
|
|
#define IDR_JALAPENO_MAX_BN_PAIRS 4
|
2002-01-08 05:50:26 +00:00
|
|
|
|
2007-05-20 14:49:01 +00:00
|
|
|
#define IDC_ITID_SHIFT 14
|
2007-06-16 23:26:00 +00:00
|
|
|
#define IDC_BN_SHIFT 24
|
2007-05-20 14:49:01 +00:00
|
|
|
|
2002-01-08 05:50:26 +00:00
|
|
|
#define IPI_AST PIL_AST
|
|
|
|
#define IPI_RENDEZVOUS PIL_RENDEZVOUS
|
2008-04-09 21:14:01 +00:00
|
|
|
#define IPI_PREEMPT PIL_PREEMPT
|
2010-07-29 12:08:46 +00:00
|
|
|
#define IPI_HARDCLOCK PIL_HARDCLOCK
|
|
|
|
#define IPI_STATCLOCK PIL_STATCLOCK
|
2002-01-08 05:50:26 +00:00
|
|
|
#define IPI_STOP PIL_STOP
|
2009-08-13 17:09:45 +00:00
|
|
|
#define IPI_STOP_HARD PIL_STOP
|
2002-01-08 05:50:26 +00:00
|
|
|
|
2004-09-29 21:39:36 +00:00
|
|
|
#define IPI_RETRIES 5000
|
2002-01-08 05:50:26 +00:00
|
|
|
|
|
|
|
struct cpu_start_args {
|
2002-03-07 06:01:40 +00:00
|
|
|
u_int csa_count;
|
2002-01-08 05:50:26 +00:00
|
|
|
u_int csa_mid;
|
|
|
|
u_int csa_state;
|
2002-03-07 06:01:40 +00:00
|
|
|
vm_offset_t csa_pcpu;
|
2002-03-04 07:12:36 +00:00
|
|
|
u_long csa_tick;
|
- USIII-based machines can consist of CPUs running at different
frequencies (and having different cache sizes) so use the STICK
(System TICK) timer, which was introduced due to this and is
driven by the same frequency across all CPUs, instead of the
TICK timer, whose frequency varies with the CPU clock, to drive
hardclock. We try to use the STICK counter with all CPUs that are
USIII or beyond, even when not necessary due to identical CPUs,
as we can can also avoid the workaround for the BlackBird erratum
#1 there. Unfortunately, using the STICK counter currently causes
a hang with USIIIi MP machines for reasons unknown, so we still
use the TICK timer there (which is okay as they can only consist
of identical CPUs).
- Given that we only (try to) synchronize the (S)TICK timers of APs
with the BSP during startup, we could end up spinning forever in
DELAY(9) if that function is migrated to another CPU while we're
spinning due to clock drift afterwards, so pin to the CPU in order
to avoid migration. Unfortunately, pinning doesn't work at the
point DELAY(9) is required by the low-level console drivers, yet,
so switch to a function pointer, which is updated accordingly, for
implementing DELAY(9). For USIII and beyond, this would also allow
to easily use the STICK counter instead of the TICK one here,
there's no benefit in doing so however.
While at it, use cpu_spinwait(9) for spinning in the delay-
functions. This currently is a NOP though.
- Don't set the TICK timer of the BSP to 0 during at startup as
there's no need to do so.
- Implement cpu_est_clockrate().
- Unfortunately, USIIIi-based machines don't provide a timecounter
device besides the STICK and TICK counters (well, in theory the
Tomatillo bridges have a performance counter that can be (ab)used
as timecounter by configuring it to count bus cycles, though unlike
the performance counter of Schizo bridges, the Tomatillo one is
broken and counts Sun knows what in this mode). This means that
we've to use a (S)TICK counter for timecounting, which has the old
problem of not being in sync across CPUs, so provide an additional
timecounter function which binds itself to the BSP but has an
adequate low priority.
2008-09-03 17:39:19 +00:00
|
|
|
u_long csa_stick;
|
2002-03-04 07:12:36 +00:00
|
|
|
u_long csa_ver;
|
|
|
|
struct tte csa_ttes[PCPU_PAGES];
|
2002-01-08 05:50:26 +00:00
|
|
|
};
|
|
|
|
|
2002-05-20 16:30:47 +00:00
|
|
|
struct ipi_cache_args {
|
|
|
|
u_int ica_mask;
|
2003-04-08 06:35:09 +00:00
|
|
|
vm_paddr_t ica_pa;
|
2002-05-20 16:30:47 +00:00
|
|
|
};
|
|
|
|
|
2002-01-08 05:50:26 +00:00
|
|
|
struct ipi_tlb_args {
|
2002-03-13 03:43:00 +00:00
|
|
|
u_int ita_mask;
|
2002-03-07 06:01:40 +00:00
|
|
|
struct pmap *ita_pmap;
|
2002-01-08 05:50:26 +00:00
|
|
|
u_long ita_start;
|
|
|
|
u_long ita_end;
|
|
|
|
};
|
|
|
|
#define ita_va ita_start
|
|
|
|
|
|
|
|
struct pcpu;
|
|
|
|
|
2005-11-03 21:08:20 +00:00
|
|
|
extern struct pcb stoppcbs[];
|
|
|
|
|
2002-01-08 05:50:26 +00:00
|
|
|
void cpu_mp_bootstrap(struct pcpu *pc);
|
2002-03-13 03:43:00 +00:00
|
|
|
void cpu_mp_shutdown(void);
|
2002-01-08 05:50:26 +00:00
|
|
|
|
2007-06-16 23:26:00 +00:00
|
|
|
typedef void cpu_ipi_selected_t(u_int, u_long, u_long, u_long);
|
|
|
|
extern cpu_ipi_selected_t *cpu_ipi_selected;
|
2010-08-08 00:09:22 +00:00
|
|
|
typedef void cpu_ipi_single_t(u_int, u_long, u_long, u_long);
|
|
|
|
extern cpu_ipi_single_t *cpu_ipi_single;
|
2002-01-08 05:50:26 +00:00
|
|
|
|
2010-02-20 23:24:19 +00:00
|
|
|
void mp_init(u_int cpu_impl);
|
2002-03-04 07:12:36 +00:00
|
|
|
|
2002-12-22 20:50:23 +00:00
|
|
|
extern struct mtx ipi_mtx;
|
|
|
|
extern struct ipi_cache_args ipi_cache_args;
|
|
|
|
extern struct ipi_tlb_args ipi_tlb_args;
|
2002-01-08 05:50:26 +00:00
|
|
|
|
2002-03-04 07:12:36 +00:00
|
|
|
extern char *mp_tramp_code;
|
|
|
|
extern u_long mp_tramp_code_len;
|
|
|
|
extern u_long mp_tramp_tlb_slots;
|
|
|
|
extern u_long mp_tramp_func;
|
|
|
|
|
|
|
|
extern void mp_startup(void);
|
|
|
|
|
2003-03-19 06:55:37 +00:00
|
|
|
extern char tl_ipi_cheetah_dcache_page_inval[];
|
|
|
|
extern char tl_ipi_spitfire_dcache_page_inval[];
|
|
|
|
extern char tl_ipi_spitfire_icache_page_inval[];
|
|
|
|
|
2002-01-08 05:50:26 +00:00
|
|
|
extern char tl_ipi_level[];
|
|
|
|
extern char tl_ipi_tlb_context_demap[];
|
|
|
|
extern char tl_ipi_tlb_page_demap[];
|
|
|
|
extern char tl_ipi_tlb_range_demap[];
|
|
|
|
|
2008-09-18 13:56:30 +00:00
|
|
|
static __inline void
|
|
|
|
ipi_all_but_self(u_int ipi)
|
|
|
|
{
|
|
|
|
|
|
|
|
cpu_ipi_selected(PCPU_GET(other_cpus), 0, (u_long)tl_ipi_level, ipi);
|
|
|
|
}
|
|
|
|
|
|
|
|
static __inline void
|
|
|
|
ipi_selected(u_int cpus, u_int ipi)
|
|
|
|
{
|
|
|
|
|
|
|
|
cpu_ipi_selected(cpus, 0, (u_long)tl_ipi_level, ipi);
|
|
|
|
}
|
2002-01-08 05:50:26 +00:00
|
|
|
|
2010-08-06 15:36:59 +00:00
|
|
|
static __inline void
|
|
|
|
ipi_cpu(int cpu, u_int ipi)
|
|
|
|
{
|
|
|
|
|
2010-08-08 00:09:22 +00:00
|
|
|
cpu_ipi_single(cpu, 0, (u_long)tl_ipi_level, ipi);
|
2010-08-06 15:36:59 +00:00
|
|
|
}
|
|
|
|
|
2002-12-22 20:50:23 +00:00
|
|
|
#if defined(_MACHINE_PMAP_H_) && defined(_SYS_MUTEX_H_)
|
|
|
|
|
2002-05-20 16:30:47 +00:00
|
|
|
static __inline void *
|
2003-04-08 06:35:09 +00:00
|
|
|
ipi_dcache_page_inval(void *func, vm_paddr_t pa)
|
2002-05-20 16:30:47 +00:00
|
|
|
{
|
|
|
|
struct ipi_cache_args *ica;
|
|
|
|
|
|
|
|
if (smp_cpus == 1)
|
|
|
|
return (NULL);
|
2010-07-04 12:43:12 +00:00
|
|
|
sched_pin();
|
2002-05-20 16:30:47 +00:00
|
|
|
ica = &ipi_cache_args;
|
2002-12-22 20:50:23 +00:00
|
|
|
mtx_lock_spin(&ipi_mtx);
|
2002-05-20 16:30:47 +00:00
|
|
|
ica->ica_mask = all_cpus;
|
|
|
|
ica->ica_pa = pa;
|
2003-03-19 06:55:37 +00:00
|
|
|
cpu_ipi_selected(PCPU_GET(other_cpus), 0, (u_long)func, (u_long)ica);
|
2002-05-20 16:30:47 +00:00
|
|
|
return (&ica->ica_mask);
|
|
|
|
}
|
|
|
|
|
|
|
|
static __inline void *
|
2003-04-08 06:35:09 +00:00
|
|
|
ipi_icache_page_inval(void *func, vm_paddr_t pa)
|
2002-05-20 16:30:47 +00:00
|
|
|
{
|
|
|
|
struct ipi_cache_args *ica;
|
|
|
|
|
|
|
|
if (smp_cpus == 1)
|
|
|
|
return (NULL);
|
2010-07-04 12:43:12 +00:00
|
|
|
sched_pin();
|
2002-05-20 16:30:47 +00:00
|
|
|
ica = &ipi_cache_args;
|
2002-12-22 20:50:23 +00:00
|
|
|
mtx_lock_spin(&ipi_mtx);
|
2002-05-20 16:30:47 +00:00
|
|
|
ica->ica_mask = all_cpus;
|
|
|
|
ica->ica_pa = pa;
|
2003-03-19 06:55:37 +00:00
|
|
|
cpu_ipi_selected(PCPU_GET(other_cpus), 0, (u_long)func, (u_long)ica);
|
2002-05-20 16:30:47 +00:00
|
|
|
return (&ica->ica_mask);
|
|
|
|
}
|
|
|
|
|
2002-01-08 05:50:26 +00:00
|
|
|
static __inline void *
|
2002-03-07 06:01:40 +00:00
|
|
|
ipi_tlb_context_demap(struct pmap *pm)
|
2002-01-08 05:50:26 +00:00
|
|
|
{
|
|
|
|
struct ipi_tlb_args *ita;
|
2002-03-07 06:01:40 +00:00
|
|
|
u_int cpus;
|
2002-01-08 05:50:26 +00:00
|
|
|
|
2002-03-07 06:01:40 +00:00
|
|
|
if (smp_cpus == 1)
|
|
|
|
return (NULL);
|
2010-07-04 12:43:12 +00:00
|
|
|
sched_pin();
|
|
|
|
if ((cpus = (pm->pm_active & PCPU_GET(other_cpus))) == 0) {
|
|
|
|
sched_unpin();
|
2002-01-08 05:50:26 +00:00
|
|
|
return (NULL);
|
2010-07-04 12:43:12 +00:00
|
|
|
}
|
2002-01-08 05:50:26 +00:00
|
|
|
ita = &ipi_tlb_args;
|
2002-12-22 20:50:23 +00:00
|
|
|
mtx_lock_spin(&ipi_mtx);
|
2002-03-13 03:43:00 +00:00
|
|
|
ita->ita_mask = cpus | PCPU_GET(cpumask);
|
2002-03-07 06:01:40 +00:00
|
|
|
ita->ita_pmap = pm;
|
|
|
|
cpu_ipi_selected(cpus, 0, (u_long)tl_ipi_tlb_context_demap,
|
|
|
|
(u_long)ita);
|
2002-03-13 03:43:00 +00:00
|
|
|
return (&ita->ita_mask);
|
2002-01-08 05:50:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static __inline void *
|
2002-07-26 15:54:04 +00:00
|
|
|
ipi_tlb_page_demap(struct pmap *pm, vm_offset_t va)
|
2002-01-08 05:50:26 +00:00
|
|
|
{
|
|
|
|
struct ipi_tlb_args *ita;
|
2002-03-07 06:01:40 +00:00
|
|
|
u_int cpus;
|
2002-01-08 05:50:26 +00:00
|
|
|
|
2002-03-07 06:01:40 +00:00
|
|
|
if (smp_cpus == 1)
|
|
|
|
return (NULL);
|
2010-07-04 12:43:12 +00:00
|
|
|
sched_pin();
|
|
|
|
if ((cpus = (pm->pm_active & PCPU_GET(other_cpus))) == 0) {
|
|
|
|
sched_unpin();
|
2002-01-08 05:50:26 +00:00
|
|
|
return (NULL);
|
2010-07-04 12:43:12 +00:00
|
|
|
}
|
2002-01-08 05:50:26 +00:00
|
|
|
ita = &ipi_tlb_args;
|
2002-12-22 20:50:23 +00:00
|
|
|
mtx_lock_spin(&ipi_mtx);
|
2002-03-13 03:43:00 +00:00
|
|
|
ita->ita_mask = cpus | PCPU_GET(cpumask);
|
2002-03-07 06:01:40 +00:00
|
|
|
ita->ita_pmap = pm;
|
2002-01-08 05:50:26 +00:00
|
|
|
ita->ita_va = va;
|
2002-03-07 06:01:40 +00:00
|
|
|
cpu_ipi_selected(cpus, 0, (u_long)tl_ipi_tlb_page_demap, (u_long)ita);
|
2002-03-13 03:43:00 +00:00
|
|
|
return (&ita->ita_mask);
|
2002-01-08 05:50:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static __inline void *
|
2002-03-07 06:01:40 +00:00
|
|
|
ipi_tlb_range_demap(struct pmap *pm, vm_offset_t start, vm_offset_t end)
|
2002-01-08 05:50:26 +00:00
|
|
|
{
|
|
|
|
struct ipi_tlb_args *ita;
|
2002-03-07 06:01:40 +00:00
|
|
|
u_int cpus;
|
2002-01-08 05:50:26 +00:00
|
|
|
|
2002-03-07 06:01:40 +00:00
|
|
|
if (smp_cpus == 1)
|
|
|
|
return (NULL);
|
2010-07-04 12:43:12 +00:00
|
|
|
sched_pin();
|
|
|
|
if ((cpus = (pm->pm_active & PCPU_GET(other_cpus))) == 0) {
|
|
|
|
sched_unpin();
|
2002-01-08 05:50:26 +00:00
|
|
|
return (NULL);
|
2010-07-04 12:43:12 +00:00
|
|
|
}
|
2002-01-08 05:50:26 +00:00
|
|
|
ita = &ipi_tlb_args;
|
2002-12-22 20:50:23 +00:00
|
|
|
mtx_lock_spin(&ipi_mtx);
|
2002-03-13 03:43:00 +00:00
|
|
|
ita->ita_mask = cpus | PCPU_GET(cpumask);
|
2002-03-07 06:01:40 +00:00
|
|
|
ita->ita_pmap = pm;
|
2002-01-08 05:50:26 +00:00
|
|
|
ita->ita_start = start;
|
|
|
|
ita->ita_end = end;
|
2010-08-08 00:09:22 +00:00
|
|
|
cpu_ipi_selected(cpus, 0, (u_long)tl_ipi_tlb_range_demap,
|
|
|
|
(u_long)ita);
|
2002-03-13 03:43:00 +00:00
|
|
|
return (&ita->ita_mask);
|
2002-01-08 05:50:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static __inline void
|
|
|
|
ipi_wait(void *cookie)
|
|
|
|
{
|
2005-03-06 20:57:08 +00:00
|
|
|
volatile u_int *mask;
|
2002-01-08 05:50:26 +00:00
|
|
|
|
2002-03-13 03:43:00 +00:00
|
|
|
if ((mask = cookie) != NULL) {
|
|
|
|
atomic_clear_int(mask, PCPU_GET(cpumask));
|
|
|
|
while (*mask != 0)
|
2002-03-04 07:12:36 +00:00
|
|
|
;
|
2002-12-22 20:50:23 +00:00
|
|
|
mtx_unlock_spin(&ipi_mtx);
|
2010-07-04 12:43:12 +00:00
|
|
|
sched_unpin();
|
2002-01-08 05:50:26 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2002-12-22 20:50:23 +00:00
|
|
|
#endif /* _MACHINE_PMAP_H_ && _SYS_MUTEX_H_ */
|
2002-03-07 06:01:40 +00:00
|
|
|
|
2008-09-18 13:56:30 +00:00
|
|
|
#endif /* !LOCORE */
|
|
|
|
|
2002-01-08 05:50:26 +00:00
|
|
|
#else
|
|
|
|
|
2008-09-18 13:56:30 +00:00
|
|
|
#ifndef LOCORE
|
|
|
|
|
2002-05-20 16:30:47 +00:00
|
|
|
static __inline void *
|
2010-07-04 12:43:12 +00:00
|
|
|
ipi_dcache_page_inval(void *func __unused, vm_paddr_t pa __unused)
|
2002-05-20 16:30:47 +00:00
|
|
|
{
|
2007-05-20 14:49:01 +00:00
|
|
|
|
2002-05-20 16:30:47 +00:00
|
|
|
return (NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
static __inline void *
|
2010-07-04 12:43:12 +00:00
|
|
|
ipi_icache_page_inval(void *func __unused, vm_paddr_t pa __unused)
|
2002-05-20 16:30:47 +00:00
|
|
|
{
|
2007-05-20 14:49:01 +00:00
|
|
|
|
2002-05-20 16:30:47 +00:00
|
|
|
return (NULL);
|
|
|
|
}
|
|
|
|
|
2002-01-08 05:50:26 +00:00
|
|
|
static __inline void *
|
2010-07-04 12:43:12 +00:00
|
|
|
ipi_tlb_context_demap(struct pmap *pm __unused)
|
2002-01-08 05:50:26 +00:00
|
|
|
{
|
2007-05-20 14:49:01 +00:00
|
|
|
|
2002-01-08 05:50:26 +00:00
|
|
|
return (NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
static __inline void *
|
2010-07-04 12:43:12 +00:00
|
|
|
ipi_tlb_page_demap(struct pmap *pm __unused, vm_offset_t va __unused)
|
2002-01-08 05:50:26 +00:00
|
|
|
{
|
2007-05-20 14:49:01 +00:00
|
|
|
|
2002-01-08 05:50:26 +00:00
|
|
|
return (NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
static __inline void *
|
2010-07-04 12:43:12 +00:00
|
|
|
ipi_tlb_range_demap(struct pmap *pm __unused, vm_offset_t start __unused,
|
|
|
|
__unused vm_offset_t end)
|
2002-01-08 05:50:26 +00:00
|
|
|
{
|
2007-05-20 14:49:01 +00:00
|
|
|
|
2002-01-08 05:50:26 +00:00
|
|
|
return (NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
static __inline void
|
|
|
|
ipi_wait(void *cookie)
|
|
|
|
{
|
2007-05-20 14:49:01 +00:00
|
|
|
|
2002-01-08 05:50:26 +00:00
|
|
|
}
|
|
|
|
|
2008-09-18 13:56:30 +00:00
|
|
|
static __inline void
|
|
|
|
tl_ipi_cheetah_dcache_page_inval(void)
|
|
|
|
{
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
static __inline void
|
|
|
|
tl_ipi_spitfire_dcache_page_inval(void)
|
|
|
|
{
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
static __inline void
|
|
|
|
tl_ipi_spitfire_icache_page_inval(void)
|
|
|
|
{
|
|
|
|
|
|
|
|
}
|
2002-01-08 05:50:26 +00:00
|
|
|
|
|
|
|
#endif /* !LOCORE */
|
|
|
|
|
2008-09-18 13:56:30 +00:00
|
|
|
#endif /* SMP */
|
|
|
|
|
Add skeleton machine dependent headers and c files for a port of freebsd
to a new architecture. This is the base of the sparc64 port, but contains
limited machine dependent code, and can be used a base for ports. Included
are:
- standard machine dependent headers, tweaked for a 64 bit, big endian
architecture, including empty versions of all the machine dependent
structures
- a machine independent atomic.h, which can be used until a port has
support for interrupts and the operations really need to be atomic
- stub versions of all the machine dependent functions, which panic
when called and print out the name of the function that needs to
be implemented. functions which are normally in assembly files are
not included, but this should reduce the number of different undefined
references on the first few compiles from hundreds to 5 or 6
Given minimal startup code and console support it should be trivial to
make this compile and run the first few sysinits on almost any architecture.
Requested by: alfred, imp, jhb
2001-07-31 05:45:16 +00:00
|
|
|
#endif /* !_MACHINE_SMP_H_ */
|