#include <linux/clk-provider.h>
#include <linux/module.h>
#include <linux/of.h>
#include <linux/platform_device.h>
#include <linux/regmap.h>
#include <dt-bindings/clock/qcom,sm8550-tcsr.h>
#include "clk-alpha-pll.h"
#include "clk-branch.h"
#include "clk-pll.h"
#include "clk-rcg.h"
#include "clk-regmap.h"
#include "clk-regmap-divider.h"
#include "clk-regmap-mux.h"
#include "common.h"
#include "reset.h"
enum { … };
static struct clk_branch tcsr_pcie_0_clkref_en = …;
static struct clk_branch tcsr_pcie_1_clkref_en = …;
static struct clk_branch tcsr_ufs_clkref_en = …;
static struct clk_branch tcsr_ufs_pad_clkref_en = …;
static struct clk_branch tcsr_usb2_clkref_en = …;
static struct clk_branch tcsr_usb3_clkref_en = …;
static struct clk_regmap *tcsr_cc_sm8550_clocks[] = …;
static const struct regmap_config tcsr_cc_sm8550_regmap_config = …;
static const struct qcom_cc_desc tcsr_cc_sm8550_desc = …;
static const struct of_device_id tcsr_cc_sm8550_match_table[] = …;
MODULE_DEVICE_TABLE(of, tcsr_cc_sm8550_match_table);
static int tcsr_cc_sm8550_probe(struct platform_device *pdev)
{ … }
static struct platform_driver tcsr_cc_sm8550_driver = …;
static int __init tcsr_cc_sm8550_init(void)
{ … }
subsys_initcall(tcsr_cc_sm8550_init);
static void __exit tcsr_cc_sm8550_exit(void)
{ … }
module_exit(tcsr_cc_sm8550_exit);
MODULE_DESCRIPTION(…) …;
MODULE_LICENSE(…) …;