blob: f0573903de5f920967612cdc470f05998e76a30b [file] [log] [blame]
Yann Gautieree8f5422019-02-14 11:13:25 +01001/*
2 * Copyright (C) 2018-2019, STMicroelectronics - All Rights Reserved
Yann Gautiere7534702019-02-14 11:14:18 +01003 * Copyright (c) 2018-2019, Linaro Limited
Yann Gautieree8f5422019-02-14 11:13:25 +01004 *
5 * SPDX-License-Identifier: BSD-3-Clause
6 */
7
8#ifndef STM32MP_COMMON_H
9#define STM32MP_COMMON_H
10
Yann Gautiera2e2a302019-02-14 11:13:39 +010011#include <stdbool.h>
12
Yann Gautiere7534702019-02-14 11:14:18 +010013#include <arch_helpers.h>
14
Yann Gautieree8f5422019-02-14 11:13:25 +010015/* Functions to save and get boot context address given by ROM code */
Yann Gautiera2e2a302019-02-14 11:13:39 +010016void stm32mp_save_boot_ctx_address(uintptr_t address);
17uintptr_t stm32mp_get_boot_ctx_address(void);
Yann Gautieree8f5422019-02-14 11:13:25 +010018
Yann Gautier3d78a2e2019-02-14 11:01:20 +010019/* Return the base address of the DDR controller */
20uintptr_t stm32mp_ddrctrl_base(void);
21
22/* Return the base address of the DDR PHY */
23uintptr_t stm32mp_ddrphyc_base(void);
24
25/* Return the base address of the PWR peripheral */
26uintptr_t stm32mp_pwr_base(void);
27
28/* Return the base address of the RCC peripheral */
29uintptr_t stm32mp_rcc_base(void);
30
Yann Gautier091eab52019-06-04 18:06:34 +020031/* Get IWDG platform instance ID from peripheral IO memory base address */
32uint32_t stm32_iwdg_get_instance(uintptr_t base);
33
34/* Return bitflag mask for expected IWDG configuration from OTP content */
35uint32_t stm32_iwdg_get_otp_config(uint32_t iwdg_inst);
36
37#if defined(IMAGE_BL2)
38/* Update OTP shadow registers with IWDG configuration from device tree */
39uint32_t stm32_iwdg_shadow_update(uint32_t iwdg_inst, uint32_t flags);
40#endif
41
Yann Gautieree8f5422019-02-14 11:13:25 +010042/*
43 * Platform util functions for the GPIO driver
44 * @bank: Target GPIO bank ID as per DT bindings
45 *
46 * Platform shall implement these functions to provide to stm32_gpio
47 * driver the resource reference for a target GPIO bank. That are
48 * memory mapped interface base address, interface offset (see below)
49 * and clock identifier.
50 *
51 * stm32_get_gpio_bank_offset() returns a bank offset that is used to
52 * check DT configuration matches platform implementation of the banks
53 * description.
54 */
55uintptr_t stm32_get_gpio_bank_base(unsigned int bank);
56unsigned long stm32_get_gpio_bank_clock(unsigned int bank);
57uint32_t stm32_get_gpio_bank_offset(unsigned int bank);
58
Yann Gautierc7374052019-06-04 18:02:37 +020059/* Print CPU information */
60void stm32mp_print_cpuinfo(void);
61
Yann Gautier35dc0772019-05-13 18:34:48 +020062/* Print board information */
63void stm32mp_print_boardinfo(void);
64
Yann Gautiera2e2a302019-02-14 11:13:39 +010065/*
66 * Util for clock gating and to get clock rate for stm32 and platform drivers
67 * @id: Target clock ID, ID used in clock DT bindings
68 */
69bool stm32mp_clk_is_enabled(unsigned long id);
Yann Gautiere4a3c352019-02-14 10:53:33 +010070void stm32mp_clk_enable(unsigned long id);
71void stm32mp_clk_disable(unsigned long id);
Yann Gautiera2e2a302019-02-14 11:13:39 +010072unsigned long stm32mp_clk_get_rate(unsigned long id);
73
Yann Gautieree8f5422019-02-14 11:13:25 +010074/* Initialise the IO layer and register platform IO devices */
Yann Gautiera2e2a302019-02-14 11:13:39 +010075void stm32mp_io_setup(void);
Yann Gautieree8f5422019-02-14 11:13:25 +010076
Yann Gautiere7534702019-02-14 11:14:18 +010077static inline uint64_t arm_cnt_us2cnt(uint32_t us)
78{
79 return ((uint64_t)us * (uint64_t)read_cntfrq()) / 1000000ULL;
80}
81
82static inline uint64_t timeout_init_us(uint32_t us)
83{
84 return read_cntpct_el0() + arm_cnt_us2cnt(us);
85}
86
87static inline bool timeout_elapsed(uint64_t expire)
88{
89 return read_cntpct_el0() > expire;
90}
91
Yann Gautieree8f5422019-02-14 11:13:25 +010092#endif /* STM32MP_COMMON_H */