mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-28 21:05:18 +02:00
jz4740: Cleanup Kconfig
This commit is contained in:
parent
fdeff24f83
commit
8c57ef78b6
@ -157,6 +157,7 @@ CONFIG_IP_PNP=y
|
|||||||
CONFIG_IP_PNP_BOOTP=y
|
CONFIG_IP_PNP_BOOTP=y
|
||||||
CONFIG_IP_PNP_DHCP=y
|
CONFIG_IP_PNP_DHCP=y
|
||||||
# CONFIG_IP_PNP_RARP is not set
|
# CONFIG_IP_PNP_RARP is not set
|
||||||
|
CONFIG_IRQ_CPU=y
|
||||||
CONFIG_JZ4740_QI_LB60=y
|
CONFIG_JZ4740_QI_LB60=y
|
||||||
CONFIG_JZRISC=y
|
CONFIG_JZRISC=y
|
||||||
CONFIG_JZSOC=y
|
CONFIG_JZSOC=y
|
||||||
@ -193,6 +194,7 @@ CONFIG_MAC80211_DEFAULT_PS_VALUE=0
|
|||||||
# CONFIG_MACH_ALCHEMY is not set
|
# CONFIG_MACH_ALCHEMY is not set
|
||||||
# CONFIG_MACH_DECSTATION is not set
|
# CONFIG_MACH_DECSTATION is not set
|
||||||
# CONFIG_MACH_JAZZ is not set
|
# CONFIG_MACH_JAZZ is not set
|
||||||
|
CONFIG_MACH_JZ=y
|
||||||
# CONFIG_MACH_TX39XX is not set
|
# CONFIG_MACH_TX39XX is not set
|
||||||
# CONFIG_MACH_TX49XX is not set
|
# CONFIG_MACH_TX49XX is not set
|
||||||
# CONFIG_MACH_VR41XX is not set
|
# CONFIG_MACH_VR41XX is not set
|
||||||
|
29
target/linux/xburst/files-2.6.31/arch/mips/jz4740/Kconfig
Normal file
29
target/linux/xburst/files-2.6.31/arch/mips/jz4740/Kconfig
Normal file
@ -0,0 +1,29 @@
|
|||||||
|
choice
|
||||||
|
prompt "Machine type"
|
||||||
|
depends on MACH_JZ
|
||||||
|
default JZ4740_QI_LB60
|
||||||
|
|
||||||
|
config JZ4740_QI_LB60
|
||||||
|
bool "Qi Hardware Ben NanoNote"
|
||||||
|
select DMA_NONCOHERENT
|
||||||
|
select SOC_JZ4740
|
||||||
|
|
||||||
|
endchoice
|
||||||
|
|
||||||
|
config SOC_JZ4740
|
||||||
|
bool
|
||||||
|
select JZSOC
|
||||||
|
select GENERIC_GPIO
|
||||||
|
select ARCH_REQUIRE_GPIOLIB
|
||||||
|
select SYS_HAS_EARLY_PRINTK
|
||||||
|
select SYS_SUPPORTS_LITTLE_ENDIAN
|
||||||
|
select IRQ_CPU
|
||||||
|
|
||||||
|
config JZSOC
|
||||||
|
bool
|
||||||
|
select JZRISC
|
||||||
|
select SYS_HAS_CPU_MIPS32_R1
|
||||||
|
select SYS_SUPPORTS_32BIT_KERNEL
|
||||||
|
|
||||||
|
config JZRISC
|
||||||
|
bool
|
@ -26,39 +26,24 @@ diff --git a/arch/mips/Kconfig b/arch/mips/Kconfig
|
|||||||
index 3ca0fe1..e8f8027 100644
|
index 3ca0fe1..e8f8027 100644
|
||||||
--- a/arch/mips/Kconfig
|
--- a/arch/mips/Kconfig
|
||||||
+++ b/arch/mips/Kconfig
|
+++ b/arch/mips/Kconfig
|
||||||
@@ -671,6 +671,32 @@ source "arch/mips/cavium-octeon/Kconfig"
|
@@ -158,6 +158,9 @@
|
||||||
|
Members include the Acer PICA, MIPS Magnum 4000, MIPS Millennium and
|
||||||
|
Olivetti M700-10 workstations.
|
||||||
|
|
||||||
endmenu
|
+config MACH_JZ
|
||||||
|
+ bool "Ingenic JZ4720/JZ4740 based machines"
|
||||||
+#####################################################
|
|
||||||
+# Ingenic SOC series
|
|
||||||
+#####################################################
|
|
||||||
+
|
+
|
||||||
+config SOC_JZ4720
|
config LASAT
|
||||||
+ bool
|
bool "LASAT Networks platforms"
|
||||||
+ select JZSOC
|
select CEVT_R4K
|
||||||
+
|
@@ -661,6 +664,7 @@
|
||||||
+config SOC_JZ4740
|
source "arch/mips/alchemy/Kconfig"
|
||||||
+ bool
|
source "arch/mips/basler/excite/Kconfig"
|
||||||
+ select JZSOC
|
source "arch/mips/jazz/Kconfig"
|
||||||
+ select GENERIC_GPIO
|
+source "arch/mips/jz4740/Kconfig"
|
||||||
+ select ARCH_REQUIRE_GPIOLIB
|
source "arch/mips/lasat/Kconfig"
|
||||||
+ select SYS_HAS_EARLY_PRINTK
|
source "arch/mips/pmc-sierra/Kconfig"
|
||||||
+
|
source "arch/mips/sgi-ip27/Kconfig"
|
||||||
+config JZSOC
|
|
||||||
+ bool
|
|
||||||
+ select JZRISC
|
|
||||||
+ select SYS_HAS_CPU_MIPS32_R1
|
|
||||||
+ select SYS_SUPPORTS_32BIT_KERNEL
|
|
||||||
+
|
|
||||||
+config JZRISC
|
|
||||||
+ bool
|
|
||||||
+
|
|
||||||
+####################################################
|
|
||||||
+
|
|
||||||
config RWSEM_GENERIC_SPINLOCK
|
|
||||||
bool
|
|
||||||
default y
|
|
||||||
@@ -1893,6 +1919,14 @@ config NR_CPUS
|
@@ -1893,6 +1919,14 @@ config NR_CPUS
|
||||||
|
|
||||||
source "kernel/time/Kconfig"
|
source "kernel/time/Kconfig"
|
||||||
|
@ -18,25 +18,6 @@ Subject: [PATCH] qi_lb60
|
|||||||
mode change 100755 => 100644 drivers/video/jzlcd.c
|
mode change 100755 => 100644 drivers/video/jzlcd.c
|
||||||
mode change 100755 => 100644 drivers/video/jzlcd.h
|
mode change 100755 => 100644 drivers/video/jzlcd.h
|
||||||
|
|
||||||
diff --git a/arch/mips/Kconfig b/arch/mips/Kconfig
|
|
||||||
index 4ae3315..24e775f 100644
|
|
||||||
--- a/arch/mips/Kconfig
|
|
||||||
+++ b/arch/mips/Kconfig
|
|
||||||
@@ -656,6 +656,14 @@ config CAVIUM_OCTEON_REFERENCE_BOARD
|
|
||||||
Hikari
|
|
||||||
Say Y here for most Octeon reference boards.
|
|
||||||
|
|
||||||
+config JZ4740_QI_LB60
|
|
||||||
+ bool "Ingenic JZ4740 QI_LB60 board"
|
|
||||||
+ select DMA_NONCOHERENT
|
|
||||||
+ select SYS_HAS_CPU_MIPS32_R1
|
|
||||||
+ select SYS_SUPPORTS_32BIT_KERNEL
|
|
||||||
+ select SYS_SUPPORTS_LITTLE_ENDIAN
|
|
||||||
+ select SOC_JZ4740
|
|
||||||
+
|
|
||||||
endchoice
|
|
||||||
|
|
||||||
source "arch/mips/alchemy/Kconfig"
|
|
||||||
diff --git a/arch/mips/include/asm/mach-jz4740/board-qi_lb60.h b/arch/mips/include/asm/mach-jz4740/board-qi_lb60.h
|
diff --git a/arch/mips/include/asm/mach-jz4740/board-qi_lb60.h b/arch/mips/include/asm/mach-jz4740/board-qi_lb60.h
|
||||||
new file mode 100644
|
new file mode 100644
|
||||||
index 0000000..b2f02f4
|
index 0000000..b2f02f4
|
||||||
|
Loading…
Reference in New Issue
Block a user