__ __ __ __ _____ _ _ _____ _ _ _ | \/ | \ \ / / | __ \ (_) | | / ____| | | | | | \ / |_ __\ V / | |__) | __ ___ ____ _| |_ ___ | (___ | |__ ___| | | | |\/| | '__|> < | ___/ '__| \ \ / / _` | __/ _ \ \___ \| '_ \ / _ \ | | | | | | |_ / . \ | | | | | |\ V / (_| | || __/ ____) | | | | __/ | | |_| |_|_(_)_/ \_\ |_| |_| |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1 if you need WebShell for Seo everyday contact me on Telegram Telegram Address : @jackleetFor_More_Tools:
#ifndef _M68K_BITOPS_H
#define _M68K_BITOPS_H
/*
* Copyright 1992, Linus Torvalds.
*
* This file is subject to the terms and conditions of the GNU General Public
* License. See the file COPYING in the main directory of this archive
* for more details.
*/
#ifndef _LINUX_BITOPS_H
#error only <linux/bitops.h> can be included directly
#endif
#include <linux/compiler.h>
#include <asm/barrier.h>
/*
* Bit access functions vary across the ColdFire and 68k families.
* So we will break them out here, and then macro in the ones we want.
*
* ColdFire - supports standard bset/bclr/bchg with register operand only
* 68000 - supports standard bset/bclr/bchg with memory operand
* >= 68020 - also supports the bfset/bfclr/bfchg instructions
*
* Although it is possible to use only the bset/bclr/bchg with register
* operands on all platforms you end up with larger generated code.
* So we use the best form possible on a given platform.
*/
static inline void bset_reg_set_bit(int nr, volatile unsigned long *vaddr)
{
char *p = (char *)vaddr + (nr ^ 31) / 8;
__asm__ __volatile__ ("bset %1,(%0)"
:
: "a" (p), "di" (nr & 7)
: "memory");
}
static inline void bset_mem_set_bit(int nr, volatile unsigned long *vaddr)
{
char *p = (char *)vaddr + (nr ^ 31) / 8;
__asm__ __volatile__ ("bset %1,%0"
: "+m" (*p)
: "di" (nr & 7));
}
static inline void bfset_mem_set_bit(int nr, volatile unsigned long *vaddr)
{
__asm__ __volatile__ ("bfset %1{%0:#1}"
:
: "d" (nr ^ 31), "o" (*vaddr)
: "memory");
}
#if defined(CONFIG_COLDFIRE)
#define set_bit(nr, vaddr) bset_reg_set_bit(nr, vaddr)
#elif defined(CONFIG_CPU_HAS_NO_BITFIELDS)
#define set_bit(nr, vaddr) bset_mem_set_bit(nr, vaddr)
#else
#define set_bit(nr, vaddr) (__builtin_constant_p(nr) ? \
bset_mem_set_bit(nr, vaddr) : \
bfset_mem_set_bit(nr, vaddr))
#endif
static __always_inline void
arch___set_bit(unsigned long nr, volatile unsigned long *addr)
{
set_bit(nr, addr);
}
static inline void bclr_reg_clear_bit(int nr, volatile unsigned long *vaddr)
{
char *p = (char *)vaddr + (nr ^ 31) / 8;
__asm__ __volatile__ ("bclr %1,(%0)"
:
: "a" (p), "di" (nr & 7)
: "memory");
}
static inline void bclr_mem_clear_bit(int nr, volatile unsigned long *vaddr)
{
char *p = (char *)vaddr + (nr ^ 31) / 8;
__asm__ __volatile__ ("bclr %1,%0"
: "+m" (*p)
: "di" (nr & 7));
}
static inline void bfclr_mem_clear_bit(int nr, volatile unsigned long *vaddr)
{
__asm__ __volatile__ ("bfclr %1{%0:#1}"
:
: "d" (nr ^ 31), "o" (*vaddr)
: "memory");
}
#if defined(CONFIG_COLDFIRE)
#define clear_bit(nr, vaddr) bclr_reg_clear_bit(nr, vaddr)
#elif defined(CONFIG_CPU_HAS_NO_BITFIELDS)
#define clear_bit(nr, vaddr) bclr_mem_clear_bit(nr, vaddr)
#else
#define clear_bit(nr, vaddr) (__builtin_constant_p(nr) ? \
bclr_mem_clear_bit(nr, vaddr) : \
bfclr_mem_clear_bit(nr, vaddr))
#endif
static __always_inline void
arch___clear_bit(unsigned long nr, volatile unsigned long *addr)
{
clear_bit(nr, addr);
}
static inline void bchg_reg_change_bit(int nr, volatile unsigned long *vaddr)
{
char *p = (char *)vaddr + (nr ^ 31) / 8;
__asm__ __volatile__ ("bchg %1,(%0)"
:
: "a" (p), "di" (nr & 7)
: "memory");
}
static inline void bchg_mem_change_bit(int nr, volatile unsigned long *vaddr)
{
char *p = (char *)vaddr + (nr ^ 31) / 8;
__asm__ __volatile__ ("bchg %1,%0"
: "+m" (*p)
: "di" (nr & 7));
}
static inline void bfchg_mem_change_bit(int nr, volatile unsigned long *vaddr)
{
__asm__ __volatile__ ("bfchg %1{%0:#1}"
:
: "d" (nr ^ 31), "o" (*vaddr)
: "memory");
}
#if defined(CONFIG_COLDFIRE)
#define change_bit(nr, vaddr) bchg_reg_change_bit(nr, vaddr)
#elif defined(CONFIG_CPU_HAS_NO_BITFIELDS)
#define change_bit(nr, vaddr) bchg_mem_change_bit(nr, vaddr)
#else
#define change_bit(nr, vaddr) (__builtin_constant_p(nr) ? \
bchg_mem_change_bit(nr, vaddr) : \
bfchg_mem_change_bit(nr, vaddr))
#endif
static __always_inline void
arch___change_bit(unsigned long nr, volatile unsigned long *addr)
{
change_bit(nr, addr);
}
#define arch_test_bit generic_test_bit
#define arch_test_bit_acquire generic_test_bit_acquire
static inline int bset_reg_test_and_set_bit(int nr,
volatile unsigned long *vaddr)
{
char *p = (char *)vaddr + (nr ^ 31) / 8;
char retval;
__asm__ __volatile__ ("bset %2,(%1); sne %0"
: "=d" (retval)
: "a" (p), "di" (nr & 7)
: "memory");
return retval;
}
static inline int bset_mem_test_and_set_bit(int nr,
volatile unsigned long *vaddr)
{
char *p = (char *)vaddr + (nr ^ 31) / 8;
char retval;
__asm__ __volatile__ ("bset %2,%1; sne %0"
: "=d" (retval), "+m" (*p)
: "di" (nr & 7));
return retval;
}
static inline int bfset_mem_test_and_set_bit(int nr,
volatile unsigned long *vaddr)
{
char retval;
__asm__ __volatile__ ("bfset %2{%1:#1}; sne %0"
: "=d" (retval)
: "d" (nr ^ 31), "o" (*vaddr)
: "memory");
return retval;
}
#if defined(CONFIG_COLDFIRE)
#define test_and_set_bit(nr, vaddr) bset_reg_test_and_set_bit(nr, vaddr)
#elif defined(CONFIG_CPU_HAS_NO_BITFIELDS)
#define test_and_set_bit(nr, vaddr) bset_mem_test_and_set_bit(nr, vaddr)
#else
#define test_and_set_bit(nr, vaddr) (__builtin_constant_p(nr) ? \
bset_mem_test_and_set_bit(nr, vaddr) : \
bfset_mem_test_and_set_bit(nr, vaddr))
#endif
static __always_inline bool
arch___test_and_set_bit(unsigned long nr, volatile unsigned long *addr)
{
return test_and_set_bit(nr, addr);
}
static inline int bclr_reg_test_and_clear_bit(int nr,
volatile unsigned long *vaddr)
{
char *p = (char *)vaddr + (nr ^ 31) / 8;
char retval;
__asm__ __volatile__ ("bclr %2,(%1); sne %0"
: "=d" (retval)
: "a" (p), "di" (nr & 7)
: "memory");
return retval;
}
static inline int bclr_mem_test_and_clear_bit(int nr,
volatile unsigned long *vaddr)
{
char *p = (char *)vaddr + (nr ^ 31) / 8;
char retval;
__asm__ __volatile__ ("bclr %2,%1; sne %0"
: "=d" (retval), "+m" (*p)
: "di" (nr & 7));
return retval;
}
static inline int bfclr_mem_test_and_clear_bit(int nr,
volatile unsigned long *vaddr)
{
char retval;
__asm__ __volatile__ ("bfclr %2{%1:#1}; sne %0"
: "=d" (retval)
: "d" (nr ^ 31), "o" (*vaddr)
: "memory");
return retval;
}
#if defined(CONFIG_COLDFIRE)
#define test_and_clear_bit(nr, vaddr) bclr_reg_test_and_clear_bit(nr, vaddr)
#elif defined(CONFIG_CPU_HAS_NO_BITFIELDS)
#define test_and_clear_bit(nr, vaddr) bclr_mem_test_and_clear_bit(nr, vaddr)
#else
#define test_and_clear_bit(nr, vaddr) (__builtin_constant_p(nr) ? \
bclr_mem_test_and_clear_bit(nr, vaddr) : \
bfclr_mem_test_and_clear_bit(nr, vaddr))
#endif
static __always_inline bool
arch___test_and_clear_bit(unsigned long nr, volatile unsigned long *addr)
{
return test_and_clear_bit(nr, addr);
}
static inline int bchg_reg_test_and_change_bit(int nr,
volatile unsigned long *vaddr)
{
char *p = (char *)vaddr + (nr ^ 31) / 8;
char retval;
__asm__ __volatile__ ("bchg %2,(%1); sne %0"
: "=d" (retval)
: "a" (p), "di" (nr & 7)
: "memory");
return retval;
}
static inline int bchg_mem_test_and_change_bit(int nr,
volatile unsigned long *vaddr)
{
char *p = (char *)vaddr + (nr ^ 31) / 8;
char retval;
__asm__ __volatile__ ("bchg %2,%1; sne %0"
: "=d" (retval), "+m" (*p)
: "di" (nr & 7));
return retval;
}
static inline int bfchg_mem_test_and_change_bit(int nr,
volatile unsigned long *vaddr)
{
char retval;
__asm__ __volatile__ ("bfchg %2{%1:#1}; sne %0"
: "=d" (retval)
: "d" (nr ^ 31), "o" (*vaddr)
: "memory");
return retval;
}
#if defined(CONFIG_COLDFIRE)
#define test_and_change_bit(nr, vaddr) bchg_reg_test_and_change_bit(nr, vaddr)
#elif defined(CONFIG_CPU_HAS_NO_BITFIELDS)
#define test_and_change_bit(nr, vaddr) bchg_mem_test_and_change_bit(nr, vaddr)
#else
#define test_and_change_bit(nr, vaddr) (__builtin_constant_p(nr) ? \
bchg_mem_test_and_change_bit(nr, vaddr) : \
bfchg_mem_test_and_change_bit(nr, vaddr))
#endif
static __always_inline bool
arch___test_and_change_bit(unsigned long nr, volatile unsigned long *addr)
{
return test_and_change_bit(nr, addr);
}
static inline bool xor_unlock_is_negative_byte(unsigned long mask,
volatile unsigned long *p)
{
#ifdef CONFIG_COLDFIRE
__asm__ __volatile__ ("eorl %1, %0"
: "+m" (*p)
: "d" (mask)
: "memory");
return *p & (1 << 7);
#else
char result;
char *cp = (char *)p + 3; /* m68k is big-endian */
__asm__ __volatile__ ("eor.b %1, %2; smi %0"
: "=d" (result)
: "di" (mask), "o" (*cp)
: "memory");
return result;
#endif
}
/*
* The true 68020 and more advanced processors support the "bfffo"
* instruction for finding bits. ColdFire and simple 68000 parts
* (including CPU32) do not support this. They simply use the generic
* functions.
*/
#if defined(CONFIG_CPU_HAS_NO_BITFIELDS)
#include <asm-generic/bitops/ffz.h>
#else
static inline int find_first_zero_bit(const unsigned long *vaddr,
unsigned size)
{
const unsigned long *p = vaddr;
int res = 32;
unsigned int words;
unsigned long num;
if (!size)
return 0;
words = (size + 31) >> 5;
while (!(num = ~*p++)) {
if (!--words)
goto out;
}
__asm__ __volatile__ ("bfffo %1{#0,#0},%0"
: "=d" (res) : "d" (num & -num));
res ^= 31;
out:
res += ((long)p - (long)vaddr - 4) * 8;
return res < size ? res : size;
}
#define find_first_zero_bit find_first_zero_bit
static inline int find_next_zero_bit(const unsigned long *vaddr, int size,
int offset)
{
const unsigned long *p = vaddr + (offset >> 5);
int bit = offset & 31UL, res;
if (offset >= size)
return size;
if (bit) {
unsigned long num = ~*p++ & (~0UL << bit);
offset -= bit;
/* Look for zero in first longword */
__asm__ __volatile__ ("bfffo %1{#0,#0},%0"
: "=d" (res) : "d" (num & -num));
if (res < 32) {
offset += res ^ 31;
return offset < size ? offset : size;
}
offset += 32;
if (offset >= size)
return size;
}
/* No zero yet, search remaining full bytes for a zero */
return offset + find_first_zero_bit(p, size - offset);
}
#define find_next_zero_bit find_next_zero_bit
static inline int find_first_bit(const unsigned long *vaddr, unsigned size)
{
const unsigned long *p = vaddr;
int res = 32;
unsigned int words;
unsigned long num;
if (!size)
return 0;
words = (size + 31) >> 5;
while (!(num = *p++)) {
if (!--words)
goto out;
}
__asm__ __volatile__ ("bfffo %1{#0,#0},%0"
: "=d" (res) : "d" (num & -num));
res ^= 31;
out:
res += ((long)p - (long)vaddr - 4) * 8;
return res < size ? res : size;
}
#define find_first_bit find_first_bit
static inline int find_next_bit(const unsigned long *vaddr, int size,
int offset)
{
const unsigned long *p = vaddr + (offset >> 5);
int bit = offset & 31UL, res;
if (offset >= size)
return size;
if (bit) {
unsigned long num = *p++ & (~0UL << bit);
offset -= bit;
/* Look for one in first longword */
__asm__ __volatile__ ("bfffo %1{#0,#0},%0"
: "=d" (res) : "d" (num & -num));
if (res < 32) {
offset += res ^ 31;
return offset < size ? offset : size;
}
offset += 32;
if (offset >= size)
return size;
}
/* No one yet, search remaining full bytes for a one */
return offset + find_first_bit(p, size - offset);
}
#define find_next_bit find_next_bit
/*
* ffz = Find First Zero in word. Undefined if no zero exists,
* so code should check against ~0UL first..
*/
static inline unsigned long ffz(unsigned long word)
{
int res;
__asm__ __volatile__ ("bfffo %1{#0,#0},%0"
: "=d" (res) : "d" (~word & -~word));
return res ^ 31;
}
#endif
#ifdef __KERNEL__
#if defined(CONFIG_CPU_HAS_NO_BITFIELDS)
/*
* The newer ColdFire family members support a "bitrev" instruction
* and we can use that to implement a fast ffs. Older Coldfire parts,
* and normal 68000 parts don't have anything special, so we use the
* generic functions for those.
*/
#if (defined(__mcfisaaplus__) || defined(__mcfisac__)) && \
!defined(CONFIG_M68000)
static inline unsigned long __ffs(unsigned long x)
{
__asm__ __volatile__ ("bitrev %0; ff1 %0"
: "=d" (x)
: "0" (x));
return x;
}
static inline int ffs(int x)
{
if (!x)
return 0;
return __ffs(x) + 1;
}
#else
#include <asm-generic/bitops/ffs.h>
#include <asm-generic/bitops/__ffs.h>
#endif
#include <asm-generic/bitops/fls.h>
#include <asm-generic/bitops/__fls.h>
#else
/*
* ffs: find first bit set. This is defined the same way as
* the libc and compiler builtin ffs routines, therefore
* differs in spirit from the above ffz (man ffs).
*/
static inline int ffs(int x)
{
int cnt;
__asm__ ("bfffo %1{#0:#0},%0"
: "=d" (cnt)
: "dm" (x & -x));
return 32 - cnt;
}
static inline unsigned long __ffs(unsigned long x)
{
return ffs(x) - 1;
}
/*
* fls: find last bit set.
*/
static inline int fls(unsigned int x)
{
int cnt;
__asm__ ("bfffo %1{#0,#0},%0"
: "=d" (cnt)
: "dm" (x));
return 32 - cnt;
}
static inline unsigned long __fls(unsigned long x)
{
return fls(x) - 1;
}
#endif
/* Simple test-and-set bit locks */
#define test_and_set_bit_lock test_and_set_bit
#define clear_bit_unlock clear_bit
#define __clear_bit_unlock clear_bit_unlock
#include <asm-generic/bitops/non-instrumented-non-atomic.h>
#include <asm-generic/bitops/ext2-atomic.h>
#include <asm-generic/bitops/fls64.h>
#include <asm-generic/bitops/sched.h>
#include <asm-generic/bitops/hweight.h>
#include <asm-generic/bitops/le.h>
#endif /* __KERNEL__ */
#endif /* _M68K_BITOPS_H */
| Name | Type | Size | Permission | Actions |
|---|---|---|---|---|
| Kbuild | File | 194 B | 0644 |
|
| MC68328.h | File | 37.82 KB | 0644 |
|
| MC68EZ328.h | File | 37.74 KB | 0644 |
|
| MC68VZ328.h | File | 41.02 KB | 0644 |
|
| adb_iop.h | File | 1.16 KB | 0644 |
|
| amigahw.h | File | 10.49 KB | 0644 |
|
| amigaints.h | File | 3.5 KB | 0644 |
|
| amigayle.h | File | 3.19 KB | 0644 |
|
| amipcmcia.h | File | 2.51 KB | 0644 |
|
| apollohw.h | File | 2.35 KB | 0644 |
|
| asm-offsets.h | File | 35 B | 0644 |
|
| asm-prototypes.h | File | 211 B | 0644 |
|
| atari_joystick.h | File | 457 B | 0644 |
|
| atari_stdma.h | File | 514 B | 0644 |
|
| atari_stram.h | File | 528 B | 0644 |
|
| atarihw.h | File | 20.43 KB | 0644 |
|
| atariints.h | File | 5.56 KB | 0644 |
|
| atarikb.h | File | 1.4 KB | 0644 |
|
| atomic.h | File | 5.18 KB | 0644 |
|
| bitops.h | File | 13.2 KB | 0644 |
|
| blinken.h | File | 641 B | 0644 |
|
| bootinfo.h | File | 783 B | 0644 |
|
| bootstd.h | File | 4.64 KB | 0644 |
|
| bug.h | File | 659 B | 0644 |
|
| bvme6000hw.h | File | 3.45 KB | 0644 |
|
| cache.h | File | 296 B | 0644 |
|
| cacheflush.h | File | 133 B | 0644 |
|
| cacheflush_mm.h | File | 7.29 KB | 0644 |
|
| cacheflush_no.h | File | 1.84 KB | 0644 |
|
| cachetype.h | File | 174 B | 0644 |
|
| checksum.h | File | 3.42 KB | 0644 |
|
| cmpxchg.h | File | 3.03 KB | 0644 |
|
| coldfire.h | File | 1.61 KB | 0644 |
|
| config.h | File | 1.26 KB | 0644 |
|
| contregs.h | File | 3.31 KB | 0644 |
|
| current.h | File | 640 B | 0644 |
|
| delay.h | File | 3.42 KB | 0644 |
|
| div64.h | File | 959 B | 0644 |
|
| dma.h | File | 266 B | 0644 |
|
| dsp56k.h | File | 1.24 KB | 0644 |
|
| dvma.h | File | 9.86 KB | 0644 |
|
| elf.h | File | 3.35 KB | 0644 |
|
| entry.h | File | 5.76 KB | 0644 |
|
| fbio.h | File | 9.87 KB | 0644 |
|
| flat.h | File | 333 B | 0644 |
|
| floppy.h | File | 5.21 KB | 0644 |
|
| fpu.h | File | 535 B | 0644 |
|
| ftrace.h | File | 12 B | 0644 |
|
| hash.h | File | 2.07 KB | 0644 |
|
| hp300hw.h | File | 186 B | 0644 |
|
| hwtest.h | File | 467 B | 0644 |
|
| idprom.h | File | 725 B | 0644 |
|
| intersil.h | File | 1.11 KB | 0644 |
|
| io.h | File | 309 B | 0644 |
|
| io_mm.h | File | 12.65 KB | 0644 |
|
| io_no.h | File | 4.1 KB | 0644 |
|
| irq.h | File | 2.65 KB | 0644 |
|
| irqflags.h | File | 1.61 KB | 0644 |
|
| kexec.h | File | 742 B | 0644 |
|
| kmap.h | File | 1.66 KB | 0644 |
|
| libgcc.h | File | 782 B | 0644 |
|
| linkage.h | File | 1.55 KB | 0644 |
|
| m5206sim.h | File | 6.4 KB | 0644 |
|
| m520xsim.h | File | 7.15 KB | 0644 |
|
| m523xsim.h | File | 7.7 KB | 0644 |
|
| m525xsim.h | File | 10.57 KB | 0644 |
|
| m5272sim.h | File | 6.05 KB | 0644 |
|
| m527xsim.h | File | 13.51 KB | 0644 |
|
| m528xsim.h | File | 9.37 KB | 0644 |
|
| m52xxacr.h | File | 3.57 KB | 0644 |
|
| m5307sim.h | File | 7.52 KB | 0644 |
|
| m53xxacr.h | File | 3.6 KB | 0644 |
|
| m53xxsim.h | File | 53.97 KB | 0644 |
|
| m5407sim.h | File | 6.14 KB | 0644 |
|
| m5441xsim.h | File | 10.05 KB | 0644 |
|
| m54xxacr.h | File | 4.82 KB | 0644 |
|
| m54xxgpt.h | File | 3.66 KB | 0644 |
|
| m54xxpci.h | File | 6.13 KB | 0644 |
|
| m54xxsim.h | File | 3.8 KB | 0644 |
|
| mac_asc.h | File | 520 B | 0644 |
|
| mac_baboon.h | File | 999 B | 0644 |
|
| mac_iop.h | File | 5.37 KB | 0644 |
|
| mac_oss.h | File | 1.83 KB | 0644 |
|
| mac_psc.h | File | 7.25 KB | 0644 |
|
| mac_via.h | File | 11.24 KB | 0644 |
|
| machdep.h | File | 1.22 KB | 0644 |
|
| machines.h | File | 3.13 KB | 0644 |
|
| machw.h | File | 588 B | 0644 |
|
| macintosh.h | File | 2.38 KB | 0644 |
|
| macints.h | File | 3.13 KB | 0644 |
|
| math-emu.h | File | 6.74 KB | 0644 |
|
| mc146818rtc.h | File | 598 B | 0644 |
|
| mcf8390.h | File | 3.75 KB | 0644 |
|
| mcf_pgalloc.h | File | 2.09 KB | 0644 |
|
| mcf_pgtable.h | File | 7.23 KB | 0644 |
|
| mcfclk.h | File | 961 B | 0644 |
|
| mcfdma.h | File | 6.51 KB | 0644 |
|
| mcfgpio.h | File | 7.95 KB | 0644 |
|
| mcfintc.h | File | 3.09 KB | 0644 |
|
| mcfmmu.h | File | 3.67 KB | 0644 |
|
| mcfpit.h | File | 2.22 KB | 0644 |
|
| mcfqspi.h | File | 1.43 KB | 0644 |
|
| mcfsim.h | File | 1.5 KB | 0644 |
|
| mcfslt.h | File | 1.21 KB | 0644 |
|
| mcftimer.h | File | 2.3 KB | 0644 |
|
| mcfuart.h | File | 6.91 KB | 0644 |
|
| mcfwdebug.h | File | 4.99 KB | 0644 |
|
| mmu.h | File | 214 B | 0644 |
|
| mmu_context.h | File | 7.1 KB | 0644 |
|
| module.h | File | 847 B | 0644 |
|
| module.lds.h | File | 91 B | 0644 |
|
| motorola_pgalloc.h | File | 2.06 KB | 0644 |
|
| motorola_pgtable.h | File | 7.25 KB | 0644 |
|
| movs.h | File | 1.44 KB | 0644 |
|
| mvme147hw.h | File | 2.66 KB | 0644 |
|
| mvme16xhw.h | File | 1.96 KB | 0644 |
|
| natfeat.h | File | 533 B | 0644 |
|
| nettel.h | File | 3.01 KB | 0644 |
|
| nubus.h | File | 1.23 KB | 0644 |
|
| openprom.h | File | 7.98 KB | 0644 |
|
| oplib.h | File | 9.58 KB | 0644 |
|
| page.h | File | 1.39 KB | 0644 |
|
| page_mm.h | File | 3.3 KB | 0644 |
|
| page_no.h | File | 1.2 KB | 0644 |
|
| page_offset.h | File | 256 B | 0644 |
|
| parport.h | File | 837 B | 0644 |
|
| pci.h | File | 228 B | 0644 |
|
| pgalloc.h | File | 444 B | 0644 |
|
| pgtable.h | File | 292 B | 0644 |
|
| pgtable_mm.h | File | 5.12 KB | 0644 |
|
| pgtable_no.h | File | 1.1 KB | 0644 |
|
| processor.h | File | 4.21 KB | 0644 |
|
| ptrace.h | File | 643 B | 0644 |
|
| q40_master.h | File | 2.3 KB | 0644 |
|
| q40ints.h | File | 749 B | 0644 |
|
| quicc_simple.h | File | 1.79 KB | 0644 |
|
| raw_io.h | File | 11.82 KB | 0644 |
|
| seccomp.h | File | 283 B | 0644 |
|
| serial.h | File | 1.14 KB | 0644 |
|
| setup.h | File | 10.17 KB | 0644 |
|
| signal.h | File | 1.34 KB | 0644 |
|
| smp.h | File | 32 B | 0644 |
|
| string.h | File | 1.25 KB | 0644 |
|
| sun3-head.h | File | 353 B | 0644 |
|
| sun3_pgalloc.h | File | 1.26 KB | 0644 |
|
| sun3_pgtable.h | File | 6.66 KB | 0644 |
|
| sun3ints.h | File | 989 B | 0644 |
|
| sun3mmu.h | File | 4.91 KB | 0644 |
|
| sun3x.h | File | 868 B | 0644 |
|
| sun3xflop.h | File | 5.62 KB | 0644 |
|
| sun3xprom.h | File | 1.31 KB | 0644 |
|
| switch_to.h | File | 1.51 KB | 0644 |
|
| syscall.h | File | 1.41 KB | 0644 |
|
| syscalls.h | File | 653 B | 0644 |
|
| thread_info.h | File | 2.29 KB | 0644 |
|
| timex.h | File | 974 B | 0644 |
|
| tlb.h | File | 135 B | 0644 |
|
| tlbflush.h | File | 5.72 KB | 0644 |
|
| traps.h | File | 8.41 KB | 0644 |
|
| uaccess.h | File | 11.93 KB | 0644 |
|
| ucontext.h | File | 570 B | 0644 |
|
| unistd.h | File | 962 B | 0644 |
|
| user.h | File | 3.64 KB | 0644 |
|
| vga.h | File | 902 B | 0644 |
|
| video.h | File | 733 B | 0644 |
|
| virt.h | File | 502 B | 0644 |
|
| virtconvert.h | File | 815 B | 0644 |
|
| vmalloc.h | File | 90 B | 0644 |
|
| zorro.h | File | 1.19 KB | 0644 |
|