data_type
large_stringclasses
3 values
source
large_stringclasses
29 values
code
large_stringlengths
98
49.4M
filepath
large_stringlengths
5
161
message
large_stringclasses
234 values
commit
large_stringclasses
234 values
subject
large_stringclasses
418 values
critique
large_stringlengths
101
1.26M
metadata
dict
source
linux
/* SPDX-License-Identifier: GPL-2.0 */ #ifndef _M68K_SIGNAL_H #define _M68K_SIGNAL_H #include <uapi/asm/signal.h> /* Most things should be clean enough to redefine this at will, if care is taken to make libc match. */ #define _NSIG 64 #define _NSIG_BPW 32 #define _NSIG_WORDS (_NSIG / _NSIG_BPW) typedef unsigne...
arch/m68k/include/asm/signal.h
null
null
null
null
null
source
linux
/* SPDX-License-Identifier: GPL-2.0 */ #ifndef _M68K_STRING_H_ #define _M68K_STRING_H_ #include <linux/types.h> #include <linux/compiler.h> #define __HAVE_ARCH_STRNLEN static inline size_t strnlen(const char *s, size_t count) { const char *sc = s; asm volatile ("\n" "1: subq.l #1,%1\n" " jcs 2f\...
arch/m68k/include/asm/string.h
null
null
null
null
null
source
linux
/* SPDX-License-Identifier: GPL-2.0 */ #ifndef __SUN3_HEAD_H #define __SUN3_HEAD_H #define KERNBASE 0xE000000 /* First address the kernel will eventually be */ #define LOAD_ADDR 0x4000 /* prom jumps to us here unless this is elf /boot */ #define FC_CONTROL 3 #define FC_SUPERD 5 #define FC_CPU ...
arch/m68k/include/asm/sun3-head.h
null
null
null
null
null
source
linux
/* SPDX-License-Identifier: GPL-2.0 */ /* sun3_pgalloc.h -- * reorganization around 2.3.39, routines moved from sun3_pgtable.h * * * 02/27/2002 -- Modified to support "highpte" implementation in 2.5.5 (Sam) * * moved 1/26/2000 Sam Creasey */ #ifndef _SUN3_PGALLOC_H #define _SUN3_PGALLOC_H #include <asm/tlb.h> ...
arch/m68k/include/asm/sun3_pgalloc.h
null
null
null
null
null
source
linux
/* SPDX-License-Identifier: GPL-2.0 */ #ifndef _SUN3_PGTABLE_H #define _SUN3_PGTABLE_H #include <asm/sun3mmu.h> #ifndef __ASSEMBLER__ #include <asm/virtconvert.h> #include <linux/linkage.h> /* * This file contains all the things which change drastically for the sun3 * pagetable stuff, to avoid making too much of a...
arch/m68k/include/asm/sun3_pgtable.h
null
null
null
null
null
source
linux
/* * sun3ints.h -- Linux/Sun3 interrupt handling code definitions * * Erik Verbruggen (erik@bigmama.xtdnet.nl) * * 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 SUN3INTS_H #define ...
arch/m68k/include/asm/sun3ints.h
null
null
null
null
null
source
linux
/* SPDX-License-Identifier: GPL-2.0 */ /* * Definitions for Sun3 custom MMU. */ #ifndef __SUN3_MMU_H__ #define __SUN3_MMU_H__ #include <linux/types.h> #include <asm/movs.h> #include <asm/sun3-head.h> /* MMU characteristics. */ #define SUN3_SEGMAPS_PER_CONTEXT 2048 #define SUN3_PMEGS_NUM 256 #define SUN3_CONTEXTS_...
arch/m68k/include/asm/sun3mmu.h
null
null
null
null
null
source
linux
/* SPDX-License-Identifier: GPL-2.0 */ #ifndef SUN3X_H #define SUN3X_H /* hardware addresses */ #define SUN3X_IOMMU 0x60000000 #define SUN3X_ENAREG 0x61000000 #define SUN3X_INTREG 0x61001400 #define SUN3X_DIAGREG 0x61001800 #define SUN3X_ZS1 0x62000000 #define SUN3X_ZS2 0x62002000 #...
arch/m68k/include/asm/sun3x.h
null
null
null
null
null
source
linux
/* SPDX-License-Identifier: GPL-2.0 */ /* sun3xflop.h: Sun3/80 specific parts of the floppy driver. * * Derived partially from asm-sparc/floppy.h, which is: * Copyright (C) 1995 David S. Miller (davem@caip.rutgers.edu) * * Sun3x version 2/4/2000 Sam Creasey (sammy@sammy.net) */ #ifndef __ASM_SUN3X_FLOPPY_H #...
arch/m68k/include/asm/sun3xflop.h
null
null
null
null
null
source
linux
/* SPDX-License-Identifier: GPL-2.0 */ /* Useful PROM locations */ #ifndef SUN3X_PROM_H #define SUN3X_PROM_H extern void (*sun3x_putchar)(int); extern int (*sun3x_getchar)(void); extern int (*sun3x_mayget)(void); extern int (*sun3x_mayput)(int); void sun3x_reboot(void); void sun3x_abort(void); void sun3x_prom_init(v...
arch/m68k/include/asm/sun3xprom.h
null
null
null
null
null
source
linux
/* SPDX-License-Identifier: GPL-2.0 */ #ifndef _M68K_SWITCH_TO_H #define _M68K_SWITCH_TO_H /* * switch_to(n) should switch tasks to task ptr, first checking that * ptr isn't the current task, in which case it does nothing. This * also clears the TS-flag if the task we switched to has used the * math co-processor ...
arch/m68k/include/asm/switch_to.h
null
null
null
null
null
source
linux
/* SPDX-License-Identifier: GPL-2.0 */ #ifndef _ASM_M68K_SYSCALL_H #define _ASM_M68K_SYSCALL_H #include <uapi/linux/audit.h> #include <asm/unistd.h> extern const unsigned long sys_call_table[]; static inline int syscall_get_nr(struct task_struct *task, struct pt_regs *regs) { return regs->orig_d0; } static i...
arch/m68k/include/asm/syscall.h
null
null
null
null
null
source
linux
/* SPDX-License-Identifier: GPL-2.0-only */ #ifndef _ASM_M68K_SYSCALLS_H #define _ASM_M68K_SYSCALLS_H #include <linux/compiler_types.h> #include <linux/linkage.h> asmlinkage int sys_cacheflush(unsigned long addr, int scope, int cache, unsigned long len); asmlinkage int sys_atomic_cmpxchg_32(unsigned long new...
arch/m68k/include/asm/syscalls.h
null
null
null
null
null
source
linux
/* SPDX-License-Identifier: GPL-2.0 */ #ifndef _ASM_M68K_THREAD_INFO_H #define _ASM_M68K_THREAD_INFO_H #include <asm/types.h> #include <asm/page.h> /* * On machines with 4k pages we default to an 8k thread size, though we * allow a 4k with config option. Any other machine page size then * the thread size must matc...
arch/m68k/include/asm/thread_info.h
null
null
null
null
null
source
linux
/* SPDX-License-Identifier: GPL-2.0 */ /* * linux/include/asm-m68k/timex.h * * m68k architecture timex specifications */ #ifndef _ASMm68K_TIMEX_H #define _ASMm68K_TIMEX_H #ifdef CONFIG_COLDFIRE /* * CLOCK_TICK_RATE should give the underlying frequency of the tick timer * to make ntp work best. For Coldfires, th...
arch/m68k/include/asm/timex.h
null
null
null
null
null
source
linux
/* SPDX-License-Identifier: GPL-2.0 */ #ifndef _M68K_TLB_H #define _M68K_TLB_H #include <asm-generic/tlb.h> #endif /* _M68K_TLB_H */
arch/m68k/include/asm/tlb.h
null
null
null
null
null
source
linux
/* SPDX-License-Identifier: GPL-2.0 */ #ifndef _M68K_TLBFLUSH_H #define _M68K_TLBFLUSH_H #ifdef CONFIG_MMU #ifndef CONFIG_SUN3 #include <asm/current.h> #include <asm/mcfmmu.h> static inline void flush_tlb_kernel_page(void *addr) { if (CPU_IS_COLDFIRE) { mmu_write(MMUOR, MMUOR_CNL); } else if (CPU_IS_040_OR_060) ...
arch/m68k/include/asm/tlbflush.h
null
null
null
null
null
source
linux
/* * linux/include/asm/traps.h * * Copyright (C) 1993 Hamish Macdonald * * 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 _M68K_TRAPS_H #define _M68K_TRAPS_H #ifndef __ASS...
arch/m68k/include/asm/traps.h
null
null
null
null
null
source
linux
/* SPDX-License-Identifier: GPL-2.0 */ #ifndef __M68K_UACCESS_H #define __M68K_UACCESS_H #ifdef CONFIG_MMU /* * User space memory access functions */ #include <linux/compiler.h> #include <linux/types.h> #include <asm/extable.h> #include <asm-generic/access_ok.h> /* * Not all varients of the 68k family support the...
arch/m68k/include/asm/uaccess.h
null
null
null
null
null
source
linux
/* SPDX-License-Identifier: GPL-2.0 */ #ifndef _M68K_UCONTEXT_H #define _M68K_UCONTEXT_H typedef int greg_t; #define NGREG 18 typedef greg_t gregset_t[NGREG]; typedef struct fpregset { int f_fpcntl[3]; int f_fpregs[8*3]; } fpregset_t; struct mcontext { int version; gregset_t gregs; fpregset_t fpregs; }; #defin...
arch/m68k/include/asm/ucontext.h
null
null
null
null
null
source
linux
/* SPDX-License-Identifier: GPL-2.0 */ #ifndef _ASM_M68K_UNISTD_H_ #define _ASM_M68K_UNISTD_H_ #include <uapi/asm/unistd.h> #define NR_syscalls __NR_syscalls #define __ARCH_WANT_NEW_STAT #define __ARCH_WANT_OLD_READDIR #define __ARCH_WANT_OLD_STAT #define __ARCH_WANT_STAT64 #define __ARCH_WANT_SYS_ALARM #define __AR...
arch/m68k/include/asm/unistd.h
null
null
null
null
null
source
linux
/* SPDX-License-Identifier: GPL-2.0 */ #ifndef _M68K_USER_H #define _M68K_USER_H /* Core file format: The core file is written in such a way that gdb can understand it and provide useful information to the user (under linux we use the 'trad-core' bfd). There are quite a number of obstacles to being able to v...
arch/m68k/include/asm/user.h
null
null
null
null
null
source
linux
/* SPDX-License-Identifier: GPL-2.0 */ #ifndef _ASM_M68K_VGA_H #define _ASM_M68K_VGA_H /* * Some ColdFire platforms do in fact have a PCI bus. So for those we want * to use the real IO access functions, don't fake them out or redirect them * for that case. */ #ifndef CONFIG_PCI #include <asm/io.h> #include <asm/k...
arch/m68k/include/asm/vga.h
null
null
null
null
null
source
linux
/* SPDX-License-Identifier: GPL-2.0 */ #ifndef _ASM_VIDEO_H_ #define _ASM_VIDEO_H_ #include <asm/page.h> #include <asm/setup.h> static inline pgprot_t pgprot_framebuffer(pgprot_t prot, unsigned long vm_start, unsigned long vm_end, unsigned long offset) { #ifdef CONFIG_MMU #ifdef CONFIG_SUN3 pgprot_val(...
arch/m68k/include/asm/video.h
null
null
null
null
null
source
linux
/* SPDX-License-Identifier: GPL-2.0 */ #ifndef __ASM_VIRT_H #define __ASM_VIRT_H #define NUM_VIRT_SOURCES 200 struct virt_booter_device_data { u32 mmio; u32 irq; }; struct virt_booter_data { u32 qemu_version; struct virt_booter_device_data pic; struct virt_booter_device_data rtc; struct virt_booter_device_data...
arch/m68k/include/asm/virt.h
null
null
null
null
null
source
linux
/* SPDX-License-Identifier: GPL-2.0 */ #ifndef __VIRT_CONVERT__ #define __VIRT_CONVERT__ /* * Macros used for converting between virtual and physical mappings. */ #ifdef __KERNEL__ #include <linux/compiler.h> #include <linux/mmzone.h> #include <asm/setup.h> #include <asm/page.h> /* * Change virtual addresses to ...
arch/m68k/include/asm/virtconvert.h
null
null
null
null
null
source
linux
/* SPDX-License-Identifier: GPL-2.0 */ #ifndef _ASM_M68K_ZORRO_H #define _ASM_M68K_ZORRO_H #include <asm/raw_io.h> #include <asm/kmap.h> #define z_readb raw_inb #define z_readw raw_inw #define z_readl raw_inl #define z_writeb raw_outb #define z_writew raw_outw #define z_writel raw_outl #define z_memset_io(a,b,c) me...
arch/m68k/include/asm/zorro.h
null
null
null
null
null
source
linux
/* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */ #ifndef __M68K_A_OUT_H__ #define __M68K_A_OUT_H__ struct exec { unsigned long a_info; /* Use macros N_MAGIC, etc for access */ unsigned a_text; /* length of text, in bytes */ unsigned a_data; /* length of data, in bytes */ unsigned a_bss; /* le...
arch/m68k/include/uapi/asm/a.out.h
null
null
null
null
null
source
linux
/* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */ /* ** asm/bootinfo-amiga.h -- Amiga-specific boot information definitions */ #ifndef _UAPI_ASM_M68K_BOOTINFO_AMIGA_H #define _UAPI_ASM_M68K_BOOTINFO_AMIGA_H /* * Amiga-specific tags */ #define BI_AMIGA_MODEL 0x8000 /* model (__be32) */ #...
arch/m68k/include/uapi/asm/bootinfo-amiga.h
null
null
null
null
null
source
linux
/* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */ /* ** asm/bootinfo-apollo.h -- Apollo-specific boot information definitions */ #ifndef _UAPI_ASM_M68K_BOOTINFO_APOLLO_H #define _UAPI_ASM_M68K_BOOTINFO_APOLLO_H /* * Apollo-specific tags */ #define BI_APOLLO_MODEL 0x8000 /* model (__be32...
arch/m68k/include/uapi/asm/bootinfo-apollo.h
null
null
null
null
null
source
linux
/* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */ /* ** asm/bootinfo-atari.h -- Atari-specific boot information definitions */ #ifndef _UAPI_ASM_M68K_BOOTINFO_ATARI_H #define _UAPI_ASM_M68K_BOOTINFO_ATARI_H /* * Atari-specific tags */ #define BI_ATARI_MCH_COOKIE 0x8000 /* _MCH cookie fro...
arch/m68k/include/uapi/asm/bootinfo-atari.h
null
null
null
null
null
source
linux
/* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */ /* ** asm/bootinfo-hp300.h -- HP9000/300-specific boot information definitions */ #ifndef _UAPI_ASM_M68K_BOOTINFO_HP300_H #define _UAPI_ASM_M68K_BOOTINFO_HP300_H /* * HP9000/300-specific tags */ #define BI_HP300_MODEL 0x8000 /* model (__...
arch/m68k/include/uapi/asm/bootinfo-hp300.h
null
null
null
null
null
source
linux
/* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */ /* ** asm/bootinfo-mac.h -- Macintosh-specific boot information definitions */ #ifndef _UAPI_ASM_M68K_BOOTINFO_MAC_H #define _UAPI_ASM_M68K_BOOTINFO_MAC_H /* * Macintosh-specific tags (all __be32) */ #define BI_MAC_MODEL 0x8000 /* Mac Ge...
arch/m68k/include/uapi/asm/bootinfo-mac.h
null
null
null
null
null
source
linux
/* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */ /* ** asm/bootinfo-q40.h -- Q40-specific boot information definitions */ #ifndef _UAPI_ASM_M68K_BOOTINFO_Q40_H #define _UAPI_ASM_M68K_BOOTINFO_Q40_H /* * Latest Q40 bootinfo version */ #define Q40_BOOTI_VERSION MK_BI_VERSION(2, 0) #endi...
arch/m68k/include/uapi/asm/bootinfo-q40.h
null
null
null
null
null
source
linux
/* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */ /* * asm/bootinfo-virt.h -- Virtual-m68k-specific boot information definitions */ #ifndef _UAPI_ASM_M68K_BOOTINFO_VIRT_H #define _UAPI_ASM_M68K_BOOTINFO_VIRT_H #define BI_VIRT_QEMU_VERSION 0x8000 #define BI_VIRT_GF_PIC_BASE 0x8001 #define BI_VIRT_GF_RTC...
arch/m68k/include/uapi/asm/bootinfo-virt.h
null
null
null
null
null
source
linux
/* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */ /* ** asm/bootinfo-vme.h -- VME-specific boot information definitions */ #ifndef _UAPI_ASM_M68K_BOOTINFO_VME_H #define _UAPI_ASM_M68K_BOOTINFO_VME_H #include <linux/types.h> /* * VME-specific tags */ #define BI_VME_TYPE 0x8000 /* VME s...
arch/m68k/include/uapi/asm/bootinfo-vme.h
null
null
null
null
null
source
linux
/* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */ /* * asm/bootinfo.h -- Definition of the Linux/m68k boot information structure * * Copyright 1992 by Greg Harp * * This file is subject to the terms and conditions of the GNU General Public * License. See the file COPYING in the main directory of thi...
arch/m68k/include/uapi/asm/bootinfo.h
null
null
null
null
null
source
linux
/* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */ #ifndef _M68K_BYTEORDER_H #define _M68K_BYTEORDER_H #include <linux/byteorder/big_endian.h> #endif /* _M68K_BYTEORDER_H */
arch/m68k/include/uapi/asm/byteorder.h
null
null
null
null
null
source
linux
/* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */ #ifndef _M68K_CACHECTL_H #define _M68K_CACHECTL_H /* Definitions for the cacheflush system call. */ #define FLUSH_SCOPE_LINE 1 /* Flush a cache line */ #define FLUSH_SCOPE_PAGE 2 /* Flush a page */ #define FLUSH_SCOPE_ALL 3 /* Flush the whole c...
arch/m68k/include/uapi/asm/cachectl.h
null
null
null
null
null
source
linux
/* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */ #ifndef _M68K_FCNTL_H #define _M68K_FCNTL_H #define O_DIRECTORY 040000 /* must be a directory */ #define O_NOFOLLOW 0100000 /* don't follow links */ #define O_DIRECT 0200000 /* direct disk access hint - currently ignored */ #define O_LARGEFILE 0400000 #in...
arch/m68k/include/uapi/asm/fcntl.h
null
null
null
null
null
source
linux
/* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */ #ifndef __ARCH_M68K_IOCTLS_H__ #define __ARCH_M68K_IOCTLS_H__ #define FIOQSIZE 0x545E #include <asm-generic/ioctls.h> #endif /* __ARCH_M68K_IOCTLS_H__ */
arch/m68k/include/uapi/asm/ioctls.h
null
null
null
null
null
source
linux
/* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */ #ifndef _M68K_PARAM_H #define _M68K_PARAM_H #ifdef __uClinux__ #define EXEC_PAGESIZE 4096 #else #define EXEC_PAGESIZE 8192 #endif #include <asm-generic/param.h> #endif /* _M68K_PARAM_H */
arch/m68k/include/uapi/asm/param.h
null
null
null
null
null
source
linux
/* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */ #ifndef __m68k_POLL_H #define __m68k_POLL_H #define POLLWRNORM POLLOUT #define POLLWRBAND 256 #include <asm-generic/poll.h> #endif
arch/m68k/include/uapi/asm/poll.h
null
null
null
null
null
source
linux
/* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */ #ifndef __ARCH_M68K_POSIX_TYPES_H #define __ARCH_M68K_POSIX_TYPES_H /* * This file is generally used by user-level software, so you need to * be a little careful about namespace pollution etc. Also, we cannot * assume GCC is being used. */ typedef un...
arch/m68k/include/uapi/asm/posix_types.h
null
null
null
null
null
source
linux
/* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */ #ifndef _UAPI_M68K_PTRACE_H #define _UAPI_M68K_PTRACE_H #define PT_D1 0 #define PT_D2 1 #define PT_D3 2 #define PT_D4 3 #define PT_D5 4 #define PT_D6 5 #define PT_D7 6 #define PT_A0 7 #define PT_A1 8 #define PT_A2 9 #define PT...
arch/m68k/include/uapi/asm/ptrace.h
null
null
null
null
null
source
linux
/* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */ /* ** asm/setup.h -- Definition of the Linux/m68k setup information ** ** Copyright 1992 by Greg Harp ** ** 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 **...
arch/m68k/include/uapi/asm/setup.h
null
null
null
null
null
source
linux
/* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */ #ifndef _ASM_M68k_SIGCONTEXT_H #define _ASM_M68k_SIGCONTEXT_H struct sigcontext { unsigned long sc_mask; /* old sigmask */ unsigned long sc_usp; /* old user stack pointer */ unsigned long sc_d0; unsigned long sc_d1; unsigned long sc_a0; unsign...
arch/m68k/include/uapi/asm/sigcontext.h
null
null
null
null
null
source
linux
/* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */ #ifndef _UAPI_M68K_SIGNAL_H #define _UAPI_M68K_SIGNAL_H #include <linux/types.h> /* Avoid too many header ordering problems. */ struct siginfo; #ifndef __KERNEL__ /* Here we must cater to libcs that poke about in kernel headers. */ #define NSIG 32 ty...
arch/m68k/include/uapi/asm/signal.h
null
null
null
null
null
source
linux
/* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */ #ifndef _M68K_STAT_H #define _M68K_STAT_H struct __old_kernel_stat { unsigned short st_dev; unsigned short st_ino; unsigned short st_mode; unsigned short st_nlink; unsigned short st_uid; unsigned short st_gid; unsigned short st_rdev; unsigned long ...
arch/m68k/include/uapi/asm/stat.h
null
null
null
null
null
source
linux
/* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */ #ifndef _M68K_SWAB_H #define _M68K_SWAB_H #include <linux/types.h> #include <linux/compiler.h> #define __SWAB_64_THRU_32__ #if defined (__mcfisaaplus__) || defined (__mcfisac__) static inline __attribute_const__ __u32 __arch_swab32(__u32 val) { __asm__(...
arch/m68k/include/uapi/asm/swab.h
null
null
null
null
null
source
linux
/* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */ #ifndef _UAPI_ASM_M68K_UNISTD_H_ #define _UAPI_ASM_M68K_UNISTD_H_ #include <asm/unistd_32.h> #endif /* _UAPI_ASM_M68K_UNISTD_H_ */
arch/m68k/include/uapi/asm/unistd.h
null
null
null
null
null
source
linux
// SPDX-License-Identifier: GPL-2.0 /* * This program is used to generate definitions needed by * assembly language modules. * * We use the technique used in the OSF Mach kernel code: * generate asm statements containing #defines, * compile this file to assembler, and then extract the * #defines from the assembl...
arch/m68k/kernel/asm-offsets.c
null
null
null
null
null
source
linux
// SPDX-License-Identifier: GPL-2.0 /* * Based on arch/arm/kernel/atags_proc.c */ #include <linux/fs.h> #include <linux/init.h> #include <linux/printk.h> #include <linux/proc_fs.h> #include <linux/slab.h> #include <linux/string.h> #include <asm/bootinfo.h> #include <asm/byteorder.h> static char bootinfo_tmp[1536]...
arch/m68k/kernel/bootinfo_proc.c
null
null
null
null
null
source
linux
/* * 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. */ #include <linux/dma-map-ops.h> #include <linux/kernel.h> #include <asm/cacheflush.h> #ifndef CONFIG_COLDFIRE void arch_dma_prep_coherent(str...
arch/m68k/kernel/dma.c
null
null
null
null
null
source
linux
/* * 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. * * Copyright (c) 2014 Finn Thain */ #include <linux/kernel.h> #include <linux/console.h> #include <linux/init.h> #include <linux/string.h> ...
arch/m68k/kernel/early_printk.c
null
null
null
null
null
source
linux
/* SPDX-License-Identifier: GPL-2.0-or-later * -*- mode: asm -*- * * linux/arch/m68k/kernel/entry.S * * Copyright (C) 1991, 1992 Linus Torvalds * * Linux/m68k support by Hamish Macdonald * * 68060 fixes by Jesper Skov * */ /* * entry.S contains the system-call and fault low-level handling routines. * ...
arch/m68k/kernel/entry.S
null
null
null
null
null
source
linux
/* SPDX-License-Identifier: GPL-2.0-or-later ** -*- mode: asm -*- ** ** head.S -- This file contains the initial boot code for the ** Linux/68k kernel. ** ** Copyright 1993 by Hamish Macdonald ** ** 68040 fixes by Michael Rausch ** 68060 fixes by Roman Hodek ** MMU cleanup by Randy Thelen ** Final MMU cleanup by R...
arch/m68k/kernel/head.S
null
null
null
null
null
source
linux
/* * linux/arch/m68k/kernel/ints.c -- Linux/m68k general interrupt handling code * * 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. */ #include <linux/module.h> #include <linux/types.h> #include...
arch/m68k/kernel/ints.c
null
null
null
null
null
source
linux
/* SPDX-License-Identifier: GPL-2.0-only */ #include <linux/linkage.h> struct pt_regs; asmlinkage void handle_badint(struct pt_regs *regs);
arch/m68k/kernel/ints.h
null
null
null
null
null
source
linux
/* * irq.c * * (C) Copyright 2007, Greg Ungerer <gerg@snapgear.com> * * 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. */ #include <linux/types.h> #include <linux/init.h> #include <linux/kerne...
arch/m68k/kernel/irq.c
null
null
null
null
null
source
linux
// SPDX-License-Identifier: GPL-2.0 /* * machine_kexec.c - handle transition of Linux booting another kernel */ #include <linux/compiler.h> #include <linux/kexec.h> #include <linux/mm.h> #include <linux/delay.h> #include <linux/reboot.h> #include <asm/cacheflush.h> #include <asm/page.h> #include <asm/setup.h> exter...
arch/m68k/kernel/machine_kexec.c
null
null
null
null
null
source
linux
/* * 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. */ #include <linux/moduleloader.h> #include <linux/elf.h> #include <linux/vmalloc.h> #include <linux/fs.h> #include <linux/string.h> #include <l...
arch/m68k/kernel/module.c
null
null
null
null
null
source
linux
// SPDX-License-Identifier: GPL-2.0-or-later /* * pci.c -- basic PCI support code * * (C) Copyright 2011, Greg Ungerer <gerg@uclinux.org> */ #include <linux/kernel.h> #include <linux/types.h> #include <linux/mm.h> #include <linux/init.h> #include <linux/pci.h> /* * From arch/i386/kernel/pci-i386.c: * * We need...
arch/m68k/kernel/pcibios.c
null
null
null
null
null
source
linux
// SPDX-License-Identifier: GPL-2.0 /* * linux/arch/m68k/kernel/process.c * * Copyright (C) 1995 Hamish Macdonald * * 68060 fixes by Jesper Skov */ /* * This file handles the architecture-dependent parts of process handling.. */ #include <linux/errno.h> #include <linux/module.h> #include <linux/sched.h> #...
arch/m68k/kernel/process.c
null
null
null
null
null
source
linux
/* SPDX-License-Identifier: GPL-2.0 */ #include <linux/linkage.h> struct pt_regs; asmlinkage int m68k_clone(struct pt_regs *regs); asmlinkage int m68k_clone3(struct pt_regs *regs);
arch/m68k/kernel/process.h
null
null
null
null
null
source
linux
/* * linux/arch/m68k/kernel/ptrace.c * * Copyright (C) 1994 by Hamish Macdonald * Taken from linux/kernel/ptrace.c and modified for M680x0. * linux/kernel/ptrace.c is by Ross Biro 1/23/92, edited by Linus Torvalds * * This file is subject to the terms and conditions of the GNU General * Public License. See...
arch/m68k/kernel/ptrace.c
null
null
null
null
null
source
linux
/* SPDX-License-Identifier: GPL-2.0-only */ #include <linux/linkage.h> asmlinkage int syscall_trace_enter(void); asmlinkage void syscall_trace_leave(void);
arch/m68k/kernel/ptrace.h
null
null
null
null
null
source
linux
/* SPDX-License-Identifier: GPL-2.0 */ #include <linux/linkage.h> #include <asm/asm-offsets.h> #include <asm/page.h> #include <asm/setup.h> #define MMU_BASE 8 /* MMU flags base in cpu_mmu_flags */ .text ENTRY(relocate_new_kernel) movel %sp@(4),%a0 /* a0 = ptr */ movel %sp@(8),%a1 /* a1 = start */ movel %sp@(...
arch/m68k/kernel/relocate_kernel.S
null
null
null
null
null
source
linux
// SPDX-License-Identifier: GPL-2.0 #ifdef CONFIG_MMU #include "setup_mm.c" #else #include "setup_no.c" #endif #if IS_ENABLED(CONFIG_INPUT_M68K_BEEP) void (*mach_beep)(unsigned int, unsigned int); EXPORT_SYMBOL(mach_beep); #endif
arch/m68k/kernel/setup.c
null
null
null
null
null
source
linux
// SPDX-License-Identifier: GPL-2.0 /* * linux/arch/m68k/kernel/setup.c * * Copyright (C) 1995 Hamish Macdonald */ /* * This file handles the architecture-dependent parts of system setup */ #include <linux/kernel.h> #include <linux/cpu.h> #include <linux/mm.h> #include <linux/sched.h> #include <linux/delay.h...
arch/m68k/kernel/setup_mm.c
null
null
null
null
null
source
linux
// SPDX-License-Identifier: GPL-2.0 /* * linux/arch/m68knommu/kernel/setup.c * * Copyright (C) 1999-2007 Greg Ungerer (gerg@snapgear.com) * Copyright (C) 1998,1999 D. Jeff Dionne <jeff@uClinux.org> * Copyleft ()) 2000 James D. Schettine {james@telos-systems.com} * Copyright (C) 1998 Kenneth Al...
arch/m68k/kernel/setup_no.c
null
null
null
null
null
source
linux
/* * linux/arch/m68k/kernel/signal.c * * Copyright (C) 1991, 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. */ /* * Linux/m68k support by Hamish Macdonald * * 680...
arch/m68k/kernel/signal.c
null
null
null
null
null
source
linux
/* SPDX-License-Identifier: GPL-2.0-only */ #include <linux/linkage.h> asmlinkage void do_notify_resume(struct pt_regs *regs); asmlinkage void *do_sigreturn(struct pt_regs *regs, struct switch_stack *sw); asmlinkage void *do_rt_sigreturn(struct pt_regs *regs, struct switch_stack *sw);
arch/m68k/kernel/signal.h
null
null
null
null
null
source
linux
/* SPDX-License-Identifier: GPL-2.0 */ #include <linux/linkage.h> #include <linux/init.h> #include <asm/entry.h> #include <asm/page.h> #include <asm/contregs.h> #include <asm/sun3-head.h> PSL_HIGHIPL = 0x2700 NBSG = 0x20000 ICACHE_ONLY = 0x00000009 CACHES_OFF = 0x00000008 | actually a clear and disable...
arch/m68k/kernel/sun3-head.S
null
null
null
null
null
source
linux
// SPDX-License-Identifier: GPL-2.0 /* * linux/arch/m68k/kernel/sys_m68k.c * * This file contains various random system calls that * have a non-standard calling sequence on the Linux/m68k * platform. */ #include <linux/capability.h> #include <linux/errno.h> #include <linux/sched.h> #include <linux/mm.h> #include...
arch/m68k/kernel/sys_m68k.c
null
null
null
null
null
source
linux
/* SPDX-License-Identifier: GPL-2.0 */ /* * Copyright (C) 2002, Greg Ungerer (gerg@snapgear.com) * * Based on older entry.S files, the following copyrights apply: * * Copyright (C) 1998 D. Jeff Dionne <jeff@lineo.ca>, * Kenneth Albanowski <kjahds@kjahds.com>, * Copyright (C) 2000 Lineo...
arch/m68k/kernel/syscalltable.S
null
null
null
null
null
source
linux
// SPDX-License-Identifier: GPL-2.0-only /* * linux/arch/m68k/kernel/time.c * * Copyright (C) 1991, 1992, 1995 Linus Torvalds * * This file contains the m68k-specific time handling details. * Most of the stuff is located in the machine specific files. * * 1997-09-10 Updated NTP code according to technical me...
arch/m68k/kernel/time.c
null
null
null
null
null
source
linux
/* * linux/arch/m68k/kernel/traps.c * * Copyright (C) 1993, 1994 by Hamish Macdonald * * 68040 fixes by Michael Rausch * 68040 fixes by Martin Apel * 68040 fixes and writeback by Richard Zidlicky * 68060 fixes by Roman Hodek * 68060 fixes by Jesper Skov * * This file is subject to the terms and condit...
arch/m68k/kernel/traps.c
null
null
null
null
null
source
linux
/* SPDX-License-Identifier: GPL-2.0-only */ #include <linux/linkage.h> struct frame; asmlinkage void buserr_c(struct frame *fp); asmlinkage void fpemu_signal(int signal, int code, void *addr); asmlinkage void fpsp040_die(void); asmlinkage void set_esp0(unsigned long ssp);
arch/m68k/kernel/traps.h
null
null
null
null
null
source
linux
/* * uboot.c -- uboot arguments support * * 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. */ #include <linux/kernel.h> #include <linux/sched.h> #include <linux/delay.h> #include <linux/interrup...
arch/m68k/kernel/uboot.c
null
null
null
null
null
source
linux
/* * vectors.c * * Copyright (C) 1993, 1994 by Hamish Macdonald * * 68040 fixes by Michael Rausch * 68040 fixes by Martin Apel * 68040 fixes and writeback by Richard Zidlicky * 68060 fixes by Roman Hodek * 68060 fixes by Jesper Skov * * This file is subject to the terms and conditions of the GNU Gener...
arch/m68k/kernel/vectors.c
null
null
null
null
null
source
linux
/* SPDX-License-Identifier: GPL-2.0 */ #if defined(CONFIG_MMU) && !defined(CONFIG_COLDFIRE) PHDRS { text PT_LOAD FILEHDR PHDRS FLAGS (7); data PT_LOAD FLAGS (7); } #ifdef CONFIG_SUN3 #include "vmlinux-sun3.lds" #else #include "vmlinux-std.lds" #endif #else #include "vmlinux-nommu.lds" #endif
arch/m68k/kernel/vmlinux.lds.S
null
null
null
null
null
source
linux
// SPDX-License-Identifier: GPL-2.0-or-later /* * INET An implementation of the TCP/IP protocol suite for the LINUX * operating system. INET is implemented using the BSD Socket * interface as the means of communication with the user level. * * IP/TCP/UDP checksumming routines * * Authors: Jorge Cwik, <jorg...
arch/m68k/lib/checksum.c
null
null
null
null
null
source
linux
/* libgcc1 routines for 68000 w/o floating-point hardware. Copyright (C) 1994, 1996, 1997, 1998 Free Software Foundation, Inc. This file is part of GNU CC. GNU CC is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundatio...
arch/m68k/lib/divsi3.S
null
null
null
null
null
source
linux
/* * 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. */ #include <linux/module.h> #include <linux/string.h> void *memcpy(void *to, const void *from, size_t n) { void *xto = to; size_t temp; if...
arch/m68k/lib/memcpy.c
null
null
null
null
null
source
linux
/* * 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. */ #include <linux/module.h> #include <linux/string.h> void *memmove(void *dest, const void *src, size_t n) { void *xdest = dest; size_t temp...
arch/m68k/lib/memmove.c
null
null
null
null
null
source
linux
/* * 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. */ #include <linux/module.h> #include <linux/string.h> void *memset(void *s, int c, size_t count) { void *xs = s; size_t temp; if (!count) ...
arch/m68k/lib/memset.c
null
null
null
null
null
source
linux
/* libgcc1 routines for 68000 w/o floating-point hardware. Copyright (C) 1994, 1996, 1997, 1998 Free Software Foundation, Inc. This file is part of GNU CC. GNU CC is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundatio...
arch/m68k/lib/modsi3.S
null
null
null
null
null
source
linux
/* libgcc1 routines for 68000 w/o floating-point hardware. Copyright (C) 1994, 1996, 1997, 1998 Free Software Foundation, Inc. This file is part of GNU CC. GNU CC is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundatio...
arch/m68k/lib/mulsi3.S
null
null
null
null
null
source
linux
/* * 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. */ #include <linux/module.h> #include <linux/uaccess.h> unsigned long __generic_copy_from_user(void *to, const void __user *from, un...
arch/m68k/lib/uaccess.c
null
null
null
null
null
source
linux
/* libgcc1 routines for 68000 w/o floating-point hardware. Copyright (C) 1994, 1996, 1997, 1998 Free Software Foundation, Inc. This file is part of GNU CC. GNU CC is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundatio...
arch/m68k/lib/udivsi3.S
null
null
null
null
null
source
linux
/* libgcc1 routines for 68000 w/o floating-point hardware. Copyright (C) 1994, 1996, 1997, 1998 Free Software Foundation, Inc. This file is part of GNU CC. GNU CC is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundatio...
arch/m68k/lib/umodsi3.S
null
null
null
null
null
source
linux
// SPDX-License-Identifier: GPL-2.0 /* * Baboon Custom IC Management * * The Baboon custom IC controls the IDE, PCMCIA and media bay on the * PowerBook 190. It multiplexes multiple interrupt sources onto the * Nubus slot $C interrupt. */ #include <linux/types.h> #include <linux/kernel.h> #include <linux/irq.h> ...
arch/m68k/mac/baboon.c
null
null
null
null
null
source
linux
/* * linux/arch/m68k/mac/config.c * * 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. */ /* * Miscellaneous linux stuff */ #include <linux/errno.h> #include <linux/module.h> #include <linux/r...
arch/m68k/mac/config.c
null
null
null
null
null
source
linux
/* * I/O Processor (IOP) management * Written and (C) 1999 by Joshua M. Thompson (funaho@jurai.org) * * are met: * notice and this list of conditions. * notice and this list of conditions in the documentation and/or other * materials provided with the distribution. */ /* * The IOP chips are used in t...
arch/m68k/mac/iop.c
null
null
null
null
null
source
linux
/* SPDX-License-Identifier: GPL-2.0 */ struct rtc_time; /* baboon.c */ void baboon_init(void); /* iop.c */ void iop_init(void); /* misc.c */ int mac_hwclk(int op, struct rtc_time *t); /* macboing.c */ void mac_mksound(unsigned int freq, unsigned int length); /* oss.c */ void oss_init(void); /* psc.c */ void psc_...
arch/m68k/mac/mac.h
null
null
null
null
null
source
linux
/* SPDX-License-Identifier: GPL-2.0 */ .byte \ 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xFF,0xFF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,\ 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0F,0xFF,0xFF,0xFF,0xFF,0xF0,0x00,0x00,0x00,0...
arch/m68k/mac/mac_penguin.S
null
null
null
null
null
source
linux
// SPDX-License-Identifier: GPL-2.0 /* * Mac bong noise generator. Note - we ought to put a boingy noise * here 8) * * ---------------------------------------------------------------------- * 16.11.98: * rewrote some functions, added support for Enhanced ASC (Quadras) * after the NetBSD asc.c console bell patch ...
arch/m68k/mac/macboing.c
null
null
null
null
null
source
linux
// SPDX-License-Identifier: GPL-2.0 /* * Macintosh interrupts * * General design: * In contrary to the Amiga and Atari platforms, the Mac hardware seems to * exclusively use the autovector interrupts (the 'generic level0-level7' * interrupts with exception vectors 0x19-0x1f). The following interrupt levels * are...
arch/m68k/mac/macints.c
null
null
null
null
null
source
linux
// SPDX-License-Identifier: GPL-2.0 /* * Miscellaneous Mac68K-specific stuff */ #include <linux/types.h> #include <linux/errno.h> #include <linux/kernel.h> #include <linux/delay.h> #include <linux/sched.h> #include <linux/time.h> #include <linux/rtc.h> #include <linux/mm.h> #include <linux/adb.h> #include <linux/cu...
arch/m68k/mac/misc.c
null
null
null
null
null