hc
2023-12-09 b22da3d8526a935aa31e086e63f60ff3246cb61c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
/* SPDX-License-Identifier: GPL-2.0 */
/*
 * Copyright (c) 2019 BayLibre, SAS.
 * Author: Jerome Brunet <jbrunet@baylibre.com>
 */
 
#ifndef __MESON_CLKC_H
#define __MESON_CLKC_H
 
#include <linux/clk-provider.h>
#include "clk-regmap.h"
 
struct platform_device;
 
struct meson_eeclkc_data {
   struct clk_regmap *const    *regmap_clks;
   unsigned int            regmap_clk_num;
   const struct reg_sequence    *init_regs;
   unsigned int            init_count;
   struct clk_hw_onecell_data    *hw_onecell_data;
};
 
int meson_eeclkc_probe(struct platform_device *pdev);
 
#endif /* __MESON_CLKC_H */