1 /* 2 * Copyright (c) 2016 Open-RnD Sp. z o.o. 3 * Copyright (c) 2016 BayLibre, SAS 4 * Copyright (c) 2017 Linaro Limited. 5 * Copyright (c) 2017 RnDity Sp. z o.o. 6 * 7 * SPDX-License-Identifier: Apache-2.0 8 */ 9 #ifndef ZEPHYR_INCLUDE_DRIVERS_CLOCK_CONTROL_RCAR_CLOCK_CONTROL_H_ 10 #define ZEPHYR_INCLUDE_DRIVERS_CLOCK_CONTROL_RCAR_CLOCK_CONTROL_H_ 11 12 #include <drivers/clock_control.h> 13 #include <dt-bindings/clock/renesas_rcar_cpg.h> 14 15 struct rcar_cpg_clk { 16 uint32_t domain; 17 uint32_t module; 18 uint32_t rate; 19 }; 20 21 #endif /* ZEPHYR_INCLUDE_DRIVERS_CLOCK_CONTROL_RCAR_CLOCK_CONTROL_H_ */ 22