dts: bindings: clock: Change clock control binding for Renesas RA
Background of this modification is to make clock control driver code provided by Renesas vendor to support for Renesas MCU on Zephyr. Signed-off-by: Quy Tran <quy.tran.pz@renesas.com>
This commit is contained in:
parent
2bafb83771
commit
d1d42ec7f3
24 changed files with 20 additions and 12 deletions
|
@ -96,6 +96,8 @@ The below features are currently supported on Zephyr OS for EK-RA4E2 board:
|
|||
+-----------+------------+----------------------+
|
||||
| UART | on-chip | serial |
|
||||
+-----------+------------+----------------------+
|
||||
| CLOCK | on-chip | clock control |
|
||||
+-----------+------------+----------------------+
|
||||
|
||||
Other hardware features are currently not supported by the port.
|
||||
|
||||
|
|
|
@ -56,7 +56,6 @@
|
|||
source = <RA_PLL_SOURCE_MAIN_OSC>;
|
||||
div = <RA_PLL_DIV_1>;
|
||||
mul = <10 0>;
|
||||
freq = <DT_FREQ_M(200)>;
|
||||
status = "okay";
|
||||
};
|
||||
|
||||
|
|
|
@ -15,3 +15,4 @@ CONFIG_CONSOLE=y
|
|||
|
||||
CONFIG_BUILD_OUTPUT_HEX=y
|
||||
CONFIG_BUILD_NO_GAP_FILL=y
|
||||
CONFIG_CLOCK_CONTROL=y
|
||||
|
|
|
@ -96,6 +96,8 @@ The below features are currently supported on Zephyr OS for EK-RA4M2 board:
|
|||
+-----------+------------+----------------------+
|
||||
| UART | on-chip | serial |
|
||||
+-----------+------------+----------------------+
|
||||
| CLOCK | on-chip | clock control |
|
||||
+-----------+------------+----------------------+
|
||||
|
||||
Other hardware features are currently not supported by the port.
|
||||
|
||||
|
|
|
@ -56,7 +56,6 @@
|
|||
source = <RA_PLL_SOURCE_MAIN_OSC>;
|
||||
div = <RA_PLL_DIV_3>;
|
||||
mul = <25 0>;
|
||||
freq = <DT_FREQ_M(200)>;
|
||||
status = "okay";
|
||||
};
|
||||
|
||||
|
|
|
@ -15,3 +15,4 @@ CONFIG_CONSOLE=y
|
|||
|
||||
CONFIG_BUILD_OUTPUT_HEX=y
|
||||
CONFIG_BUILD_NO_GAP_FILL=y
|
||||
CONFIG_CLOCK_CONTROL=y
|
||||
|
|
|
@ -98,6 +98,8 @@ The below features are currently supported on Zephyr OS for EK-RA4M3 board:
|
|||
+-----------+------------+----------------------+
|
||||
| UART | on-chip | serial |
|
||||
+-----------+------------+----------------------+
|
||||
| CLOCK | on-chip | clock control |
|
||||
+-----------+------------+----------------------+
|
||||
|
||||
Other hardware features are currently not supported by the port.
|
||||
|
||||
|
|
|
@ -56,7 +56,6 @@
|
|||
source = <RA_PLL_SOURCE_MAIN_OSC>;
|
||||
div = <RA_PLL_DIV_3>;
|
||||
mul = <25 0>;
|
||||
freq = <DT_FREQ_M(200)>;
|
||||
status = "okay";
|
||||
};
|
||||
|
||||
|
|
|
@ -15,3 +15,4 @@ CONFIG_CONSOLE=y
|
|||
|
||||
CONFIG_BUILD_OUTPUT_HEX=y
|
||||
CONFIG_BUILD_NO_GAP_FILL=y
|
||||
CONFIG_CLOCK_CONTROL=y
|
||||
|
|
|
@ -88,6 +88,8 @@ The below features are currently supported on Zephyr OS for EK-RA4W1 board:
|
|||
+-----------+------------+----------------------+
|
||||
| UART | on-chip | serial |
|
||||
+-----------+------------+----------------------+
|
||||
| CLOCK | on-chip | clock control |
|
||||
+-----------+------------+----------------------+
|
||||
|
||||
Other hardware features are currently not supported by the port.
|
||||
|
||||
|
|
|
@ -15,3 +15,4 @@ CONFIG_CONSOLE=y
|
|||
|
||||
CONFIG_BUILD_OUTPUT_HEX=y
|
||||
CONFIG_BUILD_NO_GAP_FILL=y
|
||||
CONFIG_CLOCK_CONTROL=y
|
||||
|
|
|
@ -83,7 +83,6 @@
|
|||
source = <RA_PLL_SOURCE_MAIN_OSC>;
|
||||
div = <RA_PLL_DIV_1>;
|
||||
mul = <10 0>;
|
||||
freq = <DT_FREQ_M(200)>;
|
||||
status = "disabled";
|
||||
};
|
||||
|
||||
|
|
|
@ -133,7 +133,6 @@
|
|||
div = <RA_PLL_DIV_3>;
|
||||
mul = <25 0>;
|
||||
status = "disabled";
|
||||
freq = <DT_FREQ_M(200)>;
|
||||
};
|
||||
|
||||
pll2: pll2 {
|
||||
|
|
|
@ -143,7 +143,6 @@
|
|||
div = <RA_PLL_DIV_3>;
|
||||
mul = <25 0>;
|
||||
status = "disabled";
|
||||
freq = <DT_FREQ_M(200)>;
|
||||
};
|
||||
|
||||
pll2: pll2 {
|
||||
|
|
|
@ -77,7 +77,6 @@
|
|||
source = <RA_PLL_SOURCE_MAIN_OSC>;
|
||||
div = <RA_PLL_DIV_2>;
|
||||
mul = <12 0>;
|
||||
freq = <DT_FREQ_M(48)>;
|
||||
status = "disabled";
|
||||
};
|
||||
|
||||
|
|
|
@ -6,6 +6,7 @@ config SOC_SERIES_RA4E2
|
|||
select CPU_HAS_ARM_MPU
|
||||
select CPU_CORTEX_M33
|
||||
select HAS_RENESAS_RA_FSP
|
||||
select CLOCK_CONTROL_RENESAS_RA_CGC if CLOCK_CONTROL
|
||||
select CPU_CORTEX_M_HAS_DWT
|
||||
select ARMV8_M_DSP
|
||||
select CPU_HAS_FPU
|
||||
|
|
|
@ -37,6 +37,7 @@ volatile uint32_t g_protect_pfswe_counter BSP_SECTION_EARLY_INIT;
|
|||
static int renesas_ra4e2_init(void)
|
||||
{
|
||||
extern volatile uint16_t g_protect_counters[];
|
||||
|
||||
for (uint32_t i = 0; i < 4; i++) {
|
||||
g_protect_counters[i] = 0;
|
||||
}
|
||||
|
@ -61,7 +62,6 @@ static int renesas_ra4e2_init(void)
|
|||
|
||||
SystemCoreClock = BSP_MOCO_HZ;
|
||||
g_protect_pfswe_counter = 0;
|
||||
bsp_clock_init();
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
|
|
@ -13,4 +13,4 @@
|
|||
|
||||
#include <bsp_api.h>
|
||||
|
||||
#endif /* ZEPHYR_SOC_RENESAS_RA4_SOC_H_ */
|
||||
#endif /* ZEPHYR_SOC_RENESAS_RA4E2_SOC_H_ */
|
||||
|
|
|
@ -7,6 +7,7 @@ config SOC_SERIES_RA4M2
|
|||
select CPU_CORTEX_M33
|
||||
select HAS_RENESAS_RA_FSP
|
||||
select CPU_CORTEX_M_HAS_DWT
|
||||
select CLOCK_CONTROL_RENESAS_RA_CGC if CLOCK_CONTROL
|
||||
select ARMV8_M_DSP
|
||||
select CPU_HAS_FPU
|
||||
select FPU
|
||||
|
|
|
@ -37,6 +37,7 @@ volatile uint32_t g_protect_pfswe_counter BSP_SECTION_EARLY_INIT;
|
|||
static int renesas_ra4m2_init(void)
|
||||
{
|
||||
extern volatile uint16_t g_protect_counters[];
|
||||
|
||||
for (uint32_t i = 0; i < 4; i++) {
|
||||
g_protect_counters[i] = 0;
|
||||
}
|
||||
|
@ -61,7 +62,6 @@ static int renesas_ra4m2_init(void)
|
|||
|
||||
SystemCoreClock = BSP_MOCO_HZ;
|
||||
g_protect_pfswe_counter = 0;
|
||||
bsp_clock_init();
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
|
|
@ -6,6 +6,7 @@ config SOC_SERIES_RA4M3
|
|||
select CPU_HAS_ARM_MPU
|
||||
select CPU_CORTEX_M33
|
||||
select HAS_RENESAS_RA_FSP
|
||||
select CLOCK_CONTROL_RENESAS_RA_CGC if CLOCK_CONTROL
|
||||
select CPU_CORTEX_M_HAS_DWT
|
||||
select ARMV8_M_DSP
|
||||
select CPU_HAS_FPU
|
||||
|
|
|
@ -37,6 +37,7 @@ volatile uint32_t g_protect_pfswe_counter BSP_SECTION_EARLY_INIT;
|
|||
static int renesas_ra4m3_init(void)
|
||||
{
|
||||
extern volatile uint16_t g_protect_counters[];
|
||||
|
||||
for (uint32_t i = 0; i < 4; i++) {
|
||||
g_protect_counters[i] = 0;
|
||||
}
|
||||
|
@ -61,7 +62,6 @@ static int renesas_ra4m3_init(void)
|
|||
|
||||
SystemCoreClock = BSP_MOCO_HZ;
|
||||
g_protect_pfswe_counter = 0;
|
||||
bsp_clock_init();
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
|
|
@ -6,6 +6,7 @@ config SOC_SERIES_RA4W1
|
|||
select CPU_HAS_ARM_MPU
|
||||
select CPU_CORTEX_M4
|
||||
select HAS_RENESAS_RA_FSP
|
||||
select CLOCK_CONTROL_RENESAS_RA_CGC if CLOCK_CONTROL
|
||||
select CPU_CORTEX_M_HAS_DWT
|
||||
select CPU_HAS_FPU
|
||||
select FPU
|
||||
|
|
|
@ -38,7 +38,6 @@ static int renesas_ra4w1_init(void)
|
|||
{
|
||||
SystemCoreClock = BSP_MOCO_HZ;
|
||||
g_protect_pfswe_counter = 0;
|
||||
bsp_clock_init();
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue