#include <linux/clk-provider.h>
#include <linux/mod_devicetable.h>
#include <linux/module.h>
#include <linux/platform_device.h>
#include <linux/regmap.h>
#include <dt-bindings/clock/qcom,x1e80100-tcsr.h>
#include "clk-branch.h"
#include "clk-regmap.h"
#include "common.h"
#include "reset.h"
enum { … };
static struct clk_branch tcsr_edp_clkref_en = …;
static struct clk_branch tcsr_pcie_2l_4_clkref_en = …;
static struct clk_branch tcsr_pcie_2l_5_clkref_en = …;
static struct clk_branch tcsr_pcie_8l_clkref_en = …;
static struct clk_branch tcsr_usb3_mp0_clkref_en = …;
static struct clk_branch tcsr_usb3_mp1_clkref_en = …;
static struct clk_branch tcsr_usb2_1_clkref_en = …;
static struct clk_branch tcsr_ufs_phy_clkref_en = …;
static struct clk_branch tcsr_usb4_1_clkref_en = …;
static struct clk_branch tcsr_usb4_2_clkref_en = …;
static struct clk_branch tcsr_usb2_2_clkref_en = …;
static struct clk_branch tcsr_pcie_4l_clkref_en = …;
static struct clk_regmap *tcsr_cc_x1e80100_clocks[] = …;
static const struct regmap_config tcsr_cc_x1e80100_regmap_config = …;
static const struct qcom_cc_desc tcsr_cc_x1e80100_desc = …;
static const struct of_device_id tcsr_cc_x1e80100_match_table[] = …;
MODULE_DEVICE_TABLE(of, tcsr_cc_x1e80100_match_table);
static int tcsr_cc_x1e80100_probe(struct platform_device *pdev)
{ … }
static struct platform_driver tcsr_cc_x1e80100_driver = …;
static int __init tcsr_cc_x1e80100_init(void)
{ … }
subsys_initcall(tcsr_cc_x1e80100_init);
static void __exit tcsr_cc_x1e80100_exit(void)
{ … }
module_exit(tcsr_cc_x1e80100_exit);
MODULE_DESCRIPTION(…) …;
MODULE_LICENSE(…) …;