#include <linux/bitops.h>
#include <linux/clk-provider.h>
#include <linux/err.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,q6sstopcc-qcs404.h>
#include "clk-regmap.h"
#include "clk-branch.h"
#include "common.h"
#include "reset.h"
static struct clk_branch lcc_ahbfabric_cbc_clk = …;
static struct clk_branch lcc_q6ss_ahbs_cbc_clk = …;
static struct clk_branch lcc_q6ss_tcm_slave_cbc_clk = …;
static struct clk_branch lcc_q6ss_ahbm_cbc_clk = …;
static struct clk_branch lcc_q6ss_axim_cbc_clk = …;
static struct clk_branch lcc_q6ss_bcr_sleep_clk = …;
static struct clk_branch tcsr_lcc_csr_cbcr_clk = …;
static struct regmap_config q6sstop_regmap_config = …;
static struct clk_regmap *q6sstop_qcs404_clocks[] = …;
static const struct qcom_reset_map q6sstop_qcs404_resets[] = …;
static const struct qcom_cc_desc q6sstop_qcs404_desc = …;
static struct clk_regmap *tcsr_qcs404_clocks[] = …;
static const struct qcom_cc_desc tcsr_qcs404_desc = …;
static const struct of_device_id q6sstopcc_qcs404_match_table[] = …;
MODULE_DEVICE_TABLE(of, q6sstopcc_qcs404_match_table);
static int q6sstopcc_qcs404_probe(struct platform_device *pdev)
{ … }
static const struct dev_pm_ops q6sstopcc_pm_ops = …;
static struct platform_driver q6sstopcc_qcs404_driver = …;
module_platform_driver(…) …;
MODULE_DESCRIPTION(…) …;
MODULE_LICENSE(…) …;