public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
* [U-Boot] [PATCH] common: add new boot media kconfig entry
@ 2016-06-15  6:15 Peng Fan
  2016-06-15 15:11 ` Joe Hershberger
  2016-06-15 15:34 ` Heiko Schocher
  0 siblings, 2 replies; 5+ messages in thread
From: Peng Fan @ 2016-06-15  6:15 UTC (permalink / raw)
  To: u-boot

Add CONFIG_{SD|NOR|NAND|ONENAND|SPI|QSPI|SATA}_BOOT kconfig entries.

SoCs supports loading U-Boot from different medias to DRAM, such as
i.MX6/7 supports loading U-Boot to DRAM from sd/emmc/nand/qspi/spi/sata
and etc. For i.MX, imximage will generate different IVT headers according
to boot medias.

Signed-off-by: Peng Fan <peng.fan@nxp.com>
Cc: Simon Glass <sjg@chromium.org>
Cc: Heiko Schocher <hs@denx.de>
Cc: Joe Hershberger <joe.hershberger@ni.com>
Cc: Bin Meng <bmeng.cn@gmail.com>
Cc: Christophe Ricard <christophe-h.ricard@st.com>
Cc: Nikita Kiryanov <nikita@compulab.co.il>
Cc: Francois Retief <fgretief@spaceteq.co.za>
Cc: Tom Rini <trini@konsulko.com>
---
 common/Kconfig | 46 ++++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 46 insertions(+)

diff --git a/common/Kconfig b/common/Kconfig
index 4d17b10..a41b670 100644
--- a/common/Kconfig
+++ b/common/Kconfig
@@ -97,6 +97,52 @@ config BOOTSTAGE_STASH_SIZE
 
 endmenu
 
+menu "Boot media"
+
+config SD_BOOT
+	bool "Boot from SD"
+	default n
+	help
+	  U-Boot image is stored in SD card.
+
+config NOR_BOOT
+	bool "Boot from NOR"
+	default n
+	help
+	  U-Boot image is stored in NOR flash.
+
+config NAND_BOOT
+	bool "Boot from NAND"
+	default n
+	help
+	  U-Boot image is stored in NAND flash.
+
+config ONENAND_BOOT
+	bool "Boot from ONENAND"
+	default n
+	help
+	  U-Boot image is stored in ONENAND flash.
+
+config SPI_BOOT
+	bool "Boot from SPI"
+	default n
+	help
+	  U-Boot image is stored in SPI flash.
+
+config QSPI_BOOT
+	bool "Boot from QSPI"
+	default n
+	help
+	  U-Boot image is stored in QSPI flash.
+
+config SATA_BOOT
+	bool "Boot from SATA"
+	default n
+	help
+	  U-Boot image is stored in SATA.
+
+endmenu
+
 config BOOTDELAY
 	int "delay in seconds before automatically booting"
 	default 0
-- 
2.6.2

^ permalink raw reply related	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2016-06-17  6:37 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-06-15  6:15 [U-Boot] [PATCH] common: add new boot media kconfig entry Peng Fan
2016-06-15 15:11 ` Joe Hershberger
2016-06-17  6:33   ` Peng Fan
2016-06-15 15:34 ` Heiko Schocher
2016-06-17  6:37   ` Peng Fan

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox