mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-09-13 03:21:56 +00:00
Adds device tree bindings for the Kinetis System Integration Module (SIM), and defines peripheral source clocks (e.g., system clock or bus clock) and clock gates for all Kinetis SoCs. Signed-off-by: Maureen Helm <maureen.helm@nxp.com>
15 lines
257 B
C
15 lines
257 B
C
/*
|
|
* Copyright (c) 2017, NXP
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
#ifndef __KINETIS_SIM_H
|
|
#define __KINETIS_SIM_H
|
|
|
|
#define KINETIS_SIM_CORESYS_CLK 0
|
|
#define KINETIS_SIM_PLATFORM_CLK 1
|
|
#define KINETIS_SIM_BUS_CLK 2
|
|
|
|
#endif /* __KINETIS_SIM_H */
|