diff options
author | Markus Stockhausen <markus.stockhausen@gmx.de> | 2022-08-24 20:57:05 +0200 |
---|---|---|
committer | Sander Vanheule <sander@svanheule.net> | 2022-08-28 11:03:34 +0200 |
commit | 1efaad03bb20e9aee458d30427cf00170fbe8fa2 (patch) | |
tree | 866a5b7828bef935ce4de1e612590231ea24774a /target/linux/realtek | |
parent | 0c8d7e34ab35f6b41f034fd94fec740970e0125b (diff) | |
download | upstream-1efaad03bb20e9aee458d30427cf00170fbe8fa2.tar.gz upstream-1efaad03bb20e9aee458d30427cf00170fbe8fa2.tar.bz2 upstream-1efaad03bb20e9aee458d30427cf00170fbe8fa2.zip |
realtek: add PLL DT binding includes
Add some constants for sharing between DT and drivers.
Signed-off-by: Markus Stockhausen <markus.stockhausen@gmx.de>
Diffstat (limited to 'target/linux/realtek')
-rw-r--r-- | target/linux/realtek/files-5.10/include/dt-bindings/clock/rtl83xx-clk.h | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/target/linux/realtek/files-5.10/include/dt-bindings/clock/rtl83xx-clk.h b/target/linux/realtek/files-5.10/include/dt-bindings/clock/rtl83xx-clk.h new file mode 100644 index 0000000000..3937052cc5 --- /dev/null +++ b/target/linux/realtek/files-5.10/include/dt-bindings/clock/rtl83xx-clk.h @@ -0,0 +1,15 @@ +/* SPDX-License-Identifier: GPL-2.0-only */ +/* + * Copyright (C) 2022 Markus Stockhausen + * + * RTL83XX clock indices + */ +#ifndef __DT_BINDINGS_CLOCK_RTL83XX_H +#define __DT_BINDINGS_CLOCK_RTL83XX_H + +#define CLK_CPU 0 +#define CLK_MEM 1 +#define CLK_LXB 2 +#define CLK_COUNT 3 + +#endif /* __DT_BINDINGS_CLOCK_RTL83XX_H */ |