#include <linux/clk-provider.h>
#include <linux/module.h>
#include <linux/platform_device.h>
#include <linux/regmap.h>
#include <dt-bindings/clock/qcom,videocc-sdm845.h>
#include "common.h"
#include "clk-alpha-pll.h"
#include "clk-branch.h"
#include "clk-rcg.h"
#include "clk-regmap.h"
#include "clk-pll.h"
#include "gdsc.h"
enum { … };
static const struct alpha_pll_config video_pll0_config = …;
static struct clk_alpha_pll video_pll0 = …;
static const struct parent_map video_cc_parent_map_0[] = …;
static const struct clk_parent_data video_cc_parent_data_0[] = …;
static const struct freq_tbl ftbl_video_cc_venus_clk_src[] = …;
static struct clk_rcg2 video_cc_venus_clk_src = …;
static struct clk_branch video_cc_apb_clk = …;
static struct clk_branch video_cc_at_clk = …;
static struct clk_branch video_cc_qdss_trig_clk = …;
static struct clk_branch video_cc_qdss_tsctr_div8_clk = …;
static struct clk_branch video_cc_vcodec0_axi_clk = …;
static struct clk_branch video_cc_vcodec0_core_clk = …;
static struct clk_branch video_cc_vcodec1_axi_clk = …;
static struct clk_branch video_cc_vcodec1_core_clk = …;
static struct clk_branch video_cc_venus_ahb_clk = …;
static struct clk_branch video_cc_venus_ctl_axi_clk = …;
static struct clk_branch video_cc_venus_ctl_core_clk = …;
static struct gdsc venus_gdsc = …;
static struct gdsc vcodec0_gdsc = …;
static struct gdsc vcodec1_gdsc = …;
static struct clk_regmap *video_cc_sdm845_clocks[] = …;
static struct gdsc *video_cc_sdm845_gdscs[] = …;
static const struct regmap_config video_cc_sdm845_regmap_config = …;
static const struct qcom_cc_desc video_cc_sdm845_desc = …;
static const struct of_device_id video_cc_sdm845_match_table[] = …;
MODULE_DEVICE_TABLE(of, video_cc_sdm845_match_table);
static int video_cc_sdm845_probe(struct platform_device *pdev)
{ … }
static struct platform_driver video_cc_sdm845_driver = …;
module_platform_driver(…) …;
MODULE_LICENSE(…) …;
MODULE_DESCRIPTION(…) …;