blob: b216d605c321c2f363d57b5078093597b095d673 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
// SPDX-License-Identifier: (GPL-2.0 OR MIT)
/*
* Device Tree Source for the R-Car S4-8 (R8A779F4) SoC
*
* Copyright (C) 2023 Renesas Electronics Corp.
*/
#include "r8a779f0.dtsi"
/ {
compatible = "renesas,r8a779f4", "renesas,r8a779f0";
};
&fuse {
nvmem-layout {
compatible = "fixed-layout";
#address-cells = <1>;
#size-cells = <1>;
ufs_tune: calib@144 {
reg = <0x144 0x08>;
};
};
};
&ufs {
nvmem-cells = <&ufs_tune>;
nvmem-cell-names = "calibration";
};
|