spl.h 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. /*
  2. * (C) Copyright 2007-2011
  3. * Allwinner Technology Co., Ltd. <www.allwinnertech.com>
  4. * Tom Cubie <tangliang@allwinnertech.com>
  5. *
  6. * SPDX-License-Identifier: GPL-2.0+
  7. */
  8. #ifndef _ASM_ARCH_SPL_H_
  9. #define _ASM_ARCH_SPL_H_
  10. #define BOOT0_MAGIC "eGON.BT0"
  11. #define SPL_SIGNATURE "SPL" /* marks "sunxi" SPL header */
  12. #define SPL_HEADER_VERSION 2
  13. #ifdef CONFIG_SUNXI_HIGH_SRAM
  14. #define SPL_ADDR 0x10000
  15. #else
  16. #define SPL_ADDR 0x0
  17. #endif
  18. /* The low 8-bits of the 'boot_media' field in the SPL header */
  19. #define SUNXI_BOOTED_FROM_MMC0 0
  20. #define SUNXI_BOOTED_FROM_NAND 1
  21. #define SUNXI_BOOTED_FROM_MMC2 2
  22. #define SUNXI_BOOTED_FROM_SPI 3
  23. /* boot head definition from sun4i boot code */
  24. struct boot_file_head {
  25. uint32_t b_instruction; /* one intruction jumping to real code */
  26. uint8_t magic[8]; /* ="eGON.BT0" or "eGON.BT1", not C-style str */
  27. uint32_t check_sum; /* generated by PC */
  28. uint32_t length; /* generated by PC */
  29. /*
  30. * We use a simplified header, only filling in what is needed
  31. * by the boot ROM. To be compatible with Allwinner tools we
  32. * would need to implement the proper fields here instead of
  33. * padding.
  34. *
  35. * Actually we want the ability to recognize our "sunxi" variant
  36. * of the SPL. To do so, let's place a special signature into the
  37. * "pub_head_size" field. We can reasonably expect Allwinner's
  38. * boot0 to always have the upper 16 bits of this set to 0 (after
  39. * all the value shouldn't be larger than the limit imposed by
  40. * SRAM size).
  41. * If the signature is present (at 0x14), then we know it's safe
  42. * to use the remaining 8 bytes (at 0x18) for our own purposes.
  43. * (E.g. sunxi-tools "fel" utility can pass information there.)
  44. */
  45. union {
  46. uint32_t pub_head_size;
  47. uint8_t spl_signature[4];
  48. };
  49. uint32_t fel_script_address;
  50. /*
  51. * If the fel_uEnv_length member below is set to a non-zero value,
  52. * it specifies the size (byte count) of data at fel_script_address.
  53. * At the same time this indicates that the data is in uEnv.txt
  54. * compatible format, ready to be imported via "env import -t".
  55. */
  56. uint32_t fel_uEnv_length;
  57. /*
  58. * Offset of an ASCIIZ string (relative to the SPL header), which
  59. * contains the default device tree name (CONFIG_DEFAULT_DEVICE_TREE).
  60. * This is optional and may be set to NULL. Is intended to be used
  61. * by flash programming tools for providing nice informative messages
  62. * to the users.
  63. */
  64. uint32_t dt_name_offset;
  65. uint32_t reserved1;
  66. uint32_t boot_media; /* written here by the boot ROM */
  67. /* A padding area (may be used for storing text strings) */
  68. uint32_t string_pool[13];
  69. /* The header must be a multiple of 32 bytes (for VBAR alignment) */
  70. };
  71. /* Compile time check to assure proper alignment of structure */
  72. typedef char boot_file_head_not_multiple_of_32[1 - 2*(sizeof(struct boot_file_head) % 32)];
  73. #define is_boot0_magic(addr) (memcmp((void *)addr, BOOT0_MAGIC, 8) == 0)
  74. #endif