blob: 28380b89b489a0ea360003d0f92f7be8d482604b [file] [log] [blame]
Oliver Gaskellcb0d39d2024-09-12 16:51:01 +01001// SPDX-License-Identifier: GPL-2.0-or-later
2/*
3 * (C) Copyright 2024 - Analog Devices, Inc.
4 */
5
6#include <asm/arch-adi/sc5xx/spl.h>
7
8// Table 45-16 in SC573 HRM
9const struct adi_boot_args adi_rom_boot_args[] = {
10 // JTAG/no boot
11 [0] = {0, 0, 0},
12 // SPI master, used for qspi as well
13 [1] = {0x60020000, 0x00040000, 0x00010207},
14 // SPI slave
15 [2] = {0, 0, 0x00000212},
16 // UART slave
17 [3] = {0, 0, 0x00000013},
18 // Linkport slave
19 [4] = {0, 0, 0x00000014},
20 // reserved, no boot
21 [5] = {0, 0, 0},
22 // reserved, no boot
23 [6] = {0, 0, 0},
24 // reserved, also no boot
25 [7] = {0, 0, 0}
26};