mirror of
https://github.com/ARM-software/arm-trusted-firmware.git
synced 2025-04-18 02:24:18 +00:00

These issues wer found by sparse: drivers/st/clk/stm32mp1_clk.c:1524:19: warning: incorrect type in assignment (different base types) expected restricted fdt32_t const [usertype] *pkcs_cell got unsigned int const [usertype] * plat/st/stm32mp1/plat_image_load.c:13:6: warning: symbol 'plat_flush_next_bl_params' was not declared. Should it be static? plat/st/stm32mp1/plat_image_load.c:21:16: warning: symbol 'plat_get_bl_image_load_info' was not declared. Should it be static? plat/st/stm32mp1/plat_image_load.c:29:13: warning: symbol 'plat_get_next_bl_params' was not declared. Should it be static? plat/st/stm32mp1/bl2_io_storage.c:40:10: warning: symbol 'block_buffer' was not declared. Should it be static? Signed-off-by: Yann Gautier <yann.gautier@st.com>
43 lines
1 KiB
C
43 lines
1 KiB
C
/*
|
|
* Copyright (c) 2017-2018, STMicroelectronics - All Rights Reserved
|
|
*
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
*/
|
|
|
|
#ifndef STM32MP1_CLKFUNC_H
|
|
#define STM32MP1_CLKFUNC_H
|
|
|
|
#include <libfdt.h>
|
|
#include <stdbool.h>
|
|
|
|
enum stm32mp_osc_id {
|
|
_HSI,
|
|
_HSE,
|
|
_CSI,
|
|
_LSI,
|
|
_LSE,
|
|
_I2S_CKIN,
|
|
_USB_PHY_48,
|
|
NB_OSC,
|
|
_UNKNOWN_OSC_ID = 0xFF
|
|
};
|
|
|
|
extern const char *stm32mp_osc_node_label[NB_OSC];
|
|
|
|
int fdt_osc_read_freq(const char *name, uint32_t *freq);
|
|
bool fdt_osc_read_bool(enum stm32mp_osc_id osc_id, const char *prop_name);
|
|
uint32_t fdt_osc_read_uint32_default(enum stm32mp_osc_id osc_id,
|
|
const char *prop_name,
|
|
uint32_t dflt_value);
|
|
|
|
uint32_t fdt_rcc_read_addr(void);
|
|
int fdt_rcc_read_uint32_array(const char *prop_name,
|
|
uint32_t *array, uint32_t count);
|
|
int fdt_rcc_subnode_offset(const char *name);
|
|
const fdt32_t *fdt_rcc_read_prop(const char *prop_name, int *lenp);
|
|
bool fdt_get_rcc_secure_status(void);
|
|
|
|
uintptr_t fdt_get_stgen_base(void);
|
|
int fdt_get_clock_id(int node);
|
|
|
|
#endif /* STM32MP1_CLKFUNC_H */
|