blob: 0d0a9c66972b151993403417738b0d7db0011f18 [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 Gautieraf19ff92019-06-04 18:23:10 +020019bool stm32mp_is_single_core(void);
20
Yann Gautier3d78a2e2019-02-14 11:01:20 +010021/* Return the base address of the DDR controller */
22uintptr_t stm32mp_ddrctrl_base(void);
23
24/* Return the base address of the DDR PHY */
25uintptr_t stm32mp_ddrphyc_base(void);
26
27/* Return the base address of the PWR peripheral */
28uintptr_t stm32mp_pwr_base(void);
29
30/* Return the base address of the RCC peripheral */
31uintptr_t stm32mp_rcc_base(void);
32
Yann Gautier091eab52019-06-04 18:06:34 +020033/* Get IWDG platform instance ID from peripheral IO memory base address */
34uint32_t stm32_iwdg_get_instance(uintptr_t base);
35
36/* Return bitflag mask for expected IWDG configuration from OTP content */
37uint32_t stm32_iwdg_get_otp_config(uint32_t iwdg_inst);
38
39#if defined(IMAGE_BL2)
40/* Update OTP shadow registers with IWDG configuration from device tree */
41uint32_t stm32_iwdg_shadow_update(uint32_t iwdg_inst, uint32_t flags);
42#endif
43
Yann Gautieree8f5422019-02-14 11:13:25 +010044/*
45 * Platform util functions for the GPIO driver
46 * @bank: Target GPIO bank ID as per DT bindings
47 *
48 * Platform shall implement these functions to provide to stm32_gpio
49 * driver the resource reference for a target GPIO bank. That are
50 * memory mapped interface base address, interface offset (see below)
51 * and clock identifier.
52 *
53 * stm32_get_gpio_bank_offset() returns a bank offset that is used to
54 * check DT configuration matches platform implementation of the banks
55 * description.
56 */
57uintptr_t stm32_get_gpio_bank_base(unsigned int bank);
58unsigned long stm32_get_gpio_bank_clock(unsigned int bank);
59uint32_t stm32_get_gpio_bank_offset(unsigned int bank);
60
Yann Gautierc7374052019-06-04 18:02:37 +020061/* Print CPU information */
62void stm32mp_print_cpuinfo(void);
63
Yann Gautier35dc0772019-05-13 18:34:48 +020064/* Print board information */
65void stm32mp_print_boardinfo(void);
66
Yann Gautiera2e2a302019-02-14 11:13:39 +010067/*
68 * Util for clock gating and to get clock rate for stm32 and platform drivers
69 * @id: Target clock ID, ID used in clock DT bindings
70 */
71bool stm32mp_clk_is_enabled(unsigned long id);
Yann Gautiere4a3c352019-02-14 10:53:33 +010072void stm32mp_clk_enable(unsigned long id);
73void stm32mp_clk_disable(unsigned long id);
Yann Gautiera2e2a302019-02-14 11:13:39 +010074unsigned long stm32mp_clk_get_rate(unsigned long id);
75
Yann Gautieree8f5422019-02-14 11:13:25 +010076/* Initialise the IO layer and register platform IO devices */
Yann Gautiera2e2a302019-02-14 11:13:39 +010077void stm32mp_io_setup(void);
Yann Gautieree8f5422019-02-14 11:13:25 +010078
Yann Gautiere7534702019-02-14 11:14:18 +010079static inline uint64_t arm_cnt_us2cnt(uint32_t us)
80{
81 return ((uint64_t)us * (uint64_t)read_cntfrq()) / 1000000ULL;
82}
83
84static inline uint64_t timeout_init_us(uint32_t us)
85{
86 return read_cntpct_el0() + arm_cnt_us2cnt(us);
87}
88
89static inline bool timeout_elapsed(uint64_t expire)
90{
91 return read_cntpct_el0() > expire;
92}
93
Yann Gautieree8f5422019-02-14 11:13:25 +010094#endif /* STM32MP_COMMON_H */