Skip to content
Navigation Menu
Toggle navigation
Sign in
In this repository
All GitHub Enterprise
↵
Jump to
↵
No suggested jump to results
In this repository
All GitHub Enterprise
↵
Jump to
↵
In this organization
All GitHub Enterprise
↵
Jump to
↵
In this repository
All GitHub Enterprise
↵
Jump to
↵
Sign in
Reseting focus
You signed in with another tab or window.
Reload
to refresh your session.
You signed out in another tab or window.
Reload
to refresh your session.
You switched accounts on another tab or window.
Reload
to refresh your session.
Dismiss alert
{{ message }}
mariux64
/
linux
Public
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Issues
2
Pull requests
0
Actions
Projects
0
Wiki
Security
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Wiki
Security
Insights
Files
5b49c82
Documentation
LICENSES
arch
alpha
arc
arm
arm64
c6x
csky
abiv1
abiv2
boot
configs
include
asm
Kbuild
addrspace.h
asid.h
atomic.h
barrier.h
bitops.h
bug.h
cache.h
cacheflush.h
checksum.h
cmpxchg.h
elf.h
fixmap.h
ftrace.h
highmem.h
io.h
irqflags.h
memory.h
mmu.h
mmu_context.h
page.h
pci.h
perf_event.h
pgalloc.h
pgtable.h
processor.h
ptrace.h
reg_ops.h
segment.h
shmparam.h
smp.h
spinlock.h
spinlock_types.h
stackprotector.h
string.h
switch_to.h
syscall.h
syscalls.h
tcm.h
thread_info.h
tlb.h
tlbflush.h
traps.h
uaccess.h
unistd.h
vdso.h
vmalloc.h
uapi
kernel
lib
mm
Kconfig
Kconfig.debug
Kconfig.platforms
Makefile
h8300
hexagon
ia64
m68k
microblaze
mips
nds32
nios2
openrisc
parisc
powerpc
riscv
s390
sh
sparc
um
unicore32
x86
xtensa
.gitignore
Kconfig
block
certs
crypto
drivers
fs
include
init
ipc
kernel
lib
mm
net
samples
scripts
security
sound
tools
usr
virt
.clang-format
.cocciconfig
.get_maintainer.ignore
.gitattributes
.gitignore
.mailmap
COPYING
CREDITS
Kbuild
Kconfig
MAINTAINERS
Makefile
README
Breadcrumbs
linux
/
arch
/
csky
/
include
/
asm
/
pci.h
Copy path
Blame
Blame
Latest commit
History
History
34 lines (25 loc) · 680 Bytes
Breadcrumbs
linux
/
arch
/
csky
/
include
/
asm
/
pci.h
Top
File metadata and controls
Code
Blame
34 lines (25 loc) · 680 Bytes
Raw
/* SPDX-License-Identifier: GPL-2.0-only */ #ifndef __ASM_CSKY_PCI_H #define __ASM_CSKY_PCI_H #include <linux/types.h> #include <linux/slab.h> #include <linux/dma-mapping.h> #include <asm/io.h> #define PCIBIOS_MIN_IO 0 #define PCIBIOS_MIN_MEM 0 /* C-SKY shim does not initialize PCI bus */ #define pcibios_assign_all_busses() 1 extern int isa_dma_bridge_buggy; #ifdef CONFIG_PCI static inline int pci_get_legacy_ide_irq(struct pci_dev *dev, int channel) { /* no legacy IRQ on csky */ return -ENODEV; } static inline int pci_proc_domain(struct pci_bus *bus) { /* always show the domain in /proc */ return 1; } #endif /* CONFIG_PCI */ #endif /* __ASM_CSKY_PCI_H */
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
You can’t perform that action at this time.