blob: 4277d836e59cd317d50a8c13303822d897088239 [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001/* SPDX-License-Identifier: GPL-2.0+ */
Ian Campbell6efe3692014-05-05 11:52:26 +01002/*
Bernhard Nortmannc9e89612015-09-17 18:52:50 +02003 * (C) Copyright 2007-2011
4 * Allwinner Technology Co., Ltd. <www.allwinnertech.com>
5 * Tom Cubie <tangliang@allwinnertech.com>
Ian Campbell6efe3692014-05-05 11:52:26 +01006 */
7#ifndef _ASM_ARCH_SPL_H_
Jeroen Hofsteec5d88a52014-06-11 22:01:48 +02008#define _ASM_ARCH_SPL_H_
Ian Campbell6efe3692014-05-05 11:52:26 +01009
Bernhard Nortmannc9e89612015-09-17 18:52:50 +020010#define BOOT0_MAGIC "eGON.BT0"
Bernhard Nortmann01ad4932015-09-17 18:52:51 +020011#define SPL_SIGNATURE "SPL" /* marks "sunxi" SPL header */
Siarhei Siamashka6b0cd012017-04-26 01:32:49 +010012#define SPL_HEADER_VERSION 2
Bernhard Nortmannc9e89612015-09-17 18:52:50 +020013
Andre Przywarade454ec2017-02-16 01:20:23 +000014#ifdef CONFIG_SUNXI_HIGH_SRAM
Siarhei Siamashka26c50fb2016-03-29 17:29:10 +020015#define SPL_ADDR 0x10000
16#else
Bernhard Nortmannead498a2015-09-17 18:52:52 +020017#define SPL_ADDR 0x0
Siarhei Siamashka26c50fb2016-03-29 17:29:10 +020018#endif
Bernhard Nortmannead498a2015-09-17 18:52:52 +020019
Siarhei Siamashka08e978b2016-05-14 04:13:26 +030020/* The low 8-bits of the 'boot_media' field in the SPL header */
21#define SUNXI_BOOTED_FROM_MMC0 0
Olliver Schinaglec380a02016-06-13 18:13:07 +020022#define SUNXI_BOOTED_FROM_NAND 1
23#define SUNXI_BOOTED_FROM_MMC2 2
Siarhei Siamashka08e978b2016-05-14 04:13:26 +030024#define SUNXI_BOOTED_FROM_SPI 3
25
Bernhard Nortmannc9e89612015-09-17 18:52:50 +020026/* boot head definition from sun4i boot code */
27struct boot_file_head {
28 uint32_t b_instruction; /* one intruction jumping to real code */
29 uint8_t magic[8]; /* ="eGON.BT0" or "eGON.BT1", not C-style str */
30 uint32_t check_sum; /* generated by PC */
31 uint32_t length; /* generated by PC */
32 /*
33 * We use a simplified header, only filling in what is needed
34 * by the boot ROM. To be compatible with Allwinner tools we
35 * would need to implement the proper fields here instead of
36 * padding.
Bernhard Nortmann01ad4932015-09-17 18:52:51 +020037 *
38 * Actually we want the ability to recognize our "sunxi" variant
39 * of the SPL. To do so, let's place a special signature into the
40 * "pub_head_size" field. We can reasonably expect Allwinner's
41 * boot0 to always have the upper 16 bits of this set to 0 (after
42 * all the value shouldn't be larger than the limit imposed by
43 * SRAM size).
44 * If the signature is present (at 0x14), then we know it's safe
45 * to use the remaining 8 bytes (at 0x18) for our own purposes.
46 * (E.g. sunxi-tools "fel" utility can pass information there.)
Bernhard Nortmannc9e89612015-09-17 18:52:50 +020047 */
Bernhard Nortmann01ad4932015-09-17 18:52:51 +020048 union {
49 uint32_t pub_head_size;
50 uint8_t spl_signature[4];
51 };
52 uint32_t fel_script_address;
Bernhard Nortmanne9bbbe82016-06-09 07:37:35 +020053 /*
54 * If the fel_uEnv_length member below is set to a non-zero value,
55 * it specifies the size (byte count) of data at fel_script_address.
56 * At the same time this indicates that the data is in uEnv.txt
57 * compatible format, ready to be imported via "env import -t".
58 */
59 uint32_t fel_uEnv_length;
Siarhei Siamashka6b0cd012017-04-26 01:32:49 +010060 /*
61 * Offset of an ASCIIZ string (relative to the SPL header), which
62 * contains the default device tree name (CONFIG_DEFAULT_DEVICE_TREE).
63 * This is optional and may be set to NULL. Is intended to be used
64 * by flash programming tools for providing nice informative messages
65 * to the users.
66 */
67 uint32_t dt_name_offset;
68 uint32_t reserved1;
Siarhei Siamashka08e978b2016-05-14 04:13:26 +030069 uint32_t boot_media; /* written here by the boot ROM */
Siarhei Siamashka6b0cd012017-04-26 01:32:49 +010070 /* A padding area (may be used for storing text strings) */
71 uint32_t string_pool[13];
72 /* The header must be a multiple of 32 bytes (for VBAR alignment) */
Bernhard Nortmannc9e89612015-09-17 18:52:50 +020073};
74
Siarhei Siamashka6b0cd012017-04-26 01:32:49 +010075/* Compile time check to assure proper alignment of structure */
76typedef char boot_file_head_not_multiple_of_32[1 - 2*(sizeof(struct boot_file_head) % 32)];
77
Bernhard Nortmannead498a2015-09-17 18:52:52 +020078#define is_boot0_magic(addr) (memcmp((void *)addr, BOOT0_MAGIC, 8) == 0)
79
Maxime Ripard1941be82017-08-23 10:06:30 +020080uint32_t sunxi_get_boot_device(void);
81
Ian Campbell6efe3692014-05-05 11:52:26 +010082#endif