mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-12-20 01:24:39 +08:00
19a18d42bf
Like the PLL and MPLL, the controller may require some magic setting to be applied on startup. This is needed when the initial setting is not applied by the boot ROM. The controller need to do it when the setting applies to several clock, like all the MPLLs in the case of g12a. Signed-off-by: Jerome Brunet <jbrunet@baylibre.com>
28 lines
588 B
C
28 lines
588 B
C
/* 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"
|
|
|
|
#define IN_PREFIX "ee-in-"
|
|
|
|
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 */
|