-
Notifications
You must be signed in to change notification settings - Fork 630
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[nrf fromlist] dts: nordic: specify device model of global hsfll clock
Add specific device model for global hsfll clock and update dts tree to use specific model. The clock is not fixed, and configurable at runtime to predefined frequencies specified by the platform. Upstream PR #: 81735 Signed-off-by: Bjarki Arge Andreasen <[email protected]>
- Loading branch information
1 parent
73ce645
commit 63e3bef
Showing
2 changed files
with
40 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
# Copyright (c) 2024 Nordic Semiconductor ASA | ||
# SPDX-License-Identifier: Apache-2.0 | ||
|
||
description: | | ||
Nordic Global HSFLL clock. | ||
The lowest supported clock frequency is the default | ||
clock frequency. | ||
Example: | ||
global_hsfll: global_hsfll { | ||
compatible = "nordic,nrf-global-hsfll"; | ||
clocks = <&fll16>; | ||
#clock-cells = <0>; | ||
supported-clock-frequencies = <64000000 | ||
128000000 | ||
320000000>; | ||
}; | ||
compatible: "nordic,nrf-global-hsfll" | ||
|
||
include: | ||
- "base.yaml" | ||
- "clock-controller.yaml" | ||
|
||
properties: | ||
clocks: | ||
required: true | ||
|
||
"#clock-cells": | ||
const: 0 | ||
|
||
supported-clock-frequencies: | ||
type: array | ||
description: Supported clock frequencies in ascending order |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters