1# Copyright (c) 2024 Nordic Semiconductor ASA 2# SPDX-License-Identifier: Apache-2.0 3 4description: | 5 Nordic Global HSFLL clock. 6 7 The lowest supported clock frequency is the default 8 clock frequency. 9 10 Example: 11 12 global_hsfll: global_hsfll { 13 compatible = "nordic,nrf-hsfll-global"; 14 clocks = <&fll16>; 15 #clock-cells = <0>; 16 clock-frequency = <320000000>; 17 supported-clock-frequencies = <64000000 18 128000000 19 256000000 20 320000000>; 21 }; 22 23compatible: "nordic,nrf-hsfll-global" 24 25include: 26 - "base.yaml" 27 - "clock-controller.yaml" 28 29properties: 30 clocks: 31 required: true 32 33 "#clock-cells": 34 const: 0 35 36 supported-clock-frequencies: 37 type: array 38 description: Supported clock frequencies in ascending order 39 40 clock-frequency: 41 type: int 42 description: | 43 Optional fixed frequency specified if used in fixed 44 frequency mode. 45