mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-09-14 03:11:58 +00:00
This patch adds the clock_control implementation for the ARM LTD Beetle platform. The main features enabled are: * Clock on and off in ACTIVE, SLEEP and DEEPSLEEP mode. * PLL support (freq: 12, 36, 48 Mhz). The integration with the existing drivers will be done in future patches. Jira: ZEP-1300 Change-Id: I07cb2325275bd86a036e8e24aeb7bbf2c6176a93 Signed-off-by: Vincenzo Frascino <vincenzo.frascino@linaro.org>
7 lines
354 B
Makefile
7 lines
354 B
Makefile
obj-$(CONFIG_CLOCK_CONTROL_QUARK_SE) += quark_se_clock_control.o
|
|
obj-$(CONFIG_CLOCK_CONTROL_STM32F10X) += stm32f10x_clock.o
|
|
obj-$(CONFIG_CLOCK_CONTROL_STM32F4X) += stm32f4x_clock.o
|
|
obj-$(CONFIG_CLOCK_CONTROL_NRF5) += nrf5_power_clock.o
|
|
obj-$(CONFIG_CLOCK_CONTROL_STM32L4X) += stm32l4x_clock.o
|
|
obj-$(CONFIG_CLOCK_CONTROL_BEETLE) += beetle_clock_control.o
|