summaryrefslogtreecommitdiff
path: root/arch/arm/mach-sc5xx/sc58x-spl.c
blob: ae809f09e55bb6e18832b68386a9dde65e2ff6ee (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// SPDX-License-Identifier: GPL-2.0-or-later
/*
 * (C) Copyright 2024 - Analog Devices, Inc.
 */

#include <asm/arch-adi/sc5xx/spl.h>

// Table 53-13 in SC58x HRM
const struct adi_boot_args adi_rom_boot_args[] = {
	// JTAG/no boot
	[0] = {0, 0, 0},
	// SPI master, used for qspi as well
	[1] = {0x60020000, 0x00040000, 0x00010207},
	// SPI slave
	[2] = {0, 0, 0x00000212},
	// reserved, no boot
	[3] = {0, 0, 0},
	// reserved, no boot
	[4] = {0, 0, 0},
	// reserved, also no boot
	[5] = {0, 0, 0},
	// Linkport slave
	[6] = {0, 0, 0x00000014},
	// UART slave
	[7] = {0, 0, 0x00000013},
};