:orphan: .. title:: CLOCK_STM32_PLL_R_DIVISOR .. option:: CONFIG_CLOCK_STM32_PLL_R_DIVISOR *PLL R Divisor* *PLL R Divisor* *PLL R Divisor* *PLL R Divisor* Type: ``int`` Help ==== PLL R Output divisor, allowed values: 1-128. Help ==== PLL R Output divisor L4: allowed values: 0, 2, 4, 6, 8. PLLR do not exceed 80MHz L5: allowed values: 0, 2, 4, 6, 8. PLLR do not exceed 110MHz WB: allowed values: 0, 2-8. PLLR do not exceed 64MHz Help ==== PLL R VCO divisor, allowed values: 2-8. Help ==== PLL R Output divisor, allowed values: 2, 4, 6, 8. Direct dependencies =================== (\ :option:`CLOCK_STM32_SYSCLK_SRC_PLL ` && \ :option:`SOC_SERIES_STM32H7X ` && \ :option:`CLOCK_CONTROL_STM32_CUBE ` && \ :option:`CLOCK_CONTROL `) || (\ :option:`CLOCK_STM32_SYSCLK_SRC_PLL ` && (\ :option:`SOC_SERIES_STM32L4X ` || \ :option:`SOC_SERIES_STM32L5X ` || \ :option:`SOC_SERIES_STM32WBX `) && \ :option:`CLOCK_CONTROL_STM32_CUBE ` && \ :option:`CLOCK_CONTROL `) || (\ :option:`CLOCK_STM32_SYSCLK_SRC_PLL ` && \ :option:`SOC_SERIES_STM32G0X ` && \ :option:`CLOCK_CONTROL_STM32_CUBE ` && \ :option:`CLOCK_CONTROL `) || (\ :option:`CLOCK_STM32_SYSCLK_SRC_PLL ` && \ :option:`SOC_SERIES_STM32G4X ` && \ :option:`CLOCK_CONTROL_STM32_CUBE ` && \ :option:`CLOCK_CONTROL `) *(Includes any dependencies from ifs and menus.)* Defaults ======== - 2 - 4 - 2 - 2 Kconfig definitions =================== .. highlight:: kconfig At ``drivers/clock_control/Kconfig.stm32h7:99`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:32`` → ``drivers/Kconfig:54`` → ``drivers/clock_control/Kconfig:25`` → ``drivers/clock_control/Kconfig.stm32:133`` Menu path: (Top) → Device Drivers → Hardware clock controller support → STM32 Reset & Clock Control .. parsed-literal:: config CLOCK_STM32_PLL_R_DIVISOR int "PLL R Divisor" range 1 128 default 2 depends on \ :option:`CLOCK_STM32_SYSCLK_SRC_PLL ` && \ :option:`SOC_SERIES_STM32H7X ` && \ :option:`CLOCK_CONTROL_STM32_CUBE ` && \ :option:`CLOCK_CONTROL ` help PLL R Output divisor, allowed values: 1-128. ---- At ``drivers/clock_control/Kconfig.stm32l4_l5_wb:55`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:32`` → ``drivers/Kconfig:54`` → ``drivers/clock_control/Kconfig:25`` → ``drivers/clock_control/Kconfig.stm32:135`` Menu path: (Top) → Device Drivers → Hardware clock controller support → STM32 Reset & Clock Control .. parsed-literal:: config CLOCK_STM32_PLL_R_DIVISOR int "PLL R Divisor" range 0 8 default 4 depends on \ :option:`CLOCK_STM32_SYSCLK_SRC_PLL ` && (\ :option:`SOC_SERIES_STM32L4X ` || \ :option:`SOC_SERIES_STM32L5X ` || \ :option:`SOC_SERIES_STM32WBX `) && \ :option:`CLOCK_CONTROL_STM32_CUBE ` && \ :option:`CLOCK_CONTROL ` help PLL R Output divisor L4: allowed values: 0, 2, 4, 6, 8. PLLR do not exceed 80MHz L5: allowed values: 0, 2, 4, 6, 8. PLLR do not exceed 110MHz WB: allowed values: 0, 2-8. PLLR do not exceed 64MHz ---- At ``drivers/clock_control/Kconfig.stm32g0:42`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:32`` → ``drivers/Kconfig:54`` → ``drivers/clock_control/Kconfig:25`` → ``drivers/clock_control/Kconfig.stm32:136`` Menu path: (Top) → Device Drivers → Hardware clock controller support → STM32 Reset & Clock Control .. parsed-literal:: config CLOCK_STM32_PLL_R_DIVISOR int "PLL R Divisor" range 2 8 default 2 depends on \ :option:`CLOCK_STM32_SYSCLK_SRC_PLL ` && \ :option:`SOC_SERIES_STM32G0X ` && \ :option:`CLOCK_CONTROL_STM32_CUBE ` && \ :option:`CLOCK_CONTROL ` help PLL R VCO divisor, allowed values: 2-8. ---- At ``drivers/clock_control/Kconfig.stm32g4:40`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:32`` → ``drivers/Kconfig:54`` → ``drivers/clock_control/Kconfig:25`` → ``drivers/clock_control/Kconfig.stm32:137`` Menu path: (Top) → Device Drivers → Hardware clock controller support → STM32 Reset & Clock Control .. parsed-literal:: config CLOCK_STM32_PLL_R_DIVISOR int "PLL R Divisor" range 2 8 default 2 depends on \ :option:`CLOCK_STM32_SYSCLK_SRC_PLL ` && \ :option:`SOC_SERIES_STM32G4X ` && \ :option:`CLOCK_CONTROL_STM32_CUBE ` && \ :option:`CLOCK_CONTROL ` help PLL R Output divisor, allowed values: 2, 4, 6, 8. *(The 'depends on' condition includes propagated dependencies from ifs and menus.)*