Linux Audio

Check our new training course

Loading...
v4.6
 
  1/*
  2 * Copyright (C) 2015 Altera Corporation. All rights reserved
  3 *
  4 * This program is free software; you can redistribute it and/or modify
  5 * it under the terms and conditions of the GNU General Public License,
  6 * version 2, as published by the Free Software Foundation.
  7 *
  8 * This program is distributed in the hope it will be useful, but WITHOUT
  9 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
 10 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for
 11 * more details.
 12 *
 13 * You should have received a copy of the GNU General Public License along with
 14 * this program.  If not, see <http://www.gnu.org/licenses/>.
 15 */
 16#include <linux/slab.h>
 17#include <linux/clk-provider.h>
 18#include <linux/io.h>
 19#include <linux/of.h>
 20
 21#include "clk.h"
 22
 23#define CLK_MGR_FREE_SHIFT		16
 24#define CLK_MGR_FREE_MASK		0x7
 25
 26#define SOCFPGA_MPU_FREE_CLK		"mpu_free_clk"
 27#define SOCFPGA_NOC_FREE_CLK		"noc_free_clk"
 28#define SOCFPGA_SDMMC_FREE_CLK		"sdmmc_free_clk"
 29#define to_socfpga_periph_clk(p) container_of(p, struct socfpga_periph_clk, hw.hw)
 30
 31static unsigned long clk_periclk_recalc_rate(struct clk_hw *hwclk,
 32					     unsigned long parent_rate)
 33{
 34	struct socfpga_periph_clk *socfpgaclk = to_socfpga_periph_clk(hwclk);
 35	u32 div;
 36
 37	if (socfpgaclk->fixed_div) {
 38		div = socfpgaclk->fixed_div;
 39	} else if (socfpgaclk->div_reg) {
 40		div = readl(socfpgaclk->div_reg) >> socfpgaclk->shift;
 41		div &= GENMASK(socfpgaclk->width - 1, 0);
 42		div += 1;
 43	} else {
 44		div = ((readl(socfpgaclk->hw.reg) & 0x7ff) + 1);
 45	}
 46
 47	return parent_rate / div;
 48}
 49
 50static u8 clk_periclk_get_parent(struct clk_hw *hwclk)
 51{
 52	struct socfpga_periph_clk *socfpgaclk = to_socfpga_periph_clk(hwclk);
 53	u32 clk_src;
 
 54
 55	clk_src = readl(socfpgaclk->hw.reg);
 56	if (streq(hwclk->init->name, SOCFPGA_MPU_FREE_CLK) ||
 57	    streq(hwclk->init->name, SOCFPGA_NOC_FREE_CLK) ||
 58	    streq(hwclk->init->name, SOCFPGA_SDMMC_FREE_CLK))
 59		return (clk_src >> CLK_MGR_FREE_SHIFT) &
 60			CLK_MGR_FREE_MASK;
 61	else
 62		return 0;
 63}
 64
 65static const struct clk_ops periclk_ops = {
 66	.recalc_rate = clk_periclk_recalc_rate,
 67	.get_parent = clk_periclk_get_parent,
 68};
 69
 70static __init void __socfpga_periph_init(struct device_node *node,
 71	const struct clk_ops *ops)
 72{
 73	u32 reg;
 74	struct clk *clk;
 75	struct socfpga_periph_clk *periph_clk;
 76	const char *clk_name = node->name;
 77	const char *parent_name[SOCFPGA_MAX_PARENTS];
 78	struct clk_init_data init;
 79	int rc;
 80	u32 fixed_div;
 81	u32 div_reg[3];
 82
 83	of_property_read_u32(node, "reg", &reg);
 84
 85	periph_clk = kzalloc(sizeof(*periph_clk), GFP_KERNEL);
 86	if (WARN_ON(!periph_clk))
 87		return;
 88
 89	periph_clk->hw.reg = clk_mgr_a10_base_addr + reg;
 90
 91	rc = of_property_read_u32_array(node, "div-reg", div_reg, 3);
 92	if (!rc) {
 93		periph_clk->div_reg = clk_mgr_a10_base_addr + div_reg[0];
 94		periph_clk->shift = div_reg[1];
 95		periph_clk->width = div_reg[2];
 96	} else {
 97		periph_clk->div_reg = NULL;
 98	}
 99
100	rc = of_property_read_u32(node, "fixed-divider", &fixed_div);
101	if (rc)
102		periph_clk->fixed_div = 0;
103	else
104		periph_clk->fixed_div = fixed_div;
105
106	of_property_read_string(node, "clock-output-names", &clk_name);
107
108	init.name = clk_name;
109	init.ops = ops;
110	init.flags = 0;
111
112	init.num_parents = of_clk_parent_fill(node, parent_name, SOCFPGA_MAX_PARENTS);
113	init.parent_names = parent_name;
114
115	periph_clk->hw.hw.init = &init;
116
117	clk = clk_register(NULL, &periph_clk->hw.hw);
118	if (WARN_ON(IS_ERR(clk))) {
119		kfree(periph_clk);
120		return;
 
 
121	}
122	rc = of_clk_add_provider(node, of_clk_src_simple_get, clk);
123	if (rc < 0) {
 
124		pr_err("Could not register clock provider for node:%s\n",
125		       clk_name);
126		goto err_clk;
127	}
128
129	return;
130
131err_clk:
132	clk_unregister(clk);
 
 
133}
134
135void __init socfpga_a10_periph_init(struct device_node *node)
136{
137	__socfpga_periph_init(node, &periclk_ops);
138}
v6.8
  1// SPDX-License-Identifier: GPL-2.0-only
  2/*
  3 * Copyright (C) 2015 Altera Corporation. All rights reserved
 
 
 
 
 
 
 
 
 
 
 
 
  4 */
  5#include <linux/slab.h>
  6#include <linux/clk-provider.h>
  7#include <linux/io.h>
  8#include <linux/of.h>
  9
 10#include "clk.h"
 11
 12#define CLK_MGR_FREE_SHIFT		16
 13#define CLK_MGR_FREE_MASK		0x7
 14
 15#define SOCFPGA_MPU_FREE_CLK		"mpu_free_clk"
 16#define SOCFPGA_NOC_FREE_CLK		"noc_free_clk"
 17#define SOCFPGA_SDMMC_FREE_CLK		"sdmmc_free_clk"
 18#define to_socfpga_periph_clk(p) container_of(p, struct socfpga_periph_clk, hw.hw)
 19
 20static unsigned long clk_periclk_recalc_rate(struct clk_hw *hwclk,
 21					     unsigned long parent_rate)
 22{
 23	struct socfpga_periph_clk *socfpgaclk = to_socfpga_periph_clk(hwclk);
 24	u32 div;
 25
 26	if (socfpgaclk->fixed_div) {
 27		div = socfpgaclk->fixed_div;
 28	} else if (socfpgaclk->div_reg) {
 29		div = readl(socfpgaclk->div_reg) >> socfpgaclk->shift;
 30		div &= GENMASK(socfpgaclk->width - 1, 0);
 31		div += 1;
 32	} else {
 33		div = ((readl(socfpgaclk->hw.reg) & 0x7ff) + 1);
 34	}
 35
 36	return parent_rate / div;
 37}
 38
 39static u8 clk_periclk_get_parent(struct clk_hw *hwclk)
 40{
 41	struct socfpga_periph_clk *socfpgaclk = to_socfpga_periph_clk(hwclk);
 42	u32 clk_src;
 43	const char *name = clk_hw_get_name(hwclk);
 44
 45	clk_src = readl(socfpgaclk->hw.reg);
 46	if (streq(name, SOCFPGA_MPU_FREE_CLK) ||
 47	    streq(name, SOCFPGA_NOC_FREE_CLK) ||
 48	    streq(name, SOCFPGA_SDMMC_FREE_CLK))
 49		return (clk_src >> CLK_MGR_FREE_SHIFT) &
 50			CLK_MGR_FREE_MASK;
 51	else
 52		return 0;
 53}
 54
 55static const struct clk_ops periclk_ops = {
 56	.recalc_rate = clk_periclk_recalc_rate,
 57	.get_parent = clk_periclk_get_parent,
 58};
 59
 60static void __init __socfpga_periph_init(struct device_node *node,
 61					 const struct clk_ops *ops)
 62{
 63	u32 reg;
 64	struct clk_hw *hw_clk;
 65	struct socfpga_periph_clk *periph_clk;
 66	const char *clk_name = node->name;
 67	const char *parent_name[SOCFPGA_MAX_PARENTS];
 68	struct clk_init_data init;
 69	int rc;
 70	u32 fixed_div;
 71	u32 div_reg[3];
 72
 73	of_property_read_u32(node, "reg", &reg);
 74
 75	periph_clk = kzalloc(sizeof(*periph_clk), GFP_KERNEL);
 76	if (WARN_ON(!periph_clk))
 77		return;
 78
 79	periph_clk->hw.reg = clk_mgr_a10_base_addr + reg;
 80
 81	rc = of_property_read_u32_array(node, "div-reg", div_reg, 3);
 82	if (!rc) {
 83		periph_clk->div_reg = clk_mgr_a10_base_addr + div_reg[0];
 84		periph_clk->shift = div_reg[1];
 85		periph_clk->width = div_reg[2];
 86	} else {
 87		periph_clk->div_reg = NULL;
 88	}
 89
 90	rc = of_property_read_u32(node, "fixed-divider", &fixed_div);
 91	if (rc)
 92		periph_clk->fixed_div = 0;
 93	else
 94		periph_clk->fixed_div = fixed_div;
 95
 96	of_property_read_string(node, "clock-output-names", &clk_name);
 97
 98	init.name = clk_name;
 99	init.ops = ops;
100	init.flags = 0;
101
102	init.num_parents = of_clk_parent_fill(node, parent_name, SOCFPGA_MAX_PARENTS);
103	init.parent_names = parent_name;
104
105	periph_clk->hw.hw.init = &init;
106
107	hw_clk = &periph_clk->hw.hw;
108
109	rc = clk_hw_register(NULL, hw_clk);
110	if (rc) {
111		pr_err("Could not register clock:%s\n", clk_name);
112		goto err_clk_hw_register;
113	}
114
115	rc = of_clk_add_hw_provider(node, of_clk_hw_simple_get, hw_clk);
116	if (rc) {
117		pr_err("Could not register clock provider for node:%s\n",
118		       clk_name);
119		goto err_of_clk_add_hw_provider;
120	}
121
122	return;
123
124err_of_clk_add_hw_provider:
125	clk_hw_unregister(hw_clk);
126err_clk_hw_register:
127	kfree(periph_clk);
128}
129
130void __init socfpga_a10_periph_init(struct device_node *node)
131{
132	__socfpga_periph_init(node, &periclk_ops);
133}