spl.h 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899
  1. /*
  2. * Copyright (c) 2012 The Chromium OS Authors.
  3. *
  4. * See file CREDITS for list of people who contributed to this
  5. * project.
  6. *
  7. * This program is free software; you can redistribute it and/or
  8. * modify it under the terms of the GNU General Public License as
  9. * published by the Free Software Foundation; either version 2 of
  10. * the License, or (at your option) any later version.
  11. *
  12. * This program is distributed in the hope that it will be useful,
  13. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  15. * GNU General Public License for more details.
  16. *
  17. * You should have received a copy of the GNU General Public License
  18. * along with this program; if not, write to the Free Software
  19. * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
  20. * MA 02111-1307 USA
  21. */
  22. #ifndef __ASM_ARCH_EXYNOS_SPL_H__
  23. #define __ASM_ARCH_EXYNOS_SPL_H__
  24. #include <asm/arch-exynos/dmc.h>
  25. enum boot_mode {
  26. /*
  27. * Assign the OM pin values for respective boot modes.
  28. * Exynos4 does not support spi boot and the mmc boot OM
  29. * pin values are the same across Exynos4 and Exynos5.
  30. */
  31. BOOT_MODE_MMC = 4,
  32. BOOT_MODE_EMMC = 8, /* EMMC4.4 */
  33. BOOT_MODE_SERIAL = 20,
  34. /* Boot based on Operating Mode pin settings */
  35. BOOT_MODE_OM = 32,
  36. BOOT_MODE_USB, /* Boot using USB download */
  37. };
  38. #ifndef __ASSEMBLY__
  39. /* Parameters of early board initialization in SPL */
  40. struct spl_machine_param {
  41. /* Add fields as and when required */
  42. u32 signature;
  43. u32 version; /* Version number */
  44. u32 size; /* Size of block */
  45. /**
  46. * Parameters we expect, in order, terminated with \0. Each parameter
  47. * is a single character representing one 32-bit word in this
  48. * structure.
  49. *
  50. * Valid characters in this string are:
  51. *
  52. * Code Name
  53. * v mem_iv_size
  54. * m mem_type
  55. * u uboot_size
  56. * b boot_source
  57. * f frequency_mhz (memory frequency in MHz)
  58. * a ARM clock frequency in MHz
  59. * s serial base address
  60. * i i2c base address for early access (meant for PMIC)
  61. * r board rev GPIO numbers used to read board revision
  62. * (lower halfword=bit 0, upper=bit 1)
  63. * M Memory Manufacturer name
  64. * \0 termination
  65. */
  66. char params[12]; /* Length must be word-aligned */
  67. u32 mem_iv_size; /* Memory channel interleaving size */
  68. enum ddr_mode mem_type; /* Type of on-board memory */
  69. /*
  70. * U-boot size - The iROM mmc copy function used by the SPL takes a
  71. * block count paramter to describe the u-boot size unlike the spi
  72. * boot copy function which just uses the u-boot size directly. Align
  73. * the u-boot size to block size (512 bytes) when populating the SPL
  74. * table only for mmc boot.
  75. */
  76. u32 uboot_size;
  77. enum boot_mode boot_source; /* Boot device */
  78. unsigned frequency_mhz; /* Frequency of memory in MHz */
  79. unsigned arm_freq_mhz; /* ARM Frequency in MHz */
  80. u32 serial_base; /* Serial base address */
  81. u32 i2c_base; /* i2c base address */
  82. u32 board_rev_gpios; /* Board revision GPIOs */
  83. enum mem_manuf mem_manuf; /* Memory Manufacturer */
  84. } __attribute__((__packed__));
  85. #endif
  86. /**
  87. * Validate signature and return a pointer to the parameter table. If the
  88. * signature is invalid, call panic() and never return.
  89. *
  90. * @return pointer to the parameter table if signature matched or never return.
  91. */
  92. struct spl_machine_param *spl_get_machine_params(void);
  93. #endif /* __ASM_ARCH_EXYNOS_SPL_H__ */