|
@@ -19,6 +19,7 @@ config ARC
|
|
|
select GENERIC_FIND_FIRST_BIT
|
|
|
# for now, we don't need GENERIC_IRQ_PROBE, CONFIG_GENERIC_IRQ_CHIP
|
|
|
select GENERIC_IRQ_SHOW
|
|
|
+ select GENERIC_PCI_IOMAP
|
|
|
select GENERIC_PENDING_IRQ if SMP
|
|
|
select GENERIC_SMP_IDLE_THREAD
|
|
|
select HAVE_ARCH_KGDB
|
|
@@ -39,6 +40,9 @@ config ARC
|
|
|
select PERF_USE_VMALLOC
|
|
|
select HAVE_DEBUG_STACKOVERFLOW
|
|
|
|
|
|
+config MIGHT_HAVE_PCI
|
|
|
+ bool
|
|
|
+
|
|
|
config TRACE_IRQFLAGS_SUPPORT
|
|
|
def_bool y
|
|
|
|
|
@@ -568,6 +572,28 @@ endmenu # "ARC Architecture Configuration"
|
|
|
source "mm/Kconfig"
|
|
|
source "net/Kconfig"
|
|
|
source "drivers/Kconfig"
|
|
|
+
|
|
|
+menu "Bus Support"
|
|
|
+
|
|
|
+config PCI
|
|
|
+ bool "PCI support" if MIGHT_HAVE_PCI
|
|
|
+ help
|
|
|
+ PCI is the name of a bus system, i.e., the way the CPU talks to
|
|
|
+ the other stuff inside your box. Find out if your board/platform
|
|
|
+ has PCI.
|
|
|
+
|
|
|
+ Note: PCIe support for Synopsys Device will be available only
|
|
|
+ when HAPS DX is configured with PCIe RC bitmap. If you have PCI,
|
|
|
+ say Y, otherwise N.
|
|
|
+
|
|
|
+config PCI_SYSCALL
|
|
|
+ def_bool PCI
|
|
|
+
|
|
|
+source "drivers/pci/Kconfig"
|
|
|
+source "drivers/pci/pcie/Kconfig"
|
|
|
+
|
|
|
+endmenu
|
|
|
+
|
|
|
source "fs/Kconfig"
|
|
|
source "arch/arc/Kconfig.debug"
|
|
|
source "security/Kconfig"
|