Add driver for sama7g5 Slow Clock Controller (SCKC). Signed-off-by: Tony Han <tony.han@microchip.com>
18 lines
538 B
Plaintext
18 lines
538 B
Plaintext
# Copyright (c) 2023 Gerson Fernando Budke <nandojve@gmail.com>
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
config CLOCK_CONTROL_SAM
|
|
bool "Atmel SAM clock control"
|
|
default y
|
|
depends on DT_HAS_ATMEL_SAM_PMC_ENABLED
|
|
help
|
|
Enable driver for Atmel SAM Clock Control.
|
|
|
|
config CLOCK_CONTROL_SAMA7G5
|
|
bool "Microchip SAMA7G5 Power Management Controller (PMC)"
|
|
default y
|
|
depends on DT_HAS_MICROCHIP_SAM_PMC_ENABLED || \
|
|
DT_HAS_MICROCHIP_SAMA7G5_SCKC_ENABLED
|
|
help
|
|
Enable driver for Microchip SAMA7G5 Power Management Controller (PMC).
|