zephyr/drivers/clock_control/Kconfig.stm32h7
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

97 lines
2 KiB
Plaintext

# STM32H7 PLL configuration options
# Copyright (c) 2019 Linaro
# SPDX-License-Identifier: Apache-2.0
if SOC_SERIES_STM32H7X
# Bus clocks configuration options
config CLOCK_STM32_D1CPRE
int "D1 Domain, CPU1 clock prescaler"
default 1
range 1 512
help
D1 Domain, CPU1 clock (sys_d1cpre_ck prescaler),
allowed values: 1, 2, 4, 8, 16, 64, 128, 256, 512.
config CLOCK_STM32_HPRE
int "hclk prescaler, D2 domain (CPU2) Clock prescaler"
default 1
range 1 512
help
hclk prescaler, allowed values: 1, 2, 4, 8, 16, 64, 128, 256, 512.
config CLOCK_STM32_D2PPRE1
int "APB1 prescaler"
default 1
range 1 16
help
APB1 clock (rcc_pclk1) prescaler, allowed values: 1, 2, 4, 8, 16
config CLOCK_STM32_D2PPRE2
int "D2 DOMAIN, APB2 prescaler"
default 1
range 1 16
help
APB2 clock (rcc_pclk2) prescaler, allowed values: 1, 2, 4, 8, 16
config CLOCK_STM32_D1PPRE
int "D1 DOMAIN, APB3 prescaler"
default 1
range 1 16
help
APB3 clock (rcc_pclk3) prescaler, allowed values: 1, 2, 4, 8, 16
config CLOCK_STM32_D3PPRE
int "APB4 prescaler"
default 1
range 1 16
help
APB4 clock (rcc_pclk4) prescaler, allowed values: 1, 2, 4, 8, 16
# PLL settings
config CLOCK_STM32_PLL_M_DIVISOR
int "PLL divisor"
depends on CLOCK_STM32_SYSCLK_SRC_PLL
default 32
range 0 63
help
PLL divisor, allowed values: 0-63.
config CLOCK_STM32_PLL_N_MULTIPLIER
int "PLL1 VCO multiplier"
depends on CLOCK_STM32_SYSCLK_SRC_PLL
default 129
range 4 512
help
PLL multiplier, allowed values: 4-512.
config CLOCK_STM32_PLL_P_DIVISOR
int "PLL P Divisor"
depends on CLOCK_STM32_SYSCLK_SRC_PLL
default 2
range 1 128
help
PLL P Output divisor, allowed values: 1-128.
config CLOCK_STM32_PLL_Q_DIVISOR
int "PLL Q Divisor"
depends on CLOCK_STM32_SYSCLK_SRC_PLL
default 2
range 1 128
help
PLL Q Output divisor, allowed values: 1-128.
config CLOCK_STM32_PLL_R_DIVISOR
int "PLL R Divisor"
depends on CLOCK_STM32_SYSCLK_SRC_PLL
default 2
range 1 128
help
PLL R Output divisor, allowed values: 1-128.
endif # SOC_SERIES_STM32H7X