All of lore.kernel.org
 help / color / mirror / Atom feed
From: Andrew F. Davis <afd@ti.com>
To: u-boot@lists.denx.de
Subject: [U-Boot] [RFC PATCH v3 11/11] defconfig: Add a config for AM335x High Security EVM with SD Boot support
Date: Thu, 25 Aug 2016 16:45:41 -0500	[thread overview]
Message-ID: <20160825214541.22896-12-afd@ti.com> (raw)
In-Reply-To: <20160825214541.22896-1-afd@ti.com>

Add a new defconfig file for the AM335x High Security EVM. This config
is specific for the case of SD card booting, we the boot types to be
seperate defconfigs as some options change depending on boot type, in
addition this allows us to trim the SPL size as we only need to support
one boot media.

This defconfig is the same as for the non-secure part, except for:
	CONFIG_TI_SECURE_DEVICE option set to 'y'
	CONFIG_ISW_ENTRY_ADDR updated for secure images.
	CONFIG_FIT_IMAGE_POST_PROCESS option set to 'y'
	CONFIG_SPL_FIT_IMAGE_POST_PROCESS option set to 'y'
	CONFIG_SPL_SD_BOOT option set to 'y' so we will build an MMC
	  compatible SPL
	CONFIG_USE_TINY_PRINTF option set to 'y' to reduce SPL size
	NAND removed from CONFIG_SYS_EXTRA_OPTIONS as this adds NAND
	  support to SPL, not just U-Boot proper, when this is fixed
	  this can be added back

Signed-off-by: Andrew F. Davis <afd@ti.com>
---
 configs/am335x_hs_evm_mmc_defconfig | 58 +++++++++++++++++++++++++++++++++++++
 1 file changed, 58 insertions(+)
 create mode 100644 configs/am335x_hs_evm_mmc_defconfig

diff --git a/configs/am335x_hs_evm_mmc_defconfig b/configs/am335x_hs_evm_mmc_defconfig
new file mode 100644
index 0000000..d10faaa
--- /dev/null
+++ b/configs/am335x_hs_evm_mmc_defconfig
@@ -0,0 +1,58 @@
+CONFIG_ARM=y
+CONFIG_AM33XX=y
+CONFIG_TI_SECURE_DEVICE=y
+CONFIG_TARGET_AM335X_EVM=y
+CONFIG_SPL_STACK_R_ADDR=0x82000000
+CONFIG_DEFAULT_DEVICE_TREE="am335x-evm"
+CONFIG_SPL=y
+CONFIG_ISW_ENTRY_ADDR=0x40301750
+CONFIG_SPL_STACK_R=y
+CONFIG_HUSH_PARSER=y
+CONFIG_CMD_BOOTZ=y
+# CONFIG_CMD_IMLS is not set
+CONFIG_CMD_ASKENV=y
+# CONFIG_CMD_FLASH is not set
+CONFIG_CMD_MMC=y
+CONFIG_CMD_SF=y
+CONFIG_CMD_SPI=y
+CONFIG_CMD_I2C=y
+CONFIG_CMD_USB=y
+CONFIG_CMD_DFU=y
+CONFIG_CMD_GPIO=y
+# CONFIG_CMD_SETEXPR is not set
+CONFIG_CMD_DHCP=y
+CONFIG_CMD_MII=y
+CONFIG_CMD_PING=y
+CONFIG_CMD_EXT2=y
+CONFIG_CMD_EXT4=y
+CONFIG_CMD_EXT4_WRITE=y
+CONFIG_CMD_FAT=y
+CONFIG_CMD_FS_GENERIC=y
+CONFIG_OF_CONTROL=y
+CONFIG_DM_MMC=y
+CONFIG_SPI_FLASH=y
+CONFIG_SPI_FLASH_WINBOND=y
+CONFIG_DM_ETH=y
+CONFIG_SYS_NS16550=y
+CONFIG_TIMER=y
+CONFIG_OMAP_TIMER=y
+CONFIG_USB=y
+CONFIG_USB_MUSB_HOST=y
+CONFIG_USB_MUSB_GADGET=y
+CONFIG_USB_GADGET=y
+CONFIG_USB_GADGET_DOWNLOAD=y
+CONFIG_G_DNL_MANUFACTURER="Texas Instruments"
+CONFIG_G_DNL_VENDOR_NUM=0x0451
+CONFIG_G_DNL_PRODUCT_NUM=0xd022
+CONFIG_OF_LIBFDT=y
+CONFIG_SPL_NET_VCI_STRING="AM335x U-Boot SPL"
+CONFIG_RSA=y
+CONFIG_FIT=y
+CONFIG_SPL_OF_LIBFDT=y
+CONFIG_SPL_LOAD_FIT=y
+CONFIG_SPL_FIT_IMAGE_POST_PROCESS=y
+CONFIG_OF_LIST="am335x-evm am335x-bone am335x-boneblack am335x-evmsk am335x-bonegreen am335x-icev2"
+CONFIG_DM_I2C=y
+CONFIG_FIT_IMAGE_POST_PROCESS=y
+CONFIG_SPL_SD_BOOT=y
+CONFIG_USE_TINY_PRINTF=y
-- 
2.9.3

      parent reply	other threads:[~2016-08-25 21:45 UTC|newest]

