PCI设备中断重构,删去USB相关代码 (#285)

* 修复ecam无法获取MCFG table的问题

* 完善pcie

* 完善irq的错误检测机制
This commit is contained in:
YJwu2023
2023-07-08 17:22:42 +08:00
committed by GitHub
parent 2311e2f300
commit cc36cf4a18
23 changed files with 1246 additions and 3416 deletions

View File

@ -1,11 +1,14 @@
all: pci.o msi.o
all: pci.o pci_irq.o msi.o
CFLAGS += -I .
pci.o: pci.c
$(CC) $(CFLAGS) -c pci.c -o pci.o
pci_irq.o: pci_irq.c
$(CC) $(CFLAGS) -c pci_irq.c -o pci_irq.o
msi.o: msi.c
$(CC) $(CFLAGS) -c msi.c -o msi.o