spl.h 3.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  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_SERIAL = 20,
  33. /* Boot based on Operating Mode pin settings */
  34. BOOT_MODE_OM = 32,
  35. BOOT_MODE_USB, /* Boot using USB download */
  36. };
  37. #ifndef __ASSEMBLY__
  38. /* Parameters of early board initialization in SPL */
  39. struct spl_machine_param {
  40. /* Add fields as and when required */
  41. u32 signature;
  42. u32 version; /* Version number */
  43. u32 size; /* Size of block */
  44. /**
  45. * Parameters we expect, in order, terminated with \0. Each parameter
  46. * is a single character representing one 32-bit word in this
  47. * structure.
  48. *
  49. * Valid characters in this string are:
  50. *
  51. * Code Name
  52. * v mem_iv_size
  53. * m mem_type
  54. * u uboot_size
  55. * b boot_source
  56. * f frequency_mhz (memory frequency in MHz)
  57. * a ARM clock frequency in MHz
  58. * s serial base address
  59. * i i2c base address for early access (meant for PMIC)
  60. * r board rev GPIO numbers used to read board revision
  61. * (lower halfword=bit 0, upper=bit 1)
  62. * M Memory Manufacturer name
  63. * \0 termination
  64. */
  65. char params[12]; /* Length must be word-aligned */
  66. u32 mem_iv_size; /* Memory channel interleaving size */
  67. enum ddr_mode mem_type; /* Type of on-board memory */
  68. /*
  69. * U-boot size - The iROM mmc copy function used by the SPL takes a
  70. * block count paramter to describe the u-boot size unlike the spi
  71. * boot copy function which just uses the u-boot size directly. Align
  72. * the u-boot size to block size (512 bytes) when populating the SPL
  73. * table only for mmc boot.
  74. */
  75. u32 uboot_size;
  76. enum boot_mode boot_source; /* Boot device */
  77. unsigned frequency_mhz; /* Frequency of memory in MHz */
  78. unsigned arm_freq_mhz; /* ARM Frequency in MHz */
  79. u32 serial_base; /* Serial base address */
  80. u32 i2c_base; /* i2c base address */
  81. u32 board_rev_gpios; /* Board revision GPIOs */
  82. enum mem_manuf mem_manuf; /* Memory Manufacturer */
  83. } __attribute__((__packed__));
  84. #endif
  85. /**
  86. * Validate signature and return a pointer to the parameter table. If the
  87. * signature is invalid, call panic() and never return.
  88. *
  89. * @return pointer to the parameter table if signature matched or never return.
  90. */
  91. struct spl_machine_param *spl_get_machine_params(void);
  92. #endif /* __ASM_ARCH_EXYNOS_SPL_H__ */