mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2025-01-19 21:56:40 +07:00
4c9847b737
Improve the binding example by removing all the leading 0x to fix the
following dtc warnings:
Warning (unit_address_format): Node /XXX unit name should not have leading "0x"
Converted using the following command:
find Documentation/devicetree/bindings -name "*.txt" -exec sed -i -e 's/([^ ])\@0x([0-9a-f])/$1\@$2/g' {} +
This is a follow up to commit 48c926cd34
Signed-off-by: Mathieu Malaterre <malat@debian.org>
Signed-off-by: Rob Herring <robh@kernel.org>
19 lines
597 B
Plaintext
19 lines
597 B
Plaintext
|
|
* Rockchip rk3399 DFI device
|
|
|
|
Required properties:
|
|
- compatible: Must be "rockchip,rk3399-dfi".
|
|
- reg: physical base address of each DFI and length of memory mapped region
|
|
- rockchip,pmu: phandle to the syscon managing the "pmu general register files"
|
|
- clocks: phandles for clock specified in "clock-names" property
|
|
- clock-names : the name of clock used by the DFI, must be "pclk_ddr_mon";
|
|
|
|
Example:
|
|
dfi: dfi@ff630000 {
|
|
compatible = "rockchip,rk3399-dfi";
|
|
reg = <0x00 0xff630000 0x00 0x4000>;
|
|
rockchip,pmu = <&pmugrf>;
|
|
clocks = <&cru PCLK_DDR_MON>;
|
|
clock-names = "pclk_ddr_mon";
|
|
};
|