boot.c 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  1. /*
  2. * OMAP4 boot
  3. *
  4. * Copyright (C) 2015 Paul Kocialkowski <contact@paulk.fr>
  5. *
  6. * SPDX-License-Identifier: GPL-2.0+
  7. */
  8. #include <common.h>
  9. #include <asm/io.h>
  10. #include <asm/omap_common.h>
  11. #include <asm/arch/sys_proto.h>
  12. #include <spl.h>
  13. static u32 boot_devices[] = {
  14. BOOT_DEVICE_MMC2,
  15. BOOT_DEVICE_XIP,
  16. BOOT_DEVICE_XIPWAIT,
  17. BOOT_DEVICE_NAND,
  18. BOOT_DEVICE_XIPWAIT,
  19. BOOT_DEVICE_MMC1,
  20. BOOT_DEVICE_ONENAND,
  21. BOOT_DEVICE_ONENAND,
  22. BOOT_DEVICE_MMC2,
  23. BOOT_DEVICE_ONENAND,
  24. BOOT_DEVICE_XIPWAIT,
  25. BOOT_DEVICE_NAND,
  26. BOOT_DEVICE_NAND,
  27. BOOT_DEVICE_MMC1,
  28. BOOT_DEVICE_ONENAND,
  29. BOOT_DEVICE_MMC2,
  30. BOOT_DEVICE_XIP,
  31. BOOT_DEVICE_XIPWAIT,
  32. BOOT_DEVICE_NAND,
  33. BOOT_DEVICE_MMC1,
  34. BOOT_DEVICE_MMC1,
  35. BOOT_DEVICE_ONENAND,
  36. BOOT_DEVICE_MMC2,
  37. BOOT_DEVICE_XIP,
  38. BOOT_DEVICE_MMC2_2,
  39. BOOT_DEVICE_NAND,
  40. BOOT_DEVICE_MMC2_2,
  41. BOOT_DEVICE_MMC1,
  42. BOOT_DEVICE_MMC2_2,
  43. BOOT_DEVICE_MMC2_2,
  44. BOOT_DEVICE_NONE,
  45. BOOT_DEVICE_XIPWAIT,
  46. };
  47. u32 omap_sys_boot_device(void)
  48. {
  49. u32 sys_boot;
  50. /* Grab the first 5 bits of the status register for SYS_BOOT. */
  51. sys_boot = readl((u32 *) (*ctrl)->control_status) & ((1 << 5) - 1);
  52. if (sys_boot >= (sizeof(boot_devices) / sizeof(u32)))
  53. return BOOT_DEVICE_NONE;
  54. return boot_devices[sys_boot];
  55. }
  56. int omap_reboot_mode(char *mode, unsigned int length)
  57. {
  58. unsigned int limit;
  59. unsigned int i;
  60. if (length < 2)
  61. return -1;
  62. if (!warm_reset())
  63. return -1;
  64. limit = (length < OMAP_REBOOT_REASON_SIZE) ? length :
  65. OMAP_REBOOT_REASON_SIZE;
  66. for (i = 0; i < (limit - 1); i++)
  67. mode[i] = readb((u8 *)(OMAP44XX_SAR_RAM_BASE +
  68. OMAP_REBOOT_REASON_OFFSET + i));
  69. mode[i] = '\0';
  70. return 0;
  71. }
  72. int omap_reboot_mode_clear(void)
  73. {
  74. writeb(0, (u8 *)(OMAP44XX_SAR_RAM_BASE + OMAP_REBOOT_REASON_OFFSET));
  75. return 0;
  76. }
  77. int omap_reboot_mode_store(char *mode)
  78. {
  79. unsigned int i;
  80. for (i = 0; i < (OMAP_REBOOT_REASON_SIZE - 1) && mode[i] != '\0'; i++)
  81. writeb(mode[i], (u8 *)(OMAP44XX_SAR_RAM_BASE +
  82. OMAP_REBOOT_REASON_OFFSET + i));
  83. writeb('\0', (u8 *)(OMAP44XX_SAR_RAM_BASE +
  84. OMAP_REBOOT_REASON_OFFSET + i));
  85. return 0;
  86. }