Back to home page

OSCL-LXR

 
 

    


0001 /* SPDX-License-Identifier: GPL-2.0 */
0002 /*
0003  * Copyright (c) 2019 BayLibre, SAS.
0004  * Author: Jerome Brunet <jbrunet@baylibre.com>
0005  */
0006 
0007 #ifndef __MESON_CLK_PHASE_H
0008 #define __MESON_CLK_PHASE_H
0009 
0010 #include <linux/clk-provider.h>
0011 #include "parm.h"
0012 
0013 struct meson_clk_phase_data {
0014     struct parm ph;
0015 };
0016 
0017 struct meson_clk_triphase_data {
0018     struct parm ph0;
0019     struct parm ph1;
0020     struct parm ph2;
0021 };
0022 
0023 struct meson_sclk_ws_inv_data {
0024     struct parm ph;
0025     struct parm ws;
0026 };
0027 
0028 extern const struct clk_ops meson_clk_phase_ops;
0029 extern const struct clk_ops meson_clk_triphase_ops;
0030 extern const struct clk_ops meson_sclk_ws_inv_ops;
0031 
0032 #endif /* __MESON_CLK_PHASE_H */