blob: bb3401f9f898265e618a57dab4b1e89d28b2460c [file] [log] [blame]
Yann Gautierc9d75b32019-02-14 11:13:25 +01001/*
Yann Gautierd8da13e2022-06-29 17:03:36 +02002 * Copyright (C) 2018-2023, STMicroelectronics - All Rights Reserved
Yann Gautierc9d75b32019-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 Gautier3f9c9782019-02-14 11:13:39 +010010#include <stdbool.h>
11
Yann Gautier1e919522019-04-19 10:48:36 +020012#include <platform_def.h>
13
Yann Gautier3d201782021-03-08 15:03:35 +010014#define JEDEC_ST_BKID U(0x0)
15#define JEDEC_ST_MFID U(0x20)
16
Yann Gautierc9d75b32019-02-14 11:13:25 +010017/* Functions to save and get boot context address given by ROM code */
Yann Gautier3f9c9782019-02-14 11:13:39 +010018void stm32mp_save_boot_ctx_address(uintptr_t address);
19uintptr_t stm32mp_get_boot_ctx_address(void);
Yann Gautier7e87ba22020-08-27 18:28:57 +020020uint16_t stm32mp_get_boot_itf_selected(void);
Yann Gautierc9d75b32019-02-14 11:13:25 +010021
Yann Gautierb2182cd2019-06-04 18:23:10 +020022bool stm32mp_is_single_core(void);
Lionel Debievef7004232019-09-16 12:17:09 +020023bool stm32mp_is_closed_device(void);
Lionel Debieve49abdfd2019-12-06 12:42:20 +010024bool stm32mp_is_auth_supported(void);
Yann Gautierb2182cd2019-06-04 18:23:10 +020025
Yann Gautier7ae58c62019-02-14 11:01:20 +010026/* Return the base address of the DDR controller */
27uintptr_t stm32mp_ddrctrl_base(void);
28
29/* Return the base address of the DDR PHY */
30uintptr_t stm32mp_ddrphyc_base(void);
31
32/* Return the base address of the PWR peripheral */
33uintptr_t stm32mp_pwr_base(void);
34
35/* Return the base address of the RCC peripheral */
36uintptr_t stm32mp_rcc_base(void);
37
Yann Gautierc27d8c02019-08-06 17:28:23 +020038void stm32mp_gic_pcpu_init(void);
39void stm32mp_gic_init(void);
40
Yann Gautiere463d3f2019-05-22 19:13:51 +020041/* Check MMU status to allow spinlock use */
42bool stm32mp_lock_available(void);
43
Lionel Debieveae3ce8b2019-11-04 14:31:38 +010044int stm32_get_otp_index(const char *otp_name, uint32_t *otp_idx,
45 uint32_t *otp_len);
46int stm32_get_otp_value(const char *otp_name, uint32_t *otp_val);
47int stm32_get_otp_value_from_idx(const uint32_t otp_idx, uint32_t *otp_val);
48
Yann Gautier73680c22019-06-04 18:06:34 +020049/* Get IWDG platform instance ID from peripheral IO memory base address */
50uint32_t stm32_iwdg_get_instance(uintptr_t base);
51
52/* Return bitflag mask for expected IWDG configuration from OTP content */
53uint32_t stm32_iwdg_get_otp_config(uint32_t iwdg_inst);
54
55#if defined(IMAGE_BL2)
56/* Update OTP shadow registers with IWDG configuration from device tree */
57uint32_t stm32_iwdg_shadow_update(uint32_t iwdg_inst, uint32_t flags);
58#endif
59
Yann Gautieracf28c22021-10-18 16:06:22 +020060#if STM32MP_UART_PROGRAMMER || !defined(IMAGE_BL2)
Patrick Delaunay9083fa12021-10-28 13:48:52 +020061/* Get the UART address from its instance number */
62uintptr_t get_uart_address(uint32_t instance_nb);
63#endif
64
Yann Gautier53612f72021-10-18 15:26:33 +020065/* Setup the UART console */
66int stm32mp_uart_console_setup(void);
67
Yann Gautierc768b2b2021-10-18 10:55:23 +020068#if STM32MP_EARLY_CONSOLE
69void stm32mp_setup_early_console(void);
70#else
71static inline void stm32mp_setup_early_console(void)
72{
73}
74#endif
75
Yann Gautierc9d75b32019-02-14 11:13:25 +010076/*
77 * Platform util functions for the GPIO driver
78 * @bank: Target GPIO bank ID as per DT bindings
79 *
80 * Platform shall implement these functions to provide to stm32_gpio
81 * driver the resource reference for a target GPIO bank. That are
82 * memory mapped interface base address, interface offset (see below)
83 * and clock identifier.
84 *
85 * stm32_get_gpio_bank_offset() returns a bank offset that is used to
86 * check DT configuration matches platform implementation of the banks
87 * description.
88 */
89uintptr_t stm32_get_gpio_bank_base(unsigned int bank);
90unsigned long stm32_get_gpio_bank_clock(unsigned int bank);
91uint32_t stm32_get_gpio_bank_offset(unsigned int bank);
Yann Gautier737ad292021-06-11 10:54:56 +020092bool stm32_gpio_is_secure_at_reset(unsigned int bank);
Yann Gautierc9d75b32019-02-14 11:13:25 +010093
Etienne Carriereccc199e2020-04-25 11:14:45 +020094/* Return node offset for target GPIO bank ID @bank or a FDT error code */
95int stm32_get_gpio_bank_pinctrl_node(void *fdt, unsigned int bank);
96
Yann Gautier92661e02021-05-10 16:05:18 +020097/* Get the chip revision */
98uint32_t stm32mp_get_chip_version(void);
99/* Get the chip device ID */
100uint32_t stm32mp_get_chip_dev_id(void);
101
102/* Get SOC name */
103#define STM32_SOC_NAME_SIZE 20
104void stm32mp_get_soc_name(char name[STM32_SOC_NAME_SIZE]);
105
Yann Gautierdec286d2019-06-04 18:02:37 +0200106/* Print CPU information */
107void stm32mp_print_cpuinfo(void);
108
Yann Gautier10e7a9e2019-05-13 18:34:48 +0200109/* Print board information */
110void stm32mp_print_boardinfo(void);
111
Yann Gautierc9d75b32019-02-14 11:13:25 +0100112/* Initialise the IO layer and register platform IO devices */
Yann Gautier3f9c9782019-02-14 11:13:39 +0100113void stm32mp_io_setup(void);
Yann Gautierc9d75b32019-02-14 11:13:25 +0100114
Yann Gautier84686ba2020-01-10 18:18:59 +0100115/* Functions to map DDR in MMU with non-cacheable attribute, and unmap it */
116int stm32mp_map_ddr_non_cacheable(void);
117int stm32mp_unmap_ddr(void);
118
Yann Gautierd8da13e2022-06-29 17:03:36 +0200119/* Function to save boot info */
120void stm32_save_boot_info(boot_api_context_t *boot_context);
121/* Function to get boot peripheral info */
Yann Gautiera6bfa752020-12-16 12:04:06 +0100122void stm32_get_boot_interface(uint32_t *interface, uint32_t *instance);
Yann Gautierd8da13e2022-06-29 17:03:36 +0200123/* Function to get BOOT_MODE backup register address */
124uintptr_t stm32_get_bkpr_boot_mode_addr(void);
Igor Opaniukab2b3252022-06-23 21:19:26 +0300125
Yann Gautier992dba02023-01-04 16:46:07 +0100126/* Display board information from the value found in OTP fuse */
127void stm32_display_board_info(uint32_t board_id);
128
Yann Gautier981b9dc2022-11-14 14:14:48 +0100129#if PSA_FWU_SUPPORT
Sughosh Ganuba02add2021-12-01 15:56:27 +0530130void stm32mp1_fwu_set_boot_idx(void);
Nicolas Toromanofff87de902022-02-07 10:12:04 +0100131uint32_t stm32_get_and_dec_fwu_trial_boot_cnt(void);
132void stm32_set_max_fwu_trial_boot_cnt(void);
Yann Gautier981b9dc2022-11-14 14:14:48 +0100133#endif /* PSA_FWU_SUPPORT */
Sughosh Ganuba02add2021-12-01 15:56:27 +0530134
Yann Gautierc9d75b32019-02-14 11:13:25 +0100135#endif /* STM32MP_COMMON_H */