arch/loongarch/include/asm/pci.h

Source file repositories/reference/linux-study-clean/arch/loongarch/include/asm/pci.h

File Facts

System
Linux kernel
Corpus path
arch/loongarch/include/asm/pci.h
Extension
.h
Size
543 bytes
Lines
26
Domain
Architecture Layer
Bucket
arch/loongarch
Inferred role
Architecture Layer: implementation source
Status
source implementation candidate

Why This File Exists

CPU and platform-specific kernel glue: boot entry, traps, syscall entry, interrupts, page tables, context switch, and low-level barriers.

Dependency Surface

Detected Declarations

Annotated Snippet

#ifndef _ASM_PCI_H
#define _ASM_PCI_H

#include <linux/ioport.h>
#include <linux/list.h>
#include <linux/types.h>
#include <asm/io.h>

#define PCIBIOS_MIN_IO		0x4000
#define PCIBIOS_MIN_MEM		0x20000000
#define PCIBIOS_MIN_CARDBUS_IO	0x4000

#define HAVE_PCI_MMAP
#define pcibios_assign_all_busses()     0

extern phys_addr_t mcfg_addr_init(int node);

/* generic pci stuff */
#include <asm-generic/pci.h>

#endif /* _ASM_PCI_H */

Annotation

Implementation Notes