stm32mp_common.h 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147
  1. /*
  2. * Copyright (C) 2018-2024, STMicroelectronics - All Rights Reserved
  3. *
  4. * SPDX-License-Identifier: BSD-3-Clause
  5. */
  6. #ifndef STM32MP_COMMON_H
  7. #define STM32MP_COMMON_H
  8. #include <stdbool.h>
  9. #include <platform_def.h>
  10. #define JEDEC_ST_BKID U(0x0)
  11. #define JEDEC_ST_MFID U(0x20)
  12. #define STM32MP_CHIP_SEC_CLOSED U(0x34D9CCC5)
  13. #define STM32MP_CHIP_SEC_OPEN U(0xA764D182)
  14. /* FWU configuration (max supported value is 15) */
  15. #define FWU_MAX_TRIAL_REBOOT U(3)
  16. /* Define maximum page size for NAND devices */
  17. #define PLATFORM_MTD_MAX_PAGE_SIZE U(0x1000)
  18. /* Needed by STM32CubeProgrammer support */
  19. #define DWL_BUFFER_SIZE U(0x01000000)
  20. /* Functions to save and get boot context address given by ROM code */
  21. void stm32mp_save_boot_ctx_address(uintptr_t address);
  22. uintptr_t stm32mp_get_boot_ctx_address(void);
  23. uint16_t stm32mp_get_boot_itf_selected(void);
  24. bool stm32mp_is_single_core(void);
  25. bool stm32mp_is_auth_supported(void);
  26. uint32_t stm32mp_check_closed_device(void);
  27. /* Return the base address of the DDR controller */
  28. uintptr_t stm32mp_ddrctrl_base(void);
  29. /* Return the base address of the DDR PHY */
  30. uintptr_t stm32mp_ddrphyc_base(void);
  31. /* Return the base address of the PWR peripheral */
  32. uintptr_t stm32mp_pwr_base(void);
  33. /* Return the base address of the RCC peripheral */
  34. uintptr_t stm32mp_rcc_base(void);
  35. void stm32mp_gic_pcpu_init(void);
  36. void stm32mp_gic_init(void);
  37. /* Check MMU status to allow spinlock use */
  38. bool stm32mp_lock_available(void);
  39. int stm32_get_otp_index(const char *otp_name, uint32_t *otp_idx,
  40. uint32_t *otp_len);
  41. int stm32_get_otp_value(const char *otp_name, uint32_t *otp_val);
  42. int stm32_get_otp_value_from_idx(const uint32_t otp_idx, uint32_t *otp_val);
  43. /* Get IWDG platform instance ID from peripheral IO memory base address */
  44. uint32_t stm32_iwdg_get_instance(uintptr_t base);
  45. /* Return bitflag mask for expected IWDG configuration from OTP content */
  46. uint32_t stm32_iwdg_get_otp_config(uint32_t iwdg_inst);
  47. #if defined(IMAGE_BL2)
  48. /* Update OTP shadow registers with IWDG configuration from device tree */
  49. uint32_t stm32_iwdg_shadow_update(uint32_t iwdg_inst, uint32_t flags);
  50. #endif
  51. #if STM32MP_UART_PROGRAMMER || !defined(IMAGE_BL2)
  52. /* Get the UART address from its instance number */
  53. uintptr_t get_uart_address(uint32_t instance_nb);
  54. #endif
  55. /* Setup the UART console */
  56. int stm32mp_uart_console_setup(void);
  57. bool stm32mp_is_wakeup_from_standby(void);
  58. /*
  59. * Platform util functions for the GPIO driver
  60. * @bank: Target GPIO bank ID as per DT bindings
  61. *
  62. * Platform shall implement these functions to provide to stm32_gpio
  63. * driver the resource reference for a target GPIO bank. That are
  64. * memory mapped interface base address, interface offset (see below)
  65. * and clock identifier.
  66. *
  67. * stm32_get_gpio_bank_offset() returns a bank offset that is used to
  68. * check DT configuration matches platform implementation of the banks
  69. * description.
  70. */
  71. uintptr_t stm32_get_gpio_bank_base(unsigned int bank);
  72. unsigned long stm32_get_gpio_bank_clock(unsigned int bank);
  73. uint32_t stm32_get_gpio_bank_offset(unsigned int bank);
  74. bool stm32_gpio_is_secure_at_reset(unsigned int bank);
  75. /* Return node offset for target GPIO bank ID @bank or a FDT error code */
  76. int stm32_get_gpio_bank_pinctrl_node(void *fdt, unsigned int bank);
  77. /* Get the chip revision */
  78. uint32_t stm32mp_get_chip_version(void);
  79. /* Get the chip device ID */
  80. uint32_t stm32mp_get_chip_dev_id(void);
  81. /* Get SOC name */
  82. #define STM32_SOC_NAME_SIZE 20
  83. void stm32mp_get_soc_name(char name[STM32_SOC_NAME_SIZE]);
  84. /* Print CPU information */
  85. void stm32mp_print_cpuinfo(void);
  86. /* Print board information */
  87. void stm32mp_print_boardinfo(void);
  88. /* Initialise the IO layer and register platform IO devices */
  89. void stm32mp_io_setup(void);
  90. /* Functions to map DDR in MMU with non-cacheable attribute, and unmap it */
  91. int stm32mp_map_ddr_non_cacheable(void);
  92. int stm32mp_unmap_ddr(void);
  93. /* Functions to map RETRAM, and unmap it */
  94. int stm32mp_map_retram(void);
  95. int stm32mp_unmap_retram(void);
  96. /* Function to save boot info */
  97. void stm32_save_boot_info(boot_api_context_t *boot_context);
  98. /* Function to get boot peripheral info */
  99. void stm32_get_boot_interface(uint32_t *interface, uint32_t *instance);
  100. /* Function to get BOOT_MODE backup register address */
  101. uintptr_t stm32_get_bkpr_boot_mode_addr(void);
  102. /* Display board information from the value found in OTP fuse */
  103. void stm32_display_board_info(uint32_t board_id);
  104. #if PSA_FWU_SUPPORT
  105. uintptr_t stm32_get_bkpr_fwu_info_addr(void);
  106. void stm32_fwu_set_boot_idx(void);
  107. uint32_t stm32_get_and_dec_fwu_trial_boot_cnt(void);
  108. void stm32_set_max_fwu_trial_boot_cnt(void);
  109. void stm32_clear_fwu_trial_boot_cnt(void);
  110. #endif /* PSA_FWU_SUPPORT */
  111. #endif /* STM32MP_COMMON_H */