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 #include <linux/init.h> #include <linux/thread_info.h> #include <asm/x86_init.h> #include <asm/apic.h> #include <asm/io_apic.h> #include <asm/xen/hypercall.h> #include <xen/xen.h> #include <xen/interface/physdev.h> #include "xen-ops.h" static unsigned int xen_io_apic_read(unsigned...
arch/x86/xen/apic.c
null
null
null
null
null
source
linux
// SPDX-License-Identifier: GPL-2.0 #include <linux/init.h> #include <linux/debugfs.h> #include <linux/slab.h> #include "xen-ops.h" static struct dentry *d_xen_debug; struct dentry * __init xen_init_debugfs(void) { if (!d_xen_debug) d_xen_debug = debugfs_create_dir("xen", NULL); return d_xen_debug; }
arch/x86/xen/debugfs.c
null
null
null
null
null
source
linux
// SPDX-License-Identifier: GPL-2.0 /* * Copyright (c) 2014 Oracle Co., Daniel Kiper */ #include <linux/bitops.h> #include <linux/efi.h> #include <linux/init.h> #include <linux/string.h> #include <xen/xen.h> #include <xen/xen-ops.h> #include <xen/interface/platform.h> #include <asm/page.h> #include <asm/setup.h> #...
arch/x86/xen/efi.c
null
null
null
null
null
source
linux
// SPDX-License-Identifier: GPL-2.0 #include <linux/console.h> #include <linux/cpu.h> #include <linux/instrumentation.h> #include <linux/kexec.h> #include <linux/memblock.h> #include <linux/slab.h> #include <linux/panic_notifier.h> #include <xen/xen.h> #include <xen/features.h> #include <xen/interface/sched.h> #inclu...
arch/x86/xen/enlighten.c
null
null
null
null
null
source
linux
// SPDX-License-Identifier: GPL-2.0 #include <linux/acpi.h> #include <linux/cpu.h> #include <linux/kexec.h> #include <linux/memblock.h> #include <linux/virtio_anchor.h> #include <xen/features.h> #include <xen/events.h> #include <xen/hvm.h> #include <xen/interface/hvm/hvm_op.h> #include <xen/interface/memory.h> #incl...
arch/x86/xen/enlighten_hvm.c
null
null
null
null
null
source
linux
// SPDX-License-Identifier: GPL-2.0 /* * Core of Xen paravirt_ops implementation. * * This file contains the xen_paravirt_ops structure itself, and the * implementations for: * - privileged instructions * - interrupt flags * - segment operations * - booting and setup * * Jeremy Fitzhardinge <jeremy@xensource....
arch/x86/xen/enlighten_pv.c
null
null
null
null
null
source
linux
// SPDX-License-Identifier: GPL-2.0 #include <linux/acpi.h> #include <linux/cpufreq.h> #include <linux/cpuidle.h> #include <linux/export.h> #include <linux/mm.h> #include <xen/hvc-console.h> #include <xen/acpi.h> #include <asm/bootparam.h> #include <asm/io_apic.h> #include <asm/hypervisor.h> #include <asm/e820/api.h>...
arch/x86/xen/enlighten_pvh.c
null
null
null
null
null
source
linux
// SPDX-License-Identifier: GPL-2.0 OR MIT /****************************************************************************** * grant_table.c * x86 specific part * * Granting foreign access to our memory reservation. * * Copyright (c) 2005-2006, Christopher Clark * Copyright (c) 2004-2005, K A Fraser * Copyright (...
arch/x86/xen/grant-table.c
null
null
null
null
null
source
linux
// SPDX-License-Identifier: GPL-2.0 #include <linux/hardirq.h> #include <asm/x86_init.h> #include <xen/interface/xen.h> #include <xen/interface/sched.h> #include <xen/interface/vcpu.h> #include <xen/features.h> #include <xen/events.h> #include <asm/xen/hypercall.h> #include <asm/xen/hypervisor.h> #include "xen-ops....
arch/x86/xen/irq.c
null
null
null
null
null
source
linux
// SPDX-License-Identifier: GPL-2.0 #include <linux/pfn.h> #include <asm/xen/page.h> #include <asm/xen/hypercall.h> #include <xen/interface/memory.h> #include "xen-ops.h" unsigned long arbitrary_virt_to_mfn(void *vaddr) { xmaddr_t maddr = arbitrary_virt_to_machine(vaddr); return PFN_DOWN(maddr.maddr); } xmaddr_t...
arch/x86/xen/mmu.c
null
null
null
null
null
source
linux
// SPDX-License-Identifier: GPL-2.0 #include <linux/types.h> #include <linux/crash_dump.h> #include <xen/interface/xen.h> #include <xen/hvm.h> #include "xen-ops.h" #ifdef CONFIG_PROC_VMCORE /* * The kdump kernel has to check whether a pfn of the crashed kernel * was a ballooned page. vmcore is using this function ...
arch/x86/xen/mmu_hvm.c
null
null
null
null
null
source
linux
// SPDX-License-Identifier: GPL-2.0 /* * Xen mmu operations * * This file contains the various mmu fetch and update operations. * The most important job they must perform is the mapping between the * domain's pfn and the overall machine mfns. * * Xen allows guests to directly update the pagetable, in a controll...
arch/x86/xen/mmu_pv.c
null
null
null
null
null
source
linux
// SPDX-License-Identifier: GPL-2.0 /* * Xen hypercall batching. * * Xen allows multiple hypercalls to be issued at once, using the * multicall interface. This allows the cost of trapping into the * hypervisor to be amortized over several calls. * * This file implements a simple interface for multicalls. There...
arch/x86/xen/multicalls.c
null
null
null
null
null
source
linux
// SPDX-License-Identifier: GPL-2.0 /* * Xen leaves the responsibility for maintaining p2m mappings to the * guests themselves, but it must also access and update the p2m array * during suspend/resume when all the pages are reallocated. * * The logical flat p2m table is mapped to a linear kernel memory area. * F...
arch/x86/xen/p2m.c
null
null
null
null
null
source
linux
// SPDX-License-Identifier: GPL-2.0 /****************************************************************************** * platform-pci-unplug.c * * Xen platform PCI device driver * Copyright (c) 2010, Citrix */ #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt #include <linux/init.h> #include <linux/io.h> #include <linux...
arch/x86/xen/platform-pci-unplug.c
null
null
null
null
null
source
linux
// SPDX-License-Identifier: GPL-2.0 #include <linux/types.h> #include <linux/interrupt.h> #include <asm/msr.h> #include <asm/xen/hypercall.h> #include <xen/xen.h> #include <xen/page.h> #include <xen/interface/xen.h> #include <xen/interface/vcpu.h> #include <xen/interface/xenpmu.h> #include "xen-ops.h" /* x86_pmu.han...
arch/x86/xen/pmu.c
null
null
null
null
null
source
linux
// SPDX-License-Identifier: GPL-2.0 /* * Machine specific setup for xen * * Jeremy Fitzhardinge <jeremy@xensource.com>, XenSource Inc, 2007 */ #include <linux/init.h> #include <linux/iscsi_ibft.h> #include <linux/sched.h> #include <linux/kstrtox.h> #include <linux/mm.h> #include <linux/pm.h> #include <linux/memblo...
arch/x86/xen/setup.c
null
null
null
null
null
source
linux
// SPDX-License-Identifier: GPL-2.0 #include <linux/smp.h> #include <linux/cpu.h> #include <linux/slab.h> #include <linux/cpumask.h> #include <linux/percpu.h> #include <xen/events.h> #include <xen/hvc-console.h> #include "xen-ops.h" static DEFINE_PER_CPU(struct xen_common_irq, xen_resched_irq) = { .irq = -1 }; stati...
arch/x86/xen/smp.c
null
null
null
null
null
source
linux
// SPDX-License-Identifier: GPL-2.0 #include <linux/thread_info.h> #include <asm/smp.h> #include <xen/events.h> #include "xen-ops.h" static void __init xen_hvm_smp_prepare_boot_cpu(void) { BUG_ON(smp_processor_id() != 0); native_smp_prepare_boot_cpu(); /* * Setup vcpu_info for boot CPU. Secondary CPUs get thei...
arch/x86/xen/smp_hvm.c
null
null
null
null
null
source
linux
// SPDX-License-Identifier: GPL-2.0 /* * Xen SMP support * * This file implements the Xen versions of smp_ops. SMP under Xen is * very straightforward. Bringing a CPU up is simply a matter of * loading its initial context and setting it running. * * IPIs are handled through the Xen event mechanism. * * Becau...
arch/x86/xen/smp_pv.c
null
null
null
null
null
source
linux
// SPDX-License-Identifier: GPL-2.0 /* * Split spinlock implementation out into its own file, so it can be * compiled in a FTRACE-compatible way. */ #include <linux/kernel.h> #include <linux/spinlock.h> #include <linux/slab.h> #include <linux/atomic.h> #include <asm/qspinlock.h> #include <xen/events.h> #include "...
arch/x86/xen/spinlock.c
null
null
null
null
null
source
linux
// SPDX-License-Identifier: GPL-2.0 #include <linux/types.h> #include <linux/tick.h> #include <linux/percpu-defs.h> #include <xen/xen.h> #include <xen/interface/xen.h> #include <xen/grant_table.h> #include <xen/events.h> #include <asm/cpufeatures.h> #include <asm/msr-index.h> #include <asm/xen/hypercall.h> #include <...
arch/x86/xen/suspend.c
null
null
null
null
null
source
linux
// SPDX-License-Identifier: GPL-2.0 #include <linux/types.h> #include <xen/xen.h> #include <xen/hvm.h> #include <xen/features.h> #include <xen/interface/features.h> #include <xen/events.h> #include "xen-ops.h" void xen_hvm_post_suspend(int suspend_cancelled) { if (!suspend_cancelled) { xen_hvm_init_shared_info();...
arch/x86/xen/suspend_hvm.c
null
null
null
null
null
source
linux
// SPDX-License-Identifier: GPL-2.0 #include <linux/types.h> #include <asm/xen/hypercall.h> #include <asm/xen/page.h> #include <asm/fixmap.h> #include "xen-ops.h" void xen_pv_pre_suspend(void) { xen_mm_pin_all(); xen_start_info->store_mfn = mfn_to_pfn(xen_start_info->store_mfn); xen_start_info->console.domU.mfn...
arch/x86/xen/suspend_pv.c
null
null
null
null
null
source
linux
// SPDX-License-Identifier: GPL-2.0 /* * Xen time implementation. * * This is implemented in terms of a clocksource driver which uses * the hypervisor clock as a nanosecond timebase, and a clockevent * driver which uses the hypervisor's timer mechanism. * * Jeremy Fitzhardinge <jeremy@xensource.com>, XenSource I...
arch/x86/xen/time.c
null
null
null
null
null
source
linux
// SPDX-License-Identifier: GPL-2.0 #include <linux/ftrace.h> #include <xen/interface/xen.h> #include <xen/interface/xen-mca.h> #define HYPERCALL(x) [__HYPERVISOR_##x] = "("#x")", static const char *xen_hypercall_names[] = { #include <asm/xen-hypercalls.h> }; #undef HYPERCALL static const char *xen_hypercall_name(uns...
arch/x86/xen/trace.c
null
null
null
null
null
source
linux
// SPDX-License-Identifier: GPL-2.0 #include <linux/screen_info.h> #include <linux/init.h> #include <asm/setup.h> #include <xen/interface/xen.h> #include "xen-ops.h" void __init xen_init_vga(const struct dom0_vga_console_info *info, size_t size, struct screen_info *screen_info) { /* This is drawn from a dump f...
arch/x86/xen/vga.c
null
null
null
null
null
source
linux
/* SPDX-License-Identifier: GPL-2.0 */ /* * Asm versions of Xen pv-ops, suitable for direct use. * * We only bother with direct forms (ie, vcpu in percpu data) of the * operations here; the indirect forms are better handled in C. */ #include <asm/errno.h> #include <asm/asm-offsets.h> #include <asm/percpu.h> #incl...
arch/x86/xen/xen-asm.S
null
null
null
null
null
source
linux
/* SPDX-License-Identifier: GPL-2.0 */ /* Xen-specific pieces of head.S, intended to be included in the right place in head.S */ #ifdef CONFIG_XEN #include <linux/elfnote.h> #include <linux/init.h> #include <linux/instrumentation.h> #include <asm/boot.h> #include <asm/asm.h> #include <asm/frame.h> #include <asm/msr...
arch/x86/xen/xen-head.S
null
null
null
null
null
source
linux
/* SPDX-License-Identifier: GPL-2.0 */ #ifndef XEN_OPS_H #define XEN_OPS_H #include <linux/init.h> #include <linux/clocksource.h> #include <linux/irqreturn.h> #include <linux/linkage.h> #include <xen/interface/xenpmu.h> #include <xen/xen-ops.h> #include <asm/page.h> #include <trace/events/xen.h> /* These are code,...
arch/x86/xen/xen-ops.h
null
null
null
null
null
source
linux
/* SPDX-License-Identifier: GPL-2.0-only */ /* * linux/arch/xtensa/boot/boot-elf/boot.lds.S * * Copyright (C) 2008 - 2013 by Tensilica Inc. * * Chris Zankel <chris@zankel.net> * Marc Gauthier <marc@tensilica.com * Pete Delaney <piet@tensilica.com> */ #include <asm/vectors.h> OUTPUT_ARCH(xtensa) ENTRY(_Res...
arch/xtensa/boot/boot-elf/boot.lds.S
null
null
null
null
null
source
linux
/* * arch/xtensa/boot/boot-elf/bootstrap.S * * Low-level exception handling * * 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) 2004 - 2013 by Tensilica Inc. * * Chris Zan...
arch/xtensa/boot/boot-elf/bootstrap.S
null
null
null
null
null
source
linux
/* SPDX-License-Identifier: GPL-2.0 */ #include <asm/core.h> #include <asm/regs.h> #include <asm/asmmacro.h> #include <asm/cacheasm.h> #include <asm/processor.h> /* * RB-Data: RedBoot data/bss * P: Boot-Parameters * L: Kernel-Loader * * The Linux-Kernel image including the loader must be loaded * t...
arch/xtensa/boot/boot-redboot/bootstrap.S
null
null
null
null
null
source
linux
// SPDX-License-Identifier: GPL-2.0 #include <linux/zlib.h> /* bits taken from ppc */ extern void *avail_ram, *end_avail; void gunzip(void *dst, int dstlen, unsigned char *src, int *lenp); static void exit(void) { for (;;); } static void *zalloc(unsigned int size) { void *p = avail_ram; size = (s...
arch/xtensa/boot/lib/zmem.c
null
null
null
null
null
source
linux
/* SPDX-License-Identifier: GPL-2.0 */ #ifndef __ASM_PROTOTYPES_H #define __ASM_PROTOTYPES_H #include <asm/cacheflush.h> #include <asm/checksum.h> #include <asm/ftrace.h> #include <asm/page.h> #include <asm/string.h> #include <asm/uaccess.h> #include <asm-generic/asm-prototypes.h> /* * gcc internal math functions ...
arch/xtensa/include/asm/asm-prototypes.h
null
null
null
null
null
source
linux
/* * include/asm-xtensa/uaccess.h * * User space memory access functions * * These routines provide basic accessing functions to the user memory * space for the kernel. This header file provides functions such as: * * This file is subject to the terms and conditions of the GNU General Public * License. See th...
arch/xtensa/include/asm/asm-uaccess.h
null
null
null
null
null
source
linux
/* * include/asm-xtensa/asmmacro.h * * 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) 2005 Tensilica Inc. */ #ifndef _XTENSA_ASMMACRO_H #define _XTENSA_ASMMACRO_H #include...
arch/xtensa/include/asm/asmmacro.h
null
null
null
null
null
source
linux
/* * include/asm-xtensa/atomic.h * * Atomic operations that C can't guarantee us. Useful for resource counting.. * * 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) 2001 - ...
arch/xtensa/include/asm/atomic.h
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) 2001 - 2012 Tensilica Inc. */ #ifndef _XTENSA_SYSTEM_H #define _XTENSA_SYSTEM_H #include <asm/core.h> #define __mb() ({...
arch/xtensa/include/asm/barrier.h
null
null
null
null
null
source
linux
/* * include/asm-xtensa/bitops.h * * Atomic operations that C can't guarantee us.Useful for resource counting etc. * * 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) 2001 -...
arch/xtensa/include/asm/bitops.h
null
null
null
null
null
source
linux
/* * include/asm-xtensa/bootparam.h * * Definition of the Linux/Xtensa boot parameter structure * * 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) 2001 - 2005 Tensilica In...
arch/xtensa/include/asm/bootparam.h
null
null
null
null
null
source
linux
/* * include/asm-xtensa/cache.h * * 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. * * (C) 2001 - 2005 Tensilica Inc. */ #ifndef _XTENSA_CACHE_H #define _XTENSA_CACHE_H #include <asm/core.h...
arch/xtensa/include/asm/cache.h
null
null
null
null
null
source
linux
/* * include/asm-xtensa/cacheasm.h * * 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) 2006 Tensilica Inc. */ #include <asm/cache.h> #include <asm/asmmacro.h> #include <linu...
arch/xtensa/include/asm/cacheasm.h
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. * * (C) 2001 - 2013 Tensilica Inc. */ #ifndef _XTENSA_CACHEFLUSH_H #define _XTENSA_CACHEFLUSH_H #include <linux/mm.h> #include <asm/process...
arch/xtensa/include/asm/cacheflush.h
null
null
null
null
null
source
linux
/* SPDX-License-Identifier: GPL-2.0 */ #ifndef __ASM_XTENSA_CACHETYPE_H #define __ASM_XTENSA_CACHETYPE_H #include <asm/cache.h> #include <asm/page.h> #define cpu_dcache_is_aliasing() (DCACHE_WAY_SIZE > PAGE_SIZE) #endif
arch/xtensa/include/asm/cachetype.h
null
null
null
null
null
source
linux
/* * include/asm-xtensa/checksum.h * * 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) 2001 - 2005 Tensilica Inc. */ #ifndef _XTENSA_CHECKSUM_H #define _XTENSA_CHECKSUM_H #...
arch/xtensa/include/asm/checksum.h
null
null
null
null
null
source
linux
/* * Atomic xchg and cmpxchg operations. * * 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) 2001 - 2005 Tensilica Inc. */ #ifndef _XTENSA_CMPXCHG_H #define _XTENSA_CMPXCHG_...
arch/xtensa/include/asm/cmpxchg.h
null
null
null
null
null
source
linux
/* * include/asm-xtensa/coprocessor.h * * 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) 2003 - 2007 Tensilica Inc. */ #ifndef _XTENSA_COPROCESSOR_H #define _XTENSA_COPROC...
arch/xtensa/include/asm/coprocessor.h
null
null
null
null
null
source
linux
/* SPDX-License-Identifier: GPL-2.0 */ /* Copyright (C) 2019 Cadence Design Systems Inc. */ #ifndef _ASM_XTENSA_CORE_H #define _ASM_XTENSA_CORE_H #include <variant/core.h> #ifndef XCHAL_HAVE_DIV32 #define XCHAL_HAVE_DIV32 0 #endif #ifndef XCHAL_HAVE_EXCLUSIVE #define XCHAL_HAVE_EXCLUSIVE 0 #endif #ifndef XCHAL_HAV...
arch/xtensa/include/asm/core.h
null
null
null
null
null
source
linux
/* * include/asm-xtensa/current.h * * 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) 2001 - 2005 Tensilica Inc. */ #ifndef _XTENSA_CURRENT_H #define _XTENSA_CURRENT_H #inc...
arch/xtensa/include/asm/current.h
null
null
null
null
null
source
linux
/* * include/asm-xtensa/delay.h * * 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) 2001 - 2005 Tensilica Inc. * */ #ifndef _XTENSA_DELAY_H #define _XTENSA_DELAY_H #includ...
arch/xtensa/include/asm/delay.h
null
null
null
null
null
source
linux
/* * include/asm-xtensa/dma.h * * 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) 2003 - 2005 Tensilica Inc. */ #ifndef _XTENSA_DMA_H #define _XTENSA_DMA_H #include <asm/io...
arch/xtensa/include/asm/dma.h
null
null
null
null
null
source
linux
/* * include/asm-xtensa/elf.h * * ELF register definitions * * 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) 2001 - 2005 Tensilica Inc. */ #ifndef _XTENSA_ELF_H #define ...
arch/xtensa/include/asm/elf.h
null
null
null
null
null
source
linux
/* * fixmap.h: compile-time virtual memory allocation * * 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) 1998 Ingo Molnar * * Support of BIGMEM added by Gerhard Wichert, Si...
arch/xtensa/include/asm/fixmap.h
null
null
null
null
null
source
linux
/* SPDX-License-Identifier: GPL-2.0 */ #ifndef __ASM_XTENSA_FLAT_H #define __ASM_XTENSA_FLAT_H #include <linux/unaligned.h> static inline int flat_get_addr_from_rp(u32 __user *rp, u32 relval, u32 flags, u32 *addr) { *addr = get_unaligned((__force u32 *)rp); return 0; } static inline int flat_put_addr_at_rp(u32...
arch/xtensa/include/asm/flat.h
null
null
null
null
null
source
linux
/* * arch/xtensa/include/asm/ftrace.h * * 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) 2013 Tensilica Inc. */ #ifndef _XTENSA_FTRACE_H #define _XTENSA_FTRACE_H #include <...
arch/xtensa/include/asm/ftrace.h
null
null
null
null
null
source
linux
/* SPDX-License-Identifier: GPL-2.0-only */ /* * Atomic futex routines * * Based on the PowerPC implementataion * * Copyright (C) 2013 TangoTec Ltd. * * Baruch Siach <baruch@tkos.co.il> */ #ifndef _ASM_XTENSA_FUTEX_H #define _ASM_XTENSA_FUTEX_H #include <linux/futex.h> #include <linux/uaccess.h> #include <lin...
arch/xtensa/include/asm/futex.h
null
null
null
null
null
source
linux
/* * include/asm-xtensa/highmem.h * * 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) 2003 - 2005 Tensilica Inc. * Copyright (C) 2014 Cadence Design Systems Inc. */ #ifndef...
arch/xtensa/include/asm/highmem.h
null
null
null
null
null
source
linux
/* * Xtensa hardware breakpoints/watchpoints handling functions * * 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) 2016 Cadence Design Systems Inc. */ #ifndef __ASM_XTENSA_...
arch/xtensa/include/asm/hw_breakpoint.h
null
null
null
null
null
source
linux
/* * arch/xtensa/include/asm/initialize_mmu.h * * Initializes MMU: * * For the new V3 MMU we remap the TLB from virtual == physical * to the standard Linux mapping used in earlier MMU's. * * For the MMU we also support a new configuration register that * specifies how the S32C1I instruction...
arch/xtensa/include/asm/initialize_mmu.h
null
null
null
null
null
source
linux
/* * include/asm-xtensa/io.h * * 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) 2001 - 2005 Tensilica Inc. */ #ifndef _XTENSA_IO_H #define _XTENSA_IO_H #include <asm/byteo...
arch/xtensa/include/asm/io.h
null
null
null
null
null
source
linux
/* * include/asm-xtensa/irq.h * * 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) 2001 - 2005 Tensilica Inc. */ #ifndef _XTENSA_IRQ_H #define _XTENSA_IRQ_H #include <linux/...
arch/xtensa/include/asm/irq.h
null
null
null
null
null
source
linux
/* * Xtensa IRQ flags handling functions * * 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) 2001 - 2005 Tensilica Inc. * Copyright (C) 2015 Cadence Design Systems Inc. */ ...
arch/xtensa/include/asm/irqflags.h
null
null
null
null
null
source
linux
/* SPDX-License-Identifier: GPL-2.0 */ /* Copyright (C) 2018 Cadence Design Systems Inc. */ #ifndef _ASM_XTENSA_JUMP_LABEL_H #define _ASM_XTENSA_JUMP_LABEL_H #ifndef __ASSEMBLER__ #include <linux/types.h> #define JUMP_LABEL_NOP_SIZE 3 static __always_inline bool arch_static_branch(struct static_key *key, ...
arch/xtensa/include/asm/jump_label.h
null
null
null
null
null
source
linux
/* SPDX-License-Identifier: GPL-2.0 */ #ifndef __ASM_KASAN_H #define __ASM_KASAN_H #ifndef __ASSEMBLER__ #ifdef CONFIG_KASAN #include <linux/kernel.h> #include <linux/sizes.h> #include <asm/kmem_layout.h> #define KASAN_SHADOW_SCALE_SHIFT 3 /* Start of area covered by KASAN */ #define KASAN_START_VADDR __XTENSA_UL_...
arch/xtensa/include/asm/kasan.h
null
null
null
null
null
source
linux
/* * Kernel virtual memory layout definitions. * * 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) 2016 Cadence Design Systems Inc. */ #ifndef _XTENSA_KMEM_LAYOUT_H #define ...
arch/xtensa/include/asm/kmem_layout.h
null
null
null
null
null
source
linux
/* SPDX-License-Identifier: GPL-2.0 */ #ifndef __ASM_LINKAGE_H #define __ASM_LINKAGE_H #define __ALIGN .align 4 #define __ALIGN_STR ".align 4" #endif
arch/xtensa/include/asm/linkage.h
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) 2001 - 2013 Tensilica Inc. */ #ifndef _XTENSA_MMU_H #define _XTENSA_MMU_H #ifndef CONFIG_MMU #include <asm-generic/mmu.h>...
arch/xtensa/include/asm/mmu.h
null
null
null
null
null
source
linux
/* * Switch an MMU context. * * 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) 2001 - 2013 Tensilica Inc. */ #ifndef _XTENSA_MMU_CONTEXT_H #define _XTENSA_MMU_CONTEXT_H #i...
arch/xtensa/include/asm/mmu_context.h
null
null
null
null
null
source
linux
/* SPDX-License-Identifier: GPL-2.0-only */ #ifndef _ASM_MTD_XIP_H #define _ASM_MTD_XIP_H #include <asm/processor.h> #define xip_irqpending() (xtensa_get_sr(interrupt) & xtensa_get_sr(intenable)) #define xip_currtime() (xtensa_get_sr(ccount)) #define xip_elapsed_since(x) ((xtensa_get_sr(ccount) - (x)) / 1000) /* sh...
arch/xtensa/include/asm/mtd-xip.h
null
null
null
null
null
source
linux
/* * Xtensa MX interrupt distributor * * 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) 2008 - 2013 Tensilica Inc. */ #ifndef _XTENSA_MXREGS_H #define _XTENSA_MXREGS_H /* ...
arch/xtensa/include/asm/mxregs.h
null
null
null
null
null
source
linux
/* SPDX-License-Identifier: GPL-2.0 */ static inline void init_mmu(void) { } static inline void init_kio(void) { } #include <asm-generic/nommu_context.h>
arch/xtensa/include/asm/nommu_context.h
null
null
null
null
null
source
linux
/* * include/asm-xtensa/page.h * * published by the Free Software Foundation. * * Copyright (C) 2001 - 2007 Tensilica Inc. */ #ifndef _XTENSA_PAGE_H #define _XTENSA_PAGE_H #include <linux/const.h> #include <asm/processor.h> #include <asm/types.h> #include <asm/cache.h> #include <asm/kmem_layout.h> #include <v...
arch/xtensa/include/asm/page.h
null
null
null
null
null
source
linux
/* * include/asm-xtensa/pci-bridge.h * * 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) 2005 Tensilica Inc. */ #ifndef _XTENSA_PCI_BRIDGE_H #define _XTENSA_PCI_BRIDGE_H st...
arch/xtensa/include/asm/pci-bridge.h
null
null
null
null
null
source
linux
/* * linux/include/asm-xtensa/pci.h * * 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) 2001 - 2005 Tensilica Inc. */ #ifndef _XTENSA_PCI_H #define _XTENSA_PCI_H /* Can be ...
arch/xtensa/include/asm/pci.h
null
null
null
null
null
source
linux
#ifndef __ASM_XTENSA_PERF_EVENT_H #define __ASM_XTENSA_PERF_EVENT_H #endif /* __ASM_XTENSA_PERF_EVENT_H */
arch/xtensa/include/asm/perf_event.h
null
null
null
null
null
source
linux
/* SPDX-License-Identifier: GPL-2.0-only */ /* * include/asm-xtensa/pgalloc.h * * Copyright (C) 2001-2007 Tensilica Inc. */ #ifndef _XTENSA_PGALLOC_H #define _XTENSA_PGALLOC_H #ifdef CONFIG_MMU #include <linux/highmem.h> #include <linux/slab.h> #define __HAVE_ARCH_PTE_ALLOC_ONE_KERNEL #define __HAVE_ARCH_PTE_ALL...
arch/xtensa/include/asm/pgalloc.h
null
null
null
null
null
source
linux
/* SPDX-License-Identifier: GPL-2.0-only */ /* * include/asm-xtensa/pgtable.h * * Copyright (C) 2001 - 2013 Tensilica Inc. */ #ifndef _XTENSA_PGTABLE_H #define _XTENSA_PGTABLE_H #include <asm/page.h> #include <asm/kmem_layout.h> #include <asm-generic/pgtable-nopmd.h> /* * We only use two ring levels, user and k...
arch/xtensa/include/asm/pgtable.h
null
null
null
null
null
source
linux
/* * Platform specific functions * * 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) 2001 - 2005 Tensilica Inc. */ #ifndef _XTENSA_PLATFORM_H #define _XTENSA_PLATFORM_H #in...
arch/xtensa/include/asm/platform.h
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) 2001 - 2008 Tensilica Inc. * Copyright (C) 2015 Cadence Design Systems Inc. */ #ifndef _XTENSA_PROCESSOR_H #define _XTENS...
arch/xtensa/include/asm/processor.h
null
null
null
null
null
source
linux
/* * include/asm-xtensa/ptrace.h * * 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) 2001 - 2005 Tensilica Inc. */ #ifndef _XTENSA_PTRACE_H #define _XTENSA_PTRACE_H #include...
arch/xtensa/include/asm/ptrace.h
null
null
null
null
null
source
linux
/* * Copyright (c) 2006 Tensilica, Inc. All Rights Reserved. * * it under the terms of version 2.1 of the GNU Lesser General Public * License as published by the Free Software Foundation. * * This program is distributed in the hope that it would be useful, but * * free of the rightful claim of any third person...
arch/xtensa/include/asm/regs.h
null
null
null
null
null
source
linux
/* SPDX-License-Identifier: GPL-2.0-only */ #ifndef _ASM_SECCOMP_H #define _ASM_SECCOMP_H #include <asm-generic/seccomp.h> #define SECCOMP_ARCH_NATIVE AUDIT_ARCH_XTENSA #define SECCOMP_ARCH_NATIVE_NR NR_syscalls #define SECCOMP_ARCH_NATIVE_NAME "xtensa" #endif /* _ASM_SECCOMP_H */
arch/xtensa/include/asm/seccomp.h
null
null
null
null
null
source
linux
/* SPDX-License-Identifier: GPL-2.0 */ #ifndef _XTENSA_SECTIONS_H #define _XTENSA_SECTIONS_H #include <asm-generic/sections.h> #ifdef CONFIG_VECTORS_ADDR extern char _WindowVectors_text_start[]; extern char _WindowVectors_text_end[]; extern char _DebugInterruptVector_text_start[]; extern char _DebugInterruptVector_t...
arch/xtensa/include/asm/sections.h
null
null
null
null
null
source
linux
/* * include/asm-xtensa/serial.h * * Configuration details for 8250, 16450, 16550, etc. serial ports * * 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) 2001 - 2005 Tensilic...
arch/xtensa/include/asm/serial.h
null
null
null
null
null
source
linux
/* * include/asm-xtensa/shmparam.h * * 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 _XTENSA_SHMPARAM_H #define _XTENSA_SHMPARAM_H /* * Xtensa can have variable size caches, and ...
arch/xtensa/include/asm/shmparam.h
null
null
null
null
null
source
linux
/* * include/asm-xtensa/signal.h * * Swiped from SH. * * 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) 2001 - 2005 Tensilica Inc. */ #ifndef _XTENSA_SIGNAL_H #define _XTE...
arch/xtensa/include/asm/signal.h
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) 2001 - 2013 Tensilica Inc. */ #ifndef _XTENSA_SMP_H #define _XTENSA_SMP_H #ifdef CONFIG_SMP #define raw_smp_processor_id...
arch/xtensa/include/asm/smp.h
null
null
null
null
null
source
linux
/* * include/asm-xtensa/spinlock.h * * 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) 2001 - 2005 Tensilica Inc. */ #ifndef _XTENSA_SPINLOCK_H #define _XTENSA_SPINLOCK_H #...
arch/xtensa/include/asm/spinlock.h
null
null
null
null
null
source
linux
/* SPDX-License-Identifier: GPL-2.0 */ #ifndef __ASM_SPINLOCK_TYPES_H #define __ASM_SPINLOCK_TYPES_H #if !defined(__LINUX_SPINLOCK_TYPES_RAW_H) && !defined(__ASM_SPINLOCK_H) # error "Please do not include this file directly." #endif #include <asm-generic/qspinlock_types.h> #include <asm-generic/qrwlock_types.h> #end...
arch/xtensa/include/asm/spinlock_types.h
null
null
null
null
null
source
linux
/* * GCC stack protector support. * * (This is directly adopted from the ARM implementation) * * Stack protector works by putting predefined pattern at the start of * the stack frame and verifying that it hasn't been overwritten when * returning from the function. The pattern is called stack canary * and gcc e...
arch/xtensa/include/asm/stackprotector.h
null
null
null
null
null
source
linux
/* * arch/xtensa/include/asm/stacktrace.h * * 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) 2001 - 2013 Tensilica Inc. */ #ifndef _XTENSA_STACKTRACE_H #define _XTENSA_STACK...
arch/xtensa/include/asm/stacktrace.h
null
null
null
null
null
source
linux
/* * include/asm-xtensa/string.h * * These trivial string functions are considered part of the public domain. * * 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) 2001 - 2005...
arch/xtensa/include/asm/string.h
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) 2001 - 2005 Tensilica Inc. */ #ifndef _XTENSA_SWITCH_TO_H #define _XTENSA_SWITCH_TO_H /* * switch_to(n) should switch tas...
arch/xtensa/include/asm/switch_to.h
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) 2001 - 2007 Tensilica Inc. * Copyright (C) 2018 Cadence Design Systems Inc. */ #ifndef _ASM_SYSCALL_H #define _ASM_SYSCAL...
arch/xtensa/include/asm/syscall.h
null
null
null
null
null
source
linux
/* * sysmem-related prototypes. * * 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 Cadence Design Systems Inc. */ #ifndef _XTENSA_SYSMEM_H #define _XTENSA_SYSMEM_H #i...
arch/xtensa/include/asm/sysmem.h
null
null
null
null
null
source
linux
/* * include/asm-xtensa/thread_info.h * * 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) 2001 - 2005 Tensilica Inc. */ #ifndef _XTENSA_THREAD_INFO_H #define _XTENSA_THREAD_...
arch/xtensa/include/asm/thread_info.h
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) 2001 - 2013 Tensilica Inc. */ #ifndef _XTENSA_TIMEX_H #define _XTENSA_TIMEX_H #include <asm/processor.h> #if XCHAL_NUM_T...
arch/xtensa/include/asm/timex.h
null
null
null
null
null
source
linux
/* * include/asm-xtensa/tlb.h * * 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) 2001 - 2005 Tensilica Inc. */ #ifndef _XTENSA_TLB_H #define _XTENSA_TLB_H #include <asm/ca...
arch/xtensa/include/asm/tlb.h
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) 2001 - 2013 Tensilica Inc. */ #ifndef _XTENSA_TLBFLUSH_H #define _XTENSA_TLBFLUSH_H #include <linux/stringify.h> #include...
arch/xtensa/include/asm/tlbflush.h
null
null
null
null
null