zephyr/drivers/clock_control/Kconfig.esp32
Mohamed ElShahawi 4acac3e9ef drivers: esp32/clock_control: Add Clock Driver
- Support PLL for Higher Frequencies 80,160,240 MHz
- Support XTAL Frequencies 26MHz, 40MHz
- Clock Driver can't be disabled, because all of the other drivers
will depend on it to get their operating Frequency based on chosen
clock source (XTAL/PLL).

- Add needed references to BBPLL i2c bus ROM functions.
- Add `rtc` node to Device Tree.
- Since All Peripherals Frequency is depending on CPU_CLK Source,
`clock-source` property added to CPU node

Signed-off-by: Mohamed ElShahawi <ExtremeGTX@hotmail.com>
2020-06-16 09:00:51 -05:00

11 lines
246 B
Plaintext

# ESP32 Clock Driver configuration options
# Copyright (c) 2020 Mohamed ElShahawi
# SPDX-License-Identifier: Apache-2.0
config CLOCK_CONTROL_ESP32
bool "ESP32 Clock driver"
depends on SOC_ESP32
help
Enable support for ESP32 clock driver.