mirror of
https://github.com/Qortal/Brooklyn.git
synced 2025-01-30 14:52:17 +00:00
162 lines
3.9 KiB
C
162 lines
3.9 KiB
C
/*
|
|
* Clock Driver for Allo DAC
|
|
*
|
|
* Author: Baswaraj K <jaikumar@cem-solutions.net>
|
|
* Copyright 2016
|
|
* based on code by Stuart MacLean
|
|
*
|
|
* This program is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU General Public License
|
|
* version 2 as published by the Free Software Foundation.
|
|
*
|
|
* This program is distributed in the hope that it will be useful, but
|
|
* WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
* General Public License for more details.
|
|
*/
|
|
|
|
#include <linux/clk-provider.h>
|
|
#include <linux/clkdev.h>
|
|
#include <linux/kernel.h>
|
|
#include <linux/module.h>
|
|
#include <linux/of.h>
|
|
#include <linux/slab.h>
|
|
#include <linux/platform_device.h>
|
|
|
|
/* Clock rate of CLK44EN attached to GPIO6 pin */
|
|
#define CLK_44EN_RATE 45158400UL
|
|
/* Clock rate of CLK48EN attached to GPIO3 pin */
|
|
#define CLK_48EN_RATE 49152000UL
|
|
|
|
/**
|
|
* struct allo_dac_clk - Common struct to the Allo DAC
|
|
* @hw: clk_hw for the common clk framework
|
|
* @mode: 0 => CLK44EN, 1 => CLK48EN
|
|
*/
|
|
struct clk_allo_hw {
|
|
struct clk_hw hw;
|
|
uint8_t mode;
|
|
};
|
|
|
|
#define to_allo_clk(_hw) container_of(_hw, struct clk_allo_hw, hw)
|
|
|
|
static const struct of_device_id clk_allo_dac_dt_ids[] = {
|
|
{ .compatible = "allo,dac-clk",},
|
|
{ }
|
|
};
|
|
MODULE_DEVICE_TABLE(of, clk_allo_dac_dt_ids);
|
|
|
|
static unsigned long clk_allo_dac_recalc_rate(struct clk_hw *hw,
|
|
unsigned long parent_rate)
|
|
{
|
|
return (to_allo_clk(hw)->mode == 0) ? CLK_44EN_RATE :
|
|
CLK_48EN_RATE;
|
|
}
|
|
|
|
static long clk_allo_dac_round_rate(struct clk_hw *hw,
|
|
unsigned long rate, unsigned long *parent_rate)
|
|
{
|
|
long actual_rate;
|
|
|
|
if (rate <= CLK_44EN_RATE) {
|
|
actual_rate = (long)CLK_44EN_RATE;
|
|
} else if (rate >= CLK_48EN_RATE) {
|
|
actual_rate = (long)CLK_48EN_RATE;
|
|
} else {
|
|
long diff44Rate = (long)(rate - CLK_44EN_RATE);
|
|
long diff48Rate = (long)(CLK_48EN_RATE - rate);
|
|
|
|
if (diff44Rate < diff48Rate)
|
|
actual_rate = (long)CLK_44EN_RATE;
|
|
else
|
|
actual_rate = (long)CLK_48EN_RATE;
|
|
}
|
|
return actual_rate;
|
|
}
|
|
|
|
|
|
static int clk_allo_dac_set_rate(struct clk_hw *hw,
|
|
unsigned long rate, unsigned long parent_rate)
|
|
{
|
|
unsigned long actual_rate;
|
|
struct clk_allo_hw *clk = to_allo_clk(hw);
|
|
|
|
actual_rate = (unsigned long)clk_allo_dac_round_rate(hw, rate,
|
|
&parent_rate);
|
|
clk->mode = (actual_rate == CLK_44EN_RATE) ? 0 : 1;
|
|
return 0;
|
|
}
|
|
|
|
|
|
const struct clk_ops clk_allo_dac_rate_ops = {
|
|
.recalc_rate = clk_allo_dac_recalc_rate,
|
|
.round_rate = clk_allo_dac_round_rate,
|
|
.set_rate = clk_allo_dac_set_rate,
|
|
};
|
|
|
|
static int clk_allo_dac_probe(struct platform_device *pdev)
|
|
{
|
|
int ret;
|
|
struct clk_allo_hw *proclk;
|
|
struct clk *clk;
|
|
struct device *dev;
|
|
struct clk_init_data init;
|
|
|
|
dev = &pdev->dev;
|
|
|
|
proclk = kzalloc(sizeof(struct clk_allo_hw), GFP_KERNEL);
|
|
if (!proclk)
|
|
return -ENOMEM;
|
|
|
|
init.name = "clk-allo-dac";
|
|
init.ops = &clk_allo_dac_rate_ops;
|
|
init.flags = 0;
|
|
init.parent_names = NULL;
|
|
init.num_parents = 0;
|
|
|
|
proclk->mode = 0;
|
|
proclk->hw.init = &init;
|
|
|
|
clk = devm_clk_register(dev, &proclk->hw);
|
|
if (!IS_ERR(clk)) {
|
|
ret = of_clk_add_provider(dev->of_node, of_clk_src_simple_get,
|
|
clk);
|
|
} else {
|
|
dev_err(dev, "Fail to register clock driver\n");
|
|
kfree(proclk);
|
|
ret = PTR_ERR(clk);
|
|
}
|
|
return ret;
|
|
}
|
|
|
|
static int clk_allo_dac_remove(struct platform_device *pdev)
|
|
{
|
|
of_clk_del_provider(pdev->dev.of_node);
|
|
return 0;
|
|
}
|
|
|
|
static struct platform_driver clk_allo_dac_driver = {
|
|
.probe = clk_allo_dac_probe,
|
|
.remove = clk_allo_dac_remove,
|
|
.driver = {
|
|
.name = "clk-allo-dac",
|
|
.of_match_table = clk_allo_dac_dt_ids,
|
|
},
|
|
};
|
|
|
|
static int __init clk_allo_dac_init(void)
|
|
{
|
|
return platform_driver_register(&clk_allo_dac_driver);
|
|
}
|
|
core_initcall(clk_allo_dac_init);
|
|
|
|
static void __exit clk_allo_dac_exit(void)
|
|
{
|
|
platform_driver_unregister(&clk_allo_dac_driver);
|
|
}
|
|
module_exit(clk_allo_dac_exit);
|
|
|
|
MODULE_DESCRIPTION("Allo DAC clock driver");
|
|
MODULE_LICENSE("GPL v2");
|
|
MODULE_ALIAS("platform:clk-allo-dac");
|