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 __ASM_SH_SMP_H #define __ASM_SH_SMP_H #include <linux/bitops.h> #include <linux/cpumask.h> #include <asm/smp-ops.h> #ifdef CONFIG_SMP #include <linux/atomic.h> #include <asm/current.h> #include <asm/percpu.h> #define raw_smp_processor_id() (current_thread_info()->cpu) ...
arch/sh/include/asm/smp.h
null
null
null
null
null
source
linux
/* SPDX-License-Identifier: GPL-2.0 */ #ifndef __ASM_SH_SPARSEMEM_H #define __ASM_SH_SPARSEMEM_H /* * SECTION_SIZE_BITS 2^N: how big each section will be * MAX_PHYSMEM_BITS 2^N: how much physical address space we have */ #define SECTION_SIZE_BITS 26 #define MAX_PHYSMEM_BITS 32 #endif /* __ASM_SH_SPARSEMEM_H */
arch/sh/include/asm/sparsemem.h
null
null
null
null
null
source
linux
/* SPDX-License-Identifier: GPL-2.0 */ #ifndef __ASM_SPI_H__ #define __ASM_SPI_H__ struct sh_spi_info; struct sh_spi_info { int bus_num; int num_chipselect; void (*chip_select)(struct sh_spi_info *spi, int cs, int state); }; #endif /* __ASM_SPI_H__ */
arch/sh/include/asm/spi.h
null
null
null
null
null
source
linux
/* SPDX-License-Identifier: GPL-2.0 * * include/asm-sh/spinlock-cas.h * * Copyright (C) 2015 SEI */ #ifndef __ASM_SH_SPINLOCK_CAS_H #define __ASM_SH_SPINLOCK_CAS_H #include <asm/barrier.h> #include <asm/processor.h> static inline unsigned __sl_cas(volatile unsigned *p, unsigned old, unsigned new) { __asm__ __vo...
arch/sh/include/asm/spinlock-cas.h
null
null
null
null
null
source
linux
/* SPDX-License-Identifier: GPL-2.0 * * include/asm-sh/spinlock-llsc.h * * Copyright (C) 2002, 2003 Paul Mundt * Copyright (C) 2006, 2007 Akio Idehara */ #ifndef __ASM_SH_SPINLOCK_LLSC_H #define __ASM_SH_SPINLOCK_LLSC_H #include <asm/barrier.h> #include <asm/processor.h> /* * Your basic SMP spinlocks, allowing...
arch/sh/include/asm/spinlock-llsc.h
null
null
null
null
null
source
linux
/* SPDX-License-Identifier: GPL-2.0 * * include/asm-sh/spinlock.h * * Copyright (C) 2002, 2003 Paul Mundt * Copyright (C) 2006, 2007 Akio Idehara */ #ifndef __ASM_SH_SPINLOCK_H #define __ASM_SH_SPINLOCK_H #if defined(CONFIG_CPU_SH4A) #include <asm/spinlock-llsc.h> #elif defined(CONFIG_CPU_J2) #include <asm/spinl...
arch/sh/include/asm/spinlock.h
null
null
null
null
null
source
linux
/* SPDX-License-Identifier: GPL-2.0 */ #ifndef __ASM_SH_SPINLOCK_TYPES_H #define __ASM_SH_SPINLOCK_TYPES_H #ifndef __LINUX_SPINLOCK_TYPES_RAW_H # error "Please do not include this file directly." #endif typedef struct { volatile unsigned int lock; } arch_spinlock_t; #define __ARCH_SPIN_LOCK_UNLOCKED { 1 } typedef...
arch/sh/include/asm/spinlock_types.h
null
null
null
null
null
source
linux
/* SPDX-License-Identifier: GPL-2.0 */ #ifndef __ASM_SRAM_H #define __ASM_SRAM_H #ifdef CONFIG_HAVE_SRAM_POOL #include <linux/spinlock.h> #include <linux/genalloc.h> /* arch/sh/mm/sram.c */ extern struct gen_pool *sram_pool; static inline unsigned long sram_alloc(size_t len) { if (!sram_pool) return 0UL; retur...
arch/sh/include/asm/sram.h
null
null
null
null
null
source
linux
/* SPDX-License-Identifier: GPL-2.0 */ #ifndef __ASM_SH_STACKPROTECTOR_H #define __ASM_SH_STACKPROTECTOR_H extern unsigned long __stack_chk_guard; /* * Initialize the stackprotector canary value. * * NOTE: this must only be called from functions that never return, * and it must always be inlined. */ static __alw...
arch/sh/include/asm/stackprotector.h
null
null
null
null
null
source
linux
/* SPDX-License-Identifier: GPL-2.0 */ /* * Copyright (C) 2009 Matt Fleming * * Based on: * The x86 implementation - arch/x86/include/asm/stacktrace.h */ #ifndef _ASM_SH_STACKTRACE_H #define _ASM_SH_STACKTRACE_H /* Generic stack tracer with callbacks */ struct stacktrace_ops { void (*address)(void *data, unsig...
arch/sh/include/asm/stacktrace.h
null
null
null
null
null
source
linux
/* SPDX-License-Identifier: GPL-2.0 */ #ifndef __ASM_SH_STRING_H #define __ASM_SH_STRING_H /* * Copyright (C) 1999 Niibe Yutaka * But consider these trivial functions to be public domain. */ #define __HAVE_ARCH_STRCPY static inline char *strcpy(char *__dest, const char *__src) { register char *__xdest = __dest; ...
arch/sh/include/asm/string_32.h
null
null
null
null
null
source
linux
/* SPDX-License-Identifier: GPL-2.0 */ #ifndef _ASM_SH_SUSPEND_H #define _ASM_SH_SUSPEND_H #ifndef __ASSEMBLER__ #include <linux/notifier.h> #include <asm/ptrace.h> struct swsusp_arch_regs { struct pt_regs user_regs; unsigned long bank1_regs[8]; }; void sh_mobile_call_standby(unsigned long mode); #ifdef CONFIG_C...
arch/sh/include/asm/suspend.h
null
null
null
null
null
source
linux
/* SPDX-License-Identifier: GPL-2.0 * * Copyright (C) 2000, 2001 Paolo Alberelli * Copyright (C) 2003 Paul Mundt * Copyright (C) 2004 Richard Curnow */ #include <asm/switch_to_32.h>
arch/sh/include/asm/switch_to.h
null
null
null
null
null
source
linux
/* SPDX-License-Identifier: GPL-2.0 */ #ifndef __ASM_SH_SWITCH_TO_32_H #define __ASM_SH_SWITCH_TO_32_H #ifdef CONFIG_SH_DSP #define is_dsp_enabled(tsk) \ (!!(tsk->thread.dsp_status.status & SR_DSP)) #define __restore_dsp(tsk) \ do { \ register u32 *__ts2 __asm__ ("r2") = \ (u32 *)&tsk->thre...
arch/sh/include/asm/switch_to_32.h
null
null
null
null
null
source
linux
/* SPDX-License-Identifier: GPL-2.0 */ #ifndef __ASM_SH_SYSCALL_H #define __ASM_SH_SYSCALL_H extern const unsigned long sys_call_table[]; #include <asm/syscall_32.h> #endif /* __ASM_SH_SYSCALL_H */
arch/sh/include/asm/syscall.h
null
null
null
null
null
source
linux
/* SPDX-License-Identifier: GPL-2.0 */ #ifndef __ASM_SH_SYSCALL_32_H #define __ASM_SH_SYSCALL_32_H #include <uapi/linux/audit.h> #include <linux/kernel.h> #include <linux/sched.h> #include <linux/err.h> #include <asm/ptrace.h> /* The system call number is given by the user in R3 */ static inline long syscall_get_nr(s...
arch/sh/include/asm/syscall_32.h
null
null
null
null
null
source
linux
/* SPDX-License-Identifier: GPL-2.0 */ #ifndef __ASM_SH_SYSCALLS_H #define __ASM_SH_SYSCALLS_H asmlinkage int old_mmap(unsigned long addr, unsigned long len, unsigned long prot, unsigned long flags, int fd, unsigned long off); asmlinkage long sys_mmap2(unsigned long addr, unsigned long len, unsigned long pr...
arch/sh/include/asm/syscalls.h
null
null
null
null
null
source
linux
/* SPDX-License-Identifier: GPL-2.0 */ #ifndef __ASM_SH_SYSCALLS_32_H #define __ASM_SH_SYSCALLS_32_H #include <linux/compiler.h> #include <linux/linkage.h> #include <linux/types.h> struct pt_regs; asmlinkage int sys_sigreturn(void); asmlinkage int sys_rt_sigreturn(void); asmlinkage int sys_sh_pipe(void); asmlinkage ...
arch/sh/include/asm/syscalls_32.h
null
null
null
null
null
source
linux
/* SPDX-License-Identifier: GPL-2.0 */ #ifndef __ASM_SH_THREAD_INFO_H #define __ASM_SH_THREAD_INFO_H /* SuperH version * Copyright (C) 2002 Niibe Yutaka * * The copyright of original i386 version is: * * Copyright (C) 2002 David Howells (dhowells@redhat.com) * - Incorporating suggestions made by Linus Torval...
arch/sh/include/asm/thread_info.h
null
null
null
null
null
source
linux
/* SPDX-License-Identifier: GPL-2.0 */ /* * linux/include/asm-sh/timex.h * * sh architecture timex specifications */ #ifndef __ASM_SH_TIMEX_H #define __ASM_SH_TIMEX_H /* * Only parts using the legacy CPG code for their clock framework * implementation need to define their own Pclk value. If provided, this * can...
arch/sh/include/asm/timex.h
null
null
null
null
null
source
linux
/* SPDX-License-Identifier: GPL-2.0 */ #ifndef __ASM_SH_TLB_H #define __ASM_SH_TLB_H #ifndef __ASSEMBLER__ #include <linux/pagemap.h> #include <asm-generic/tlb.h> #ifdef CONFIG_MMU #include <linux/swap.h> #if defined(CONFIG_CPU_SH4) extern void tlb_wire_entry(struct vm_area_struct *, unsigned long, pte_t); extern vo...
arch/sh/include/asm/tlb.h
null
null
null
null
null
source
linux
/* SPDX-License-Identifier: GPL-2.0 */ #ifndef __ASM_SH_TLBFLUSH_H #define __ASM_SH_TLBFLUSH_H /* * TLB flushing: * * - flush_tlb_all() flushes all processes TLBs * - flush_tlb_mm(mm) flushes the specified mm context TLB's * - flush_tlb_page(vma, vmaddr) flushes one page * - flush_tlb_range(vma, start, end) ...
arch/sh/include/asm/tlbflush.h
null
null
null
null
null
source
linux
/* SPDX-License-Identifier: GPL-2.0 */ #ifndef _ASM_SH_TOPOLOGY_H #define _ASM_SH_TOPOLOGY_H #ifdef CONFIG_NUMA #define cpu_to_node(cpu) ((void)(cpu),0) #define cpumask_of_node(node) ((void)node, cpu_online_mask) #define pcibus_to_node(bus) ((void)(bus), -1) #define cpumask_of_pcibus(bus) (pcibus_to_node(bus) == -1...
arch/sh/include/asm/topology.h
null
null
null
null
null
source
linux
/* SPDX-License-Identifier: GPL-2.0 */ #ifndef __ASM_SH_TRAPS_H #define __ASM_SH_TRAPS_H #include <linux/compiler.h> # include <asm/traps_32.h> BUILD_TRAP_HANDLER(address_error); BUILD_TRAP_HANDLER(debug); BUILD_TRAP_HANDLER(bug); BUILD_TRAP_HANDLER(breakpoint); BUILD_TRAP_HANDLER(singlestep); BUILD_TRAP_HANDLER(fpu...
arch/sh/include/asm/traps.h
null
null
null
null
null
source
linux
/* SPDX-License-Identifier: GPL-2.0 */ #ifndef __ASM_SH_TRAPS_32_H #define __ASM_SH_TRAPS_32_H #include <linux/types.h> #include <asm/mmu.h> #ifdef CONFIG_CPU_HAS_SR_RB #define lookup_exception_vector() \ ({ \ unsigned long _vec; \ \ __asm__ __volatile__ ( \ "stc r2_bank, %0\n\t" \ : "=r" (_vec) \ ...
arch/sh/include/asm/traps_32.h
null
null
null
null
null
source
linux
/* SPDX-License-Identifier: GPL-2.0 */ #ifndef __ASM_SH_TYPES_H #define __ASM_SH_TYPES_H #include <asm-generic/int-ll64.h> /* * These aren't exported outside the kernel to avoid name space clashes */ #ifndef __ASSEMBLER__ typedef u16 insn_size_t; typedef u32 reg_size_t; #endif /* __ASSEMBLER__ */ #endif /* __ASM_...
arch/sh/include/asm/types.h
null
null
null
null
null
source
linux
/* SPDX-License-Identifier: GPL-2.0 */ #ifndef __ASM_SH_UACCESS_H #define __ASM_SH_UACCESS_H #include <asm/extable.h> #include <asm-generic/access_ok.h> /* * Uh, these should become the main single-value transfer routines ... * They automatically use the right size if we just have the right * pointer type ... * ...
arch/sh/include/asm/uaccess.h
null
null
null
null
null
source
linux
/* SPDX-License-Identifier: GPL-2.0 */ /* * User space memory access functions * * Copyright (C) 1999, 2002 Niibe Yutaka * Copyright (C) 2003 - 2008 Paul Mundt * * Based on: * MIPS implementation version 1.15 by * Copyright (C) 1996, 1997, 1998 by Ralf Baechle * and i386 version. */ #i...
arch/sh/include/asm/uaccess_32.h
null
null
null
null
null
source
linux
/* SPDX-License-Identifier: GPL-2.0 */ #ifndef __ASM_SH_UNCACHED_H #define __ASM_SH_UNCACHED_H #include <linux/bug.h> #ifdef CONFIG_UNCACHED_MAPPING extern unsigned long cached_to_uncached; extern unsigned long uncached_size; extern unsigned long uncached_start, uncached_end; extern int virt_addr_uncached(unsigned l...
arch/sh/include/asm/uncached.h
null
null
null
null
null
source
linux
/* SPDX-License-Identifier: GPL-2.0 */ #include <asm/unistd_32.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 __ARCH_WANT_SYS_GETHOSTNAME # define __ARCH_WANT_SYS_IPC ...
arch/sh/include/asm/unistd.h
null
null
null
null
null
source
linux
/* SPDX-License-Identifier: GPL-2.0 */ #ifndef _LINUX_UNWINDER_H #define _LINUX_UNWINDER_H #include <asm/stacktrace.h> struct unwinder { const char *name; struct list_head list; int rating; void (*dump)(struct task_struct *, struct pt_regs *, unsigned long *, const struct stacktrace_ops *, void *); }; ext...
arch/sh/include/asm/unwinder.h
null
null
null
null
null
source
linux
/* SPDX-License-Identifier: GPL-2.0 */ #ifndef __ASM_SH_USER_H #define __ASM_SH_USER_H #include <asm/ptrace.h> #include <asm/page.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). The...
arch/sh/include/asm/user.h
null
null
null
null
null
source
linux
/* SPDX-License-Identifier: GPL-2.0 */ #ifndef _ASM_VERMAGIC_H #define _ASM_VERMAGIC_H #ifdef CONFIG_CPU_LITTLE_ENDIAN # ifdef CONFIG_CPU_SH2 # define MODULE_PROC_FAMILY "SH2LE " # elif defined CONFIG_CPU_SH3 # define MODULE_PROC_FAMILY "SH3LE " # elif defined CONFIG_CPU_SH4 # define MODULE_PROC_FAMILY "SH4LE " ...
arch/sh/include/asm/vermagic.h
null
null
null
null
null
source
linux
/* SPDX-License-Identifier: GPL-2.0 */ #ifndef __ASM_SH_VMLINUX_LDS_H #define __ASM_SH_VMLINUX_LDS_H #include <asm-generic/vmlinux.lds.h> #ifdef CONFIG_DWARF_UNWINDER #define DWARF_EH_FRAME \ .eh_frame : AT(ADDR(.eh_frame) - LOAD_OFFSET) { \ __start_eh_frame = .; \ *(.eh_frame) \ __stop_...
arch/sh/include/asm/vmlinux.lds.h
null
null
null
null
null
source
linux
/* SPDX-License-Identifier: GPL-2.0+ * * include/asm-sh/watchdog.h * * Copyright (C) 2002, 2003 Paul Mundt * Copyright (C) 2009 Siemens AG * Copyright (C) 2009 Valentin Sitdikov */ #ifndef __ASM_SH_WATCHDOG_H #define __ASM_SH_WATCHDOG_H #include <linux/types.h> #include <linux/io.h> #define WTCNT_HIGH 0x5a #de...
arch/sh/include/asm/watchdog.h
null
null
null
null
null
source
linux
/* SPDX-License-Identifier: GPL-2.0 */ #ifndef __ASM_SH_WORD_AT_A_TIME_H #define __ASM_SH_WORD_AT_A_TIME_H #ifdef CONFIG_CPU_BIG_ENDIAN # include <asm-generic/word-at-a-time.h> #else #include <linux/bitops.h> #include <linux/wordpart.h> /* * Little-endian version cribbed from x86. */ struct word_at_a_time { const u...
arch/sh/include/asm/word-at-a-time.h
null
null
null
null
null
source
linux
/* SPDX-License-Identifier: GPL-2.0 * * Definitions for the address spaces of the SH-2 CPUs. * * Copyright (C) 2003 Paul Mundt */ #ifndef __ASM_CPU_SH2_ADDRSPACE_H #define __ASM_CPU_SH2_ADDRSPACE_H #define P0SEG 0x00000000 #define P1SEG 0x80000000 #define P2SEG 0xa0000000 #define P3SEG 0xc0000000 #define P4S...
arch/sh/include/cpu-common/cpu/addrspace.h
null
null
null
null
null
source
linux
/* SPDX-License-Identifier: GPL-2.0 * * include/asm-sh/cpu-sh2/mmu_context.h * * Copyright (C) 2003 Paul Mundt */ #ifndef __ASM_CPU_SH2_MMU_CONTEXT_H #define __ASM_CPU_SH2_MMU_CONTEXT_H /* No MMU */ #endif /* __ASM_CPU_SH2_MMU_CONTEXT_H */
arch/sh/include/cpu-common/cpu/mmu_context.h
null
null
null
null
null
source
linux
/* SPDX-License-Identifier: GPL-2.0 * * SH Pin Function Control Initialization * * Copyright (C) 2012 Renesas Solutions Corp. */ #ifndef __ARCH_SH_CPU_PFC_H__ #define __ARCH_SH_CPU_PFC_H__ #include <linux/types.h> struct resource; int sh_pfc_register(const char *name, struct resource *resource, u32 num_...
arch/sh/include/cpu-common/cpu/pfc.h
null
null
null
null
null
source
linux
/* SPDX-License-Identifier: GPL-2.0 */ #ifndef __ASM_SH_CPU_SH2_RTC_H #define __ASM_SH_CPU_SH2_RTC_H #define rtc_reg_size sizeof(u16) #define RTC_BIT_INVERTED 0 #define RTC_DEF_CAPABILITIES 0UL #endif /* __ASM_SH_CPU_SH2_RTC_H */
arch/sh/include/cpu-common/cpu/rtc.h
null
null
null
null
null
source
linux
/* SPDX-License-Identifier: GPL-2.0 */ #ifndef __ASM_CPU_SH2_SIGCONTEXT_H #define __ASM_CPU_SH2_SIGCONTEXT_H struct sigcontext { unsigned long oldmask; /* CPU registers */ unsigned long sc_regs[16]; unsigned long sc_pc; unsigned long sc_pr; unsigned long sc_sr; unsigned long sc_gbr; unsigned long sc_mach; un...
arch/sh/include/cpu-common/cpu/sigcontext.h
null
null
null
null
null
source
linux
/* SPDX-License-Identifier: GPL-2.0 */ #ifndef __ASM_CPU_SH2_TIMER_H #define __ASM_CPU_SH2_TIMER_H /* Nothing needed yet */ #endif /* __ASM_CPU_SH2_TIMER_H */
arch/sh/include/cpu-common/cpu/timer.h
null
null
null
null
null
source
linux
/* SPDX-License-Identifier: GPL-2.0 * * include/asm-sh/cpu-sh2/cache.h * * Copyright (C) 2003 Paul Mundt */ #ifndef __ASM_CPU_SH2_CACHE_H #define __ASM_CPU_SH2_CACHE_H #define L1_CACHE_SHIFT 4 #define SH_CACHE_VALID 1 #define SH_CACHE_UPDATED 2 #define SH_CACHE_COMBINED 4 #define SH_CACHE_ASSOC 8 #if defined(...
arch/sh/include/cpu-sh2/cpu/cache.h
null
null
null
null
null
source
linux
/* SPDX-License-Identifier: GPL-2.0 * * include/asm-sh/cpu-sh2/freq.h * * Copyright (C) 2006 Yoshinori Sato */ #ifndef __ASM_CPU_SH2_FREQ_H #define __ASM_CPU_SH2_FREQ_H #if defined(CONFIG_CPU_SUBTYPE_SH7619) #define FREQCR 0xf815ff80 #endif #endif /* __ASM_CPU_SH2_FREQ_H */
arch/sh/include/cpu-sh2/cpu/freq.h
null
null
null
null
null
source
linux
/* SPDX-License-Identifier: GPL-2.0 * * include/asm-sh/cpu-sh2/watchdog.h * * Copyright (C) 2002, 2003 Paul Mundt */ #ifndef __ASM_CPU_SH2_WATCHDOG_H #define __ASM_CPU_SH2_WATCHDOG_H /* * More SH-2 brilliance .. its not good enough that we can't read * and write the same sizes to WTCNT, now we have to read and ...
arch/sh/include/cpu-sh2/cpu/watchdog.h
null
null
null
null
null
source
linux
/* SPDX-License-Identifier: GPL-2.0 */ #ifndef __ASM_SH_CPU_SH2A_ADDRSPACE_H #define __ASM_SH_CPU_SH2A_ADDRSPACE_H #define P0SEG 0x00000000 #define P1SEG 0x00000000 #define P2SEG 0x20000000 #define P3SEG 0x40000000 #define P4SEG 0x60000000 #endif /* __ASM_SH_CPU_SH2A_ADDRSPACE_H */
arch/sh/include/cpu-sh2a/cpu/addrspace.h
null
null
null
null
null
source
linux
/* SPDX-License-Identifier: GPL-2.0 * * include/asm-sh/cpu-sh2a/cache.h * * Copyright (C) 2004 Paul Mundt */ #ifndef __ASM_CPU_SH2A_CACHE_H #define __ASM_CPU_SH2A_CACHE_H #define L1_CACHE_SHIFT 4 #define SH_CACHE_VALID 1 #define SH_CACHE_UPDATED 2 #define SH_CACHE_COMBINED 4 #define SH_CACHE_ASSOC 8 #define S...
arch/sh/include/cpu-sh2a/cpu/cache.h
null
null
null
null
null
source
linux
/* SPDX-License-Identifier: GPL-2.0 * * include/asm-sh/cpu-sh2a/freq.h * * Copyright (C) 2006 Yoshinori Sato */ #ifndef __ASM_CPU_SH2A_FREQ_H #define __ASM_CPU_SH2A_FREQ_H #define FREQCR 0xfffe0010 #endif /* __ASM_CPU_SH2A_FREQ_H */
arch/sh/include/cpu-sh2a/cpu/freq.h
null
null
null
null
null
source
linux
/* SPDX-License-Identifier: GPL-2.0 */ #ifndef __ASM_SH_CPU_SH2A_RTC_H #define __ASM_SH_CPU_SH2A_RTC_H #define rtc_reg_size sizeof(u16) #define RTC_BIT_INVERTED 0 #define RTC_DEF_CAPABILITIES RTC_CAP_4_DIGIT_YEAR #endif /* __ASM_SH_CPU_SH2A_RTC_H */
arch/sh/include/cpu-sh2a/cpu/rtc.h
null
null
null
null
null
source
linux
/* SPDX-License-Identifier: GPL-2.0 */ #ifndef __ASM_SH7203_H__ #define __ASM_SH7203_H__ enum { /* PA */ GPIO_PA7, GPIO_PA6, GPIO_PA5, GPIO_PA4, GPIO_PA3, GPIO_PA2, GPIO_PA1, GPIO_PA0, /* PB */ GPIO_PB12, GPIO_PB11, GPIO_PB10, GPIO_PB9, GPIO_PB8, GPIO_PB7, GPIO_PB6, GPIO_PB5, GPIO_PB4, GPIO_PB3, GPIO_PB2, GPI...
arch/sh/include/cpu-sh2a/cpu/sh7203.h
null
null
null
null
null
source
linux
/* SPDX-License-Identifier: GPL-2.0 */ #ifndef __ASM_SH7264_H__ #define __ASM_SH7264_H__ enum { /* Port A */ GPIO_PA3, GPIO_PA2, GPIO_PA1, GPIO_PA0, /* Port B */ GPIO_PB22, GPIO_PB21, GPIO_PB20, GPIO_PB19, GPIO_PB18, GPIO_PB17, GPIO_PB16, GPIO_PB15, GPIO_PB14, GPIO_PB13, GPIO_PB12, GPIO_PB11, GPIO_PB10, GPIO_P...
arch/sh/include/cpu-sh2a/cpu/sh7264.h
null
null
null
null
null
source
linux
/* SPDX-License-Identifier: GPL-2.0 */ #ifndef __ASM_SH7269_H__ #define __ASM_SH7269_H__ enum { /* Port A */ GPIO_PA1, GPIO_PA0, /* Port B */ GPIO_PB22, GPIO_PB21, GPIO_PB20, GPIO_PB19, GPIO_PB18, GPIO_PB17, GPIO_PB16, GPIO_PB15, GPIO_PB14, GPIO_PB13, GPIO_PB12, GPIO_PB11, GPIO_PB10, GPIO_PB9, GPIO_PB8, GPIO_...
arch/sh/include/cpu-sh2a/cpu/sh7269.h
null
null
null
null
null
source
linux
/* SPDX-License-Identifier: GPL-2.0 */ #ifndef __ASM_CPU_SH3_ADC_H #define __ASM_CPU_SH3_ADC_H /* * Copyright (C) 2004 Andriy Skulysh */ #define ADDRAH 0xa4000080 #define ADDRAL 0xa4000082 #define ADDRBH 0xa4000084 #define ADDRBL 0xa4000086 #define ADDRCH 0xa4000088 #define ADDRCL 0xa400008a #define ADDRDH 0xa400...
arch/sh/include/cpu-sh3/cpu/adc.h
null
null
null
null
null
source
linux
/* SPDX-License-Identifier: GPL-2.0 * * include/asm-sh/cpu-sh3/cache.h * * Copyright (C) 1999 Niibe Yutaka */ #ifndef __ASM_CPU_SH3_CACHE_H #define __ASM_CPU_SH3_CACHE_H #define L1_CACHE_SHIFT 4 #define SH_CACHE_VALID 1 #define SH_CACHE_UPDATED 2 #define SH_CACHE_COMBINED 4 #define SH_CACHE_ASSOC 8 #define SH...
arch/sh/include/cpu-sh3/cpu/cache.h
null
null
null
null
null
source
linux
/* SPDX-License-Identifier: GPL-2.0 */ #ifndef __ASM_CPU_SH3_DAC_H #define __ASM_CPU_SH3_DAC_H /* * Copyright (C) 2003 Andriy Skulysh */ #define DADR0 0xa40000a0 #define DADR1 0xa40000a2 #define DACR 0xa40000a4 #define DACR_DAOE1 0x80 #define DACR_DAOE0 0x40 #define DACR_DAE 0x20 static __inline__ void sh_dac_e...
arch/sh/include/cpu-sh3/cpu/dac.h
null
null
null
null
null
source
linux
/* SPDX-License-Identifier: GPL-2.0 * * SH3 CPU-specific DMA definitions, used by both DMA drivers * * Copyright (C) 2010 Guennadi Liakhovetski <g.liakhovetski@gmx.de> */ #ifndef CPU_DMA_REGISTER_H #define CPU_DMA_REGISTER_H #define CHCR_TS_LOW_MASK 0x18 #define CHCR_TS_LOW_SHIFT 3 #define CHCR_TS_HIGH_MASK 0 #de...
arch/sh/include/cpu-sh3/cpu/dma-register.h
null
null
null
null
null
source
linux
/* SPDX-License-Identifier: GPL-2.0 */ #ifndef __ASM_CPU_SH3_DMA_H #define __ASM_CPU_SH3_DMA_H #include <linux/sh_intc.h> #if defined(CONFIG_CPU_SUBTYPE_SH7720) || \ defined(CONFIG_CPU_SUBTYPE_SH7721) || \ defined(CONFIG_CPU_SUBTYPE_SH7710) || \ defined(CONFIG_CPU_SUBTYPE_SH7712) #define SH_DMAC_BASE0 0xa...
arch/sh/include/cpu-sh3/cpu/dma.h
null
null
null
null
null
source
linux
/* SPDX-License-Identifier: GPL-2.0 * * include/asm-sh/cpu-sh3/freq.h * * Copyright (C) 2002, 2003 Paul Mundt */ #ifndef __ASM_CPU_SH3_FREQ_H #define __ASM_CPU_SH3_FREQ_H #ifdef CONFIG_CPU_SUBTYPE_SH7712 #define FRQCR 0xA415FF80 #else #define FRQCR 0xffffff80 #endif #define MIN_DIVISOR_NR 0 #define MAX_DIVI...
arch/sh/include/cpu-sh3/cpu/freq.h
null
null
null
null
null
source
linux
/* SPDX-License-Identifier: GPL-2.0 * * include/asm-sh/cpu-sh3/gpio.h * * Copyright (C) 2007 Markus Brunner, Mark Jonas * * Addresses for the Pin Function Controller */ #ifndef _CPU_SH3_GPIO_H #define _CPU_SH3_GPIO_H #if defined(CONFIG_CPU_SUBTYPE_SH7720) || \ defined(CONFIG_CPU_SUBTYPE_SH7721) /* Cont...
arch/sh/include/cpu-sh3/cpu/gpio.h
null
null
null
null
null
source
linux
/* SPDX-License-Identifier: GPL-2.0 * * include/asm-sh/cpu-sh3/mmu_context.h * * Copyright (C) 1999 Niibe Yutaka */ #ifndef __ASM_CPU_SH3_MMU_CONTEXT_H #define __ASM_CPU_SH3_MMU_CONTEXT_H #define MMU_PTEH 0xFFFFFFF0 /* Page table entry register HIGH */ #define MMU_PTEL 0xFFFFFFF4 /* Page table entry register LOW ...
arch/sh/include/cpu-sh3/cpu/mmu_context.h
null
null
null
null
null
source
linux
/* SPDX-License-Identifier: GPL-2.0 */ #ifndef __CPU_SH3_SERIAL_H #define __CPU_SH3_SERIAL_H #include <linux/serial_sci.h> extern struct plat_sci_port_ops sh770x_sci_port_ops; extern struct plat_sci_port_ops sh7710_sci_port_ops; extern struct plat_sci_port_ops sh7720_sci_port_ops; #endif /* __CPU_SH3_SERIAL_H */
arch/sh/include/cpu-sh3/cpu/serial.h
null
null
null
null
null
source
linux
/* SPDX-License-Identifier: GPL-2.0 */ #ifndef __ASM_SH7720_H__ #define __ASM_SH7720_H__ enum { /* PTA */ GPIO_PTA7, GPIO_PTA6, GPIO_PTA5, GPIO_PTA4, GPIO_PTA3, GPIO_PTA2, GPIO_PTA1, GPIO_PTA0, /* PTB */ GPIO_PTB7, GPIO_PTB6, GPIO_PTB5, GPIO_PTB4, GPIO_PTB3, GPIO_PTB2, GPIO_PTB1, GPIO_PTB0, /* PTC */ GPIO_PT...
arch/sh/include/cpu-sh3/cpu/sh7720.h
null
null
null
null
null
source
linux
/* SPDX-License-Identifier: GPL-2.0 * * include/asm-sh/cpu-sh3/watchdog.h * * Copyright (C) 2002, 2003 Paul Mundt */ #ifndef __ASM_CPU_SH3_WATCHDOG_H #define __ASM_CPU_SH3_WATCHDOG_H /* Register definitions */ #define WTCNT 0xffffff84 #define WTCSR 0xffffff86 /* Bit definitions */ #define WTCSR_TME 0x80 #defin...
arch/sh/include/cpu-sh3/cpu/watchdog.h
null
null
null
null
null
source
linux
/* SPDX-License-Identifier: GPL-2.0 * * Copyright (C) 1999 by Kaz Kojima * * Defitions for the address spaces of the SH-4 CPUs. */ #ifndef __ASM_CPU_SH4_ADDRSPACE_H #define __ASM_CPU_SH4_ADDRSPACE_H #define P0SEG 0x00000000 #define P1SEG 0x80000000 #define P2SEG 0xa0000000 #define P3SEG 0xc0000000 #define P4S...
arch/sh/include/cpu-sh4/cpu/addrspace.h
null
null
null
null
null
source
linux
/* SPDX-License-Identifier: GPL-2.0 * * include/asm-sh/cpu-sh4/cache.h * * Copyright (C) 1999 Niibe Yutaka */ #ifndef __ASM_CPU_SH4_CACHE_H #define __ASM_CPU_SH4_CACHE_H #define L1_CACHE_SHIFT 5 #define SH_CACHE_VALID 1 #define SH_CACHE_UPDATED 2 #define SH_CACHE_COMBINED 4 #define SH_CACHE_ASSOC 8 #define SH...
arch/sh/include/cpu-sh4/cpu/cache.h
null
null
null
null
null
source
linux
/* SPDX-License-Identifier: GPL-2.0 * * SH4 CPU-specific DMA definitions, used by both DMA drivers * * Copyright (C) 2010 Guennadi Liakhovetski <g.liakhovetski@gmx.de> */ #ifndef CPU_DMA_REGISTER_H #define CPU_DMA_REGISTER_H /* SH7751/7760/7780 DMA IRQ sources */ #ifdef CONFIG_CPU_SH4A #define DMAOR_INIT DMAOR_...
arch/sh/include/cpu-sh4/cpu/dma-register.h
null
null
null
null
null
source
linux
/* SPDX-License-Identifier: GPL-2.0 */ #ifndef __ASM_CPU_SH4_DMA_H #define __ASM_CPU_SH4_DMA_H #include <linux/sh_intc.h> /* * SH7750/SH7751/SH7760 */ #define DMTE0_IRQ evt2irq(0x640) #define DMTE4_IRQ evt2irq(0x780) #define DMTE6_IRQ evt2irq(0x7c0) #define DMAE0_IRQ evt2irq(0x6c0) #define SH_DMAC_BASE0 0xffa00000...
arch/sh/include/cpu-sh4/cpu/dma.h
null
null
null
null
null
source
linux
/* SPDX-License-Identifier: GPL-2.0 * * linux/arch/sh/kernel/cpu/sh4/sh4_fpu.h * * Copyright (C) 2006 STMicroelectronics Limited * Author: Carl Shaw <carl.shaw@st.com> * * Definitions for SH4 FPU operations */ #ifndef __CPU_SH4_FPU_H #define __CPU_SH4_FPU_H #define FPSCR_ENABLE_MASK 0x00000f80UL #define FPSC...
arch/sh/include/cpu-sh4/cpu/fpu.h
null
null
null
null
null
source
linux
/* SPDX-License-Identifier: GPL-2.0 * * include/asm-sh/cpu-sh4/freq.h * * Copyright (C) 2002, 2003 Paul Mundt */ #ifndef __ASM_CPU_SH4_FREQ_H #define __ASM_CPU_SH4_FREQ_H #if defined(CONFIG_CPU_SUBTYPE_SH7722) || \ defined(CONFIG_CPU_SUBTYPE_SH7723) || \ defined(CONFIG_CPU_SUBTYPE_SH7343) || \ defined...
arch/sh/include/cpu-sh4/cpu/freq.h
null
null
null
null
null
source
linux
/* SPDX-License-Identifier: GPL-2.0 * * include/asm-sh/cpu-sh4/mmu_context.h * * Copyright (C) 1999 Niibe Yutaka */ #ifndef __ASM_CPU_SH4_MMU_CONTEXT_H #define __ASM_CPU_SH4_MMU_CONTEXT_H #define MMU_PTEH 0xFF000000 /* Page table entry register HIGH */ #define MMU_PTEL 0xFF000004 /* Page table entry register LOW ...
arch/sh/include/cpu-sh4/cpu/mmu_context.h
null
null
null
null
null
source
linux
/* SPDX-License-Identifier: GPL-2.0 */ #ifndef __ASM_SH_CPU_SH4_RTC_H #define __ASM_SH_CPU_SH4_RTC_H #if defined(CONFIG_CPU_SUBTYPE_SH7722) || defined(CONFIG_CPU_SUBTYPE_SH7723) #define rtc_reg_size sizeof(u16) #else #define rtc_reg_size sizeof(u32) #endif #define RTC_BIT_INVERTED 0x40 /* bug on SH7750, SH7750S */ ...
arch/sh/include/cpu-sh4/cpu/rtc.h
null
null
null
null
null
source
linux
/* SPDX-License-Identifier: GPL-2.0 */ #ifndef __ASM_SH7722_H__ #define __ASM_SH7722_H__ /* Boot Mode Pins: * * MD0: CPG - Clock Mode 0->3 * MD1: CPG - Clock Mode 0->3 * MD2: CPG - Reserved (L: Normal operation) * MD3: BSC - Area0 Bus Width (16/32-bit) [CS0BCR.9,10] * MD5: BSC - Endian Mode (L: Big, H: Little) [...
arch/sh/include/cpu-sh4/cpu/sh7722.h
null
null
null
null
null
source
linux
/* SPDX-License-Identifier: GPL-2.0 */ #ifndef __ASM_SH7723_H__ #define __ASM_SH7723_H__ /* Boot Mode Pins: * * MD0: CPG - Clock Mode 0->3 * MD1: CPG - Clock Mode 0->3 * MD2: CPG - Reserved (L: Normal operation) * MD3: BSC - Area0 Bus Width (16/32-bit) [CS0BCR.9,10] * MD5: BSC - Endian Mode (L: Big, H: Little) [...
arch/sh/include/cpu-sh4/cpu/sh7723.h
null
null
null
null
null
source
linux
/* SPDX-License-Identifier: GPL-2.0 */ #ifndef __ASM_SH7724_H__ #define __ASM_SH7724_H__ /* Boot Mode Pins: * * MD0: CPG - Clock Mode 0->7 * MD1: CPG - Clock Mode 0->7 * MD2: CPG - Clock Mode 0->7 * MD3: BSC - Area0 Bus Width (16/32-bit) [CS0BCR.9,10] * MD5: BSC - Endian Mode (L: Big, H: Little) [CMNCR.3] * MD8...
arch/sh/include/cpu-sh4/cpu/sh7724.h
null
null
null
null
null
source
linux
/* SPDX-License-Identifier: GPL-2.0 */ #ifndef __ASM_SH7734_H__ #define __ASM_SH7734_H__ /* Pin Function Controller: * GPIO_FN_xx - GPIO used to select pin function * GPIO_GP_x_x - GPIO mapped to real I/O pin on CPU */ enum { GPIO_GP_0_0, GPIO_GP_0_1, GPIO_GP_0_2, GPIO_GP_0_3, GPIO_GP_0_4, GPIO_GP_0_5, GPIO_GP_0_...
arch/sh/include/cpu-sh4/cpu/sh7734.h
null
null
null
null
null
source
linux
/* SPDX-License-Identifier: GPL-2.0 */ #ifndef __ASM_SH7757_H__ #define __ASM_SH7757_H__ enum { /* PTA */ GPIO_PTA0, GPIO_PTA1, GPIO_PTA2, GPIO_PTA3, GPIO_PTA4, GPIO_PTA5, GPIO_PTA6, GPIO_PTA7, /* PTB */ GPIO_PTB0, GPIO_PTB1, GPIO_PTB2, GPIO_PTB3, GPIO_PTB4, GPIO_PTB5, GPIO_PTB6, GPIO_PTB7, /* PTC */ GPIO_PT...
arch/sh/include/cpu-sh4/cpu/sh7757.h
null
null
null
null
null
source
linux
/* SPDX-License-Identifier: GPL-2.0 */ #ifndef __ASM_SH7785_H__ #define __ASM_SH7785_H__ /* Boot Mode Pins: * * MODE0: CPG - Initial Pck/Bck Frequency [FRQMR1] * MODE1: CPG - Initial Uck/SHck/DDRck Frequency [FRQMR1] * MODE2: CPG - Reserved (L: Normal operation) * MODE3: CPG - Reserved (L: Normal operation) * MO...
arch/sh/include/cpu-sh4/cpu/sh7785.h
null
null
null
null
null
source
linux
/* SPDX-License-Identifier: GPL-2.0 * * SH7786 Pinmux * * Copyright (C) 2008, 2009 Renesas Solutions Corp. * Kuninori Morimoto <morimoto.kuninori@renesas.com> * * Based on sh7785.h */ #ifndef __CPU_SH7786_H__ #define __CPU_SH7786_H__ #include <linux/io.h> enum { /* PA */ GPIO_PA7, GPIO_PA6, GPIO_PA5, GPI...
arch/sh/include/cpu-sh4/cpu/sh7786.h
null
null
null
null
null
source
linux
/* SPDX-License-Identifier: GPL-2.0 */ #ifndef __CPU_SHX3_H #define __CPU_SHX3_H enum { /* PA */ GPIO_PA7, GPIO_PA6, GPIO_PA5, GPIO_PA4, GPIO_PA3, GPIO_PA2, GPIO_PA1, GPIO_PA0, /* PB */ GPIO_PB7, GPIO_PB6, GPIO_PB5, GPIO_PB4, GPIO_PB3, GPIO_PB2, GPIO_PB1, GPIO_PB0, /* PC */ GPIO_PC7, GPIO_PC6, GPIO_PC5, GPIO...
arch/sh/include/cpu-sh4/cpu/shx3.h
null
null
null
null
null
source
linux
/* SPDX-License-Identifier: GPL-2.0 */ #ifndef __ASM_CPU_SH4_SIGCONTEXT_H #define __ASM_CPU_SH4_SIGCONTEXT_H struct sigcontext { unsigned long oldmask; /* CPU registers */ unsigned long sc_regs[16]; unsigned long sc_pc; unsigned long sc_pr; unsigned long sc_sr; unsigned long sc_gbr; unsigned long sc_mach; un...
arch/sh/include/cpu-sh4/cpu/sigcontext.h
null
null
null
null
null
source
linux
/* SPDX-License-Identifier: GPL-2.0 * * include/asm-sh/cpu-sh4/sq.h * * Copyright (C) 2001, 2002, 2003 Paul Mundt * Copyright (C) 2001, 2002 M. R. Brown */ #ifndef __ASM_CPU_SH4_SQ_H #define __ASM_CPU_SH4_SQ_H #include <asm/addrspace.h> #include <asm/page.h> /* * Store queues range from e0000000-e3fffffc, al...
arch/sh/include/cpu-sh4/cpu/sq.h
null
null
null
null
null
source
linux
/* SPDX-License-Identifier: GPL-2.0 * * include/asm-sh/cpu-sh4/watchdog.h * * Copyright (C) 2002, 2003 Paul Mundt * Copyright (C) 2009 Siemens AG * Copyright (C) 2009 Sitdikov Valentin */ #ifndef __ASM_CPU_SH4_WATCHDOG_H #define __ASM_CPU_SH4_WATCHDOG_H #if defined(CONFIG_CPU_SUBTYPE_SH7785) || defined(CONFIG_C...
arch/sh/include/cpu-sh4/cpu/watchdog.h
null
null
null
null
null
source
linux
/* SPDX-License-Identifier: GPL-2.0 */ #ifndef __ASM_SH_CPU_SH4_DMA_SH7780_H #define __ASM_SH_CPU_SH4_DMA_SH7780_H #include <linux/sh_intc.h> #if defined(CONFIG_CPU_SUBTYPE_SH7343) || \ defined(CONFIG_CPU_SUBTYPE_SH7730) #define DMTE0_IRQ evt2irq(0x800) #define DMTE4_IRQ evt2irq(0xb80) #define DMAE0_IRQ evt2irq(0xbc...
arch/sh/include/cpu-sh4a/cpu/dma.h
null
null
null
null
null
source
linux
/* SPDX-License-Identifier: GPL-2.0 */ #ifndef __CPU_SH4A_SERIAL_H #define __CPU_SH4A_SERIAL_H /* arch/sh/kernel/cpu/sh4a/serial-sh7722.c */ extern struct plat_sci_port_ops sh7722_sci_port_ops; #endif /* __CPU_SH4A_SERIAL_H */
arch/sh/include/cpu-sh4a/cpu/serial.h
null
null
null
null
null
source
linux
/* SPDX-License-Identifier: GPL-2.0 */ #ifndef __ASM_SH_RENESAS_R7780RP_H #define __ASM_SH_RENESAS_R7780RP_H /* Box specific addresses. */ #define PA_NORFLASH_ADDR 0x00000000 #define PA_NORFLASH_SIZE 0x04000000 #if defined(CONFIG_SH_R7780MP) #define PA_BCR 0xa4000000 /* FPGA */ #define PA_SDPOW (-1) #...
arch/sh/include/mach-common/mach/highlander.h
null
null
null
null
null
source
linux
/* SPDX-License-Identifier: GPL-2.0 * * Copyright (C) 2003, 2004, 2005 Andriy Skulysh */ #ifndef __ASM_SH_HP6XX_H #define __ASM_SH_HP6XX_H #include <linux/sh_intc.h> #define HP680_BTN_IRQ evt2irq(0x600) /* IRQ0_IRQ */ #define HP680_TS_IRQ evt2irq(0x660) /* IRQ3_IRQ */ #define HP680_HD64461_IRQ evt2irq(0x680) /*...
arch/sh/include/mach-common/mach/hp6xx.h
null
null
null
null
null
source
linux
/* SPDX-License-Identifier: GPL-2.0 */ #ifndef __ASM_SH_LBOXRE2_H #define __ASM_SH_LBOXRE2_H /* * Copyright (C) 2007 Nobuhiro Iwamatsu * * NTT COMWARE L-BOX RE2 support */ #include <linux/sh_intc.h> #define IRQ_CF1 evt2irq(0x320) /* CF1 */ #define IRQ_CF0 evt2irq(0x340) /* CF0 */ #define IRQ_INTD evt2irq(0x360)...
arch/sh/include/mach-common/mach/lboxre2.h
null
null
null
null
null
source
linux
/* SPDX-License-Identifier: GPL-2.0 * * include/asm-sh/magicpanelr2.h * * Copyright (C) 2007 Markus Brunner, Mark Jonas * * I/O addresses and bitmasks for Magic Panel Release 2 board */ #ifndef __ASM_SH_MAGICPANELR2_H #define __ASM_SH_MAGICPANELR2_H #include <linux/gpio.h> #define __IO_PREFIX mpr2 #includ...
arch/sh/include/mach-common/mach/magicpanelr2.h
null
null
null
null
null
source
linux
/* SPDX-License-Identifier: GPL-2.0 * * SH version cribbed from the MIPS copy: * * Copyright (C) 2003, 2004 Ralf Baechle */ #ifndef __MACH_COMMON_MANGLE_PORT_H #define __MACH_COMMON_MANGLE_PORT_H /* * Sane hardware offers swapping of PCI/ISA I/O space accesses in hardware; * less sane hardware forces software t...
arch/sh/include/mach-common/mach/mangle-port.h
null
null
null
null
null
source
linux
/* SPDX-License-Identifier: GPL-2.0 */ #ifndef __ASM_SH_RENESAS_RTS7751R2D_H #define __ASM_SH_RENESAS_RTS7751R2D_H /* * linux/include/asm-sh/renesas_rts7751r2d.h * * Copyright (C) 2000 Atom Create Engineering Co., Ltd. * * Renesas Technology Sales RTS7751R2D support */ /* Board specific addresses. */ #define...
arch/sh/include/mach-common/mach/r2d.h
null
null
null
null
null
source
linux
/* SPDX-License-Identifier: GPL-2.0 */ #ifdef __ASSEMBLER__ /* do nothing here by default */ #else /* __ASSEMBLER__ */ static inline void mmcif_update_progress(int nr) { } #endif /* __ASSEMBLER__ */
arch/sh/include/mach-common/mach/romimage.h
null
null
null
null
null
source
linux
/* SPDX-License-Identifier: GPL-2.0 */ #ifndef __ASM_SH_RENESAS_SDK7780_H #define __ASM_SH_RENESAS_SDK7780_H /* * linux/include/asm-sh/sdk7780.h * * Renesas Solutions SH7780 SDK Support * Copyright (C) 2008 Nicholas Beck <nbeck@mpc-data.co.uk> */ #include <linux/sh_intc.h> #include <asm/addrspace.h> /* Box speci...
arch/sh/include/mach-common/mach/sdk7780.h
null
null
null
null
null
source
linux
/* SPDX-License-Identifier: GPL-2.0 * * include/asm-sh/snapgear.h * * Modified version of io_se.h for the snapgear-specific functions. * * IO functions for a SnapGear */ #ifndef _ASM_SH_IO_SNAPGEAR_H #define _ASM_SH_IO_SNAPGEAR_H #define __IO_PREFIX snapgear #include <asm/io_generic.h> /* * We need to rememb...
arch/sh/include/mach-common/mach/secureedge5410.h
null
null
null
null
null
source
linux
/* SPDX-License-Identifier: GPL-2.0 */ #ifndef __MACH_SH2007_H #define __MACH_SH2007_H #define CS5BCR 0xff802050 #define CS5WCR 0xff802058 #define CS5PCR 0xff802070 #define BUS_SZ8 1 #define BUS_SZ16 2 #define BUS_SZ32 3 #define PCMCIA_IODYN 1 #define PCMCIA_ATA 0 #define PCMCIA_IO8 2 #define PCMCIA_IO16 3 #defi...
arch/sh/include/mach-common/mach/sh2007.h
null
null
null
null
null
source
linux
/* SPDX-License-Identifier: GPL-2.0 */ #ifndef __ASM_SH_SH7763RDP_H #define __ASM_SH_SH7763RDP_H /* * linux/include/asm-sh/sh7763drp.h * * Copyright (C) 2008 Renesas Solutions * Copyright (C) 2008 Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com> */ #include <asm/addrspace.h> /* clock control */ #define MSTPCR1 ...
arch/sh/include/mach-common/mach/sh7763rdp.h
null
null
null
null
null
source
linux
/* SPDX-License-Identifier: GPL-2.0 */ #ifndef __ASM_SH_RENESAS_SH7785LCR_H #define __ASM_SH_RENESAS_SH7785LCR_H /* * This board has 2 physical memory maps. * It can be changed with DIP switch(S2-5). * * phys address | S2-5 = OFF | S2-5 = ON * -----------------------------+---------------+--------------- * 0x0...
arch/sh/include/mach-common/mach/sh7785lcr.h
null
null
null
null
null
source
linux
/* SPDX-License-Identifier: GPL-2.0 */ #ifndef __ASM_SH_SHMIN_H #define __ASM_SH_SHMIN_H #define SHMIN_IO_BASE 0xb0000000UL #define SHMIN_NE_IRQ IRQ2_IRQ #define SHMIN_NE_BASE 0x300 #endif
arch/sh/include/mach-common/mach/shmin.h
null
null
null
null
null
source
linux
/* SPDX-License-Identifier: GPL-2.0 */ /* * Platform definitions for Titan */ #ifndef _ASM_SH_TITAN_H #define _ASM_SH_TITAN_H #include <linux/sh_intc.h> #define __IO_PREFIX titan #include <asm/io_generic.h> /* IRQ assignments */ #define TITAN_IRQ_WAN evt2irq(0x240) /* eth0 (WAN) */ #define TITAN_IRQ_LAN evt2irq(...
arch/sh/include/mach-common/mach/titan.h
null
null
null
null
null
source
linux
/* SPDX-License-Identifier: GPL-2.0 */ #ifndef __MACH_URQUELL_H #define __MACH_URQUELL_H /* * ------ 0x00000000 ------------------------------------ * CS0 | (SW1,SW47) EEPROM, SRAM, NOR FLASH * -----+ 0x04000000 ------------------------------------ * CS1 | (SW47) SRAM, SRAM-LAN-PCMCIA, NOR FLASH * ---...
arch/sh/include/mach-common/mach/urquell.h
null
null
null
null
null
source
linux
/* SPDX-License-Identifier: GPL-2.0 * * include/asm-sh/dreamcast/dma.h * * Copyright (C) 2003 Paul Mundt */ #ifndef __ASM_SH_DREAMCAST_DMA_H #define __ASM_SH_DREAMCAST_DMA_H /* Number of DMA channels */ #define G2_NR_DMA_CHANNELS 4 /* Channels for cascading */ #define PVR2_CASCADE_CHAN 2 #define G2_CASCADE_CHAN ...
arch/sh/include/mach-dreamcast/mach/dma.h
null
null
null
null
null