Thread overview: 25+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-08-25 21:45 [U-Boot] [PATCH v3 00/11] Allow secure boot on AM33xx devices Andrew F. Davis
2016-08-25 21:45 ` [U-Boot] [PATCH v3 01/11] spl: Kconfig: Add SPL_<media>_BOOT as Kconfig option Andrew F. Davis
2016-08-26 21:27   ` Tom Rini
2016-08-29 18:30     ` Andrew F. Davis
2016-08-29 19:00       ` Tom Rini
2016-08-25 21:45 ` [U-Boot] [PATCH v3 02/11] Kconfig: Separate AM33XX SOC config from target board config Andrew F. Davis
2016-08-26 21:28   ` Tom Rini
2016-08-25 21:45 ` [U-Boot] [PATCH v3 03/11] am33xx: config.mk: Add support for additional secure boot image types Andrew F. Davis
2016-08-26 21:28   ` Tom Rini
2016-08-25 21:45 ` [U-Boot] [PATCH v3 04/11] doc: Update info on using AM33xx secure devices from TI Andrew F. Davis
2016-08-26 21:28   ` Tom Rini
2016-08-25 21:45 ` [U-Boot] [PATCH v3 05/11] am33xx: config.mk: Fix option used to enable SPI SPL image type Andrew F. Davis
2016-08-26  4:46   ` Lokesh Vutla
2016-08-25 21:45 ` [U-Boot] [PATCH v3 06/11] board: am33xx-hs: Allow post-processing of FIT image on AM33xx Andrew F. Davis
2016-08-26 21:28   ` Tom Rini
2016-08-25 21:45 ` [U-Boot] [PATCH v3 07/11] ti: omap-common: Allow AM33xx devices to be built securely Andrew F. Davis
2016-08-26 21:28   ` Tom Rini
2016-08-25 21:45 ` [U-Boot] [PATCH v3 08/11] am335x: configs: Use ISW_ENTRY_ADDR to set SPL_TEXT_BASE Andrew F. Davis
2016-08-26  5:01   ` Lokesh Vutla
2016-08-30 18:20     ` Andrew F. Davis
2016-08-25 21:45 ` [U-Boot] [PATCH v3 09/11] config: Remove usage of CONFIG_STORAGE_EMMC Andrew F. Davis
2016-08-26 21:29   ` Tom Rini
2016-08-25 21:45 ` [U-Boot] [PATCH v3 10/11] ti_armv7_common: Disable Falcon Mode on HS devices Andrew F. Davis
2016-08-26 21:30   ` Tom Rini
2016-08-25 21:45 ` Andrew F. Davis [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20160825214541.22896-12-afd@ti.com \
    --to=afd@ti.com \
    --cc=u-boot@lists.denx.de \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.