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_CPUFUNC_H_
|
|
|
|
#define _MACHINE_CPUFUNC_H_
|
|
|
|
|
2001-07-31 06:05:05 +00:00
|
|
|
#include <machine/asi.h>
|
|
|
|
#include <machine/pstate.h>
|
|
|
|
|
2002-03-27 05:39:23 +00:00
|
|
|
struct thread;
|
|
|
|
|
2001-07-31 06:05:05 +00:00
|
|
|
/*
|
2008-08-13 20:30:28 +00:00
|
|
|
* Membar operand macros for use in other macros when # is a special
|
2001-07-31 06:05:05 +00:00
|
|
|
* character. Keep these in sync with what the hardware expects.
|
|
|
|
*/
|
|
|
|
#define C_Lookaside (0)
|
|
|
|
#define C_MemIssue (1)
|
|
|
|
#define C_Sync (2)
|
|
|
|
#define M_LoadLoad (0)
|
|
|
|
#define M_StoreLoad (1)
|
|
|
|
#define M_LoadStore (2)
|
|
|
|
#define M_StoreStore (3)
|
|
|
|
|
|
|
|
#define CMASK_SHIFT (4)
|
|
|
|
#define MMASK_SHIFT (0)
|
|
|
|
|
|
|
|
#define CMASK_GEN(bit) ((1 << (bit)) << CMASK_SHIFT)
|
|
|
|
#define MMASK_GEN(bit) ((1 << (bit)) << MMASK_SHIFT)
|
|
|
|
|
|
|
|
#define Lookaside CMASK_GEN(C_Lookaside)
|
|
|
|
#define MemIssue CMASK_GEN(C_MemIssue)
|
|
|
|
#define Sync CMASK_GEN(C_Sync)
|
|
|
|
#define LoadLoad MMASK_GEN(M_LoadLoad)
|
|
|
|
#define StoreLoad MMASK_GEN(M_StoreLoad)
|
|
|
|
#define LoadStore MMASK_GEN(M_LoadStore)
|
|
|
|
#define StoreStore MMASK_GEN(M_StoreStore)
|
|
|
|
|
|
|
|
#define casa(rs1, rs2, rd, asi) ({ \
|
2004-05-22 00:47:26 +00:00
|
|
|
u_int __rd = (uint32_t)(rd); \
|
2005-07-27 20:01:45 +00:00
|
|
|
__asm __volatile("casa [%2] %3, %4, %0" \
|
|
|
|
: "+r" (__rd), "=m" (*rs1) \
|
|
|
|
: "r" (rs1), "n" (asi), "r" (rs2), "m" (*rs1)); \
|
2001-07-31 06:05:05 +00:00
|
|
|
__rd; \
|
|
|
|
})
|
|
|
|
|
|
|
|
#define casxa(rs1, rs2, rd, asi) ({ \
|
2004-05-22 00:47:26 +00:00
|
|
|
u_long __rd = (uint64_t)(rd); \
|
2005-07-27 20:01:45 +00:00
|
|
|
__asm __volatile("casxa [%2] %3, %4, %0" \
|
|
|
|
: "+r" (__rd), "=m" (*rs1) \
|
|
|
|
: "r" (rs1), "n" (asi), "r" (rs2), "m" (*rs1)); \
|
2001-07-31 06:05:05 +00:00
|
|
|
__rd; \
|
|
|
|
})
|
|
|
|
|
|
|
|
#define flush(va) do { \
|
|
|
|
__asm __volatile("flush %0" : : "r" (va)); \
|
|
|
|
} while (0)
|
|
|
|
|
2001-09-03 22:13:53 +00:00
|
|
|
#define flushw() do { \
|
|
|
|
__asm __volatile("flushw" : :); \
|
|
|
|
} while (0)
|
|
|
|
|
2002-01-08 04:36:01 +00:00
|
|
|
#define mov(val, reg) do { \
|
|
|
|
__asm __volatile("mov %0, %" __XSTRING(reg) : : "r" (val)); \
|
|
|
|
} while (0)
|
|
|
|
|
2008-08-13 20:30:28 +00:00
|
|
|
/* Generate ld*a/st*a functions for non-constant ASIs. */
|
|
|
|
#define LDNC_GEN(tp, o) \
|
2001-11-09 20:05:53 +00:00
|
|
|
static __inline tp \
|
|
|
|
o ## _nc(caddr_t va, int asi) \
|
|
|
|
{ \
|
|
|
|
tp r; \
|
|
|
|
__asm __volatile("wr %2, 0, %%asi;" #o " [%1] %%asi, %0"\
|
|
|
|
: "=r" (r) : "r" (va), "r" (asi)); \
|
|
|
|
return (r); \
|
|
|
|
}
|
|
|
|
|
|
|
|
LDNC_GEN(u_char, lduba);
|
|
|
|
LDNC_GEN(u_short, lduha);
|
|
|
|
LDNC_GEN(u_int, lduwa);
|
|
|
|
LDNC_GEN(u_long, ldxa);
|
|
|
|
|
|
|
|
#define LD_GENERIC(va, asi, op, type) ({ \
|
|
|
|
type __r; \
|
|
|
|
__asm __volatile(#op " [%1] %2, %0" \
|
2001-07-31 06:05:05 +00:00
|
|
|
: "=r" (__r) : "r" (va), "n" (asi)); \
|
|
|
|
__r; \
|
|
|
|
})
|
|
|
|
|
2001-11-09 20:05:53 +00:00
|
|
|
#define lduba(va, asi) LD_GENERIC(va, asi, lduba, u_char)
|
|
|
|
#define lduha(va, asi) LD_GENERIC(va, asi, lduha, u_short)
|
|
|
|
#define lduwa(va, asi) LD_GENERIC(va, asi, lduwa, u_int)
|
|
|
|
#define ldxa(va, asi) LD_GENERIC(va, asi, ldxa, u_long)
|
|
|
|
|
2008-08-13 20:30:28 +00:00
|
|
|
#define STNC_GEN(tp, o) \
|
2001-11-09 20:05:53 +00:00
|
|
|
static __inline void \
|
|
|
|
o ## _nc(caddr_t va, int asi, tp val) \
|
|
|
|
{ \
|
|
|
|
__asm __volatile("wr %2, 0, %%asi;" #o " %0, [%1] %%asi"\
|
|
|
|
: : "r" (val), "r" (va), "r" (asi)); \
|
|
|
|
}
|
|
|
|
|
|
|
|
STNC_GEN(u_char, stba);
|
|
|
|
STNC_GEN(u_short, stha);
|
|
|
|
STNC_GEN(u_int, stwa);
|
|
|
|
STNC_GEN(u_long, stxa);
|
|
|
|
|
|
|
|
#define ST_GENERIC(va, asi, val, op) \
|
|
|
|
__asm __volatile(#op " %0, [%1] %2" \
|
2001-07-31 06:05:05 +00:00
|
|
|
: : "r" (val), "r" (va), "n" (asi)); \
|
2001-11-09 20:05:53 +00:00
|
|
|
|
|
|
|
#define stba(va, asi, val) ST_GENERIC(va, asi, val, stba)
|
|
|
|
#define stha(va, asi, val) ST_GENERIC(va, asi, val, stha)
|
|
|
|
#define stwa(va, asi, val) ST_GENERIC(va, asi, val, stwa)
|
|
|
|
#define stxa(va, asi, val) ST_GENERIC(va, asi, val, stxa)
|
2001-07-31 06:05:05 +00:00
|
|
|
|
2003-06-22 01:26:08 +00:00
|
|
|
/*
|
|
|
|
* Attempt to read from addr, val. If a Data Access Error trap happens,
|
|
|
|
* they return -1 and the contents of val is undefined. A return of 0
|
|
|
|
* means no trap happened, and the contents of val is valid.
|
|
|
|
*/
|
|
|
|
int fasword8(u_long asi, void *addr, uint8_t *val);
|
|
|
|
int fasword16(u_long asi, void *addr, uint16_t *val);
|
|
|
|
int fasword32(u_long asi, void *addr, uint32_t *val);
|
|
|
|
|
2001-07-31 06:05:05 +00:00
|
|
|
#define membar(mask) do { \
|
2001-12-29 06:51:50 +00:00
|
|
|
__asm __volatile("membar %0" : : "n" (mask) : "memory"); \
|
2001-07-31 06:05:05 +00:00
|
|
|
} while (0)
|
|
|
|
|
|
|
|
#define rd(name) ({ \
|
2004-05-22 00:47:26 +00:00
|
|
|
uint64_t __sr; \
|
2001-07-31 06:05:05 +00:00
|
|
|
__asm __volatile("rd %%" #name ", %0" : "=r" (__sr) :); \
|
|
|
|
__sr; \
|
|
|
|
})
|
|
|
|
|
2010-12-29 14:11:46 +00:00
|
|
|
#define wr(name, val, xorval) do { \
|
2001-07-31 06:05:05 +00:00
|
|
|
__asm __volatile("wr %0, %1, %%" #name \
|
2010-12-29 14:11:46 +00:00
|
|
|
: : "r" (val), "rI" (xorval)); \
|
2001-07-31 06:05:05 +00:00
|
|
|
} while (0)
|
|
|
|
|
|
|
|
#define rdpr(name) ({ \
|
2004-05-22 00:47:26 +00:00
|
|
|
uint64_t __pr; \
|
2001-07-31 06:05:05 +00:00
|
|
|
__asm __volatile("rdpr %%" #name", %0" : "=r" (__pr) :); \
|
|
|
|
__pr; \
|
|
|
|
})
|
|
|
|
|
2010-12-29 14:11:46 +00:00
|
|
|
#define wrpr(name, val, xorval) do { \
|
2001-07-31 06:05:05 +00:00
|
|
|
__asm __volatile("wrpr %0, %1, %%" #name \
|
2010-12-29 14:11:46 +00:00
|
|
|
: : "r" (val), "rI" (xorval)); \
|
2001-07-31 06:05:05 +00:00
|
|
|
} while (0)
|
|
|
|
|
- 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
|
|
|
/*
|
2010-12-21 22:03:12 +00:00
|
|
|
* Trick GAS/GCC into compiling access to TICK/(S)TICK_COMPARE independently
|
- 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
|
|
|
* of the selected instruction set.
|
|
|
|
*/
|
2010-12-29 14:11:46 +00:00
|
|
|
#define rdtickcmpr() rd(asr23)
|
|
|
|
#define rdstick() rd(asr24)
|
|
|
|
#define rdstickcmpr() rd(asr25)
|
|
|
|
#define wrtickcmpr(val, xorval) wr(asr23, (val), (xorval))
|
|
|
|
#define wrstick(val, xorval) wr(asr24, (val), (xorval))
|
|
|
|
#define wrstickcmpr(val, xorval) wr(asr25, (val), (xorval))
|
- 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
|
|
|
|
2005-04-16 14:57:38 +00:00
|
|
|
/*
|
2010-12-29 14:11:46 +00:00
|
|
|
* Macro intended to be used instead of wr(asr23, val, xorval) for writing to
|
2008-08-13 20:30:28 +00:00
|
|
|
* the TICK_COMPARE register in order to avoid a bug in BlackBird CPUs that
|
2011-04-22 09:31:40 +00:00
|
|
|
* can cause these writes to fail under certain conditions which in turn
|
2008-08-23 20:53:27 +00:00
|
|
|
* causes the hardclock to stop. The workaround is to read the TICK_COMPARE
|
|
|
|
* register back immediately after writing to it with these two instructions
|
|
|
|
* aligned to a quadword boundary in order to ensure that I$ misses won't
|
|
|
|
* split them up.
|
2005-04-16 14:57:38 +00:00
|
|
|
*/
|
2010-12-29 14:11:46 +00:00
|
|
|
#define wrtickcmpr_bbwar(val, xorval) ({ \
|
2005-04-16 14:57:38 +00:00
|
|
|
__asm __volatile( \
|
|
|
|
" ba,pt %%xcc, 1f ; " \
|
|
|
|
" nop ; " \
|
2008-08-23 20:53:27 +00:00
|
|
|
" .align 128 ; " \
|
2005-04-16 14:57:38 +00:00
|
|
|
"1: wr %0, %1, %%asr23 ; " \
|
|
|
|
" rd %%asr23, %%g0 ; " \
|
2010-12-29 14:11:46 +00:00
|
|
|
: : "r" (val), "rI" (xorval)); \
|
2005-04-16 14:57:38 +00:00
|
|
|
})
|
|
|
|
|
2001-07-31 06:05:05 +00:00
|
|
|
static __inline void
|
|
|
|
breakpoint(void)
|
|
|
|
{
|
2008-08-13 20:30:28 +00:00
|
|
|
|
2001-08-18 18:07:37 +00:00
|
|
|
__asm __volatile("ta %%xcc, 1" : :);
|
2001-07-31 06:05:05 +00:00
|
|
|
}
|
|
|
|
|
2002-03-21 06:21:32 +00:00
|
|
|
static __inline register_t
|
2002-02-13 15:40:05 +00:00
|
|
|
intr_disable(void)
|
|
|
|
{
|
2008-08-13 20:30:28 +00:00
|
|
|
register_t s;
|
2002-02-13 15:40:05 +00:00
|
|
|
|
|
|
|
s = rdpr(pstate);
|
|
|
|
wrpr(pstate, s & ~PSTATE_IE, 0);
|
|
|
|
return (s);
|
|
|
|
}
|
|
|
|
#define intr_restore(s) wrpr(pstate, (s), 0)
|
|
|
|
|
|
|
|
/*
|
|
|
|
* In some places, it is required that the store is directly followed by a
|
2008-08-13 20:30:28 +00:00
|
|
|
* membar #Sync. Don't trust the compiler to not insert instructions in
|
|
|
|
* between. We also need to disable interrupts completely.
|
2002-02-13 15:40:05 +00:00
|
|
|
*/
|
|
|
|
#define stxa_sync(va, asi, val) do { \
|
2008-08-13 20:30:28 +00:00
|
|
|
register_t s; \
|
2005-04-16 14:47:50 +00:00
|
|
|
s = intr_disable(); \
|
2002-02-13 15:40:05 +00:00
|
|
|
__asm __volatile("stxa %0, [%1] %2; membar #Sync" \
|
|
|
|
: : "r" (val), "r" (va), "n" (asi)); \
|
|
|
|
intr_restore(s); \
|
|
|
|
} while (0)
|
|
|
|
|
2001-11-18 02:47:26 +00:00
|
|
|
void ascopy(u_long asi, vm_offset_t src, vm_offset_t dst, size_t len);
|
2001-11-09 20:05:53 +00:00
|
|
|
void ascopyfrom(u_long sasi, vm_offset_t src, caddr_t dst, size_t len);
|
|
|
|
void ascopyto(caddr_t src, u_long dasi, vm_offset_t dst, size_t len);
|
2001-11-18 02:47:26 +00:00
|
|
|
void aszero(u_long asi, vm_offset_t dst, size_t len);
|
2001-11-09 20:05:53 +00:00
|
|
|
|
2001-08-18 18:07:37 +00:00
|
|
|
/*
|
2008-08-13 20:30:28 +00:00
|
|
|
* Ultrasparc II doesn't implement popc in hardware.
|
2001-08-18 18:07:37 +00:00
|
|
|
*/
|
2001-07-31 06:05:05 +00:00
|
|
|
#if 0
|
|
|
|
#define HAVE_INLINE_FFS
|
|
|
|
/*
|
|
|
|
* See page 202 of the SPARC v9 Architecture Manual.
|
|
|
|
*/
|
|
|
|
static __inline int
|
|
|
|
ffs(int mask)
|
|
|
|
{
|
|
|
|
int result;
|
|
|
|
int neg;
|
|
|
|
int tmp;
|
|
|
|
|
|
|
|
__asm __volatile(
|
|
|
|
" neg %3, %1 ; "
|
|
|
|
" xnor %3, %1, %2 ; "
|
|
|
|
" popc %2, %0 ; "
|
|
|
|
" movrz %3, %%g0, %0 ; "
|
|
|
|
: "=r" (result), "=r" (neg), "=r" (tmp) : "r" (mask));
|
|
|
|
return (result);
|
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
|
|
|
}
|
2001-07-31 06:05:05 +00:00
|
|
|
#endif
|
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
|
|
|
|
2001-11-09 20:05:53 +00:00
|
|
|
#undef LDNC_GEN
|
|
|
|
#undef STNC_GEN
|
|
|
|
|
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_CPUFUNC_H_ */
|