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-only /* * * Copyright (C) 1995 Linus Torvalds * * Support of BIGMEM added by Gerhard Wichert, Siemens AG, July 1999 */ #include <linux/signal.h> #include <linux/sched.h> #include <linux/kernel.h> #include <linux/errno.h> #include <linux/string.h> #include <linux/types.h> #in...
arch/x86/mm/init_32.c
null
null
null
null
null
source
linux
// SPDX-License-Identifier: GPL-2.0-only /* * linux/arch/x86_64/mm/init.c * * Copyright (C) 1995 Linus Torvalds * Copyright (C) 2000 Pavel Machek <pavel@ucw.cz> * Copyright (C) 2002,2003 Andi Kleen <ak@suse.de> */ #include <linux/signal.h> #include <linux/sched.h> #include <linux/kernel.h> #include <linux/...
arch/x86/mm/init_64.c
null
null
null
null
null
source
linux
// SPDX-License-Identifier: GPL-2.0-or-later /* * Copyright © 2008 Ingo Molnar */ #include <asm/iomap.h> #include <asm/memtype.h> #include <linux/export.h> #include <linux/highmem.h> static int is_io_mapping_possible(resource_size_t base, unsigned long size) { #if !defined(CONFIG_X86_PAE) && defined(CONFIG_PHYS_ADD...
arch/x86/mm/iomap_32.c
null
null
null
null
null
source
linux
// SPDX-License-Identifier: GPL-2.0-only /* * Re-map IO memory to kernel address space so that we can access it. * This is needed for high PCI addresses that aren't mapped in the * 640k-1MB IO memory area on PC's * * (C) Copyright 1995 1996 Linus Torvalds */ #include <linux/memblock.h> #include <linux/init.h> #i...
arch/x86/mm/ioremap.c
null
null
null
null
null
source
linux
// SPDX-License-Identifier: GPL-2.0 #define pr_fmt(fmt) "kasan: " fmt /* cpu_feature_enabled() cannot be used this early */ #define USE_EARLY_PGTABLE_L5 #include <linux/memblock.h> #include <linux/kasan.h> #include <linux/kdebug.h> #include <linux/mm.h> #include <linux/sched.h> #include <linux/sched/task.h> #include ...
arch/x86/mm/kasan_init_64.c
null
null
null
null
null
source
linux
// SPDX-License-Identifier: GPL-2.0 /* * This file implements KASLR memory randomization for x86_64. It randomizes * the virtual address space of kernel memory regions (physical memory * mapping, vmalloc & vmemmap) for x86_64. This security feature mitigates * exploits relying on predictable kernel addresses. * *...
arch/x86/mm/kaslr.c
null
null
null
null
null
source
linux
// SPDX-License-Identifier: GPL-2.0 /* Support for MMIO probes. * Benefit many code from kprobes * (C) 2002 Louis Zhuang <louis.zhuang@intel.com>. * 2007 Alexander Eichner * 2008 Pekka Paalanen <pq@iki.fi> */ #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt #include <linux/list.h> #include <linux/rculist.h> #...
arch/x86/mm/kmmio.c
null
null
null
null
null
source
linux
// SPDX-License-Identifier: GPL-2.0 /* * x86-specific bits of KMSAN shadow implementation. * * Copyright (C) 2022 Google LLC * Author: Alexander Potapenko <glider@google.com> */ #include <asm/cpu_entry_area.h> #include <linux/percpu-defs.h> /* * Addresses within the CPU entry area (including e.g. exception stac...
arch/x86/mm/kmsan_shadow.c
null
null
null
null
null
source
linux
// SPDX-License-Identifier: GPL-2.0-only #include <linux/uaccess.h> #include <linux/kernel.h> #include <asm/vsyscall.h> #ifdef CONFIG_X86_64 bool copy_from_kernel_nofault_allowed(const void *unsafe_src, size_t size) { unsigned long vaddr = (unsigned long)unsafe_src; /* * Do not allow userspace addresses. This ...
arch/x86/mm/maccess.c
null
null
null
null
null
source
linux
// SPDX-License-Identifier: GPL-2.0-only /* * Memory Encryption Support Common Code * * Copyright (C) 2016 Advanced Micro Devices, Inc. * * Author: Tom Lendacky <thomas.lendacky@amd.com> */ #include <linux/dma-direct.h> #include <linux/dma-mapping.h> #include <linux/swiotlb.h> #include <linux/cc_platform.h> #inc...
arch/x86/mm/mem_encrypt.c
null
null
null
null
null
source
linux
// SPDX-License-Identifier: GPL-2.0-only /* * AMD Memory Encryption Support * * Copyright (C) 2016-2024 Advanced Micro Devices, Inc. * * Author: Tom Lendacky <thomas.lendacky@amd.com> */ #include <linux/linkage.h> #include <linux/init.h> #include <linux/mm.h> #include <linux/dma-direct.h> #include <linux/swiotlb...
arch/x86/mm/mem_encrypt_amd.c
null
null
null
null
null
source
linux
/* SPDX-License-Identifier: GPL-2.0-only */ /* * AMD Memory Encryption Support * * Copyright (C) 2016 Advanced Micro Devices, Inc. * * Author: Tom Lendacky <thomas.lendacky@amd.com> */ #include <linux/linkage.h> #include <linux/pgtable.h> #include <asm/page.h> #include <asm/processor-flags.h> #include <asm/msr-i...
arch/x86/mm/mem_encrypt_boot.S
null
null
null
null
null
source
linux
/* SPDX-License-Identifier: GPL-2.0 */ #ifndef __X86_MM_INTERNAL_H #define __X86_MM_INTERNAL_H void *alloc_low_pages(unsigned int num); static inline void *alloc_low_page(void) { return alloc_low_pages(1); } void early_ioremap_page_table_range_init(void); unsigned long kernel_physical_mapping_init(unsigned long sta...
arch/x86/mm/mm_internal.h
null
null
null
null
null
source
linux
// SPDX-License-Identifier: GPL-2.0-or-later /* * Flexible mmap layout support * * Based on code by Ingo Molnar and Andi Kleen, copyrighted * as follows: * * Copyright 2003-2009 Red Hat Inc. * All Rights Reserved. * Copyright 2005 Andi Kleen, SUSE Labs. * Copyright 2007 Jiri Kosina, SUSE Labs. */ #include <l...
arch/x86/mm/mmap.c
null
null
null
null
null
source
linux
// SPDX-License-Identifier: GPL-2.0-or-later /* * * Copyright (C) IBM Corporation, 2005 * Jeff Muizelaar, 2006, 2007 * Pekka Paalanen, 2008 <pq@iki.fi> * * Derived from the read-mod example from relay-examples by Tom Zanussi. */ #define pr_fmt(fmt) "mmiotrace: " fmt #include <linux/...
arch/x86/mm/mmio-mod.c
null
null
null
null
null
source
linux
// SPDX-License-Identifier: GPL-2.0-only /* Common code for 32 and 64-bit NUMA */ #include <linux/acpi.h> #include <linux/kernel.h> #include <linux/mm.h> #include <linux/of.h> #include <linux/string.h> #include <linux/init.h> #include <linux/memblock.h> #include <linux/mmzone.h> #include <linux/ctype.h> #include <linux...
arch/x86/mm/numa.c
null
null
null
null
null
source
linux
// SPDX-License-Identifier: GPL-2.0-or-later /* * Fault Injection Test harness (FI) * Copyright (C) Intel Crop. */ /* Id: pf_in.c,v 1.1.1.1 2002/11/12 05:56:32 brlock Exp * Copyright by Intel Crop., 2002 * Louis Zhuang (louis.zhuang@intel.com) * * Bjorn Steinbrink (B.Steinbrink@gmx.de), 2007 */ #include...
arch/x86/mm/pf_in.c
null
null
null
null
null
source
linux
/* SPDX-License-Identifier: GPL-2.0-or-later */ /* * Fault Injection Test harness (FI) * Copyright (C) Intel Crop. */ #ifndef __PF_H_ #define __PF_H_ enum reason_type { NOT_ME, /* page fault is not in regions */ NOTHING, /* access others point in regions */ REG_READ, /* read from addr to reg */ REG_WRITE, /*...
arch/x86/mm/pf_in.h
null
null
null
null
null
source
linux
// SPDX-License-Identifier: GPL-2.0 #include <linux/export.h> #include <linux/mm.h> #include <asm/pgtable.h> #include <asm/mem_encrypt.h> static pgprot_t protection_map[16] __ro_after_init = { [VM_NONE] = PAGE_NONE, [VM_READ] = PAGE_READONLY, [VM_WRITE] = PAGE_COPY, [VM_WRITE | VM_READ] = PAGE_COPY...
arch/x86/mm/pgprot.c
null
null
null
null
null
source
linux
// SPDX-License-Identifier: GPL-2.0 #include <linux/mm.h> #include <linux/gfp.h> #include <linux/hugetlb.h> #include <asm/pgalloc.h> #include <asm/tlb.h> #include <asm/fixmap.h> #include <asm/mtrr.h> #ifdef CONFIG_DYNAMIC_PHYSICAL_MASK phys_addr_t physical_mask __ro_after_init = (1ULL << __PHYSICAL_MASK_SHIFT) - 1; EX...
arch/x86/mm/pgtable.c
null
null
null
null
null
source
linux
// SPDX-License-Identifier: GPL-2.0 #include <linux/sched.h> #include <linux/kernel.h> #include <linux/errno.h> #include <linux/mm.h> #include <linux/nmi.h> #include <linux/swap.h> #include <linux/smp.h> #include <linux/highmem.h> #include <linux/pagemap.h> #include <linux/spinlock.h> #include <asm/cpu_entry_area.h> #...
arch/x86/mm/pgtable_32.c
null
null
null
null
null
source
linux
// SPDX-License-Identifier: GPL-2.0 #include <linux/memblock.h> #include <linux/mmdebug.h> #include <linux/export.h> #include <linux/mm.h> #include <asm/page.h> #include <linux/vmalloc.h> #include "physaddr.h" #ifdef CONFIG_X86_64 #ifdef CONFIG_DEBUG_VIRTUAL unsigned long __phys_addr(unsigned long x) { unsigned lo...
arch/x86/mm/physaddr.c
null
null
null
null
null
source
linux
/* SPDX-License-Identifier: GPL-2.0 */ #include <asm/processor.h> static inline int phys_addr_valid(resource_size_t addr) { #ifdef CONFIG_PHYS_ADDR_T_64BIT return !(addr >> boot_cpu_data.x86_phys_bits); #else return 1; #endif }
arch/x86/mm/physaddr.h
null
null
null
null
null
source
linux
// SPDX-License-Identifier: GPL-2.0-only /* * Intel Memory Protection Keys management * Copyright (c) 2015, Intel Corporation. */ #include <linux/debugfs.h> /* debugfs_create_u32() */ #include <linux/mm_types.h> /* mm_struct, vma, etc... */ #include <linux/pkeys.h> /* PKEY_* ...
arch/x86/mm/pkeys.c
null
null
null
null
null
source
linux
// SPDX-License-Identifier: GPL-2.0-only /* * Copyright(c) 2017 Intel Corporation. All rights reserved. * * This code is based in part on work published here: * * https://github.com/IAIK/KAISER * * The original work was written by and signed off by for the Linux * kernel by: * * Signed-off-by: Richard Felln...
arch/x86/mm/pti.c
null
null
null
null
null
source
linux
// SPDX-License-Identifier: GPL-2.0 /* * ACPI 3.0 based NUMA setup * Copyright 2004 Andi Kleen, SuSE Labs. * * Reads the ACPI SRAT table to figure out what memory belongs to which CPUs. * * Called from acpi_numa_init while reading the SRAT and SLIT tables. * Assumes all memory regions belonging to a single proxi...
arch/x86/mm/srat.c
null
null
null
null
null
source
linux
// SPDX-License-Identifier: GPL-2.0-only /* * Written by Pekka Paalanen, 2008-2009 <pq@iki.fi> */ #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt #include <linux/module.h> #include <linux/io.h> #include <linux/mmiotrace.h> #include <linux/security.h> static unsigned long mmio_address; module_param_hw(mmio_address, ulo...
arch/x86/mm/testmmiotrace.c
null
null
null
null
null
source
linux
// SPDX-License-Identifier: GPL-2.0-only #include <linux/init.h> #include <linux/mm.h> #include <linux/spinlock.h> #include <linux/smp.h> #include <linux/interrupt.h> #include <linux/export.h> #include <linux/cpu.h> #include <linux/debugfs.h> #include <linux/sched/smt.h> #include <linux/task_work.h> #include <linux/mm...
arch/x86/mm/tlb.c
null
null
null
null
null
source
linux
// SPDX-License-Identifier: GPL-2.0 /* * self test for change_page_attr. * * Clears the a test pte bit on random pages in the direct mapping, * then reverts and compares page tables forwards and afterwards. */ #include <linux/memblock.h> #include <linux/kthread.h> #include <linux/random.h> #include <linux/kernel.h...
arch/x86/mm/pat/cpa-test.c
null
null
null
null
null
source
linux
// SPDX-License-Identifier: GPL-2.0-only /* * Page Attribute Table (PAT) support: handle memory caching attributes in page tables. * * Authors: Venkatesh Pallipadi <venkatesh.pallipadi@intel.com> * Suresh B Siddha <suresh.b.siddha@intel.com> * * Loosely based on earlier PAT patchset from Eric Biederman a...
arch/x86/mm/pat/memtype.c
null
null
null
null
null
source
linux
/* SPDX-License-Identifier: GPL-2.0 */ #ifndef __MEMTYPE_H_ #define __MEMTYPE_H_ extern int pat_debug_enable; #define dprintk(fmt, arg...) \ do { if (pat_debug_enable) pr_info("x86/PAT: " fmt, ##arg); } while (0) struct memtype { u64 start; u64 end; u64 subtree_max_end; enum page_cache_mode type; struct ...
arch/x86/mm/pat/memtype.h
null
null
null
null
null
source
linux
// SPDX-License-Identifier: GPL-2.0 /* * Handle caching attributes in page tables (PAT) * * Authors: Venkatesh Pallipadi <venkatesh.pallipadi@intel.com> * Suresh B Siddha <suresh.b.siddha@intel.com> * * Interval tree used to store the PAT memory type reservations. */ #include <linux/seq_file.h> #includ...
arch/x86/mm/pat/memtype_interval.c
null
null
null
null
null
source
linux
// SPDX-License-Identifier: GPL-2.0-only /* * Copyright 2002 Andi Kleen, SuSE Labs. * Thanks to Ben LaHaise for precious feedback. */ #include <linux/highmem.h> #include <linux/memblock.h> #include <linux/sched.h> #include <linux/mm.h> #include <linux/interrupt.h> #include <linux/seq_file.h> #include <linux/proc_fs....
arch/x86/mm/pat/set_memory.c
null
null
null
null
null
source
linux
// SPDX-License-Identifier: GPL-2.0-only /* * BPF JIT compiler * * Copyright (C) 2011-2013 Eric Dumazet (eric.dumazet@gmail.com) * Copyright (c) 2011-2014 PLUMgrid, http://plumgrid.com */ #include <linux/netdevice.h> #include <linux/filter.h> #include <linux/if_vlan.h> #include <linux/bitfield.h> #include <linux/b...
arch/x86/net/bpf_jit_comp.c
null
null
null
null
null
source
linux
// SPDX-License-Identifier: GPL-2.0 /* * Just-In-Time compiler for eBPF filters on IA32 (32bit x86) * * Author: Wang YanQing (udknight@gmail.com) * The code based on code and ideas from: * Eric Dumazet (eric.dumazet@gmail.com) * and from: * Shubham Bansal <illusionist.neo@gmail.com> */ #include <linux/netdevic...
arch/x86/net/bpf_jit_comp32.c
null
null
null
null
null
source
linux
// SPDX-License-Identifier: GPL-2.0 /* Copyright (c) 2025 Meta Platforms, Inc. and affiliates. */ #include <linux/export.h> #include <linux/linkage.h> #include <asm/nospec-branch.h> .code64 .section .text, "ax" SYM_FUNC_START(arch_bpf_timed_may_goto) ANNOTATE_NOENDBR /* * r10 passes us stack depth, load the p...
arch/x86/net/bpf_timed_may_goto.S
null
null
null
null
null
source
linux
// SPDX-License-Identifier: GPL-2.0 #define pr_fmt(fmt) "PCI: " fmt #include <linux/pci.h> #include <linux/acpi.h> #include <linux/init.h> #include <linux/irq.h> #include <linux/dmi.h> #include <linux/slab.h> #include <linux/pci-acpi.h> #include <asm/numa.h> #include <asm/pci_x86.h> struct pci_root_info { struct ac...
arch/x86/pci/acpi.c
null
null
null
null
null
source
linux
// SPDX-License-Identifier: GPL-2.0 #include <linux/init.h> #include <linux/pci.h> #include <linux/topology.h> #include <linux/cpu.h> #include <linux/range.h> #include <asm/amd/nb.h> #include <asm/pci_x86.h> #include <asm/pci-direct.h> #include "bus_numa.h" #define AMD_NB_F0_NODE_ID 0x60 #define AMD_NB_F0_UNIT_ID...
arch/x86/pci/amd_bus.c
null
null
null
null
null
source
linux
// SPDX-License-Identifier: GPL-2.0-or-later /* * Read address ranges from a Broadcom CNB20LE Host Bridge * * Copyright (c) 2010 Ira W. Snyder <iws@ovro.caltech.edu> */ #include <linux/acpi.h> #include <linux/delay.h> #include <linux/dmi.h> #include <linux/pci.h> #include <linux/init.h> #include <asm/pci_x86.h> #i...
arch/x86/pci/broadcom_bus.c
null
null
null
null
null
source
linux
// SPDX-License-Identifier: GPL-2.0 #include <linux/init.h> #include <linux/pci.h> #include <linux/range.h> #include "bus_numa.h" LIST_HEAD(pci_root_infos); static struct pci_root_info *x86_find_pci_root_info(int bus) { struct pci_root_info *info; list_for_each_entry(info, &pci_root_infos, list) if (info->busn....
arch/x86/pci/bus_numa.c
null
null
null
null
null
source
linux
/* SPDX-License-Identifier: GPL-2.0 */ #ifndef __BUS_NUMA_H #define __BUS_NUMA_H /* * sub bus (transparent) will use entres from 3 to store extra from * root, so need to make sure we have enough slot there. */ struct pci_root_res { struct list_head list; struct resource res; }; struct pci_root_info { struct list...
arch/x86/pci/bus_numa.h
null
null
null
null
null
source
linux
// SPDX-License-Identifier: GPL-2.0-only /* * Copyright(c) 2010 Intel Corporation. All rights reserved. * * Contact Information: * Intel Corporation * 2200 Mission College Blvd. * Santa Clara, CA 97052 * * This provides access methods for PCI registers that mis-behave on * the CE4100. Each register...
arch/x86/pci/ce4100.c
null
null
null
null
null
source
linux
// SPDX-License-Identifier: GPL-2.0-only /* * Low-Level PCI Support for PC * * (c) 1999--2000 Martin Mares <mj@ucw.cz> */ #include <linux/sched.h> #include <linux/pci.h> #include <linux/pci-acpi.h> #include <linux/ioport.h> #include <linux/init.h> #include <linux/dmi.h> #include <linux/slab.h> #include <asm/acpi....
arch/x86/pci/common.c
null
null
null
null
null
source
linux
// SPDX-License-Identifier: GPL-2.0 /* * direct.c - Low-level direct PCI config space access */ #include <linux/pci.h> #include <linux/init.h> #include <linux/dmi.h> #include <asm/pci_x86.h> /* * Functions for accessing PCI base (first 256 bytes) and extended * (4096 bytes per PCI function) configuration space wi...
arch/x86/pci/direct.c
null
null
null
null
null
source
linux
// SPDX-License-Identifier: GPL-2.0 #include <linux/kernel.h> #include <linux/pci.h> #include <asm/pci-direct.h> #include <asm/io.h> #include <asm/pci_x86.h> /* Direct PCI access. This is used for PCI accesses in early boot before the PCI subsystem works. */ u32 read_pci_config(u8 bus, u8 slot, u8 func, u8 offset)...
arch/x86/pci/early.c
null
null
null
null
null
source
linux
// SPDX-License-Identifier: GPL-2.0 /* * Exceptions for specific devices. Usually work-arounds for fatal design flaws. */ #include <linux/bitfield.h> #include <linux/delay.h> #include <linux/dmi.h> #include <linux/pci.h> #include <linux/suspend.h> #include <linux/vgaarb.h> #include <asm/amd/node.h> #include <asm/hpe...
arch/x86/pci/fixup.c
null
null
null
null
null
source
linux
// SPDX-License-Identifier: GPL-2.0 /* * Low-Level PCI Access for i386 machines * * Copyright 1993, 1994 Drew Eckhardt * Visionary Computing * (Unix and Linux consulting and custom programming) * Drew@Colorado.EDU * +1 (303) 786-7975 * * Drew's work was sponsored by: * iX Multiuser Multita...
arch/x86/pci/i386.c
null
null
null
null
null
source
linux
// SPDX-License-Identifier: GPL-2.0 #include <linux/pci.h> #include <linux/init.h> #include <asm/pci_x86.h> #include <asm/x86_init.h> #include <asm/irqdomain.h> /* arch_initcall has too random ordering, so call the initializers in the right sequence from here. */ static __init int pci_arch_init(void) { int type, p...
arch/x86/pci/init.c
null
null
null
null
null
source
linux
// SPDX-License-Identifier: GPL-2.0 /* * Intel MID PCI support * Copyright (c) 2008 Intel Corporation * Jesse Barnes <jesse.barnes@intel.com> * * Moorestown has an interesting PCI implementation: * - configuration space is memory mapped (as defined by MCFG) * - Lincroft devices also have a real, type 1...
arch/x86/pci/intel_mid.c
null
null
null
null
null
source
linux
// SPDX-License-Identifier: GPL-2.0 /* * Low-Level PCI Support for PC -- Routing of Interrupts * * (c) 1999--2000 Martin Mares <mj@ucw.cz> */ #include <linux/types.h> #include <linux/kernel.h> #include <linux/pci.h> #include <linux/init.h> #include <linux/interrupt.h> #include <linux/dmi.h> #include <linux/io.h> #...
arch/x86/pci/irq.c
null
null
null
null
null
source
linux
// SPDX-License-Identifier: GPL-2.0-only /* * legacy.c - traditional, old school PCI bus probing */ #include <linux/init.h> #include <linux/export.h> #include <linux/pci.h> #include <asm/jailhouse_para.h> #include <asm/pci_x86.h> /* * Discover remaining PCI buses in case there are peer host bridges. * We use the n...
arch/x86/pci/legacy.c
null
null
null
null
null
source
linux
// SPDX-License-Identifier: GPL-2.0 /* * Low-level direct PCI config space access via ECAM - common code between * i386 and x86-64. * * This code does: * - known chipset handling * - ACPI decoding and validation * * Per-architecture code takes care of the mappings and accesses * themselves. */ #define pr_fmt...
arch/x86/pci/mmconfig-shared.c
null
null
null
null
null
source
linux
// SPDX-License-Identifier: GPL-2.0-only /* * Copyright (C) 2004 Matthew Wilcox <matthew@wil.cx> * Copyright (C) 2004 Intel Corp. */ /* * mmconfig.c - Low-level direct PCI config space access via MMCONFIG */ #include <linux/pci.h> #include <linux/init.h> #include <linux/rcupdate.h> #include <asm/e820/api.h> #inc...
arch/x86/pci/mmconfig_32.c
null
null
null
null
null
source
linux
// SPDX-License-Identifier: GPL-2.0 /* * mmconfig.c - Low-level direct PCI config space access via MMCONFIG * * This is an 64bit optimized version that always keeps the full mmconfig * space mapped. This allows lockless config space operation. */ #define pr_fmt(fmt) "PCI: " fmt #include <linux/pci.h> #include <l...
arch/x86/pci/mmconfig_64.c
null
null
null
null
null
source
linux
// SPDX-License-Identifier: GPL-2.0 /* * Numascale NumaConnect-specific PCI code * * Copyright (C) 2012 Numascale AS. All rights reserved. * * Send feedback to <support@numascale.com> * * PCI accessor functions derived from mmconfig_64.c * */ #include <linux/pci.h> #include <asm/pci_x86.h> #include <asm/numac...
arch/x86/pci/numachip.c
null
null
null
null
null
source
linux
// SPDX-License-Identifier: GPL-2.0-or-later /* * Low-level PCI config space access for OLPC systems who lack the VSA * PCI virtualization software. * * Copyright © 2006 Advanced Micro Devices, Inc. * * The AMD Geode chipset (ie: GX2 processor, cs5536 I/O companion device) * has some I/O functions (display, sou...
arch/x86/pci/olpc.c
null
null
null
null
null
source
linux
// SPDX-License-Identifier: GPL-2.0 /* * BIOS32 and PCI BIOS handling. */ #include <linux/bits.h> #include <linux/bitfield.h> #include <linux/pci.h> #include <linux/init.h> #include <linux/slab.h> #include <linux/module.h> #include <linux/uaccess.h> #include <asm/pci_x86.h> #include <asm/e820/types.h> #include <asm...
arch/x86/pci/pcbios.c
null
null
null
null
null
source
linux
// SPDX-License-Identifier: GPL-2.0-only /* * Xen PCI - handle PCI (INTx) and MSI infrastructure calls for PV, HVM and * initial domain support. We also handle the DSDT _PRT callbacks for GSI's * used in HVM and initial domain mode (PV does not parse ACPI, so it has no * concept of GSIs). Under PV we hook under the...
arch/x86/pci/xen.c
null
null
null
null
null
source
linux
// SPDX-License-Identifier: GPL-2.0-only /* * Intel SOC Punit device state debug driver * Punit controls power management for North Complex devices (Graphics * blocks, Image Signal Processing, video processing, display, DSP etc.) * * Copyright (c) 2015, Intel Corporation. */ #define pr_fmt(fmt) "punit_atom: " fm...
arch/x86/platform/atom/punit_atom_debug.c
null
null
null
null
null
source
linux
// SPDX-License-Identifier: GPL-2.0-only /* * Intel CE4100 platform specific setup code * * (C) Copyright 2010 Intel Corporation */ #include <linux/init.h> #include <linux/reboot.h> #include <asm/ce4100.h> #include <asm/prom.h> #include <asm/setup.h> #include <asm/io.h> /* * The CE4100 platform has an internal ...
arch/x86/platform/ce4100/ce4100.c
null
null
null
null
null
source
linux
// SPDX-License-Identifier: GPL-2.0 /* * Common EFI (Extensible Firmware Interface) support functions * Based on Extensible Firmware Interface Specification version 1.0 * * Copyright (C) 1999 VA Linux Systems * Copyright (C) 1999 Walt Drummond <drummond@valinux.com> * Copyright (C) 1999-2002 Hewlett-Packard Co. ...
arch/x86/platform/efi/efi.c
null
null
null
null
null
source
linux
// SPDX-License-Identifier: GPL-2.0 /* * Extensible Firmware Interface * * Based on Extensible Firmware Interface Specification version 1.0 * * Copyright (C) 1999 VA Linux Systems * Copyright (C) 1999 Walt Drummond <drummond@valinux.com> * Copyright (C) 1999-2002 Hewlett-Packard Co. * David Mosberger-Tang <davi...
arch/x86/platform/efi/efi_32.c
null
null
null
null
null
source
linux
// SPDX-License-Identifier: GPL-2.0 /* * x86_64 specific EFI support functions * Based on Extensible Firmware Interface Specification version 1.0 * * Copyright (C) 2005-2008 Intel Co. * Fenghua Yu <fenghua.yu@intel.com> * Bibo Mao <bibo.mao@intel.com> * Chandramouli Narayanan <mouli@linux.intel.com> * Huang Yin...
arch/x86/platform/efi/efi_64.c
null
null
null
null
null
source
linux
/* SPDX-License-Identifier: GPL-2.0 */ /* * EFI call stub for IA32. * * This stub allows us to make EFI calls in physical mode with interrupts * turned off. */ #include <linux/linkage.h> #include <linux/init.h> #include <asm/asm-offsets.h> #include <asm/page_types.h> __INIT SYM_FUNC_START(efi_call_svam) push %...
arch/x86/platform/efi/efi_stub_32.S
null
null
null
null
null
source
linux
/* SPDX-License-Identifier: GPL-2.0 */ /* * Function calling ABI conversion from Linux to EFI for x86_64 * * Copyright (C) 2007 Intel Corp * Bibo Mao <bibo.mao@intel.com> * Huang Ying <ying.huang@intel.com> */ #include <linux/linkage.h> #include <asm/nospec-branch.h> SYM_FUNC_START(__efi_call) /* * The EFI c...
arch/x86/platform/efi/efi_stub_64.S
null
null
null
null
null
source
linux
/* SPDX-License-Identifier: GPL-2.0 */ /* * Copyright (C) 2014 Intel Corporation; author Matt Fleming * * Support for invoking 32-bit EFI runtime services from a 64-bit * kernel. * * The below thunking functions are only used after ExitBootServices() * has been called. This simplifies things considerably as comp...
arch/x86/platform/efi/efi_thunk_64.S
null
null
null
null
null
source
linux
// SPDX-License-Identifier: GPL-2.0 /* * Common EFI memory map functions. */ #define pr_fmt(fmt) "efi: " fmt #include <linux/init.h> #include <linux/kernel.h> #include <linux/efi.h> #include <linux/io.h> #include <asm/early_ioremap.h> #include <asm/efi.h> #include <linux/memblock.h> #include <linux/slab.h> static ...
arch/x86/platform/efi/memmap.c
null
null
null
null
null
source
linux
// SPDX-License-Identifier: GPL-2.0-only #define pr_fmt(fmt) "efi: " fmt #include <linux/init.h> #include <linux/kernel.h> #include <linux/string.h> #include <linux/time.h> #include <linux/types.h> #include <linux/efi.h> #include <linux/slab.h> #include <linux/memblock.h> #include <linux/acpi.h> #include <linux/dmi.h>...
arch/x86/platform/efi/quirks.c
null
null
null
null
null
source
linux
// SPDX-License-Identifier: GPL-2.0 /* * Copyright (C) 2013 Red Hat, Inc., Dave Young <dyoung@redhat.com> */ #include <linux/string.h> #include <linux/kernel.h> #include <linux/module.h> #include <linux/types.h> #include <linux/efi.h> #include <linux/slab.h> #include <asm/efi.h> #include <asm/setup.h> struct efi_r...
arch/x86/platform/efi/runtime-map.c
null
null
null
null
null
source
linux
// SPDX-License-Identifier: GPL-2.0-only /* * System Specific setup for PCEngines ALIX. * At the moment this means setup of GPIO control of LEDs * on Alix.2/3/6 boards. * * Copyright (C) 2008 Constantin Baranov <const@mimas.ru> * Copyright (C) 2011 Ed Wildgoose <kernel@wildgooses.com> * and Philip...
arch/x86/platform/geode/alix.c
null
null
null
null
null
source
linux
// SPDX-License-Identifier: GPL-2.0-only /* * Shared helpers to register GPIO-connected buttons and LEDs * on AMD Geode boards. */ #include <linux/err.h> #include <linux/gpio/machine.h> #include <linux/gpio/property.h> #include <linux/input.h> #include <linux/leds.h> #include <linux/platform_device.h> #include <lin...
arch/x86/platform/geode/geode-common.c
null
null
null
null
null
source
linux
// SPDX-License-Identifier: GPL-2.0-only /* * Shared helpers to register GPIO-connected buttons and LEDs * on AMD Geode boards. */ #ifndef __PLATFORM_GEODE_COMMON_H #define __PLATFORM_GEODE_COMMON_H #include <linux/property.h> struct geode_led { unsigned int pin; bool default_on; }; int geode_create_restart_ke...
arch/x86/platform/geode/geode-common.h
null
null
null
null
null
source
linux
// SPDX-License-Identifier: GPL-2.0-only /* * System Specific setup for Traverse Technologies GEOS. * At the moment this means setup of GPIO control of LEDs. * * Copyright (C) 2008 Constantin Baranov <const@mimas.ru> * Copyright (C) 2011 Ed Wildgoose <kernel@wildgooses.com> * and Philip Prindeville...
arch/x86/platform/geode/geos.c
null
null
null
null
null
source
linux
// SPDX-License-Identifier: GPL-2.0-only /* * System Specific setup for Soekris net5501 * At the moment this means setup of GPIO control of LEDs and buttons * on net5501 boards. * * Copyright (C) 2008-2009 Tower Technologies * Written by Alessandro Zummo <a.zummo@towertech.it> * * Copyright (C) 2008 Constantin ...
arch/x86/platform/geode/net5501.c
null
null
null
null
null
source
linux
// SPDX-License-Identifier: GPL-2.0-only /* * Intel MID platform setup code * * (C) Copyright 2008, 2012, 2021 Intel Corporation * Author: Jacob Pan (jacob.jun.pan@intel.com) * Author: Sathyanarayanan Kuppuswamy <sathyanarayanan.kuppuswamy@intel.com> */ #define pr_fmt(fmt) "intel_mid: " fmt #include <linux/init...
arch/x86/platform/intel-mid/intel-mid.c
null
null
null
null
null
source
linux
// SPDX-License-Identifier: GPL-2.0-only /* * Intel MID Power Management Unit (PWRMU) device driver * * Copyright (C) 2016, Intel Corporation * * Author: Andy Shevchenko <andriy.shevchenko@linux.intel.com> * * Intel MID Power Management Unit device driver handles the South Complex PCI * devices such as GPDMA, S...
arch/x86/platform/intel-mid/pwr.c
null
null
null
null
null
source
linux
// SPDX-License-Identifier: GPL-2.0-only /* * imr.c -- Intel Isolated Memory Region driver * * Copyright(c) 2013 Intel Corporation. * Copyright(c) 2015 Bryan O'Donoghue <pure.logic@nexus-software.ie> * * IMR registers define an isolated region of memory that can * be masked to prohibit certain system agents from...
arch/x86/platform/intel-quark/imr.c
null
null
null
null
null
source
linux
// SPDX-License-Identifier: GPL-2.0 /* * imr_selftest.c -- Intel Isolated Memory Region self-test driver * * Copyright(c) 2013 Intel Corporation. * Copyright(c) 2015 Bryan O'Donoghue <pure.logic@nexus-software.ie> * * IMR self test. The purpose of this module is to run a set of tests on the * IMR API to validate...
arch/x86/platform/intel-quark/imr_selftest.c
null
null
null
null
null
source
linux
// SPDX-License-Identifier: GPL-2.0-only /* * IOSF-SB MailBox Interface Driver * Copyright (c) 2013, Intel Corporation. * * The IOSF-SB is a fabric bus available on Atom based SOC's that uses a * mailbox interface (MBI) to communicate with multiple devices. This * driver implements access to this interface for th...
arch/x86/platform/intel/iosf_mbi.c
null
null
null
null
null
source
linux
// SPDX-License-Identifier: GPL-2.0-or-later /* * Eurobraille/Iris power off support. * * Eurobraille's Iris machine is a PC with no APM or ACPI support. * It is shutdown by a special I/O sequence which this module provides. * * Copyright (C) Shérab <Sebastien.Hinderer@ens-lyon.org> */ #include <linux/modulepa...
arch/x86/platform/iris/iris.c
null
null
null
null
null
source
linux
// SPDX-License-Identifier: GPL-2.0-or-later /* * Support for power management features of the OLPC XO-1 laptop * * Copyright (C) 2010 Andres Salomon <dilinger@queued.net> * Copyright (C) 2010 One Laptop per Child * Copyright (C) 2006 Red Hat, Inc. * Copyright (C) 2006 Advanced Micro Devices, Inc. */ #include <...
arch/x86/platform/olpc/olpc-xo1-pm.c
null
null
null
null
null
source
linux
// SPDX-License-Identifier: GPL-2.0-or-later /* * Support for OLPC XO-1 Real Time Clock (RTC) * * Copyright (C) 2011 One Laptop per Child */ #include <linux/mc146818rtc.h> #include <linux/platform_device.h> #include <linux/rtc.h> #include <linux/of.h> #include <asm/msr.h> #include <asm/olpc.h> #include <asm/x86_i...
arch/x86/platform/olpc/olpc-xo1-rtc.c
null
null
null
null
null
source
linux
// SPDX-License-Identifier: GPL-2.0-or-later /* * Support for OLPC XO-1 System Control Interrupts (SCI) * * Copyright (C) 2010 One Laptop per Child * Copyright (C) 2006 Red Hat, Inc. * Copyright (C) 2006 Advanced Micro Devices, Inc. */ #include <linux/cs5535.h> #include <linux/device.h> #include <linux/gpio.h> #...
arch/x86/platform/olpc/olpc-xo1-sci.c
null
null
null
null
null
source
linux
// SPDX-License-Identifier: GPL-2.0-or-later /* * Support for OLPC XO-1.5 System Control Interrupts (SCI) * * Copyright (C) 2009-2010 One Laptop per Child */ #include <linux/device.h> #include <linux/slab.h> #include <linux/string.h> #include <linux/workqueue.h> #include <linux/power_supply.h> #include <linux/olpc...
arch/x86/platform/olpc/olpc-xo15-sci.c
null
null
null
null
null
source
linux
// SPDX-License-Identifier: GPL-2.0-or-later /* * Support for the OLPC DCON and OLPC EC access * * Copyright © 2006 Advanced Micro Devices, Inc. * Copyright © 2007-2008 Andres Salomon <dilinger@debian.org> */ #include <linux/kernel.h> #include <linux/init.h> #include <linux/export.h> #include <linux/delay.h> #i...
arch/x86/platform/olpc/olpc.c
null
null
null
null
null
source
linux
// SPDX-License-Identifier: GPL-2.0-or-later /* * OLPC-specific OFW device tree support code. * * Paul Mackerras August 1996. * Copyright (C) 1996-2005 Paul Mackerras. * * Adapted for 64bit PowerPC by Dave Engebretsen and Peter Bergner. * {engebret|bergner}@us.ibm.com * * Adapted for sparc by David S. Mil...
arch/x86/platform/olpc/olpc_dt.c
null
null
null
null
null
source
linux
// SPDX-License-Identifier: GPL-2.0-only #include <linux/kernel.h> #include <linux/export.h> #include <linux/spinlock_types.h> #include <linux/init.h> #include <linux/pgtable.h> #include <asm/page.h> #include <asm/setup.h> #include <asm/io.h> #include <asm/cpufeature.h> #include <asm/special_insns.h> #include <asm/olpc...
arch/x86/platform/olpc/olpc_ofw.c
null
null
null
null
null
source
linux
/* SPDX-License-Identifier: GPL-2.0 */ .text #include <linux/linkage.h> #include <asm/segment.h> #include <asm/page.h> #include <asm/pgtable_32.h> .macro writepost,value movb $0x34, %al outb %al, $0x70 movb $\value, %al outb %al, $0x71 .endm wakeup_start: # OFW lands us here, running in protected mode, wit...
arch/x86/platform/olpc/xo1-wakeup.S
null
null
null
null
null
source
linux
// SPDX-License-Identifier: GPL-2.0 #include <linux/acpi.h> #include <xen/hvc-console.h> #include <asm/bootparam.h> #include <asm/io_apic.h> #include <asm/hypervisor.h> #include <asm/e820/api.h> #include <asm/x86_init.h> #include <asm/xen/interface.h> #include <xen/xen.h> #include <xen/interface/hvm/start_info.h> ...
arch/x86/platform/pvh/enlighten.c
null
null
null
null
null
source
linux
/* SPDX-License-Identifier: GPL-2.0 */ /* * Copyright C 2016, Oracle and/or its affiliates. All rights reserved. */ .code32 .text #ifdef CONFIG_X86_32 #define _pa(x) ((x) - __START_KERNEL_map) #endif #define rva(x) ((x) - pvh_start_xen) #include <linux/elfnote.h> #include <linux/init.h> #includ...
arch/x86/platform/pvh/head.S
null
null
null
null
null
source
linux
// SPDX-License-Identifier: GPL-2.0-only /* * Copyright (c) 2001,2002 Christer Weinigel <wingel@nano-system.com> * * National Semiconductor SCx200 support. */ #include <linux/module.h> #include <linux/errno.h> #include <linux/kernel.h> #include <linux/init.h> #include <linux/mutex.h> #include <linux/pci.h> #inc...
arch/x86/platform/scx200/scx200_32.c
null
null
null
null
null
source
linux
// SPDX-License-Identifier: GPL-2.0-or-later /* * Technologic Systems TS-5500 Single Board Computer support * * Copyright (C) 2013-2014 Savoir-faire Linux Inc. * Vivien Didelot <vivien.didelot@savoirfairelinux.com> * * This driver registers the Technologic Systems TS-5500 Single Board Computer * (SBC) and its de...
arch/x86/platform/ts5500/ts5500.c
null
null
null
null
null
source
linux
// SPDX-License-Identifier: GPL-2.0-or-later /* * BIOS run time interface routines. * * (C) Copyright 2020 Hewlett Packard Enterprise Development LP * Copyright (C) 2007-2017 Silicon Graphics, Inc. All rights reserved. * Copyright (c) Russ Anderson <rja@sgi.com> */ #include <linux/efi.h> #include <linux/export.h...
arch/x86/platform/uv/bios_uv.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. * * SGI UV IRQ functions * * Copyright (C) 2008 Silicon Graphics, Inc. All rights reserved. */ #include <linux/export.h> #include <linux/r...
arch/x86/platform/uv/uv_irq.c
null
null
null
null
null
source
linux
// SPDX-License-Identifier: GPL-2.0-or-later /* * SGI NMI support routines * * (C) Copyright 2020 Hewlett Packard Enterprise Development LP * Copyright (C) 2007-2017 Silicon Graphics, Inc. All rights reserved. * Copyright (c) Mike Travis */ #include <linux/cpu.h> #include <linux/delay.h> #include <linux/kdb.h> #...
arch/x86/platform/uv/uv_nmi.c
null
null
null
null
null
source
linux
// SPDX-License-Identifier: GPL-2.0-or-later /* * SGI RTC clock/timer routines. * * (C) Copyright 2020 Hewlett Packard Enterprise Development LP * Copyright (c) 2009-2013 Silicon Graphics, Inc. All Rights Reserved. * Copyright (c) Dimitri Sivanich */ #include <linux/clockchips.h> #include <linux/slab.h> #inc...
arch/x86/platform/uv/uv_time.c
null
null
null
null
null
source
linux
// SPDX-License-Identifier: GPL-2.0-only /* * Suspend support specific for i386/x86-64. * * Copyright (c) 2007 Rafael J. Wysocki <rjw@sisk.pl> * Copyright (c) 2002 Pavel Machek <pavel@ucw.cz> * Copyright (c) 2001 Patrick Mochel <mochel@osdl.org> */ #include <linux/suspend.h> #include <linux/export.h> #include <l...
arch/x86/power/cpu.c
null
null
null
null
null
source
linux
// SPDX-License-Identifier: GPL-2.0 /* * Hibernation support for x86 * * Copyright (c) 2007 Rafael J. Wysocki <rjw@sisk.pl> * Copyright (c) 2002 Pavel Machek <pavel@ucw.cz> * Copyright (c) 2001 Patrick Mochel <mochel@osdl.org> */ #include <linux/gfp.h> #include <linux/smp.h> #include <linux/suspend.h> #include <l...
arch/x86/power/hibernate.c
null
null
null
null
null
source
linux
// SPDX-License-Identifier: GPL-2.0-only /* * Hibernation support specific for i386 - temporary page tables * * Copyright (c) 2006 Rafael J. Wysocki <rjw@sisk.pl> */ #include <linux/gfp.h> #include <linux/suspend.h> #include <linux/memblock.h> #include <linux/pgtable.h> #include <asm/page.h> #include <asm/mmzone....
arch/x86/power/hibernate_32.c
null
null
null
null
null
source
linux
// SPDX-License-Identifier: GPL-2.0-only /* * Hibernation support for x86-64 * * Copyright (c) 2007 Rafael J. Wysocki <rjw@sisk.pl> * Copyright (c) 2002 Pavel Machek <pavel@ucw.cz> * Copyright (c) 2001 Patrick Mochel <mochel@osdl.org> */ #include <linux/gfp.h> #include <linux/smp.h> #include <linux/suspend.h> #i...
arch/x86/power/hibernate_64.c
null
null
null
null
null