diff options
author | Andreas Färber <afaerber@suse.de> | 2017-02-20 17:24:04 +0100 |
---|---|---|
committer | Andreas Färber <afaerber@suse.de> | 2017-11-04 18:21:10 +0800 |
commit | 965f94c77552d80f824229a6a68f7ca92a59e5ff (patch) | |
tree | e64ab6619620f8e421eda320a7d3ebd535dfd712 /arch/arm64 | |
parent | 2bd6bf03f4c1c59381d62c61d03f6cc3fe71f66e (diff) | |
download | linux-965f94c77552d80f824229a6a68f7ca92a59e5ff.tar.gz linux-965f94c77552d80f824229a6a68f7ca92a59e5ff.tar.bz2 linux-965f94c77552d80f824229a6a68f7ca92a59e5ff.zip |
arm64: dts: actions: s900-bubblegum-96: Add fake uart5 clock
Give the serial driver a fixed-clock as input for baudrate 115200.
Signed-off-by: Andreas Färber <afaerber@suse.de>
Diffstat (limited to 'arch/arm64')
-rw-r--r-- | arch/arm64/boot/dts/actions/s900-bubblegum-96.dts | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/arch/arm64/boot/dts/actions/s900-bubblegum-96.dts b/arch/arm64/boot/dts/actions/s900-bubblegum-96.dts index a0c3484dbd12..21ca80f9941c 100644 --- a/arch/arm64/boot/dts/actions/s900-bubblegum-96.dts +++ b/arch/arm64/boot/dts/actions/s900-bubblegum-96.dts @@ -24,6 +24,12 @@ device_type = "memory"; reg = <0x0 0x0 0x0 0x80000000>; }; + + uart5_clk: uart5-clk { + compatible = "fixed-clock"; + clock-frequency = <921600>; + #clock-cells = <0>; + }; }; &timer { @@ -32,4 +38,5 @@ &uart5 { status = "okay"; + clocks = <&uart5_clk>; }; |