blob: fa1f9bcc966773838a944f6c1f93703b930cc86a [file] [log] [blame]
Masahiro Yamada7168da12015-02-05 14:30:23 +09001U-Boot for UniPhier SoC family
2==============================
3
4
Masahiro Yamada12a5ce72016-10-17 22:20:16 +09005Recommended toolchains
6----------------------
Masahiro Yamada7168da12015-02-05 14:30:23 +09007
Masahiro Yamada673ac332017-07-13 20:32:16 +09008The UniPhier platform is well tested with Linaro toolchains.
Masahiro Yamada12a5ce72016-10-17 22:20:16 +09009You can download pre-built toolchains from:
Masahiro Yamada7168da12015-02-05 14:30:23 +090010
11 http://www.linaro.org/downloads/
12
Masahiro Yamada7168da12015-02-05 14:30:23 +090013
14Compile the source
15------------------
16
Masahiro Yamada673ac332017-07-13 20:32:16 +090017The source can be configured and built with the following commands:
Masahiro Yamada7168da12015-02-05 14:30:23 +090018
Masahiro Yamada673ac332017-07-13 20:32:16 +090019 $ make <defconfig>
20 $ make CROSS_COMPILE=<toolchain-prefix> DEVICE_TREE=<device-tree>
Masahiro Yamada7168da12015-02-05 14:30:23 +090021
Masahiro Yamada673ac332017-07-13 20:32:16 +090022The 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
24favorite compiler.
Masahiro Yamada5fd3f432015-12-17 18:00:39 +090025
Masahiro Yamada673ac332017-07-13 20:32:16 +090026The following tables show <defconfig> and <device-tree> for each board.
Masahiro Yamada3365b4e2015-07-21 14:04:22 +090027
Masahiro Yamada673ac332017-07-13 20:32:16 +09002832bit SoC boards:
Masahiro Yamadac6c7eed2016-03-01 13:10:37 +090029
Masahiro Yamada673ac332017-07-13 20:32:16 +090030 Board | <defconfig> | <device-tree>
31---------------|------------------------------|------------------------------
Masahiro Yamada673ac332017-07-13 20:32:16 +090032LD4 reference | uniphier_ld4_sld8_defconfig | uniphier-ld4-ref (default)
33sld8 reference | uniphier_ld4_sld8_defconfig | uniphier-sld8-def
34Pro4 reference | uniphier_pro4_defconfig | uniphier-pro4-ref (default)
35Pro4 Ace | uniphier_pro4_defconfig | uniphier-pro4-ace
36Pro4 Sanji | uniphier_pro4_defconfig | uniphier-pro4-sanji
37Pro5 4KBOX | uniphier_pxs2_ld6b_defconfig | uniphier-pro5-4kbox
38PXs2 Gentil | uniphier_pxs2_ld6b_defconfig | uniphier-pxs2-gentil
39PXs2 Vodka | uniphier_pxs2_ld6b_defconfig | uniphier-pxs2-vodka (default)
40LD6b reference | uniphier_pxs2_ld6b_defconfig | uniphier-ld6b-ref
Masahiro Yamadac6c7eed2016-03-01 13:10:37 +090041
Masahiro Yamada673ac332017-07-13 20:32:16 +09004264bit SoC boards:
43
44 Board | <defconfig> | <device-tree>
45---------------|-----------------------|----------------------------
46LD11 reference | uniphier_v8_defconfig | uniphier-ld11-ref
47LD11 Global | uniphier_v8_defconfig | uniphier-ld11-global
48LD20 reference | uniphier_v8_defconfig | uniphier-ld20-ref (default)
49LD20 Global | uniphier_v8_defconfig | uniphier-ld20-global
50
51For example, to compile the source for PXs2 Vodka board, run the following:
52
Masahiro Yamadafe7c95e2016-02-26 18:59:41 +090053 $ make uniphier_pxs2_ld6b_defconfig
Masahiro Yamada673ac332017-07-13 20:32:16 +090054 $ make CROSS_COMPILE=arm-linux-gnueabihf- DEVICE_TREE=uniphier-pxs2-vodka
Masahiro Yamada28f40d42015-09-22 00:27:40 +090055
Masahiro Yamada673ac332017-07-13 20:32:16 +090056The device tree marked as (default) can be omitted. `uniphier-pxs2-vodka` is
57the default device tree for the configuration `uniphier_pxs2_ld6b_defconfig`,
58so the following gives the same result.
Masahiro Yamada1a264532015-12-17 18:00:40 +090059
Masahiro Yamada1a264532015-12-17 18:00:40 +090060 $ make uniphier_pxs2_ld6b_defconfig
Masahiro Yamada12a5ce72016-10-17 22:20:16 +090061 $ make CROSS_COMPILE=arm-linux-gnueabihf-
Masahiro Yamada019df872015-09-22 00:27:41 +090062
Masahiro Yamada019df872015-09-22 00:27:41 +090063
Masahiro Yamada673ac332017-07-13 20:32:16 +090064Booting 32bit SoC boards
65------------------------
Masahiro Yamada12a5ce72016-10-17 22:20:16 +090066
Masahiro Yamada673ac332017-07-13 20:32:16 +090067The build command will generate the following:
68- u-boot.bin
69- spl/u-boot.bin
Masahiro Yamada12a5ce72016-10-17 22:20:16 +090070
Masahiro Yamada673ac332017-07-13 20:32:16 +090071U-Boot can boot UniPhier 32bit SoC boards by itself. Flash the generated images
72to the storage device (NAND or eMMC) on your board.
Masahiro Yamadad085ecd2016-03-23 01:40:05 +090073
Masahiro Yamada3cb9abc2016-02-02 12:53:31 +090074 - spl/u-boot-spl.bin at the offset address 0x00000000
Masahiro Yamadacf3175b2017-01-30 13:12:28 +090075 - u-boot.bin at the offset address 0x00020000
Masahiro Yamadad085ecd2016-03-23 01:40:05 +090076
Masahiro Yamada673ac332017-07-13 20:32:16 +090077The `u-boot-with-spl.bin` is the concatenation of the two (with appropriate
78padding), so you can also do:
Masahiro Yamadad085ecd2016-03-23 01:40:05 +090079
80 - u-boot-with-spl.bin at the offset address 0x00000000
Masahiro Yamada7168da12015-02-05 14:30:23 +090081
82If a TFTP server is available, the images can be easily updated.
Masahiro Yamadad085ecd2016-03-23 01:40:05 +090083Just copy the u-boot-spl.bin and u-boot.bin to the TFTP public directory,
Masahiro Yamada673ac332017-07-13 20:32:16 +090084and run the following command at the U-Boot command line:
Masahiro Yamada7168da12015-02-05 14:30:23 +090085
Masahiro Yamada673ac332017-07-13 20:32:16 +090086To update the images in NAND:
87
88 => run nandupdate
89
90To update the images in eMMC:
91
92 => run emmcupdate
Masahiro Yamada7168da12015-02-05 14:30:23 +090093
94
Masahiro Yamada673ac332017-07-13 20:32:16 +090095Booting 64bit SoC boards
96------------------------
Masahiro Yamadac231c432016-02-16 17:08:41 +090097
Masahiro Yamada673ac332017-07-13 20:32:16 +090098The build command will generate the following:
99- u-boot.bin
Masahiro Yamadad085ecd2016-03-23 01:40:05 +0900100
Masahiro Yamada673ac332017-07-13 20:32:16 +0900101However, U-Boot is not the first stage loader for UniPhier 64bit SoC boards.
102U-Boot serves as a non-secure boot loader loaded by [ARM Trusted Firmware],
103so you need to provide the `u-boot.bin` to the build command of ARM Trusted
104Firmware.
Masahiro Yamadad085ecd2016-03-23 01:40:05 +0900105
Masahiro Yamada673ac332017-07-13 20:32:16 +0900106[ARM Trusted Firmware]: https://github.com/ARM-software/arm-trusted-firmware
Masahiro Yamadac231c432016-02-16 17:08:41 +0900107
108
Masahiro Yamada7168da12015-02-05 14:30:23 +0900109UniPhier specific commands
110--------------------------
111
112 - pinmon (enabled by CONFIG_CMD_PINMON)
113 shows the boot mode pins that has been latched at the power-on reset
114
115 - ddrphy (enabled by CONFIG_CMD_DDRPHY_DUMP)
116 shows the DDR PHY parameters set by the PHY training
117
Masahiro Yamada12a5ce72016-10-17 22:20:16 +0900118 - ddrmphy (enabled by CONFIG_CMD_DDRMPHY_DUMP)
119 shows the DDR Multi PHY parameters set by the PHY training
120
Masahiro Yamada7168da12015-02-05 14:30:23 +0900121
122Supported devices
123-----------------
124
125 - UART (on-chip)
126 - NAND
Masahiro Yamadaa111bfb2016-02-18 19:52:48 +0900127 - SD/eMMC
Masahiro Yamada1e7df7c2015-02-27 02:27:00 +0900128 - USB 2.0 (EHCI)
129 - USB 3.0 (xHCI)
Masahiro Yamadab9a66b62016-02-16 17:03:48 +0900130 - GPIO
Masahiro Yamada7168da12015-02-05 14:30:23 +0900131 - LAN (on-board SMSC9118)
132 - I2C
133 - EEPROM (connected to the on-board I2C bus)
134 - Support card (SRAM, NOR flash, some peripherals)
135
136
Masahiro Yamada62102be2015-07-21 14:04:24 +0900137Micro Support Card
138------------------
139
140The recommended bit switch settings are as follows:
141
142 SW2 OFF(1)/ON(0) Description
143 ------------------------------------------
144 bit 1 <---- BKSZ[0]
145 bit 2 ----> BKSZ[1]
146 bit 3 <---- SoC Bus Width 16/32
147 bit 4 <---- SERIAL_SEL[0]
148 bit 5 ----> SERIAL_SEL[1]
149 bit 6 ----> BOOTSWAP_EN
150 bit 7 <---- CS1/CS5
151 bit 8 <---- SOC_SERIAL_DISABLE
152
153 SW8 OFF(1)/ON(0) Description
154 ------------------------------------------
Masahiro Yamadae69514c2016-01-09 01:51:16 +0900155 bit 1 <---- CS1_SPLIT
Masahiro Yamada62102be2015-07-21 14:04:24 +0900156 bit 2 <---- CASE9_ON
157 bit 3 <---- CASE10_ON
158 bit 4 Don't Care Reserve
159 bit 5 Don't Care Reserve
160 bit 6 Don't Care Reserve
161 bit 7 ----> BURST_EN
162 bit 8 ----> FLASHBUS32_16
163
164The BKSZ[1:0] specifies the address range of memory slot and peripherals
165as follows:
166
167 BKSZ Description RAM slot Peripherals
168 --------------------------------------------------------------------
Masahiro Yamadac57a9a62015-09-30 21:15:58 +0900169 0b00 15MB RAM / 1MB Peri 00000000-00efffff 00f00000-00ffffff
170 0b01 31MB RAM / 1MB Peri 00000000-01efffff 01f00000-01ffffff
171 0b10 64MB RAM / 1MB Peri 00000000-03efffff 03f00000-03ffffff
172 0b11 127MB RAM / 1MB Peri 00000000-07efffff 07f00000-07ffffff
Masahiro Yamada62102be2015-07-21 14:04:24 +0900173
174Set BSKZ[1:0] to 0b01 for U-Boot.
175This mode is the most handy because EA[24] is always supported by the save pin
176mode of the system bus. On the other hand, EA[25] is not supported for some
177newer SoCs. Even if it is, EA[25] is not connected on most of the boards.
178
Masahiro Yamada7168da12015-02-05 14:30:23 +0900179--
Masahiro Yamada62102be2015-07-21 14:04:24 +0900180Masahiro Yamada <yamada.masahiro@socionext.com>
Masahiro Yamada673ac332017-07-13 20:32:16 +0900181Jul. 2017