socfpga_arria5_secu1.h 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126
  1. /* SPDX-License-Identifier: GPL-2.0+ */
  2. /*
  3. * Copyright (C) 2017-2020 Hitachi Power Grids
  4. *
  5. */
  6. #ifndef __CONFIG_SOCFPGA_SECU1_H__
  7. #define __CONFIG_SOCFPGA_SECU1_H__
  8. #include <asm/arch/base_addr_ac5.h>
  9. #include <linux/stringify.h>
  10. /* Call misc_init_r */
  11. #define CONFIG_MISC_INIT_R
  12. #define CONFIG_HUSH_INIT_VAR
  13. /* Eternal oscillator */
  14. #define CONFIG_SYS_TIMER_RATE 40000000
  15. /* Memory configurations */
  16. #define PHYS_SDRAM_1_SIZE 0x20000000 /* 512MiB on SECU1 */
  17. /*
  18. * We use bootcounter in i2c nvram of the RTC (0x68)
  19. * The offset fopr the bootcounter is 0x9e, which are
  20. * the last two bytes of the 128 bytes large NVRAM in the
  21. * RTC which begin at address 0x20
  22. */
  23. #define CONFIG_SYS_I2C_RTC_ADDR 0x68
  24. /* Booting Linux */
  25. #define CONFIG_BOOTFILE "zImage"
  26. #define CONFIG_BOOTCOMMAND \
  27. "setenv bootcmd '" \
  28. "bridge enable; " \
  29. "if test ${bootnum} = \"b\"; " \
  30. "then run _fpga_loadsafe; " \
  31. "else if test ${bootcount} -eq 4; then echo \"Switching copy...\"; setexpr x $bootnum % 2 && setexpr bootnum $x + 1; saveenv; fi; " \
  32. "run _fpga_loaduser; " \
  33. "fi;" \
  34. "echo \"Booting bank $bootnum\" && run userload && run userboot;" \
  35. "' && " \
  36. "setenv altbootcmd 'setenv bootnum b && saveenv && boot;' && " \
  37. "saveenv && saveenv && boot;"
  38. #define CONFIG_CMDLINE_TAG
  39. #define CONFIG_SYS_BOOTM_LEN (64 << 20)
  40. /* Environment settings */
  41. /*
  42. * Autoboot
  43. *
  44. * After 45s of inactivity in the prompt, the board will reset.
  45. * Set 'bootretry' in the environment to -1 to disable this behavior
  46. */
  47. #define CONFIG_BOOT_RETRY_TIME 45
  48. #define CONFIG_RESET_TO_RETRY
  49. #define CONFIG_LOADADDR 0x01000000
  50. #define CONFIG_SYS_LOAD_ADDR CONFIG_KM_KERNEL_ADDR
  51. /*
  52. * FPGA Remote Update related environment
  53. *
  54. * Note that since those commands access the FPGA, the HPS-to-FPGA
  55. * bridges MUST have been previously enabled (for example
  56. * with 'bridge enable').
  57. */
  58. #define FPGA_RMTU_ENV \
  59. "rmtu_page=0xFF29000C\0" \
  60. "rmtu_reconfig=0xFF290018\0" \
  61. "fpga_safebase=0x0\0" \
  62. "fpga_userbase=0x2000000\0" \
  63. "_fpga_loaduser=echo Loading FPGA USER image..." \
  64. " && mw ${rmtu_page} ${fpga_userbase} && mw ${rmtu_reconfig} 1\0" \
  65. "_fpga_loadsafe=echo Loading FPGA SAFE image..." \
  66. " && mw ${rmtu_page} ${fpga_safebase} && mw ${rmtu_reconfig} 1\0" \
  67. #define CONFIG_KM_NEW_ENV \
  68. "newenv=" \
  69. "nand erase 0x100000 0x40000\0"
  70. #define CONFIG_KM_DEF_ENV_BOOTTARGETS \
  71. "release=" \
  72. "run newenv; reset\0" \
  73. "develop=" \
  74. "tftp 0x200000 scripts/develop-secu.txt && env import -t 0x200000 ${filesize} && saveenv && reset\0"
  75. #define CONFIG_EXTRA_ENV_SETTINGS \
  76. FPGA_RMTU_ENV \
  77. CONFIG_KM_DEF_ENV_BOOTTARGETS \
  78. CONFIG_KM_NEW_ENV \
  79. "socfpga_legacy_reset_compat=1\0" \
  80. "altbootcmd=run bootcmd;\0" \
  81. "bootlimit=6\0" \
  82. "bootnum=1\0" \
  83. "bootretry=" __stringify(CONFIG_BOOT_RETRY_TIME) "\0" \
  84. "fdt_addr=" __stringify(CONFIG_KM_FDT_ADDR) "\0" \
  85. "load=tftpboot ${loadaddr} u-boot-with-nand-spl.sfp\0" \
  86. "loadaddr=" __stringify(CONFIG_KM_KERNEL_ADDR) "\0" \
  87. "mtdids=" CONFIG_MTDIDS_DEFAULT "\0" \
  88. "mtdparts=" CONFIG_MTDPARTS_DEFAULT "\0" \
  89. "update=nand erase 0x0 0x00100000 && nand write ${loadaddr} 0x0 ${filesize}\0" \
  90. "userload=ubi part nand.ubi &&" \
  91. "ubi check rootfs$bootnum &&" \
  92. "ubi read $fdt_addr dtb$bootnum &&" \
  93. "ubi read $loadaddr kernel$bootnum\0" \
  94. "userboot=setenv bootargs " CONFIG_BOOTARGS \
  95. " ubi.mtd=1 ubi.block=0,rootfs$bootnum root=/dev/ubiblock0_$ubivolid" \
  96. " ro rootfstype=squashfs init=sbin/preinit;" \
  97. "bootz ${loadaddr} - ${fdt_addr}\0" \
  98. "verify=y\0"
  99. /* The rest of the configuration is shared */
  100. #include <configs/socfpga_common.h>
  101. #ifdef CONFIG_SPL_NAND_SUPPORT
  102. #undef CONFIG_SYS_NAND_U_BOOT_OFFS
  103. #define CONFIG_SYS_NAND_U_BOOT_OFFS 0x80000
  104. #endif
  105. #undef CONFIG_WATCHDOG_TIMEOUT_MSECS
  106. #define CONFIG_WATCHDOG_TIMEOUT_MSECS 60000
  107. #endif /* __CONFIG_SOCFPGA_SECU1_H__ */