/* SPDX-License-Identifier: BSD-3-Clause */ /* * Copyright (c) 2018-2019, STMicroelectronics */ #ifndef __STM32_UTIL_H__ #define __STM32_UTIL_H__ #include #include #include #include /* Backup registers and RAM utils */ uintptr_t stm32mp_bkpreg(unsigned int idx); /* Platform util for the GIC */ uintptr_t get_gicc_base(void); uintptr_t get_gicd_base(void); /* * Platform util functions for the GPIO driver * @bank: Target GPIO bank ID as per DT bindings * * Platform shall implement these functions to provide to stm32_gpio * driver the resource reference for a target GPIO bank. That are * memory mapped interface base address, interface offset (see below) * and clock identifier. * * stm32_get_gpio_bank_offset() returns a bank offset that is used to * check DT configuration matches platform implementation of the banks * description. */ vaddr_t stm32_get_gpio_bank_base(unsigned int bank); unsigned int stm32_get_gpio_bank_offset(unsigned int bank); unsigned int stm32_get_gpio_bank_clock(unsigned int bank); /* Power management service */ #ifdef CFG_PSCI_ARM32 void stm32mp_register_online_cpu(void); #else static inline void stm32mp_register_online_cpu(void) { } #endif /* * Generic spinlock function that bypass spinlock if MMU is disabled or * lock is NULL. */ uint32_t may_spin_lock(unsigned int *lock); void may_spin_unlock(unsigned int *lock, uint32_t exceptions); /* * Util for clock gating and to get clock rate for stm32 and platform drivers * @id: Target clock ID, ID used in clock DT bindings */ void stm32_clock_enable(unsigned long id); void stm32_clock_disable(unsigned long id); unsigned long stm32_clock_get_rate(unsigned long id); bool stm32_clock_is_enabled(unsigned long id); /* * Util for reset signal assertion/desassertion for stm32 and platform drivers * @id: Target peripheral ID, ID used in reset DT bindings */ void stm32_reset_assert(unsigned int id); void stm32_reset_deassert(unsigned int id); /* * Structure and API function for BSEC driver to get some platform data. * * @base: BSEC interface registers physical base address * @upper_start: Base ID for the BSEC upper words in the platform * @max_id: Max value for BSEC word ID for the platform * @closed_device_id: BSEC word ID storing the "closed_device" OTP bit * @closed_device_position: Bit position of "closed_device" bit in the OTP word */ struct stm32_bsec_static_cfg { paddr_t base; unsigned int upper_start; unsigned int max_id; unsigned int closed_device_id; unsigned int closed_device_position; }; void stm32mp_get_bsec_static_cfg(struct stm32_bsec_static_cfg *cfg); #endif /*__STM32_UTIL_H__*/