1# Copyright (c) 2021, Linaro ltd
2# SPDX-License-Identifier: Apache-2.0
3
4description: STM32 HSI Clock
5
6compatible: "st,stm32h7-hsi-clock"
7
8include: [fixed-clock.yaml]
9
10properties:
11  hsi-div:
12    type: int
13    required: true
14    description: |
15      HSI clock divider. Configures the output HSI clock frequency
16    enum:
17      - 1 # hsi_clk = 64MHz
18      - 2 # hsi_clk = 32MHz
19      - 4 # hsi_clk = 16MHz
20      - 8 # hsi_clk = 8MHz
21