ramips: rt305x: add dwc_otg driver
[openwrt/svn-archive/archive.git] / target / linux / ramips / files / arch / mips / ralink / Kconfig
1 if MIPS_RALINK
2
3 choice
4 prompt "Ralink SoC selection"
5 default SOC_RT288X
6 help
7 Select Ralink MIPS SoC type.
8
9 config RALINK_RT288X
10 bool "RT288x"
11 select SOC_RT288X
12
13 config RALINK_RT305X
14 bool "RT305x"
15 select SOC_RT305X
16
17 endchoice
18
19 source "arch/mips/ralink/rt288x/Kconfig"
20 source "arch/mips/ralink/rt305x/Kconfig"
21
22 config SOC_RT288X
23 bool
24 select CEVT_R4K
25 select CSRC_R4K
26 select DMA_NONCOHERENT
27 select IRQ_CPU
28 select ARCH_REQUIRE_GPIOLIB
29 select SYS_HAS_CPU_MIPS32_R1
30 select SYS_HAS_CPU_MIPS32_R2
31 select SYS_SUPPORTS_32BIT_KERNEL
32 select SYS_SUPPORTS_LITTLE_ENDIAN
33 select SYS_HAS_EARLY_PRINTK
34 select HW_HAS_PCI
35 select MIPS_MACHINE
36
37 config SOC_RT305X
38 bool
39 select CEVT_R4K
40 select CSRC_R4K
41 select DMA_NONCOHERENT
42 select IRQ_CPU
43 select ARCH_REQUIRE_GPIOLIB
44 select SYS_HAS_CPU_MIPS32_R1
45 select SYS_HAS_CPU_MIPS32_R2
46 select SYS_SUPPORTS_32BIT_KERNEL
47 select SYS_SUPPORTS_LITTLE_ENDIAN
48 select SYS_HAS_EARLY_PRINTK
49 select MIPS_MACHINE
50 select USB_ARCH_HAS_HCD
51
52 config RALINK_DEV_GPIO_BUTTONS
53 def_bool n
54
55 config RALINK_DEV_GPIO_LEDS
56 def_bool n
57
58 endif