mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-24 21:54:01 +00:00
ARM: zynq: Add missing twd timer for mini configurations
The commit b7e0750d88
("zynq: Convert arm twd timer to DM driver")
switched timer to DM but missing to add nodes to all mini configurations.
Based on it missing timer end up in non functional system where any delay
doesn't work.
Signed-off-by: Michal Simek <michal.simek@amd.com>
Link: https://lore.kernel.org/r/2020fc7e3d4760e890265485b3c7e18eb1caf8be.1669724598.git.michal.simek@amd.com
This commit is contained in:
parent
92e6900536
commit
6a664a7bd4
3 changed files with 21 additions and 0 deletions
|
@ -86,6 +86,13 @@
|
|||
reg = <0x100 0x100>;
|
||||
};
|
||||
};
|
||||
|
||||
scutimer: timer@f8f00600 {
|
||||
u-boot,dm-pre-reloc;
|
||||
compatible = "arm,cortex-a9-twd-timer";
|
||||
reg = <0xf8f00600 0x20>;
|
||||
clock-frequency = <333333333>;
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
|
|
|
@ -85,6 +85,13 @@
|
|||
#address-cells = <1>;
|
||||
#size-cells = <1>;
|
||||
};
|
||||
|
||||
scutimer: timer@f8f00600 {
|
||||
u-boot,dm-pre-reloc;
|
||||
compatible = "arm,cortex-a9-twd-timer";
|
||||
reg = <0xf8f00600 0x20>;
|
||||
clock-frequency = <333333333>;
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
|
|
|
@ -116,6 +116,13 @@
|
|||
reg = <0x100 0x100>;
|
||||
};
|
||||
};
|
||||
|
||||
scutimer: timer@f8f00600 {
|
||||
u-boot,dm-pre-reloc;
|
||||
compatible = "arm,cortex-a9-twd-timer";
|
||||
reg = <0xf8f00600 0x20>;
|
||||
clock-frequency = <333333333>;
|
||||
};
|
||||
};
|
||||
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue