blob: 0b67c46666cc0d7b939e7d2d9f79d21d7deb3406 [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001# SPDX-License-Identifier: GPL-2.0
Paul Burtoneed0eab2016-10-05 18:18:20 +01002if MIPS_GENERIC
3
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
Paul Burton6e62a882017-06-17 13:52:49 -070030comment "FIT/UHI Boards"
31
32config FIT_IMAGE_FDT_BOSTON
33 bool "Include FDT for MIPS Boston boards"
34 help
35 Enable this to include the FDT for the MIPS Boston development board
36 from Imagination Technologies in the FIT kernel image. You should
37 enable this if you wish to boot on a MIPS Boston board, as it is
38 expected by the bootloader.
39
Nathan Sullivan7aacf862017-07-18 13:29:09 -050040config FIT_IMAGE_FDT_NI169445
41 bool "Include FDT for NI 169445"
42 help
43 Enable this to include the FDT for the 169445 platform from
44 National Instruments in the FIT kernel image.
45
Paul Burtoneed0eab2016-10-05 18:18:20 +010046endif