Back to home page

OSCL-LXR

 
 

    


0001 /* SPDX-License-Identifier: GPL-2.0 */
0002 /*
0003  * Copyright (c) 2018 BayLibre, SAS.
0004  * Author: Jerome Brunet <jbrunet@baylibre.com>
0005  */
0006 
0007 #ifndef __MESON_SCLK_DIV_H
0008 #define __MESON_SCLK_DIV_H
0009 
0010 #include <linux/clk-provider.h>
0011 #include "parm.h"
0012 
0013 struct meson_sclk_div_data {
0014     struct parm div;
0015     struct parm hi;
0016     unsigned int cached_div;
0017     struct clk_duty cached_duty;
0018 };
0019 
0020 extern const struct clk_ops meson_sclk_div_ops;
0021 
0022 #endif /* __MESON_SCLK_DIV_H */