blob: a5d46f5efe03d1dea580e0a94f5862b709813ed4 [file] [log] [blame]
Yoichi Yuasaefe8dc52011-02-07 11:31:36 +09001if MACH_LOONGSON
2
Wu Zhangjin85749d22009-07-02 23:26:45 +08003choice
Wu Zhangjinf6d4ff02009-10-16 14:17:14 +08004 prompt "Machine Type"
Wu Zhangjin85749d22009-07-02 23:26:45 +08005
6config LEMOTE_FULOONG2E
Wu Zhangjinf6d4ff02009-10-16 14:17:14 +08007 bool "Lemote Fuloong(2e) mini-PC"
8 select ARCH_SPARSEMEM_ENABLE
9 select CEVT_R4K
10 select CSRC_R4K
11 select SYS_HAS_CPU_LOONGSON2E
12 select DMA_NONCOHERENT
13 select BOOT_ELF32
14 select BOARD_SCACHE
15 select HW_HAS_PCI
16 select I8259
17 select ISA
18 select IRQ_CPU
19 select SYS_SUPPORTS_32BIT_KERNEL
20 select SYS_SUPPORTS_64BIT_KERNEL
21 select SYS_SUPPORTS_LITTLE_ENDIAN
22 select SYS_SUPPORTS_HIGHMEM
23 select SYS_HAS_EARLY_PRINTK
Wu Zhangjinf6d4ff02009-10-16 14:17:14 +080024 select GENERIC_ISA_DMA_SUPPORT_BROKEN
25 select CPU_HAS_WB
Arnaud Patard5df74352010-06-02 00:39:54 +020026 select LOONGSON_MC146818
Wu Zhangjinf6d4ff02009-10-16 14:17:14 +080027 help
28 Lemote Fuloong(2e) mini-PC board based on the Chinese Loongson-2E CPU and
29 an FPGA northbridge
Wu Zhangjin85749d22009-07-02 23:26:45 +080030
Wu Zhangjinf6d4ff02009-10-16 14:17:14 +080031 Lemote Fuloong(2e) mini PC have a VIA686B south bridge.
Wu Zhangjin7d32c6d2009-11-10 00:06:10 +080032
33config LEMOTE_MACH2F
34 bool "Lemote Loongson 2F family machines"
35 select ARCH_SPARSEMEM_ENABLE
36 select BOARD_SCACHE
37 select BOOT_ELF32
Wu Zhangjinf8ede0f2009-11-17 01:32:59 +080038 select CEVT_R4K if ! MIPS_EXTERNAL_TIMER
Wu Zhangjin7d32c6d2009-11-10 00:06:10 +080039 select CPU_HAS_WB
40 select CS5536
Wu Zhangjinf8ede0f2009-11-17 01:32:59 +080041 select CSRC_R4K if ! MIPS_EXTERNAL_TIMER
Wu Zhangjin7d32c6d2009-11-10 00:06:10 +080042 select DMA_NONCOHERENT
Wu Zhangjin7d32c6d2009-11-10 00:06:10 +080043 select GENERIC_ISA_DMA_SUPPORT_BROKEN
Ralf Baechle95cf1462012-08-01 17:15:32 +020044 select HAVE_CLK
Wu Zhangjin7d32c6d2009-11-10 00:06:10 +080045 select HW_HAS_PCI
46 select I8259
47 select IRQ_CPU
48 select ISA
49 select SYS_HAS_CPU_LOONGSON2F
50 select SYS_HAS_EARLY_PRINTK
51 select SYS_SUPPORTS_32BIT_KERNEL
52 select SYS_SUPPORTS_64BIT_KERNEL
53 select SYS_SUPPORTS_HIGHMEM
54 select SYS_SUPPORTS_LITTLE_ENDIAN
Arnaud Patard5df74352010-06-02 00:39:54 +020055 select LOONGSON_MC146818
Wu Zhangjin7d32c6d2009-11-10 00:06:10 +080056 help
57 Lemote Loongson 2F family machines utilize the 2F revision of
58 Loongson processor and the AMD CS5536 south bridge.
59
60 These family machines include fuloong2f mini PC, yeeloong2f notebook,
61 LingLoong allinone PC and so forth.
Huacai Chen0e476d92014-03-21 18:44:07 +080062
63config LEMOTE_MACH3A
64 bool "Lemote Loongson 3A family machines"
65 select ARCH_SPARSEMEM_ENABLE
66 select GENERIC_ISA_DMA_SUPPORT_BROKEN
67 select GENERIC_HARDIRQS_NO__DO_IRQ
68 select BOOT_ELF32
69 select BOARD_SCACHE
70 select CSRC_R4K
71 select CEVT_R4K
72 select CPU_HAS_WB
73 select HW_HAS_PCI
74 select ISA
75 select HT_PCI
76 select I8259
77 select IRQ_CPU
78 select NR_CPUS_DEFAULT_4
79 select SYS_HAS_CPU_LOONGSON3
80 select SYS_HAS_EARLY_PRINTK
81 select SYS_SUPPORTS_SMP
82 select SYS_SUPPORTS_64BIT_KERNEL
83 select SYS_SUPPORTS_HIGHMEM
84 select SYS_SUPPORTS_LITTLE_ENDIAN
85 select LOONGSON_MC146818
86 select ZONE_DMA32
87 select LEFI_FIRMWARE_INTERFACE
88 help
89 Lemote Loongson 3A family machines utilize the 3A revision of
90 Loongson processor and RS780/SBX00 chipset.
Wu Zhangjin85749d22009-07-02 23:26:45 +080091endchoice
Wu Zhangjin22c21002009-11-10 00:06:12 +080092
93config CS5536
94 bool
Wu Zhangjinf181bf62009-11-11 14:57:05 +080095
Wu Zhangjin916daba2009-11-17 01:32:57 +080096config CS5536_MFGPT
97 bool "CS5536 MFGPT Timer"
98 depends on CS5536
Wu Zhangjinf8ede0f2009-11-17 01:32:59 +080099 select MIPS_EXTERNAL_TIMER
Wu Zhangjin916daba2009-11-17 01:32:57 +0800100 help
101 This option enables the mfgpt0 timer of AMD CS5536.
102
103 If you want to enable the Loongson2 CPUFreq Driver, Please enable
104 this option at first, otherwise, You will get wrong system time.
105
106 If unsure, say Yes.
107
Wu Zhangjinf181bf62009-11-11 14:57:05 +0800108config LOONGSON_SUSPEND
109 bool
110 default y
111 depends on CPU_SUPPORTS_CPUFREQ && SUSPEND
Wu Zhangjinc3d8d852009-11-28 14:21:50 +0800112
113config LOONGSON_UART_BASE
114 bool
115 default y
116 depends on EARLY_PRINTK || SERIAL_8250
Arnaud Patard5df74352010-06-02 00:39:54 +0200117
Huacai Chen0e476d92014-03-21 18:44:07 +0800118config IOMMU_HELPER
119 bool
120
121config NEED_SG_DMA_LENGTH
122 bool
123
124config SWIOTLB
125 bool "Soft IOMMU Support for All-Memory DMA"
126 default y
127 depends on CPU_LOONGSON3
128 select IOMMU_HELPER
129 select NEED_SG_DMA_LENGTH
130 select NEED_DMA_MAP_STATE
131
Arnaud Patard5df74352010-06-02 00:39:54 +0200132config LOONGSON_MC146818
133 bool
134 default n
Yoichi Yuasaefe8dc52011-02-07 11:31:36 +0900135
Huacai Chen0e476d92014-03-21 18:44:07 +0800136config LEFI_FIRMWARE_INTERFACE
137 bool
138
Yoichi Yuasaefe8dc52011-02-07 11:31:36 +0900139endif # MACH_LOONGSON