You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
574 B
20 lines
574 B
/* |
|
* Copyright (c) 2025 MASSDRIVER EI (massdriver.space) |
|
* |
|
* SPDX-License-Identifier: Apache-2.0 |
|
*/ |
|
#ifndef ZEPHYR_INCLUDE_DT_BINDINGS_CLOCK_BFLB_CLOCK_COMMON_H_ |
|
#define ZEPHYR_INCLUDE_DT_BINDINGS_CLOCK_BFLB_CLOCK_COMMON_H_ |
|
|
|
#define BFLB_CLKID_CLK_ROOT 0 |
|
#define BFLB_CLKID_CLK_RC32M 1 |
|
#define BFLB_CLKID_CLK_CRYSTAL 2 |
|
#define BFLB_CLKID_CLK_BCLK 3 |
|
|
|
#define BFLB_FORCE_ROOT_RC32M 10 |
|
#define BFLB_FORCE_ROOT_CRYSTAL 11 |
|
#define BFLB_FORCE_ROOT_PLL 12 |
|
|
|
#define BFLB_RC32M_FREQUENCY 32000000 |
|
|
|
#endif /* ZEPHYR_INCLUDE_DT_BINDINGS_CLOCK_BFLB_CLOCK_COMMON_H_ */
|
|
|