Add clock control support for RZ/A2M Signed-off-by: Hoang Nguyen <hoang.nguyen.jx@bp.renesas.com> Signed-off-by: Binh Nguyen <binh.nguyen.xw@renesas.com>
20 lines
668 B
Plaintext
20 lines
668 B
Plaintext
# Copyright (c) 2024-2025 Renesas Electronics Corporation
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
config CLOCK_CONTROL_RENESAS_RZ_CPG
|
|
bool "Renesas RZ/G Clock Control Driver"
|
|
default y
|
|
depends on DT_HAS_RENESAS_RZ_CPG_ENABLED
|
|
select USE_RZ_FSP_CPG
|
|
help
|
|
Enable support for Renesas RZ CPG Clock Pulse Generator (CPG) driver.
|
|
The CPG driver supports only module's clocks.
|
|
The PLLs and core clocks are not configured by the CPG driver.
|
|
|
|
config CLOCK_CONTROL_RENESAS_RZA2M_CPG
|
|
bool "Renesas RZ/A2M Clock Control Driver"
|
|
default y
|
|
depends on DT_HAS_RENESAS_RZA2M_CPG_ENABLED
|
|
help
|
|
Enable support for Renesas RZ/A2M CPG Clock Pulse Generator (CPG) driver.
|