#include <linux/clk-provider.h>
#include <linux/mod_devicetable.h>
#include <linux/module.h>
#include <linux/platform_device.h>
#include <linux/pm_runtime.h>
#include <linux/regmap.h>
#include <dt-bindings/clock/qcom,sm6375-gpucc.h>
#include "clk-alpha-pll.h"
#include "clk-branch.h"
#include "clk-rcg.h"
#include "clk-regmap.h"
#include "clk-regmap-divider.h"
#include "clk-regmap-mux.h"
#include "clk-regmap-phy-mux.h"
#include "gdsc.h"
#include "reset.h"
enum { … };
enum { … };
static const struct pll_vco lucid_vco[] = …;
static const struct alpha_pll_config gpucc_pll0_config = …;
static struct clk_alpha_pll gpucc_pll0 = …;
static const struct alpha_pll_config gpucc_pll1_config = …;
static struct clk_alpha_pll gpucc_pll1 = …;
static const struct parent_map gpucc_parent_map_0[] = …;
static const struct clk_parent_data gpucc_parent_data_0[] = …;
static const struct parent_map gpucc_parent_map_1[] = …;
static const struct clk_parent_data gpucc_parent_data_1[] = …;
static const struct freq_tbl ftbl_gpucc_gmu_clk_src[] = …;
static struct clk_rcg2 gpucc_gmu_clk_src = …;
static const struct freq_tbl ftbl_gpucc_gx_gfx3d_clk_src[] = …;
static struct clk_rcg2 gpucc_gx_gfx3d_clk_src = …;
static struct clk_branch gpucc_ahb_clk = …;
static struct clk_branch gpucc_cx_gfx3d_clk = …;
static struct clk_branch gpucc_cx_gfx3d_slv_clk = …;
static struct clk_branch gpucc_cx_gmu_clk = …;
static struct clk_branch gpucc_cx_snoc_dvm_clk = …;
static struct clk_branch gpucc_cxo_aon_clk = …;
static struct clk_branch gpucc_cxo_clk = …;
static struct clk_branch gpucc_gx_cxo_clk = …;
static struct clk_branch gpucc_gx_gfx3d_clk = …;
static struct clk_branch gpucc_gx_gmu_clk = …;
static struct clk_branch gpucc_sleep_clk = …;
static struct gdsc gpu_cx_gdsc = …;
static struct gdsc gpu_gx_gdsc = …;
static struct clk_regmap *gpucc_sm6375_clocks[] = …;
static const struct qcom_reset_map gpucc_sm6375_resets[] = …;
static struct gdsc *gpucc_sm6375_gdscs[] = …;
static const struct regmap_config gpucc_sm6375_regmap_config = …;
static const struct qcom_cc_desc gpucc_sm6375_desc = …;
static const struct of_device_id gpucc_sm6375_match_table[] = …;
MODULE_DEVICE_TABLE(of, gpucc_sm6375_match_table);
static int gpucc_sm6375_probe(struct platform_device *pdev)
{ … }
static struct platform_driver gpucc_sm6375_driver = …;
module_platform_driver(…) …;
MODULE_DESCRIPTION(…) …;
MODULE_LICENSE(…) …;