rcar_clock_control.h 574 B

123456789101112131415161718192021
  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. #include <drivers/clock_control.h>
  12. #include <dt-bindings/clock/renesas_rcar_cpg.h>
  13. struct rcar_cpg_clk {
  14. uint32_t domain;
  15. uint32_t module;
  16. uint32_t rate;
  17. };
  18. #endif /* ZEPHYR_INCLUDE_DRIVERS_CLOCK_CONTROL_RCAR_CLOCK_CONTROL_H_ */