I am working with the N93_SMARC_SOM_2r16e_IF573_3M_i which uses the i.MX 93. I need to build the uboot bootloader per the instructions from this link(commands copied below)
https://www.ezurio.com/resources/software-announcements/u-boot-v2022-04-for-i-mx-platforms
~$ sudo apt-get install crossbuild-essential-arm64
~$ export ARCH=arm64
~$ export CROSS_COMPILE=aarch64-linux-gnu-
~$ wget https://www.nxp.com/lgfiles/NMG/MAD/YOCTO/firmware-imx-8.17.bin
~$ chmod +x firmware-imx-8.17.bin
~$ ./firmware-imx-8.17.bin
~$ cp firmware-imx-8.17/firmware/hdmi/cadence/signed_hdmi_imx8m.bin u-boot/
~$ cp firmware-imx-8.17/firmware/ddr/synopsys/lpddr4*.bin u-boot/
...
But I need access to the firmware for imx 93 to be able to use these instructions of the most recent version. Can anyone point me in the direction of where to find this firmware?
Thanks