Line data Source code
1 1 : /*
2 : * Copyright (c) 2025 Microchip Technology Inc.
3 : *
4 : * SPDX-License-Identifier: Apache-2.0
5 : */
6 :
7 : /**
8 : * @file mchp_clock_control.h
9 : * @brief Clock control header file for Microchip soc devices.
10 : *
11 : * This file provides clock driver interface definitions and structures
12 : * for microchip soc families
13 : */
14 :
15 : #ifndef INCLUDE_ZEPHYR_DRIVERS_CLOCK_CONTROL_MCHP_CLOCK_CONTROL_H_
16 : #define INCLUDE_ZEPHYR_DRIVERS_CLOCK_CONTROL_MCHP_CLOCK_CONTROL_H_
17 :
18 : #include <zephyr/kernel.h>
19 : #include <zephyr/drivers/clock_control.h>
20 :
21 : #if CONFIG_CLOCK_CONTROL_MCHP_SAM_D5X_E5X
22 : #include <zephyr/drivers/clock_control/mchp_clock_sam_d5x_e5x.h>
23 : #endif /* CLOCK_CONTROL_MCHP_SAM_D5X_E5X */
24 :
25 : #endif /* INCLUDE_ZEPHYR_DRIVERS_CLOCK_CONTROL_MCHP_CLOCK_CONTROL_H_ */
|