1# Raspberry Pi Pico Clock Controller Driver configuration options
2
3# Copyright (c) 2022 Andrei-Edward Popa
4# SPDX-License-Identifier: Apache-2.0
5
6config CLOCK_CONTROL_RPI_PICO
7	bool "Raspberry Pi Pico Clock Controller Driver"
8	default y
9	depends on DT_HAS_RASPBERRYPI_PICO_CLOCK_CONTROLLER_ENABLED
10	select PINCTRL
11
12if CLOCK_CONTROL_RPI_PICO
13
14config RPI_PICO_ROSC_USE_MEASURED_FREQ
15	bool "Use measured frequency for ring oscillator"
16	help
17	 Instead of the dts value, use the value measured by
18	 the frequency counter as the rosc frequency.
19
20endif # CLOCK_CONTROL_RPI_PICO
21