aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMD Danish Anwar2024-02-15 03:50:08 -0600
committerUdit Kumar2024-02-15 04:22:01 -0600
commit654724bbe4dae24cf91a085f2182f734b7db0554 (patch)
tree87e88d5d46c83c55c43d1785740d7264072a9c2c
parentf098809ffefcb5f358a02c731d7eaf5c47bcc4a2 (diff)
downloadti-u-boot-654724bbe4dae24cf91a085f2182f734b7db0554.tar.gz
ti-u-boot-654724bbe4dae24cf91a085f2182f734b7db0554.tar.xz
ti-u-boot-654724bbe4dae24cf91a085f2182f734b7db0554.zip
board: ti: am64x: Set fw_storage_interface and fw_dev_part ENVs
When ICSSG driver is enabled (CONFIG_TI_ICSSG_PRUETH=y) set fw_storage_interface and fw_dev_part env variables. These variables need be set appropriately in order to load differnet ICSSG firmwares needed for ICSSG driver. By default the storage interface is mmc and the partition is 1:2. User can modify this based on their needs. Signed-off-by: MD Danish Anwar <danishanwar@ti.com>
-rw-r--r--board/ti/am64x/am64x.env5
1 files changed, 5 insertions, 0 deletions
diff --git a/board/ti/am64x/am64x.env b/board/ti/am64x/am64x.env
index cdb01bb6a10..53c7d8d6790 100644
--- a/board/ti/am64x/am64x.env
+++ b/board/ti/am64x/am64x.env
@@ -56,3 +56,8 @@ usbboot=setenv boot usb;
56 run get_kern_usb; 56 run get_kern_usb;
57 run get_fdt_usb; 57 run get_fdt_usb;
58 run run_kern; 58 run run_kern;
59
60#if CONFIG_TI_ICSSG_PRUETH
61fw_storage_interface=mmc
62fw_dev_part=1:2
63#endif