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