mirror of
https://github.com/u-boot/u-boot.git
synced 2025-04-17 02:15:02 +00:00
board: ti: am62x: Add am62x_beagleplay_* defconfigs and env file
Add defconfig fragments for am625 based beagleplay and corresponding customized environment file for beagleplay. Reviewed-by: Mattijs Korpershoek <mkorpershoek@baylibre.com> Tested-by: Mattijs Korpershoek <mkorpershoek@baylibre.com> Signed-off-by: Nishanth Menon <nm@ti.com> Reviewed-by: Tom Rini <trini@konsulko.com>
This commit is contained in:
parent
45b0b5e5a0
commit
a200f428b5
3 changed files with 89 additions and 0 deletions
19
board/ti/am62x/beagleplay.env
Normal file
19
board/ti/am62x/beagleplay.env
Normal file
|
@ -0,0 +1,19 @@
|
|||
#include <env/ti/ti_common.env>
|
||||
#include <env/ti/default_findfdt.env>
|
||||
#include <env/ti/mmc.env>
|
||||
|
||||
name_kern=Image
|
||||
console=ttyS2,115200n8
|
||||
args_all=setenv optargs ${optargs} earlycon=ns16550a,mmio32,0x02800000
|
||||
run_kern=booti ${loadaddr} ${rd_spec} ${fdtaddr}
|
||||
set_led_state_fail_load= led led-0 off; led led-1 on;
|
||||
led led-2 off; led led-3 on; led led-4 off
|
||||
set_led_state_start_load=led led-0 on; led led-1 off;
|
||||
led led-2 on; led led-3 off; led led-4 on
|
||||
boot=mmc
|
||||
mmcdev=1
|
||||
bootpart=1:1
|
||||
bootdir=/boot
|
||||
boot_targets=mmc1 mmc0 usb pxe
|
||||
bootmeths=script extlinux efi pxe
|
||||
rd_spec=-
|
55
board/ti/am62x/beagleplay_a53.config
Normal file
55
board/ti/am62x/beagleplay_a53.config
Normal file
|
@ -0,0 +1,55 @@
|
|||
# Defconfig fragment to apply on top of am62x_evm_a53_defconfig
|
||||
|
||||
CONFIG_DEFAULT_DEVICE_TREE="k3-am625-beagleplay"
|
||||
CONFIG_OF_LIST="k3-am625-beagleplay"
|
||||
CONFIG_SPL_OF_LIST="k3-am625-beagleplay"
|
||||
CONFIG_BOOTCOMMAND="run set_led_state_start_load;run findfdt; run envboot; bootflow scan -lb;run set_led_state_fail_load"
|
||||
CONFIG_EXT4_WRITE=y
|
||||
CONFIG_LZO=y
|
||||
CONFIG_AUTOBOOT_KEYED=y
|
||||
CONFIG_AUTOBOOT_PROMPT="Press SPACE to abort autoboot in %d seconds\n"
|
||||
CONFIG_AUTOBOOT_DELAY_STR="d"
|
||||
CONFIG_AUTOBOOT_STOP_STR=" "
|
||||
# Use the Beagleplay env file
|
||||
CONFIG_ENV_SOURCE_FILE="beagleplay"
|
||||
# Do not use emmc boot - we will use FS only
|
||||
CONFIG_SUPPORT_EMMC_BOOT=n
|
||||
CONFIG_MMC_IO_VOLTAGE=y
|
||||
# CONFIG_SPL_MMC_IO_VOLTAGE is not set
|
||||
CONFIG_MMC_UHS_SUPPORT=y
|
||||
# CONFIG_SPL_MMC_UHS_SUPPORT is not set
|
||||
CONFIG_MMC_HS200_SUPPORT=y
|
||||
# CONFIG_SPL_MMC_HS200_SUPPORT is not set
|
||||
# Enable GPIO control
|
||||
CONFIG_DM_GPIO=y
|
||||
CONFIG_SPL_GPIO=y
|
||||
CONFIG_DA8XX_GPIO=y
|
||||
CONFIG_CMD_GPIO=y
|
||||
CONFIG_CMD_GPIO_READ=y
|
||||
# Enable LEDs
|
||||
CONFIG_LED=y
|
||||
CONFIG_LED_GPIO=y
|
||||
CONFIG_SPL_LED=y
|
||||
CONFIG_SPL_LED_GPIO=y
|
||||
# Enable I2C bus
|
||||
CONFIG_SPL_I2C=y
|
||||
CONFIG_DM_I2C=y
|
||||
CONFIG_SYS_I2C_OMAP24XX=y
|
||||
CONFIG_CMD_I2C=y
|
||||
# Regulator
|
||||
CONFIG_DM_REGULATOR=y
|
||||
CONFIG_DM_REGULATOR_FIXED=y
|
||||
CONFIG_DM_REGULATOR_GPIO=y
|
||||
CONFIG_CMD_REGULATOR=y
|
||||
CONFIG_DM_REGULATOR_TPS65219=y
|
||||
CONFIG_DM_PMIC=y
|
||||
CONFIG_PMIC_TPS65219=y
|
||||
CONFIG_CMD_PMIC=y
|
||||
# Uses Realtek phy rather than TI phy
|
||||
CONFIG_PHY_TI_DP83867=n
|
||||
CONFIG_PHY_REALTEK=y
|
||||
# No SPI flash on Beagleplay
|
||||
CONFIG_SPI=n
|
||||
CONFIG_SPI_FLASH=n
|
||||
CONFIG_SPL_DM_SPI_FLASH=n
|
||||
CONFIG_SPL_SPI_FLASH_SUPPORT=n
|
15
board/ti/am62x/beagleplay_r5.config
Normal file
15
board/ti/am62x/beagleplay_r5.config
Normal file
|
@ -0,0 +1,15 @@
|
|||
# Defconfig fragment to apply on top of:
|
||||
# am62x_evm_r5_defconfig
|
||||
#
|
||||
CONFIG_DEFAULT_DEVICE_TREE="k3-am625-r5-beagleplay"
|
||||
CONFIG_OF_LIST="k3-am625-r5-beagleplay"
|
||||
CONFIG_SPL_OF_LIST="k3-am625-r5-beagleplay"
|
||||
# Do spl board init
|
||||
CONFIG_SPL_BOARD_INIT=y
|
||||
# Do not use emmc boot - we will use FS only
|
||||
CONFIG_SUPPORT_EMMC_BOOT=n
|
||||
# No SPI flash on Beagleplay
|
||||
CONFIG_SPI=n
|
||||
CONFIG_SPI_FLASH=n
|
||||
CONFIG_SPL_DM_SPI_FLASH=n
|
||||
CONFIG_SPL_SPI_FLASH_SUPPORT=n
|
Loading…
Add table
Reference in a new issue