blob: 45431b88dded99ae5b7470bde80dad5b1f7cdfa1 [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001# SPDX-License-Identifier: GPL-2.0
Paul Cercueilc434b9f2020-09-06 21:29:25 +02002if MIPS_GENERIC_KERNEL
Paul Burtoneed0eab2016-10-05 18:18:20 +01003
4config LEGACY_BOARDS
5 bool
6 help
7 Select this from your board if the board must use a legacy, non-UHI,
8 boot protocol. This will cause the kernel to scan through the list of
9 supported machines calling their detect functions in turn if the
10 kernel is booted without being provided with an FDT via the UHI
11 boot protocol.
12
Paul Burton571b7e62017-06-02 12:29:51 -070013config YAMON_DT_SHIM
14 bool
15 help
16 Select this from your board if the board uses the YAMON bootloader
17 and you wish to include code which helps translate various
18 YAMON-provided environment variables into a device tree properties.
19
Paul Burton6e62a882017-06-17 13:52:49 -070020comment "Legacy (non-UHI/non-FIT) Boards"
21
Paul Burton3f5f0a42016-10-05 18:18:21 +010022config LEGACY_BOARD_SEAD3
23 bool "Support MIPS SEAD-3 boards"
24 select LEGACY_BOARDS
Paul Burton571b7e62017-06-02 12:29:51 -070025 select YAMON_DT_SHIM
Paul Burton3f5f0a42016-10-05 18:18:21 +010026 help
27 Enable this to include support for booting on MIPS SEAD-3 FPGA-based
28 development boards, which boot using a legacy boot protocol.
29
Alexandre Belloni6bce3de2018-03-20 14:08:00 +010030comment "MSCC Ocelot doesn't work with SEAD3 enabled"
31 depends on LEGACY_BOARD_SEAD3
32
33config LEGACY_BOARD_OCELOT
34 bool "Support MSCC Ocelot boards"
35 depends on LEGACY_BOARD_SEAD3=n
36 select LEGACY_BOARDS
Gregory CLEMENT700364d2020-11-10 12:45:02 +010037 select SOC_VCOREIII
Alexandre Bellonid5be4ae2018-06-26 13:57:11 +020038 select SYS_HAS_EARLY_PRINTK
39 select USE_GENERIC_EARLY_PRINTK_8250
Alexandre Belloni6bce3de2018-03-20 14:08:00 +010040
Gregory CLEMENT700364d2020-11-10 12:45:02 +010041config SOC_VCOREIII
Alexandre Belloni6bce3de2018-03-20 14:08:00 +010042 bool
43 select GPIOLIB
44 select MSCC_OCELOT_IRQ
Gregory CLEMENT700364d2020-11-10 12:45:02 +010045 select MSCC_OCELOT #will be removed when driver no more use it
46
47#Will be removed when the driver using it will be converted to SOC_VCOREIII
48config MSCC_OCELOT
49 bool
Alexandre Belloni6bce3de2018-03-20 14:08:00 +010050
Paul Burton6e62a882017-06-17 13:52:49 -070051comment "FIT/UHI Boards"
52
53config FIT_IMAGE_FDT_BOSTON
54 bool "Include FDT for MIPS Boston boards"
55 help
56 Enable this to include the FDT for the MIPS Boston development board
57 from Imagination Technologies in the FIT kernel image. You should
58 enable this if you wish to boot on a MIPS Boston board, as it is
59 expected by the bootloader.
60
Nathan Sullivan7aacf862017-07-18 13:29:09 -050061config FIT_IMAGE_FDT_NI169445
62 bool "Include FDT for NI 169445"
63 help
64 Enable this to include the FDT for the 169445 platform from
65 National Instruments in the FIT kernel image.
66
Zubair Lutfullah Kakakhelb35565b2017-03-31 10:00:41 +010067config FIT_IMAGE_FDT_XILFPGA
68 bool "Include FDT for Xilfpga"
69 help
70 Enable this to include the FDT for the MIPSfpga platform
71 from Imagination Technologies in the FIT kernel image.
72
Quentin Schulz39249d72018-10-08 12:14:45 +020073config FIT_IMAGE_FDT_OCELOT
74 bool "Include FDT for Microsemi Ocelot development platforms"
Gregory CLEMENT700364d2020-11-10 12:45:02 +010075 select SOC_VCOREIII
Alexandre Bellonid5be4ae2018-06-26 13:57:11 +020076 help
Quentin Schulz39249d72018-10-08 12:14:45 +020077 Enable this to include the FDT for the Ocelot development platforms
Alexandre Bellonid5be4ae2018-06-26 13:57:11 +020078 from Microsemi in the FIT kernel image.
79 This requires u-boot on the platform.
80
Paul Cercueilf0f4a752020-09-06 21:29:31 +020081config BOARD_INGENIC
82 bool "Support boards based on Ingenic SoCs"
83 select MACH_INGENIC_GENERIC
84 help
85 Enable support for boards based on Ingenic SoCs.
86
Miodrag Dinicf2d0b0d2017-12-29 16:41:47 +010087config VIRT_BOARD_RANCHU
88 bool "Support Ranchu platform for Android emulator"
89 help
90 This enables support for the platform used by Android emulator.
91
92 Ranchu platform consists of a set of virtual devices. This platform
93 enables emulation of variety of virtual configurations while using
94 Android emulator. Android emulator is based on Qemu, and contains
95 the support for the same set of virtual devices.
96
Paul Burtoneed0eab2016-10-05 18:18:20 +010097endif