Masahiro Yamada | 7168da1 | 2015-02-05 14:30:23 +0900 | [diff] [blame] | 1 | U-Boot for UniPhier SoC family |
| 2 | ============================== |
| 3 | |
| 4 | |
Masahiro Yamada | 12a5ce7 | 2016-10-17 22:20:16 +0900 | [diff] [blame] | 5 | Recommended toolchains |
| 6 | ---------------------- |
Masahiro Yamada | 7168da1 | 2015-02-05 14:30:23 +0900 | [diff] [blame] | 7 | |
Masahiro Yamada | 673ac33 | 2017-07-13 20:32:16 +0900 | [diff] [blame] | 8 | The UniPhier platform is well tested with Linaro toolchains. |
Masahiro Yamada | 12a5ce7 | 2016-10-17 22:20:16 +0900 | [diff] [blame] | 9 | You can download pre-built toolchains from: |
Masahiro Yamada | 7168da1 | 2015-02-05 14:30:23 +0900 | [diff] [blame] | 10 | |
| 11 | http://www.linaro.org/downloads/ |
| 12 | |
Masahiro Yamada | 7168da1 | 2015-02-05 14:30:23 +0900 | [diff] [blame] | 13 | |
| 14 | Compile the source |
| 15 | ------------------ |
| 16 | |
Masahiro Yamada | 673ac33 | 2017-07-13 20:32:16 +0900 | [diff] [blame] | 17 | The source can be configured and built with the following commands: |
Masahiro Yamada | 7168da1 | 2015-02-05 14:30:23 +0900 | [diff] [blame] | 18 | |
Masahiro Yamada | 673ac33 | 2017-07-13 20:32:16 +0900 | [diff] [blame] | 19 | $ make <defconfig> |
| 20 | $ make CROSS_COMPILE=<toolchain-prefix> DEVICE_TREE=<device-tree> |
Masahiro Yamada | 7168da1 | 2015-02-05 14:30:23 +0900 | [diff] [blame] | 21 | |
Masahiro Yamada | 673ac33 | 2017-07-13 20:32:16 +0900 | [diff] [blame] | 22 | The recommended <toolchain-prefix> is `arm-linux-gnueabihf-` for 32bit SoCs, |
| 23 | `aarch64-linux-gnu-` for 64bit SoCs, but you may wish to change it to use your |
| 24 | favorite compiler. |
Masahiro Yamada | 5fd3f43 | 2015-12-17 18:00:39 +0900 | [diff] [blame] | 25 | |
Masahiro Yamada | 673ac33 | 2017-07-13 20:32:16 +0900 | [diff] [blame] | 26 | The following tables show <defconfig> and <device-tree> for each board. |
Masahiro Yamada | 3365b4e | 2015-07-21 14:04:22 +0900 | [diff] [blame] | 27 | |
Masahiro Yamada | 673ac33 | 2017-07-13 20:32:16 +0900 | [diff] [blame] | 28 | 32bit SoC boards: |
Masahiro Yamada | c6c7eed | 2016-03-01 13:10:37 +0900 | [diff] [blame] | 29 | |
Masahiro Yamada | 673ac33 | 2017-07-13 20:32:16 +0900 | [diff] [blame] | 30 | Board | <defconfig> | <device-tree> |
| 31 | ---------------|------------------------------|------------------------------ |
| 32 | sLD3 reference | uniphier_sld3_defconfig | uniphier-sld3-ref (default) |
| 33 | LD4 reference | uniphier_ld4_sld8_defconfig | uniphier-ld4-ref (default) |
| 34 | sld8 reference | uniphier_ld4_sld8_defconfig | uniphier-sld8-def |
| 35 | Pro4 reference | uniphier_pro4_defconfig | uniphier-pro4-ref (default) |
| 36 | Pro4 Ace | uniphier_pro4_defconfig | uniphier-pro4-ace |
| 37 | Pro4 Sanji | uniphier_pro4_defconfig | uniphier-pro4-sanji |
| 38 | Pro5 4KBOX | uniphier_pxs2_ld6b_defconfig | uniphier-pro5-4kbox |
| 39 | PXs2 Gentil | uniphier_pxs2_ld6b_defconfig | uniphier-pxs2-gentil |
| 40 | PXs2 Vodka | uniphier_pxs2_ld6b_defconfig | uniphier-pxs2-vodka (default) |
| 41 | LD6b reference | uniphier_pxs2_ld6b_defconfig | uniphier-ld6b-ref |
Masahiro Yamada | c6c7eed | 2016-03-01 13:10:37 +0900 | [diff] [blame] | 42 | |
Masahiro Yamada | 673ac33 | 2017-07-13 20:32:16 +0900 | [diff] [blame] | 43 | 64bit SoC boards: |
| 44 | |
| 45 | Board | <defconfig> | <device-tree> |
| 46 | ---------------|-----------------------|---------------------------- |
| 47 | LD11 reference | uniphier_v8_defconfig | uniphier-ld11-ref |
| 48 | LD11 Global | uniphier_v8_defconfig | uniphier-ld11-global |
| 49 | LD20 reference | uniphier_v8_defconfig | uniphier-ld20-ref (default) |
| 50 | LD20 Global | uniphier_v8_defconfig | uniphier-ld20-global |
| 51 | |
| 52 | For example, to compile the source for PXs2 Vodka board, run the following: |
| 53 | |
Masahiro Yamada | fe7c95e | 2016-02-26 18:59:41 +0900 | [diff] [blame] | 54 | $ make uniphier_pxs2_ld6b_defconfig |
Masahiro Yamada | 673ac33 | 2017-07-13 20:32:16 +0900 | [diff] [blame] | 55 | $ make CROSS_COMPILE=arm-linux-gnueabihf- DEVICE_TREE=uniphier-pxs2-vodka |
Masahiro Yamada | 28f40d4 | 2015-09-22 00:27:40 +0900 | [diff] [blame] | 56 | |
Masahiro Yamada | 673ac33 | 2017-07-13 20:32:16 +0900 | [diff] [blame] | 57 | The device tree marked as (default) can be omitted. `uniphier-pxs2-vodka` is |
| 58 | the default device tree for the configuration `uniphier_pxs2_ld6b_defconfig`, |
| 59 | so the following gives the same result. |
Masahiro Yamada | 1a26453 | 2015-12-17 18:00:40 +0900 | [diff] [blame] | 60 | |
Masahiro Yamada | 1a26453 | 2015-12-17 18:00:40 +0900 | [diff] [blame] | 61 | $ make uniphier_pxs2_ld6b_defconfig |
Masahiro Yamada | 12a5ce7 | 2016-10-17 22:20:16 +0900 | [diff] [blame] | 62 | $ make CROSS_COMPILE=arm-linux-gnueabihf- |
Masahiro Yamada | 019df87 | 2015-09-22 00:27:41 +0900 | [diff] [blame] | 63 | |
Masahiro Yamada | 019df87 | 2015-09-22 00:27:41 +0900 | [diff] [blame] | 64 | |
Masahiro Yamada | 673ac33 | 2017-07-13 20:32:16 +0900 | [diff] [blame] | 65 | Booting 32bit SoC boards |
| 66 | ------------------------ |
Masahiro Yamada | 12a5ce7 | 2016-10-17 22:20:16 +0900 | [diff] [blame] | 67 | |
Masahiro Yamada | 673ac33 | 2017-07-13 20:32:16 +0900 | [diff] [blame] | 68 | The build command will generate the following: |
| 69 | - u-boot.bin |
| 70 | - spl/u-boot.bin |
Masahiro Yamada | 12a5ce7 | 2016-10-17 22:20:16 +0900 | [diff] [blame] | 71 | |
Masahiro Yamada | 673ac33 | 2017-07-13 20:32:16 +0900 | [diff] [blame] | 72 | U-Boot can boot UniPhier 32bit SoC boards by itself. Flash the generated images |
| 73 | to the storage device (NAND or eMMC) on your board. |
Masahiro Yamada | d085ecd | 2016-03-23 01:40:05 +0900 | [diff] [blame] | 74 | |
Masahiro Yamada | 3cb9abc | 2016-02-02 12:53:31 +0900 | [diff] [blame] | 75 | - spl/u-boot-spl.bin at the offset address 0x00000000 |
Masahiro Yamada | cf3175b | 2017-01-30 13:12:28 +0900 | [diff] [blame] | 76 | - u-boot.bin at the offset address 0x00020000 |
Masahiro Yamada | d085ecd | 2016-03-23 01:40:05 +0900 | [diff] [blame] | 77 | |
Masahiro Yamada | 673ac33 | 2017-07-13 20:32:16 +0900 | [diff] [blame] | 78 | The `u-boot-with-spl.bin` is the concatenation of the two (with appropriate |
| 79 | padding), so you can also do: |
Masahiro Yamada | d085ecd | 2016-03-23 01:40:05 +0900 | [diff] [blame] | 80 | |
| 81 | - u-boot-with-spl.bin at the offset address 0x00000000 |
Masahiro Yamada | 7168da1 | 2015-02-05 14:30:23 +0900 | [diff] [blame] | 82 | |
| 83 | If a TFTP server is available, the images can be easily updated. |
Masahiro Yamada | d085ecd | 2016-03-23 01:40:05 +0900 | [diff] [blame] | 84 | Just copy the u-boot-spl.bin and u-boot.bin to the TFTP public directory, |
Masahiro Yamada | 673ac33 | 2017-07-13 20:32:16 +0900 | [diff] [blame] | 85 | and run the following command at the U-Boot command line: |
Masahiro Yamada | 7168da1 | 2015-02-05 14:30:23 +0900 | [diff] [blame] | 86 | |
Masahiro Yamada | 673ac33 | 2017-07-13 20:32:16 +0900 | [diff] [blame] | 87 | To update the images in NAND: |
| 88 | |
| 89 | => run nandupdate |
| 90 | |
| 91 | To update the images in eMMC: |
| 92 | |
| 93 | => run emmcupdate |
Masahiro Yamada | 7168da1 | 2015-02-05 14:30:23 +0900 | [diff] [blame] | 94 | |
| 95 | |
Masahiro Yamada | 673ac33 | 2017-07-13 20:32:16 +0900 | [diff] [blame] | 96 | Booting 64bit SoC boards |
| 97 | ------------------------ |
Masahiro Yamada | c231c43 | 2016-02-16 17:08:41 +0900 | [diff] [blame] | 98 | |
Masahiro Yamada | 673ac33 | 2017-07-13 20:32:16 +0900 | [diff] [blame] | 99 | The build command will generate the following: |
| 100 | - u-boot.bin |
Masahiro Yamada | d085ecd | 2016-03-23 01:40:05 +0900 | [diff] [blame] | 101 | |
Masahiro Yamada | 673ac33 | 2017-07-13 20:32:16 +0900 | [diff] [blame] | 102 | However, U-Boot is not the first stage loader for UniPhier 64bit SoC boards. |
| 103 | U-Boot serves as a non-secure boot loader loaded by [ARM Trusted Firmware], |
| 104 | so you need to provide the `u-boot.bin` to the build command of ARM Trusted |
| 105 | Firmware. |
Masahiro Yamada | d085ecd | 2016-03-23 01:40:05 +0900 | [diff] [blame] | 106 | |
Masahiro Yamada | 673ac33 | 2017-07-13 20:32:16 +0900 | [diff] [blame] | 107 | [ARM Trusted Firmware]: https://github.com/ARM-software/arm-trusted-firmware |
Masahiro Yamada | c231c43 | 2016-02-16 17:08:41 +0900 | [diff] [blame] | 108 | |
| 109 | |
Masahiro Yamada | 7168da1 | 2015-02-05 14:30:23 +0900 | [diff] [blame] | 110 | UniPhier specific commands |
| 111 | -------------------------- |
| 112 | |
| 113 | - pinmon (enabled by CONFIG_CMD_PINMON) |
| 114 | shows the boot mode pins that has been latched at the power-on reset |
| 115 | |
| 116 | - ddrphy (enabled by CONFIG_CMD_DDRPHY_DUMP) |
| 117 | shows the DDR PHY parameters set by the PHY training |
| 118 | |
Masahiro Yamada | 12a5ce7 | 2016-10-17 22:20:16 +0900 | [diff] [blame] | 119 | - ddrmphy (enabled by CONFIG_CMD_DDRMPHY_DUMP) |
| 120 | shows the DDR Multi PHY parameters set by the PHY training |
| 121 | |
Masahiro Yamada | 7168da1 | 2015-02-05 14:30:23 +0900 | [diff] [blame] | 122 | |
| 123 | Supported devices |
| 124 | ----------------- |
| 125 | |
| 126 | - UART (on-chip) |
| 127 | - NAND |
Masahiro Yamada | a111bfb | 2016-02-18 19:52:48 +0900 | [diff] [blame] | 128 | - SD/eMMC |
Masahiro Yamada | 1e7df7c | 2015-02-27 02:27:00 +0900 | [diff] [blame] | 129 | - USB 2.0 (EHCI) |
| 130 | - USB 3.0 (xHCI) |
Masahiro Yamada | b9a66b6 | 2016-02-16 17:03:48 +0900 | [diff] [blame] | 131 | - GPIO |
Masahiro Yamada | 7168da1 | 2015-02-05 14:30:23 +0900 | [diff] [blame] | 132 | - LAN (on-board SMSC9118) |
| 133 | - I2C |
| 134 | - EEPROM (connected to the on-board I2C bus) |
| 135 | - Support card (SRAM, NOR flash, some peripherals) |
| 136 | |
| 137 | |
Masahiro Yamada | 62102be | 2015-07-21 14:04:24 +0900 | [diff] [blame] | 138 | Micro Support Card |
| 139 | ------------------ |
| 140 | |
| 141 | The recommended bit switch settings are as follows: |
| 142 | |
| 143 | SW2 OFF(1)/ON(0) Description |
| 144 | ------------------------------------------ |
| 145 | bit 1 <---- BKSZ[0] |
| 146 | bit 2 ----> BKSZ[1] |
| 147 | bit 3 <---- SoC Bus Width 16/32 |
| 148 | bit 4 <---- SERIAL_SEL[0] |
| 149 | bit 5 ----> SERIAL_SEL[1] |
| 150 | bit 6 ----> BOOTSWAP_EN |
| 151 | bit 7 <---- CS1/CS5 |
| 152 | bit 8 <---- SOC_SERIAL_DISABLE |
| 153 | |
| 154 | SW8 OFF(1)/ON(0) Description |
| 155 | ------------------------------------------ |
Masahiro Yamada | e69514c | 2016-01-09 01:51:16 +0900 | [diff] [blame] | 156 | bit 1 <---- CS1_SPLIT |
Masahiro Yamada | 62102be | 2015-07-21 14:04:24 +0900 | [diff] [blame] | 157 | bit 2 <---- CASE9_ON |
| 158 | bit 3 <---- CASE10_ON |
| 159 | bit 4 Don't Care Reserve |
| 160 | bit 5 Don't Care Reserve |
| 161 | bit 6 Don't Care Reserve |
| 162 | bit 7 ----> BURST_EN |
| 163 | bit 8 ----> FLASHBUS32_16 |
| 164 | |
| 165 | The BKSZ[1:0] specifies the address range of memory slot and peripherals |
| 166 | as follows: |
| 167 | |
| 168 | BKSZ Description RAM slot Peripherals |
| 169 | -------------------------------------------------------------------- |
Masahiro Yamada | c57a9a6 | 2015-09-30 21:15:58 +0900 | [diff] [blame] | 170 | 0b00 15MB RAM / 1MB Peri 00000000-00efffff 00f00000-00ffffff |
| 171 | 0b01 31MB RAM / 1MB Peri 00000000-01efffff 01f00000-01ffffff |
| 172 | 0b10 64MB RAM / 1MB Peri 00000000-03efffff 03f00000-03ffffff |
| 173 | 0b11 127MB RAM / 1MB Peri 00000000-07efffff 07f00000-07ffffff |
Masahiro Yamada | 62102be | 2015-07-21 14:04:24 +0900 | [diff] [blame] | 174 | |
| 175 | Set BSKZ[1:0] to 0b01 for U-Boot. |
| 176 | This mode is the most handy because EA[24] is always supported by the save pin |
| 177 | mode of the system bus. On the other hand, EA[25] is not supported for some |
| 178 | newer SoCs. Even if it is, EA[25] is not connected on most of the boards. |
| 179 | |
Masahiro Yamada | 7168da1 | 2015-02-05 14:30:23 +0900 | [diff] [blame] | 180 | -- |
Masahiro Yamada | 62102be | 2015-07-21 14:04:24 +0900 | [diff] [blame] | 181 | Masahiro Yamada <yamada.masahiro@socionext.com> |
Masahiro Yamada | 673ac33 | 2017-07-13 20:32:16 +0900 | [diff] [blame] | 182 | Jul. 2017 |