xref: /openbmc/qemu/docs/system/arm/max78000.rst (revision 5a28fa5ba17254d0398a854657b47af3096bd86a)
1.. SPDX-License-Identifier: GPL-2.0-or-later
2
3Analog Devices max78000 board (``max78000fthr``)
4================================================
5
6The max78000 is a Cortex-M4 based SOC with a RISC-V coprocessor. The RISC-V coprocessor is not supported.
7
8Supported devices
9-----------------
10
11 * Instruction Cache Controller
12 * UART
13 * Global Control Register
14 * True Random Number Generator
15 * AES
16
17Notable unsupported devices
18---------------------------
19
20 * I2C
21 * CNN
22 * CRC
23 * SPI
24
25Boot options
26------------
27
28The max78000 can be started using the ``-kernel`` option to load a
29firmware at address 0 as the ROM. As the ROM normally jumps to software loaded
30from the internal flash at address 0x10000000, loading your program there is
31generally advisable. If you don't have a copy of the ROM, the interrupt
32vector table from user firmware will do.
33Example:
34
35.. code-block:: bash
36
37  $ qemu-system-arm -machine max78000fthr -kernel max78000.bin -device loader,file=max78000.bin,addr=0x10000000
38