blob: f65301ff5db452aa57705722264d4892298c7bd8 [file] [log] [blame]
Yann Gautieree8f5422019-02-14 11:13:25 +01001/*
Yann Gautier3e334752023-02-01 15:04:30 +01002 * Copyright (C) 2018-2024, STMicroelectronics - All Rights Reserved
Yann Gautieree8f5422019-02-14 11:13:25 +01003 *
4 * SPDX-License-Identifier: BSD-3-Clause
5 */
6
7#ifndef STM32MP_COMMON_H
8#define STM32MP_COMMON_H
9
Yann Gautiera2e2a302019-02-14 11:13:39 +010010#include <stdbool.h>
11
Yann Gautiere97b6632019-04-19 10:48:36 +020012#include <platform_def.h>
13
Yann Gautiered6515d2021-03-08 15:03:35 +010014#define JEDEC_ST_BKID U(0x0)
15#define JEDEC_ST_MFID U(0x20)
16
Yann Gautier3e334752023-02-01 15:04:30 +010017#define STM32MP_CHIP_SEC_CLOSED U(0x34D9CCC5)
18#define STM32MP_CHIP_SEC_OPEN U(0xA764D182)
19
Yann Gautierc77afcb2023-08-31 12:58:35 +020020/* FWU configuration (max supported value is 15) */
21#define FWU_MAX_TRIAL_REBOOT U(3)
22
Yann Gautier89d00ec2024-02-02 15:26:50 +010023/* Define maximum page size for NAND devices */
24#define PLATFORM_MTD_MAX_PAGE_SIZE U(0x1000)
25
26/* Needed by STM32CubeProgrammer support */
27#define DWL_BUFFER_SIZE U(0x01000000)
28
Yann Gautieree8f5422019-02-14 11:13:25 +010029/* Functions to save and get boot context address given by ROM code */
Yann Gautiera2e2a302019-02-14 11:13:39 +010030void stm32mp_save_boot_ctx_address(uintptr_t address);
31uintptr_t stm32mp_get_boot_ctx_address(void);
Yann Gautiercf1360d2020-08-27 18:28:57 +020032uint16_t stm32mp_get_boot_itf_selected(void);
Yann Gautieree8f5422019-02-14 11:13:25 +010033
Yann Gautieraf19ff92019-06-04 18:23:10 +020034bool stm32mp_is_single_core(void);
Lionel Debieve06bc62d2019-12-06 12:42:20 +010035bool stm32mp_is_auth_supported(void);
Yann Gautier3e334752023-02-01 15:04:30 +010036uint32_t stm32mp_check_closed_device(void);
Yann Gautieraf19ff92019-06-04 18:23:10 +020037
Yann Gautier3d78a2e2019-02-14 11:01:20 +010038/* Return the base address of the DDR controller */
39uintptr_t stm32mp_ddrctrl_base(void);
40
41/* Return the base address of the DDR PHY */
42uintptr_t stm32mp_ddrphyc_base(void);
43
44/* Return the base address of the PWR peripheral */
45uintptr_t stm32mp_pwr_base(void);
46
47/* Return the base address of the RCC peripheral */
48uintptr_t stm32mp_rcc_base(void);
49
Yann Gautier2bbf1712019-08-06 17:28:23 +020050void stm32mp_gic_pcpu_init(void);
51void stm32mp_gic_init(void);
52
Yann Gautierf540a592019-05-22 19:13:51 +020053/* Check MMU status to allow spinlock use */
54bool stm32mp_lock_available(void);
55
Lionel Debievebc2d88d2019-11-04 14:31:38 +010056int stm32_get_otp_index(const char *otp_name, uint32_t *otp_idx,
57 uint32_t *otp_len);
58int stm32_get_otp_value(const char *otp_name, uint32_t *otp_val);
59int stm32_get_otp_value_from_idx(const uint32_t otp_idx, uint32_t *otp_val);
60
Yann Gautier091eab52019-06-04 18:06:34 +020061/* Get IWDG platform instance ID from peripheral IO memory base address */
62uint32_t stm32_iwdg_get_instance(uintptr_t base);
63
64/* Return bitflag mask for expected IWDG configuration from OTP content */
65uint32_t stm32_iwdg_get_otp_config(uint32_t iwdg_inst);
66
67#if defined(IMAGE_BL2)
68/* Update OTP shadow registers with IWDG configuration from device tree */
69uint32_t stm32_iwdg_shadow_update(uint32_t iwdg_inst, uint32_t flags);
70#endif
71
Yann Gautier3d8497c2021-10-18 16:06:22 +020072#if STM32MP_UART_PROGRAMMER || !defined(IMAGE_BL2)
Patrick Delaunaye50571b2021-10-28 13:48:52 +020073/* Get the UART address from its instance number */
74uintptr_t get_uart_address(uint32_t instance_nb);
75#endif
76
Yann Gautier7a819122021-10-18 15:26:33 +020077/* Setup the UART console */
78int stm32mp_uart_console_setup(void);
79
Yann Gautier95dd08c2021-11-24 18:34:49 +010080bool stm32mp_is_wakeup_from_standby(void);
81
Yann Gautieree8f5422019-02-14 11:13:25 +010082/*
83 * Platform util functions for the GPIO driver
84 * @bank: Target GPIO bank ID as per DT bindings
85 *
86 * Platform shall implement these functions to provide to stm32_gpio
87 * driver the resource reference for a target GPIO bank. That are
88 * memory mapped interface base address, interface offset (see below)
89 * and clock identifier.
90 *
91 * stm32_get_gpio_bank_offset() returns a bank offset that is used to
92 * check DT configuration matches platform implementation of the banks
93 * description.
94 */
95uintptr_t stm32_get_gpio_bank_base(unsigned int bank);
96unsigned long stm32_get_gpio_bank_clock(unsigned int bank);
97uint32_t stm32_get_gpio_bank_offset(unsigned int bank);
Yann Gautier2b79c372021-06-11 10:54:56 +020098bool stm32_gpio_is_secure_at_reset(unsigned int bank);
Yann Gautieree8f5422019-02-14 11:13:25 +010099
Etienne Carriered81dadf2020-04-25 11:14:45 +0200100/* Return node offset for target GPIO bank ID @bank or a FDT error code */
101int stm32_get_gpio_bank_pinctrl_node(void *fdt, unsigned int bank);
102
Yann Gautiera0a6ff62021-05-10 16:05:18 +0200103/* Get the chip revision */
104uint32_t stm32mp_get_chip_version(void);
105/* Get the chip device ID */
106uint32_t stm32mp_get_chip_dev_id(void);
107
108/* Get SOC name */
109#define STM32_SOC_NAME_SIZE 20
110void stm32mp_get_soc_name(char name[STM32_SOC_NAME_SIZE]);
111
Yann Gautierc7374052019-06-04 18:02:37 +0200112/* Print CPU information */
113void stm32mp_print_cpuinfo(void);
114
Yann Gautier35dc0772019-05-13 18:34:48 +0200115/* Print board information */
116void stm32mp_print_boardinfo(void);
117
Yann Gautieree8f5422019-02-14 11:13:25 +0100118/* Initialise the IO layer and register platform IO devices */
Yann Gautiera2e2a302019-02-14 11:13:39 +0100119void stm32mp_io_setup(void);
Yann Gautieree8f5422019-02-14 11:13:25 +0100120
Yann Gautiera55169b2020-01-10 18:18:59 +0100121/* Functions to map DDR in MMU with non-cacheable attribute, and unmap it */
122int stm32mp_map_ddr_non_cacheable(void);
123int stm32mp_unmap_ddr(void);
124
Maxime Méré98768bf2024-09-19 09:54:28 +0200125/* Functions to map RETRAM, and unmap it */
126int stm32mp_map_retram(void);
127int stm32mp_unmap_retram(void);
128
Yann Gautier8402c292022-06-29 17:03:36 +0200129/* Function to save boot info */
130void stm32_save_boot_info(boot_api_context_t *boot_context);
131/* Function to get boot peripheral info */
Yann Gautieraaee0612020-12-16 12:04:06 +0100132void stm32_get_boot_interface(uint32_t *interface, uint32_t *instance);
Yann Gautier8402c292022-06-29 17:03:36 +0200133/* Function to get BOOT_MODE backup register address */
134uintptr_t stm32_get_bkpr_boot_mode_addr(void);
Igor Opaniukf07e8f32022-06-23 21:19:26 +0300135
Yann Gautier45b95992023-01-04 16:46:07 +0100136/* Display board information from the value found in OTP fuse */
137void stm32_display_board_info(uint32_t board_id);
138
Yann Gautier5d2eb552022-11-14 14:14:48 +0100139#if PSA_FWU_SUPPORT
Yann Gautier8edeab02024-01-05 13:50:25 +0100140uintptr_t stm32_get_bkpr_fwu_info_addr(void);
141void stm32_fwu_set_boot_idx(void);
Nicolas Toromanoff5a937cd2022-02-07 10:12:04 +0100142uint32_t stm32_get_and_dec_fwu_trial_boot_cnt(void);
143void stm32_set_max_fwu_trial_boot_cnt(void);
Sughosh Ganuff877852024-02-20 14:17:57 +0530144void stm32_clear_fwu_trial_boot_cnt(void);
Yann Gautier5d2eb552022-11-14 14:14:48 +0100145#endif /* PSA_FWU_SUPPORT */
Sughosh Ganu03e2f802021-12-01 15:56:27 +0530146
Yann Gautieree8f5422019-02-14 11:13:25 +0100147#endif /* STM32MP_COMMON_H */