18c2ecf20Sopenharmony_ci/* SPDX-License-Identifier: GPL-2.0 */ 28c2ecf20Sopenharmony_ci/* 38c2ecf20Sopenharmony_ci * Copyright (c) 2019 BayLibre, SAS. 48c2ecf20Sopenharmony_ci * Author: Neil Armstrong <narmstrong@baylibre.com> 58c2ecf20Sopenharmony_ci */ 68c2ecf20Sopenharmony_ci 78c2ecf20Sopenharmony_ci#ifndef __MESON_CLK_CPU_DYNDIV_H 88c2ecf20Sopenharmony_ci#define __MESON_CLK_CPU_DYNDIV_H 98c2ecf20Sopenharmony_ci 108c2ecf20Sopenharmony_ci#include <linux/clk-provider.h> 118c2ecf20Sopenharmony_ci#include "parm.h" 128c2ecf20Sopenharmony_ci 138c2ecf20Sopenharmony_cistruct meson_clk_cpu_dyndiv_data { 148c2ecf20Sopenharmony_ci struct parm div; 158c2ecf20Sopenharmony_ci struct parm dyn; 168c2ecf20Sopenharmony_ci}; 178c2ecf20Sopenharmony_ci 188c2ecf20Sopenharmony_ciextern const struct clk_ops meson_clk_cpu_dyndiv_ops; 198c2ecf20Sopenharmony_ci 208c2ecf20Sopenharmony_ci#endif /* __MESON_CLK_CPU_DYNDIV_H */ 21