mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/chenhuacai/linux-loongson
synced 2025-08-31 14:13:39 +00:00

Describe the location in the E-FUSE block of the PLL and AFE tuning parameters for the Universal Flash Storage controller. Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be> Link: https://lore.kernel.org/3e4fca228eb049d54a1ae520104558505dbdf803.1741179629.git.geert+renesas@glider.be
30 lines
482 B
Plaintext
30 lines
482 B
Plaintext
// 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";
|
|
};
|