linux/drivers/clk/qcom/a53-pll.c

// SPDX-License-Identifier: GPL-2.0
/*
 * Qualcomm A53 PLL driver
 *
 * Copyright (c) 2017, Linaro Limited
 * Author: Georgi Djakov <[email protected]>
 */

#include <linux/clk.h>
#include <linux/clk-provider.h>
#include <linux/kernel.h>
#include <linux/platform_device.h>
#include <linux/pm_opp.h>
#include <linux/regmap.h>
#include <linux/module.h>

#include "clk-pll.h"
#include "clk-regmap.h"

static const struct pll_freq_tbl a53pll_freq[] =;

static const struct regmap_config a53pll_regmap_config =;

static struct pll_freq_tbl *qcom_a53pll_get_freq_tbl(struct device *dev)
{}

static int qcom_a53pll_probe(struct platform_device *pdev)
{}

static const struct of_device_id qcom_a53pll_match_table[] =;
MODULE_DEVICE_TABLE(of, qcom_a53pll_match_table);

static struct platform_driver qcom_a53pll_driver =;
module_platform_driver();

MODULE_DESCRIPTION();
MODULE_LICENSE();