blob: c235cb44a8b0b85628daac3202bd8d3ba13ae6b9 [file] [log] [blame]
Sean Anderson445fd222020-06-24 06:41:24 -04001.. SPDX-License-Identifier: GPL-2.0+
2.. Copyright (C) 2020 Sean Anderson <seanga2@gmail.com>
3
Heinrich Schuchardt8d3e08a2020-07-28 20:05:30 +02004MAIX
5====
Sean Anderson445fd222020-06-24 06:41:24 -04006
7Several of the Sipeed Maix series of boards cotain the Kendryte K210 processor,
8a 64-bit RISC-V CPU. This processor contains several peripherals to accelerate
9neural network processing and other "ai" tasks. This includes a "KPU" neural
10network processor, an audio processor supporting beamforming reception, and a
11digital video port supporting capture and output at VGA resolution. Other
12peripherals include 8M of SRAM (accessible with and without caching); remappable
13pins, including 40 GPIOs; AES, FFT, and SHA256 accelerators; a DMA controller;
14and I2C, I2S, and SPI controllers. Maix peripherals vary, but include spi flash;
15on-board usb-serial bridges; ports for cameras, displays, and sd cards; and
Heinrich Schuchardt8d3e08a2020-07-28 20:05:30 +020016ESP32 chips.
17
18Currently, only the Sipeed MAIX BiT V2.0 (bitm) and Sipeed MAIXDUINO are
19supported, but the boards are fairly similar.
Sean Anderson445fd222020-06-24 06:41:24 -040020
21Documentation for Maix boards is available from
22`Sipeed's website <http://dl.sipeed.com/MAIX/HDK/>`_.
23Documentation for the Kendryte K210 is available from
24`Kendryte's website <https://kendryte.com/downloads/>`_. However, hardware
25details are rather lacking, so most technical reference has been taken from the
26`standalone sdk <https://github.com/kendryte/kendryte-standalone-sdk>`_.
27
28Build and boot steps
29--------------------
30
Heinrich Schuchardt8d3e08a2020-07-28 20:05:30 +020031To build U-Boot, run
Sean Anderson445fd222020-06-24 06:41:24 -040032
33.. code-block:: none
34
Heinrich Schuchardt8d3e08a2020-07-28 20:05:30 +020035 make <defconfig>
Sean Anderson445fd222020-06-24 06:41:24 -040036 make CROSS_COMPILE=<your cross compile prefix>
37
Heinrich Schuchardt8d3e08a2020-07-28 20:05:30 +020038To flash U-Boot, run
Sean Anderson445fd222020-06-24 06:41:24 -040039
40.. code-block:: none
41
Heinrich Schuchardt8d3e08a2020-07-28 20:05:30 +020042 kflash -tp /dev/<your tty here> -B <board_id> u-boot-dtb.bin
43
44The board provides two serial devices, e.g.
Sean Anderson445fd222020-06-24 06:41:24 -040045
Heinrich Schuchardt8d3e08a2020-07-28 20:05:30 +020046* /dev/serial/by-id/usb-Kongou_Hikari_Sipeed-Debug_12345678AB-if00-port0
47* /dev/serial/by-id/usb-Kongou_Hikari_Sipeed-Debug_12345678AB-if01-port0
48
49Which one is used for flashing depends on the board.
50
51Currently only a small subset of the board features are supported. So we can
52use the same default configuration and device tree. In the long run we may need
53separate settings.
54
55======================== ========================== ========== ==========
56Board defconfig board_id TTY device
57======================== ========================== ========== ==========
58Sipeed MAIX BiT sipeed_maix_bitm_defconfig bit first
59Sipeed MAIX BiT with Mic sipeed_maix_bitm_defconfig bit_mic first
60Sipeed MAIXDUINO sipeed_maix_bitm_defconfig maixduino first
61Sipeed MAIX GO goE second
62Sipeed MAIX ONE DOCK goD first
63======================== ========================== ========== ==========
64
65Flashing causes a reboot of the device. Parameter -t specifies that the serial
66console shall be opened immediately. Boot output should look like the following:
Sean Anderson445fd222020-06-24 06:41:24 -040067
68.. code-block:: none
69
70 U-Boot 2020.04-rc2-00087-g2221cc09c1-dirty (Feb 28 2020 - 13:53:09 -0500)
71
72 DRAM: 8 MiB
73 In: serial@38000000
74 Out: serial@38000000
75 Err: serial@38000000
76 =>
77
78Loading Images
79^^^^^^^^^^^^^^
80
81To load a kernel, transfer it over serial.
82
83.. code-block:: none
84
85 => loady 80000000 1500000
86 ## Switch baudrate to 1500000 bps and press ENTER ...
87
88 *** baud: 1500000
89
90 *** baud: 1500000 ***
91 ## Ready for binary (ymodem) download to 0x80000000 at 1500000 bps...
92 C
93 *** file: loader.bin
94 $ sz -vv loader.bin
95 Sending: loader.bin
96 Bytes Sent:2478208 BPS:72937
97 Sending:
98 Ymodem sectors/kbytes sent: 0/ 0k
99 Transfer complete
100
101 *** exit status: 0 ***
102 ## Total Size = 0x0025d052 = 2478162 Bytes
103 ## Switch baudrate to 115200 bps and press ESC ...
104
105 *** baud: 115200
106
107 *** baud: 115200 ***
108 =>
109
110Running Programs
111^^^^^^^^^^^^^^^^
112
113Binaries
114""""""""
115
116To run a bare binary, use the ``go`` command:
117
118.. code-block:: none
119
120 => loady
121 ## Ready for binary (ymodem) download to 0x80000000 at 115200 bps...
122 C
123 *** file: ./examples/standalone/hello_world.bin
124 $ sz -vv ./examples/standalone/hello_world.bin
125 Sending: hello_world.bin
126 Bytes Sent: 4864 BPS:649
127 Sending:
128 Ymodem sectors/kbytes sent: 0/ 0k
129 Transfer complete
130
131 *** exit status: 0 ***
132 (CAN) packets, 5 retries
133 ## Total Size = 0x000012f8 = 4856 Bytes
134 => go 80000000
135 ## Starting application at 0x80000000 ...
136 Example expects ABI version 9
137 Actual U-Boot ABI version 9
138 Hello World
139 argc = 1
140 argv[0] = "80000000"
141 argv[1] = "<NULL>"
142 Hit any key to exit ...
143
144Legacy Images
145"""""""""""""
146
147To run legacy images, use the ``bootm`` command:
148
149.. code-block:: none
150
151 $ tools/mkimage -A riscv -O u-boot -T standalone -C none -a 80000000 -e 80000000 -d examples/standalone/hello_world.bin hello_world.img
152 Image Name:
153 Created: Thu Mar 5 12:04:10 2020
154 Image Type: RISC-V U-Boot Standalone Program (uncompressed)
155 Data Size: 4856 Bytes = 4.74 KiB = 0.00 MiB
156 Load Address: 80000000
157 Entry Point: 80000000
158
159 $ picocom -b 115200 /dev/ttyUSB0i
160 => loady
161 ## Ready for binary (ymodem) download to 0x80000000 at 115200 bps...
162 C
163 *** file: hello_world.img
164 $ sz -vv hello_world.img
165 Sending: hello_world.img
166 Bytes Sent: 4992 BPS:665
167 Sending:
168 Ymodem sectors/kbytes sent: 0/ 0k
169 Transfer complete
170
171 *** exit status: 0 ***
172 CAN) packets, 3 retries
173 ## Total Size = 0x00001338 = 4920 Bytes
174 => bootm
175 ## Booting kernel from Legacy Image at 80000000 ...
176 Image Name:
177 Image Type: RISC-V U-Boot Standalone Program (uncompressed)
178 Data Size: 4856 Bytes = 4.7 KiB
179 Load Address: 80000000
180 Entry Point: 80000000
181 Verifying Checksum ... OK
182 Loading Standalone Program
183 Example expects ABI version 9
184 Actual U-Boot ABI version 9
185 Hello World
186 argc = 0
187 argv[0] = "<NULL>"
188 Hit any key to exit ...
189
190Over- and Under-clocking
191------------------------
192
193To change the clock speed of the K210, you will need to enable
194``CONFIG_CLK_K210_SET_RATE`` and edit the board's device tree. To do this, add a
195section to ``arch/riscv/arch/riscv/dts/k210-maix-bit.dts`` like the following:
196
197.. code-block:: none
198
199 &sysclk {
200 assigned-clocks = <&sysclk K210_CLK_PLL0>;
201 assigned-clock-rates = <800000000>;
202 };
203
204There are three PLLs on the K210: PLL0 is the parent of most of the components,
205including the CPU and RAM. PLL1 is the parent of the neural network coprocessor.
206PLL2 is the parent of the sound processing devices. Note that child clocks of
207PLL0 and PLL2 run at *half* the speed of the PLLs. For example, if PLL0 is
208running at 800 MHz, then the CPU will run at 400 MHz. This is the example given
209above. The CPU can be overclocked to around 600 MHz, and underclocked to 26 MHz.
210
211It is possible to set PLL2's parent to PLL0. The plls are more accurate when
212converting between similar frequencies. This makes it easier to get an accurate
213frequency for I2S. As an example, consider sampling an I2S device at 44.1 kHz.
214On this device, the I2S serial clock runs at 64 times the sample rate.
215Therefore, we would like to run PLL2 at an even multiple of 2.8224 MHz. If
216PLL2's parent is IN0, we could use a frequency of 390 MHz (the same as the CPU's
217default speed). Dividing by 138 yields a serial clock of about 2.8261 MHz. This
218results in a sample rate of 44.158 kHz---around 50 Hz or .1% too fast. If,
219instead, we set PLL2's parent to PLL1 running at 390 MHz, and request a rate of
2202.8224 * 136 = 383.8464 MHz, the achieved rate is 383.90625 MHz. Dividing by 136
221yields a serial clock of about 2.8228 MHz. This results in a sample rate of
22244.107 kHz---just 7 Hz or .02% too fast. This configuration is shown in the
223following example:
224
225.. code-block:: none
226
227 &sysclk {
228 assigned-clocks = <&sysclk K210_CLK_PLL1>, <&sysclk K210_CLK_PLL2>;
229 assigned-clock-parents = <0>, <&sysclk K210_CLK_PLL1>;
230 assigned-clock-rates = <390000000>, <383846400>;
231 };
232
233There are a couple of quirks to the PLLs. First, there are more frequency ratios
234just above and below 1.0, but there is a small gap around 1.0. To be explicit,
235if the input frequency is 100 MHz, it would be impossible to have an output of
23699 or 101 MHz. In addition, there is a maximum frequency for the internal VCO,
237so higher input/output frequencies will be less accurate than lower ones.
238
239Technical Details
240-----------------
241
242Boot Sequence
243^^^^^^^^^^^^^
244
2451. ``RESET`` pin is deasserted.
2462. Both harts begin executing at ``0x00001000``.
2473. Both harts jump to firmware at ``0x88000000``.
2484. One hart is chosen as a boot hart.
2495. Firmware reads value of pin ``IO_16`` (ISP).
250
251 * If the pin is low, enter ISP mode. This mode allows loading data to ram,
252 writing it to flash, and booting from specific addresses.
253 * If the pin is high, continue boot.
2546. Firmware reads the next stage from flash (SPI3) to address ``0x80000000``.
255
256 * If byte 0 is 1, the next stage is decrypted using the built-in AES
257 accelerator and the one-time programmable, 128-bit AES key.
258 * Bytes 1 to 4 hold the length of the next stage.
259 * The SHA-256 sum of the next stage is automatically calculated, and verified
260 against the 32 bytes following the next stage.
2617. The boot hart sends an IPI to the other hart telling it to jump to the next
262 stage.
2638. The boot hart jumps to ``0x80000000``.
264
Heinrich Schuchardt8d3e08a2020-07-28 20:05:30 +0200265Resetting the board
266^^^^^^^^^^^^^^^^^^^
267
268The MAIX boards can be reset using the DTR and RTS lines of the serial console.
269How the lines are used depends on the specific board. See the code of kflash.py
270for details.
271
272This is the reset sequence for the MAXDUINO and MAIX BiT with Mic:
273
274.. code-block:: python
275
276 def reset(self):
277 self.device.setDTR(False)
278 self.device.setRTS(False)
279 time.sleep(0.1)
280 self.device.setDTR(True)
281 time.sleep(0.1)
282 self.device.setDTR(False)
283 time.sleep(0.1)
284
285and this for the MAIX Bit:
286
287.. code-block:: python
288
289 def reset(self):
290 self.device.setDTR(False)
291 self.device.setRTS(False)
292 time.sleep(0.1)
293 self.device.setRTS(True)
294 time.sleep(0.1)
295 self.device.setRTS(False)
296 time.sleep(0.1)
297
Sean Anderson445fd222020-06-24 06:41:24 -0400298Memory Map
299^^^^^^^^^^
300
301========== ========= ===========
302Address Size Description
303========== ========= ===========
3040x00000000 0x1000 debug
3050x00001000 0x1000 rom
3060x02000000 0xC000 clint
3070x0C000000 0x4000000 plic
3080x38000000 0x1000 uarths
3090x38001000 0x1000 gpiohs
3100x40000000 0x400000 sram0 (non-cached)
3110x40400000 0x200000 sram1 (non-cached)
3120x40600000 0x200000 airam (non-cached)
3130x40800000 0xC00000 kpu
3140x42000000 0x400000 fft
3150x50000000 0x1000 dmac
3160x50200000 0x200000 apb0
3170x50200000 0x80 gpio
3180x50210000 0x100 uart0
3190x50220000 0x100 uart1
3200x50230000 0x100 uart2
3210x50240000 0x100 spi slave
3220x50250000 0x200 i2s0
3230x50250200 0x200 apu
3240x50260000 0x200 i2s1
3250x50270000 0x200 i2s2
3260x50280000 0x100 i2c0
3270x50290000 0x100 i2c1
3280x502A0000 0x100 i2c2
3290x502B0000 0x100 fpioa
3300x502C0000 0x100 sha256
3310x502D0000 0x100 timer0
3320x502E0000 0x100 timer1
3330x502F0000 0x100 timer2
3340x50400000 0x200000 apb1
3350x50400000 0x100 wdt0
3360x50410000 0x100 wdt1
3370x50420000 0x100 otp control
3380x50430000 0x100 dvp
3390x50440000 0x100 sysctl
3400x50450000 0x100 aes
3410x50460000 0x100 rtc
3420x52000000 0x4000000 apb2
3430x52000000 0x100 spi0
3440x53000000 0x100 spi1
3450x54000000 0x200 spi3
3460x80000000 0x400000 sram0 (cached)
3470x80400000 0x200000 sram1 (cached)
3480x80600000 0x200000 airam (cached)
3490x88000000 0x20000 otp
3500x88000000 0xC200 firmware
3510x8801C000 0x1000 riscv priv spec 1.9 config
3520x8801D000 0x2000 flattened device tree (contains only addresses and
353 interrupts)
3540x8801f000 0x1000 credits
355========== ========= ===========