From ac9c55b01766b0998beba9a20d446461429c4c9e Mon Sep 17 00:00:00 2001 From: Sebastian Huber Date: Mon, 19 Jul 2021 10:52:20 +0200 Subject: bsp/leon3: LEON3_PLB_FREQUENCY_DEFINED_BY_GPTIMER --- bsps/sparc/leon3/include/bsp/leon3.h | 27 ++++++++++++++++++++++----- 1 file changed, 22 insertions(+), 5 deletions(-) (limited to 'bsps/sparc/leon3/include/bsp') diff --git a/bsps/sparc/leon3/include/bsp/leon3.h b/bsps/sparc/leon3/include/bsp/leon3.h index 1402dfca1b..599d616aaf 100644 --- a/bsps/sparc/leon3/include/bsp/leon3.h +++ b/bsps/sparc/leon3/include/bsp/leon3.h @@ -42,7 +42,9 @@ #include #include +#if !defined(LEON3_PLB_FREQUENCY_DEFINED_BY_GPTIMER) #include +#endif #ifdef __cplusplus extern "C" { @@ -194,6 +196,25 @@ extern gptimer *LEON3_Timer_Regs; */ extern struct ambapp_dev *LEON3_Timer_Adev; +/** + * @brief Gets the processor local bus frequency in Hz. + * + * @return Returns the frequency. + */ +static inline uint32_t leon3_processor_local_bus_frequency( void ) +{ +#if defined(LEON3_PLB_FREQUENCY_DEFINED_BY_GPTIMER) + return ( grlib_load_32( &LEON3_Timer_Regs->sreload ) + 1 ) * + LEON3_GPTIMER_0_FREQUENCY_SET_BY_BOOT_LOADER; +#else + /* + * For simplicity, assume that the interrupt controller uses the processor + * clock. This is at least true on the GR740. + */ + return ambapp_freq_get( ambapp_plb(), LEON3_IrqCtrl_Adev ); +#endif +} + /** * @brief Gets the LEON up-counter low register (%ASR23) value. * @@ -257,11 +278,7 @@ static inline bool leon3_up_counter_is_available( void ) */ static inline uint32_t leon3_up_counter_frequency( void ) { - /* - * For simplicity, assume that the interrupt controller uses the processor - * clock. This is at least true on the GR740. - */ - return ambapp_freq_get( ambapp_plb(), LEON3_IrqCtrl_Adev ); + return leon3_processor_local_bus_frequency(); } /** -- cgit v1.2.3