diff options
| author | Simon Glass <[email protected]> | 2020-10-03 11:31:36 -0600 |
|---|---|---|
| committer | Simon Glass <[email protected]> | 2020-10-29 14:42:18 -0600 |
| commit | fbe27a54ebbe7433bbccf242f4edda61e2c1ba3e (patch) | |
| tree | 1a47ecbb74a274b162553efefc07d23eb36bc51d /arch | |
| parent | e41651fffda7da55f6d74afdf4b784088184c543 (diff) | |
dm: Add a test for of-platdata parent information
Add a simple test that we can obtain the correct parent for an I2C
device. This requires updating the driver names to match the compatible
strings, adding them to the devicetree and enabling a few options.
Signed-off-by: Simon Glass <[email protected]>
Diffstat (limited to 'arch')
| -rw-r--r-- | arch/sandbox/dts/sandbox.dts | 1 | ||||
| -rw-r--r-- | arch/sandbox/dts/sandbox.dtsi | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/arch/sandbox/dts/sandbox.dts b/arch/sandbox/dts/sandbox.dts index 20f68938297..8b50a402898 100644 --- a/arch/sandbox/dts/sandbox.dts +++ b/arch/sandbox/dts/sandbox.dts @@ -69,6 +69,7 @@ clock-frequency = <400000>; pinctrl-names = "default"; pinctrl-0 = <&pinctrl_i2c0>; + u-boot,dm-pre-reloc; }; pcic: pci@0 { diff --git a/arch/sandbox/dts/sandbox.dtsi b/arch/sandbox/dts/sandbox.dtsi index 6a0338b212b..81cdc55b0d4 100644 --- a/arch/sandbox/dts/sandbox.dtsi +++ b/arch/sandbox/dts/sandbox.dtsi @@ -90,6 +90,7 @@ reg = <0x43>; compatible = "sandbox-rtc"; sandbox,emul = <&emul0>; + u-boot,dm-pre-reloc; }; sandbox_pmic: sandbox_pmic { reg = <0x40>; |
