1 /*
2  * Copyright (c) 2020 Linaro Ltd.
3  *
4  * SPDX-License-Identifier: Apache-2.0
5  */
6 
7 /** @file
8  * @brief Atmel SAM MCU family devicetree helper macros
9  */
10 
11 #ifndef _ATMEL_SAM_DT_H_
12 #define _ATMEL_SAM_DT_H_
13 
14 #include <zephyr/devicetree.h>
15 
16 /* Devicetree macros related to clock */
17 
18 #define ATMEL_SAM_DT_CPU_CLK_FREQ_HZ \
19 		DT_PROP(DT_PATH(cpus, cpu_0), clock_frequency)
20 
21 #endif /* _ATMEL_SAM_SOC_DT_H_ */
22