zephyr/drivers/clock_control/Kconfig.beetle
Ulf Magnusson bd6e04411e kconfig: Clean up header comments and make them consistent
Use this short header style in all Kconfig files:

    # <description>

    # <copyright>
    # <license>

    ...

Also change all <description>s from

    # Kconfig[.extension] - Foo-related options

to just

    # Foo-related options

It's clear enough that it's about Kconfig.

The <description> cleanup was done with this command, along with some
manual cleanup (big letter at the start, etc.)

    git ls-files '*Kconfig*' | \
        xargs sed -i -E '1 s/#\s*Kconfig[\w.-]*\s*-\s*/# /'

Signed-off-by: Ulf Magnusson <Ulf.Magnusson@nordicsemi.no>
2019-11-04 17:31:27 -05:00

42 lines
1 KiB
Plaintext

# Beetle MCU clock control driver config
# Copyright (c) 2016 Linaro Limited.
# SPDX-License-Identifier: Apache-2.0
if SOC_FAMILY_ARM
menuconfig CLOCK_CONTROL_BEETLE
bool "BEETLE Clock Control"
depends on SOC_SERIES_BEETLE
default y if SOC_SERIES_BEETLE
help
Enable driver for Reset & Clock Control subsystem found
in STM32F4 family of MCUs
config CLOCK_CONTROL_BEETLE_DEVICE_INIT_PRIORITY
int "Clock Control Device Priority"
default 1
depends on CLOCK_CONTROL_BEETLE
help
This option controls the priority of clock control
device initialization. Higher priority ensures that the device
is initialized earlier in the startup cycle. If unsure, leave
at default value 1
config ARM_CLOCK_CONTROL_DEV_NAME
string "Clock Config Device name"
default "CLOCK_CONTROL_0"
depends on CLOCK_CONTROL_BEETLE
help
Configure Clock Config Device name
config CLOCK_CONTROL_BEETLE_ENABLE_PLL
bool "Enable PLL on Beetle"
depends on SOC_SERIES_BEETLE
help
Enable PLL on Beetle.
Select n if not sure.
endif # SOC_FAMILY_ARM