#include <linux/clk-provider.h>
#include <linux/mod_devicetable.h>
#include <linux/module.h>
#include <linux/platform_device.h>
#include <linux/pm_clock.h>
#include <linux/pm_runtime.h>
#include <linux/regmap.h>
#include <dt-bindings/clock/qcom,qcm2290-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 huayra_vco[] = …;
static const struct alpha_pll_config gpu_cc_pll0_config = …;
static struct clk_alpha_pll gpu_cc_pll0 = …;
static const struct parent_map gpu_cc_parent_map_0[] = …;
static const struct clk_parent_data gpu_cc_parent_data_0[] = …;
static const struct parent_map gpu_cc_parent_map_1[] = …;
static const struct clk_parent_data gpu_cc_parent_data_1[] = …;
static const struct freq_tbl ftbl_gpu_cc_gmu_clk_src[] = …;
static struct clk_rcg2 gpu_cc_gmu_clk_src = …;
static const struct freq_tbl ftbl_gpu_cc_gx_gfx3d_clk_src[] = …;
static struct clk_rcg2 gpu_cc_gx_gfx3d_clk_src = …;
static struct clk_branch gpu_cc_ahb_clk = …;
static struct clk_branch gpu_cc_crc_ahb_clk = …;
static struct clk_branch gpu_cc_cx_gfx3d_clk = …;
static struct clk_branch gpu_cc_cx_gmu_clk = …;
static struct clk_branch gpu_cc_cx_snoc_dvm_clk = …;
static struct clk_branch gpu_cc_cxo_aon_clk = …;
static struct clk_branch gpu_cc_cxo_clk = …;
static struct clk_branch gpu_cc_gx_gfx3d_clk = …;
static struct clk_branch gpu_cc_sleep_clk = …;
static struct clk_branch gpu_cc_hlos1_vote_gpu_smmu_clk = …;
static struct gdsc gpu_cx_gdsc = …;
static struct gdsc gpu_gx_gdsc = …;
static struct clk_regmap *gpu_cc_qcm2290_clocks[] = …;
static const struct qcom_reset_map gpu_cc_qcm2290_resets[] = …;
static struct gdsc *gpu_cc_qcm2290_gdscs[] = …;
static const struct regmap_config gpu_cc_qcm2290_regmap_config = …;
static const struct qcom_cc_desc gpu_cc_qcm2290_desc = …;
static const struct of_device_id gpu_cc_qcm2290_match_table[] = …;
MODULE_DEVICE_TABLE(of, gpu_cc_qcm2290_match_table);
static int gpu_cc_qcm2290_probe(struct platform_device *pdev)
{ … }
static struct platform_driver gpu_cc_qcm2290_driver = …;
module_platform_driver(…) …;
MODULE_DESCRIPTION(…) …;
MODULE_LICENSE(…) …;