mirror of
https://github.com/smaeul/u-boot.git
synced 2025-09-12 21:16:02 +01:00
BL808 contains clocks and resets controlled by registers in several MMIO regions, mostly because each MMIO region is in a separate power domain. Add the descriptions for the known clocks and resets. Signed-off-by: Samuel Holland <samuel@sholland.org>
16 lines
356 B
C
16 lines
356 B
C
/* SPDX-License-Identifier: (GPL-2.0+ or MIT) */
|
|
|
|
#ifndef _DT_BINDINGS_CLOCK_BL808_HBN_H_
|
|
#define _DT_BINDINGS_CLOCK_BL808_HBN_H_
|
|
|
|
#define CLK_XCLK 0
|
|
#define CLK_HBN_ROOT 1
|
|
#define CLK_HBN_UART_SEL 2
|
|
#define CLK_F32K 3
|
|
#define CLK_HBN_UART 4
|
|
#define CLK_RC32K 5
|
|
#define CLK_XTAL32K 6
|
|
#define CLK_XTAL 7
|
|
|
|
#endif /* _DT_BINDINGS_CLOCK_BL808_HBN_H_ */
|