Vanessa Maegima | 1541d7a | 2017-05-08 13:17:28 -0300 | [diff] [blame] | 1 | How to update U-Boot on pico-imx7d board |
| 2 | ---------------------------------------- |
| 3 | |
| 4 | Required software on the host PC: |
| 5 | |
| 6 | - imx_usb_loader: https://github.com/boundarydevices/imx_usb_loader |
| 7 | |
| 8 | Build U-Boot for pico: |
| 9 | |
| 10 | $ make mrproper |
| 11 | $ make pico-imx7d_defconfig |
| 12 | $ make |
| 13 | |
Fabio Estevam | 4cdeda5 | 2018-09-04 10:23:12 -0300 | [diff] [blame^] | 14 | This generates the SPL and u-boot.img binaries. |
| 15 | |
| 16 | 1. Loading U-Boot via USB Serial Download Protocol |
| 17 | |
| 18 | Note: This method is convenient for development purposes. |
| 19 | If the eMMC has already a U-Boot flashed with DFU support then |
| 20 | the user can go to step 2 below in order to update U-Boot. |
Vanessa Maegima | 1541d7a | 2017-05-08 13:17:28 -0300 | [diff] [blame] | 21 | |
| 22 | Put pico board in USB download mode (refer to the PICO-iMX7D Quick Start Guide |
| 23 | page 3) |
| 24 | |
| 25 | Connect a USB to serial adapter between the host PC and pico. |
| 26 | |
| 27 | Connect a USB cable between the OTG pico port and the host PC. |
| 28 | |
| 29 | Open a terminal program such as minicom. |
| 30 | |
Fabio Estevam | 4cdeda5 | 2018-09-04 10:23:12 -0300 | [diff] [blame^] | 31 | Copy SPL and u-boot.img to the imx_usb_loader folder. |
Vanessa Maegima | 1541d7a | 2017-05-08 13:17:28 -0300 | [diff] [blame] | 32 | |
Fabio Estevam | 4cdeda5 | 2018-09-04 10:23:12 -0300 | [diff] [blame^] | 33 | Load the SPL binary via USB: |
Vanessa Maegima | 1541d7a | 2017-05-08 13:17:28 -0300 | [diff] [blame] | 34 | |
Fabio Estevam | 4cdeda5 | 2018-09-04 10:23:12 -0300 | [diff] [blame^] | 35 | $ sudo ./imx_usb SPL |
| 36 | |
| 37 | Load the u-boot.img binary via USB: |
| 38 | |
| 39 | $ sudo ./imx_usb u-boot.img |
Vanessa Maegima | 1541d7a | 2017-05-08 13:17:28 -0300 | [diff] [blame] | 40 | |
| 41 | Then U-Boot starts and its messages appear in the console program. |
| 42 | |
| 43 | Use the default environment variables: |
| 44 | |
| 45 | => env default -f -a |
| 46 | => saveenv |
| 47 | |
Fabio Estevam | 4cdeda5 | 2018-09-04 10:23:12 -0300 | [diff] [blame^] | 48 | 2. Flashing U-Boot into the eMMC |
| 49 | |
Otavio Salvador | 619fc16 | 2018-06-29 15:19:19 -0300 | [diff] [blame] | 50 | Run the DFU agent so we can flash the new images using dfu-util tool: |
Vanessa Maegima | 1541d7a | 2017-05-08 13:17:28 -0300 | [diff] [blame] | 51 | |
Otavio Salvador | 619fc16 | 2018-06-29 15:19:19 -0300 | [diff] [blame] | 52 | => dfu 0 mmc 0 |
Vanessa Maegima | 1541d7a | 2017-05-08 13:17:28 -0300 | [diff] [blame] | 53 | |
Fabio Estevam | 4cdeda5 | 2018-09-04 10:23:12 -0300 | [diff] [blame^] | 54 | Flash SPL and u-boot.img into the eMMC running the following commands on a PC: |
Otavio Salvador | 619fc16 | 2018-06-29 15:19:19 -0300 | [diff] [blame] | 55 | |
| 56 | $ sudo dfu-util -D SPL -a spl |
| 57 | |
Otavio Salvador | 619fc16 | 2018-06-29 15:19:19 -0300 | [diff] [blame] | 58 | $ sudo dfu-util -D u-boot.img -a u-boot |
Vanessa Maegima | 1541d7a | 2017-05-08 13:17:28 -0300 | [diff] [blame] | 59 | |
| 60 | Remove power from the pico board. |
| 61 | |
| 62 | Put pico board into normal boot mode. |
| 63 | |
| 64 | Power up the board and the new updated U-Boot should boot from eMMC. |