blob: ae809f09e55bb6e18832b68386a9dde65e2ff6ee [file] [log] [blame]
Oliver Gaskell07735ee2024-09-12 16:50:58 +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 53-13 in SC58x 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 // reserved, no boot
17 [3] = {0, 0, 0},
18 // reserved, no boot
19 [4] = {0, 0, 0},
20 // reserved, also no boot
21 [5] = {0, 0, 0},
22 // Linkport slave
23 [6] = {0, 0, 0x00000014},
24 // UART slave
25 [7] = {0, 0, 0x00000013},
26};