Skip to content

Commit af366fe

Browse files
dts: bindings: update nrf-hsfll to nrf-local-hsfll
The nrf-hsfll was previously the only supported HSFLL clock, hence it was not namespaced fully. Since we added nrf-global-hsfll, we should add the namespace to nrf-hsfll as well. Updates drivers and devicetree uses of HSFLL as well. Signed-off-by: Bjarki Arge Andreasen <[email protected]>
1 parent 5987d22 commit af366fe

File tree

4 files changed

+10
-10
lines changed

4 files changed

+10
-10
lines changed

drivers/clock_control/clock_control_nrf2_hsfll.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* SPDX-License-Identifier: Apache-2.0
44
*/
55

6-
#define DT_DRV_COMPAT nordic_nrf_hsfll
6+
#define DT_DRV_COMPAT nordic_nrf_hsfll_local
77

88
#include "clock_control_nrf2_common.h"
99
#include <zephyr/devicetree.h>

dts/bindings/clock/nordic,nrf-hsfll.yaml renamed to dts/bindings/clock/nordic,nrf-local-hsfll.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,15 @@
22
# SPDX-License-Identifier: Apache-2.0
33

44
description: |
5-
Nordic nRF HSFLL
5+
Nordic nRF local HSFLL
66
7-
The HSFLL mixed-mode IP generates several clock frequencies in the range from
8-
64 MHz to 400 MHz (in steps of 16 MHz).
7+
The local HSFLL mixed-mode IP generates several clock frequencies in the range
8+
from 64 MHz to 400 MHz (in steps of 16 MHz).
99
1010
Usage example:
1111
1212
hsfll: clock@deadbeef {
13-
compatible = "nordic,nrf-hsfll";
13+
compatible = "nordic,nrf-hsfll-local";
1414
reg = <0xdeadbeef 0x1000>;
1515
clocks = <&fll16m>;
1616
clock-frequency = <DT_FREQ_M(320)>;
@@ -22,7 +22,7 @@ description: |
2222
2323
Required FICR entries are for VSUP, COARSE and FINE trim values.
2424
25-
compatible: "nordic,nrf-hsfll"
25+
compatible: "nordic,nrf-hsfll-local"
2626

2727
include: [base.yaml, fixed-clock.yaml, nordic-nrf-ficr-client.yaml]
2828

dts/common/nordic/nrf54h20.dtsi

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -258,7 +258,7 @@
258258
ranges = <0x0 0x52000000 0x1000000>;
259259

260260
cpuapp_hsfll: clock@d000 {
261-
compatible = "nordic,nrf-hsfll";
261+
compatible = "nordic,nrf-hsfll-local";
262262
#clock-cells = <0>;
263263
reg = <0xd000 0x1000>;
264264
clocks = <&fll16m>;
@@ -312,7 +312,7 @@
312312
ranges = <0x0 0x53000000 0x1000000>;
313313

314314
cpurad_hsfll: clock@d000 {
315-
compatible = "nordic,nrf-hsfll";
315+
compatible = "nordic,nrf-hsfll-local";
316316
#clock-cells = <0>;
317317
reg = <0xd000 0x1000>;
318318
clocks = <&fll16m>;

dts/common/nordic/nrf9280.dtsi

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@
149149
ranges = <0x0 0x52000000 0x1000000>;
150150

151151
cpuapp_hsfll: clock@d000 {
152-
compatible = "nordic,nrf-hsfll";
152+
compatible = "nordic,nrf-hsfll-local";
153153
#clock-cells = <0>;
154154
reg = <0xd000 0x1000>;
155155
clocks = <&fll16m>;
@@ -201,7 +201,7 @@
201201
ranges = <0x0 0x53000000 0x1000000>;
202202

203203
cpurad_hsfll: clock@d000 {
204-
compatible = "nordic,nrf-hsfll";
204+
compatible = "nordic,nrf-hsfll-local";
205205
#clock-cells = <0>;
206206
reg = <0xd000 0x1000>;
207207
clocks = <&fll16m>;

0 commit comments

Comments
 (0)