Path: blob/master/arch/sh/kernel/cpu/sh2a/clock-sh7264.c
26495 views
// SPDX-License-Identifier: GPL-2.01/*2* arch/sh/kernel/cpu/sh2a/clock-sh7264.c3*4* SH7264 clock framework support5*6* Copyright (C) 2012 Phil Edworthy7*/8#include <linux/init.h>9#include <linux/kernel.h>10#include <linux/io.h>11#include <linux/clkdev.h>12#include <asm/clock.h>1314/* SH7264 registers */15#define FRQCR 0xfffe001016#define STBCR3 0xfffe040817#define STBCR4 0xfffe040c18#define STBCR5 0xfffe041019#define STBCR6 0xfffe041420#define STBCR7 0xfffe041821#define STBCR8 0xfffe041c2223static const unsigned int pll1rate[] = {8, 12};2425static unsigned int pll1_div;2627/* Fixed 32 KHz root clock for RTC */28static struct clk r_clk = {29.rate = 32768,30};3132/*33* Default rate for the root input clock, reset this with clk_set_rate()34* from the platform code.35*/36static struct clk extal_clk = {37.rate = 18000000,38};3940static unsigned long pll_recalc(struct clk *clk)41{42unsigned long rate = clk->parent->rate / pll1_div;43return rate * pll1rate[(__raw_readw(FRQCR) >> 8) & 1];44}4546static struct sh_clk_ops pll_clk_ops = {47.recalc = pll_recalc,48};4950static struct clk pll_clk = {51.ops = &pll_clk_ops,52.parent = &extal_clk,53.flags = CLK_ENABLE_ON_INIT,54};5556struct clk *main_clks[] = {57&r_clk,58&extal_clk,59&pll_clk,60};6162static int div2[] = { 1, 2, 3, 4, 6, 8, 12 };6364static struct clk_div_mult_table div4_div_mult_table = {65.divisors = div2,66.nr_divisors = ARRAY_SIZE(div2),67};6869static struct clk_div4_table div4_table = {70.div_mult_table = &div4_div_mult_table,71};7273enum { DIV4_I, DIV4_P,74DIV4_NR };7576#define DIV4(_reg, _bit, _mask, _flags) \77SH_CLK_DIV4(&pll_clk, _reg, _bit, _mask, _flags)7879/* The mask field specifies the div2 entries that are valid */80struct clk div4_clks[DIV4_NR] = {81[DIV4_I] = DIV4(FRQCR, 4, 0x7, CLK_ENABLE_REG_16BIT82| CLK_ENABLE_ON_INIT),83[DIV4_P] = DIV4(FRQCR, 0, 0x78, CLK_ENABLE_REG_16BIT),84};8586enum { MSTP77, MSTP74, MSTP72,87MSTP60,88MSTP35, MSTP34, MSTP33, MSTP32, MSTP30,89MSTP_NR };9091static struct clk mstp_clks[MSTP_NR] = {92[MSTP77] = SH_CLK_MSTP8(&div4_clks[DIV4_P], STBCR7, 7, 0), /* SCIF */93[MSTP74] = SH_CLK_MSTP8(&div4_clks[DIV4_P], STBCR7, 4, 0), /* VDC */94[MSTP72] = SH_CLK_MSTP8(&div4_clks[DIV4_P], STBCR7, 2, 0), /* CMT */95[MSTP60] = SH_CLK_MSTP8(&div4_clks[DIV4_P], STBCR6, 0, 0), /* USB */96[MSTP35] = SH_CLK_MSTP8(&div4_clks[DIV4_P], STBCR3, 6, 0), /* MTU2 */97[MSTP34] = SH_CLK_MSTP8(&div4_clks[DIV4_P], STBCR3, 4, 0), /* SDHI0 */98[MSTP33] = SH_CLK_MSTP8(&div4_clks[DIV4_P], STBCR3, 3, 0), /* SDHI1 */99[MSTP32] = SH_CLK_MSTP8(&div4_clks[DIV4_P], STBCR3, 2, 0), /* ADC */100[MSTP30] = SH_CLK_MSTP8(&r_clk, STBCR3, 0, 0), /* RTC */101};102103static struct clk_lookup lookups[] = {104/* main clocks */105CLKDEV_CON_ID("rclk", &r_clk),106CLKDEV_CON_ID("extal", &extal_clk),107CLKDEV_CON_ID("pll_clk", &pll_clk),108109/* DIV4 clocks */110CLKDEV_CON_ID("cpu_clk", &div4_clks[DIV4_I]),111CLKDEV_CON_ID("peripheral_clk", &div4_clks[DIV4_P]),112113/* MSTP clocks */114CLKDEV_ICK_ID("fck", "sh-sci.0", &mstp_clks[MSTP77]),115CLKDEV_ICK_ID("fck", "sh-sci.1", &mstp_clks[MSTP77]),116CLKDEV_ICK_ID("fck", "sh-sci.2", &mstp_clks[MSTP77]),117CLKDEV_ICK_ID("fck", "sh-sci.3", &mstp_clks[MSTP77]),118CLKDEV_ICK_ID("fck", "sh-sci.4", &mstp_clks[MSTP77]),119CLKDEV_ICK_ID("fck", "sh-sci.5", &mstp_clks[MSTP77]),120CLKDEV_ICK_ID("fck", "sh-sci.6", &mstp_clks[MSTP77]),121CLKDEV_ICK_ID("fck", "sh-sci.7", &mstp_clks[MSTP77]),122CLKDEV_CON_ID("vdc3", &mstp_clks[MSTP74]),123CLKDEV_ICK_ID("fck", "sh-cmt-16.0", &mstp_clks[MSTP72]),124CLKDEV_CON_ID("usb0", &mstp_clks[MSTP60]),125CLKDEV_ICK_ID("fck", "sh-mtu2", &mstp_clks[MSTP35]),126CLKDEV_CON_ID("sdhi0", &mstp_clks[MSTP34]),127CLKDEV_CON_ID("sdhi1", &mstp_clks[MSTP33]),128CLKDEV_CON_ID("adc0", &mstp_clks[MSTP32]),129CLKDEV_CON_ID("rtc0", &mstp_clks[MSTP30]),130};131132int __init arch_clk_init(void)133{134int k, ret = 0;135136if (test_mode_pin(MODE_PIN0)) {137if (test_mode_pin(MODE_PIN1))138pll1_div = 3;139else140pll1_div = 4;141} else142pll1_div = 1;143144for (k = 0; !ret && (k < ARRAY_SIZE(main_clks)); k++)145ret = clk_register(main_clks[k]);146147clkdev_add_table(lookups, ARRAY_SIZE(lookups));148149if (!ret)150ret = sh_clk_div4_register(div4_clks, DIV4_NR, &div4_table);151152if (!ret)153ret = sh_clk_mstp_register(mstp_clks, MSTP_NR);154155return ret;156}157158159