blob: c8fc25fe7c4d4e5412a8a1dd6d71d8729b5caaa6 [file] [log] [blame]
Oliver Gaskell14032b32024-09-12 16:50:56 +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-14 in sc594 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] = {0x60040000, 0x00040000, 0x20620247},
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 // OSPI master
21 [5] = {0x60040000, 0, 0x00000008},
22 // reserved, no boot
23 [6] = {0, 0, 0},
24 // reserved, also no boot
25 [7] = {0, 0, 0}
26};