Path: blob/master/arch/sh/kernel/cpu/sh4a/clock-sh7343.c
26498 views
// SPDX-License-Identifier: GPL-2.01/*2* arch/sh/kernel/cpu/sh4a/clock-sh7343.c3*4* SH7343 clock framework support5*6* Copyright (C) 2009 Magnus Damm7*/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/* SH7343 registers */15#define FRQCR 0xa415000016#define VCLKCR 0xa415000417#define SCLKACR 0xa415000818#define SCLKBCR 0xa415000c19#define PLLCR 0xa415002420#define MSTPCR0 0xa415003021#define MSTPCR1 0xa415003422#define MSTPCR2 0xa415003823#define DLLFRQ 0xa41500502425/* Fixed 32 KHz root clock for RTC and Power Management purposes */26static struct clk r_clk = {27.rate = 32768,28};2930/*31* Default rate for the root input clock, reset this with clk_set_rate()32* from the platform code.33*/34struct clk extal_clk = {35.rate = 33333333,36};3738/* The dll block multiplies the 32khz r_clk, may be used instead of extal */39static unsigned long dll_recalc(struct clk *clk)40{41unsigned long mult;4243if (__raw_readl(PLLCR) & 0x1000)44mult = __raw_readl(DLLFRQ);45else46mult = 0;4748return clk->parent->rate * mult;49}5051static struct sh_clk_ops dll_clk_ops = {52.recalc = dll_recalc,53};5455static struct clk dll_clk = {56.ops = &dll_clk_ops,57.parent = &r_clk,58.flags = CLK_ENABLE_ON_INIT,59};6061static unsigned long pll_recalc(struct clk *clk)62{63unsigned long mult = 1;6465if (__raw_readl(PLLCR) & 0x4000)66mult = (((__raw_readl(FRQCR) >> 24) & 0x1f) + 1);6768return clk->parent->rate * mult;69}7071static struct sh_clk_ops pll_clk_ops = {72.recalc = pll_recalc,73};7475static struct clk pll_clk = {76.ops = &pll_clk_ops,77.flags = CLK_ENABLE_ON_INIT,78};7980struct clk *main_clks[] = {81&r_clk,82&extal_clk,83&dll_clk,84&pll_clk,85};8687static int multipliers[] = { 1, 2, 1, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1 };88static int divisors[] = { 1, 3, 2, 5, 3, 4, 5, 6, 8, 10, 12, 16, 20 };8990static struct clk_div_mult_table div4_div_mult_table = {91.divisors = divisors,92.nr_divisors = ARRAY_SIZE(divisors),93.multipliers = multipliers,94.nr_multipliers = ARRAY_SIZE(multipliers),95};9697static struct clk_div4_table div4_table = {98.div_mult_table = &div4_div_mult_table,99};100101enum { DIV4_I, DIV4_U, DIV4_SH, DIV4_B, DIV4_B3, DIV4_P,102DIV4_SIUA, DIV4_SIUB, DIV4_NR };103104#define DIV4(_reg, _bit, _mask, _flags) \105SH_CLK_DIV4(&pll_clk, _reg, _bit, _mask, _flags)106107struct clk div4_clks[DIV4_NR] = {108[DIV4_I] = DIV4(FRQCR, 20, 0x1fff, CLK_ENABLE_ON_INIT),109[DIV4_U] = DIV4(FRQCR, 16, 0x1fff, CLK_ENABLE_ON_INIT),110[DIV4_SH] = DIV4(FRQCR, 12, 0x1fff, CLK_ENABLE_ON_INIT),111[DIV4_B] = DIV4(FRQCR, 8, 0x1fff, CLK_ENABLE_ON_INIT),112[DIV4_B3] = DIV4(FRQCR, 4, 0x1fff, CLK_ENABLE_ON_INIT),113[DIV4_P] = DIV4(FRQCR, 0, 0x1fff, 0),114[DIV4_SIUA] = DIV4(SCLKACR, 0, 0x1fff, 0),115[DIV4_SIUB] = DIV4(SCLKBCR, 0, 0x1fff, 0),116};117118enum { DIV6_V, DIV6_NR };119120struct clk div6_clks[DIV6_NR] = {121[DIV6_V] = SH_CLK_DIV6(&pll_clk, VCLKCR, 0),122};123124#define MSTP(_parent, _reg, _bit, _flags) \125SH_CLK_MSTP32(_parent, _reg, _bit, _flags)126127enum { MSTP031, MSTP030, MSTP029, MSTP028, MSTP026,128MSTP023, MSTP022, MSTP021, MSTP020, MSTP019, MSTP018, MSTP017, MSTP016,129MSTP015, MSTP014, MSTP013, MSTP012, MSTP011, MSTP010,130MSTP007, MSTP006, MSTP005, MSTP004, MSTP003, MSTP002, MSTP001,131MSTP109, MSTP108, MSTP100,132MSTP225, MSTP224, MSTP218, MSTP217, MSTP216,133MSTP214, MSTP213, MSTP212, MSTP211, MSTP208,134MSTP206, MSTP205, MSTP204, MSTP203, MSTP202, MSTP201, MSTP200,135MSTP_NR };136137static struct clk mstp_clks[MSTP_NR] = {138[MSTP031] = MSTP(&div4_clks[DIV4_I], MSTPCR0, 31, CLK_ENABLE_ON_INIT),139[MSTP030] = MSTP(&div4_clks[DIV4_I], MSTPCR0, 30, CLK_ENABLE_ON_INIT),140[MSTP029] = MSTP(&div4_clks[DIV4_I], MSTPCR0, 29, CLK_ENABLE_ON_INIT),141[MSTP028] = MSTP(&div4_clks[DIV4_U], MSTPCR0, 28, CLK_ENABLE_ON_INIT),142[MSTP026] = MSTP(&div4_clks[DIV4_B], MSTPCR0, 26, CLK_ENABLE_ON_INIT),143[MSTP023] = MSTP(&div4_clks[DIV4_P], MSTPCR0, 23, 0),144[MSTP022] = MSTP(&div4_clks[DIV4_P], MSTPCR0, 22, 0),145[MSTP021] = MSTP(&div4_clks[DIV4_P], MSTPCR0, 21, 0),146[MSTP020] = MSTP(&div4_clks[DIV4_P], MSTPCR0, 20, 0),147[MSTP019] = MSTP(&div4_clks[DIV4_P], MSTPCR0, 19, 0),148[MSTP017] = MSTP(&div4_clks[DIV4_P], MSTPCR0, 17, 0),149[MSTP015] = MSTP(&div4_clks[DIV4_P], MSTPCR0, 15, 0),150[MSTP014] = MSTP(&r_clk, MSTPCR0, 14, 0),151[MSTP013] = MSTP(&r_clk, MSTPCR0, 13, 0),152[MSTP011] = MSTP(&div4_clks[DIV4_P], MSTPCR0, 11, 0),153[MSTP010] = MSTP(&div4_clks[DIV4_P], MSTPCR0, 10, 0),154[MSTP007] = MSTP(&div4_clks[DIV4_P], MSTPCR0, 7, 0),155[MSTP006] = MSTP(&div4_clks[DIV4_P], MSTPCR0, 6, 0),156[MSTP005] = MSTP(&div4_clks[DIV4_P], MSTPCR0, 5, 0),157[MSTP004] = MSTP(&div4_clks[DIV4_P], MSTPCR0, 4, 0),158[MSTP003] = MSTP(&div4_clks[DIV4_P], MSTPCR0, 3, 0),159[MSTP002] = MSTP(&div4_clks[DIV4_P], MSTPCR0, 2, 0),160[MSTP001] = MSTP(&div4_clks[DIV4_P], MSTPCR0, 1, 0),161162[MSTP109] = MSTP(&div4_clks[DIV4_P], MSTPCR1, 9, 0),163[MSTP108] = MSTP(&div4_clks[DIV4_P], MSTPCR1, 8, 0),164165[MSTP225] = MSTP(&div4_clks[DIV4_P], MSTPCR2, 25, 0),166[MSTP224] = MSTP(&div4_clks[DIV4_P], MSTPCR2, 24, 0),167[MSTP218] = MSTP(&div4_clks[DIV4_P], MSTPCR2, 18, 0),168[MSTP217] = MSTP(&div4_clks[DIV4_P], MSTPCR2, 17, 0),169[MSTP216] = MSTP(&div4_clks[DIV4_P], MSTPCR2, 16, 0),170[MSTP214] = MSTP(&r_clk, MSTPCR2, 14, 0),171[MSTP213] = MSTP(&div4_clks[DIV4_P], MSTPCR2, 13, 0),172[MSTP212] = MSTP(&div4_clks[DIV4_P], MSTPCR2, 12, 0),173[MSTP211] = MSTP(&div4_clks[DIV4_P], MSTPCR2, 11, 0),174[MSTP208] = MSTP(&div4_clks[DIV4_B], MSTPCR2, 8, 0),175[MSTP206] = MSTP(&div4_clks[DIV4_B], MSTPCR2, 6, CLK_ENABLE_ON_INIT),176[MSTP205] = MSTP(&div4_clks[DIV4_B], MSTPCR2, 5, 0),177[MSTP204] = MSTP(&div4_clks[DIV4_B], MSTPCR2, 4, 0),178[MSTP203] = MSTP(&div4_clks[DIV4_B], MSTPCR2, 3, 0),179[MSTP202] = MSTP(&div4_clks[DIV4_B], MSTPCR2, 2, CLK_ENABLE_ON_INIT),180[MSTP201] = MSTP(&div4_clks[DIV4_B], MSTPCR2, 1, CLK_ENABLE_ON_INIT),181[MSTP200] = MSTP(&div4_clks[DIV4_B], MSTPCR2, 0, 0),182};183184static struct clk_lookup lookups[] = {185/* main clocks */186CLKDEV_CON_ID("rclk", &r_clk),187CLKDEV_CON_ID("extal", &extal_clk),188CLKDEV_CON_ID("dll_clk", &dll_clk),189CLKDEV_CON_ID("pll_clk", &pll_clk),190191/* DIV4 clocks */192CLKDEV_CON_ID("cpu_clk", &div4_clks[DIV4_I]),193CLKDEV_CON_ID("umem_clk", &div4_clks[DIV4_U]),194CLKDEV_CON_ID("shyway_clk", &div4_clks[DIV4_SH]),195CLKDEV_CON_ID("bus_clk", &div4_clks[DIV4_B]),196CLKDEV_CON_ID("b3_clk", &div4_clks[DIV4_B3]),197CLKDEV_CON_ID("peripheral_clk", &div4_clks[DIV4_P]),198CLKDEV_CON_ID("siua_clk", &div4_clks[DIV4_SIUA]),199CLKDEV_CON_ID("siub_clk", &div4_clks[DIV4_SIUB]),200201/* DIV6 clocks */202CLKDEV_CON_ID("video_clk", &div6_clks[DIV6_V]),203204/* MSTP32 clocks */205CLKDEV_CON_ID("tlb0", &mstp_clks[MSTP031]),206CLKDEV_CON_ID("ic0", &mstp_clks[MSTP030]),207CLKDEV_CON_ID("oc0", &mstp_clks[MSTP029]),208CLKDEV_CON_ID("uram0", &mstp_clks[MSTP028]),209CLKDEV_CON_ID("xymem0", &mstp_clks[MSTP026]),210CLKDEV_CON_ID("intc3", &mstp_clks[MSTP023]),211CLKDEV_CON_ID("intc0", &mstp_clks[MSTP022]),212CLKDEV_CON_ID("dmac0", &mstp_clks[MSTP021]),213CLKDEV_CON_ID("sh0", &mstp_clks[MSTP020]),214CLKDEV_CON_ID("hudi0", &mstp_clks[MSTP019]),215CLKDEV_CON_ID("ubc0", &mstp_clks[MSTP017]),216CLKDEV_CON_ID("tmu_fck", &mstp_clks[MSTP015]),217CLKDEV_ICK_ID("fck", "sh-cmt-32.0", &mstp_clks[MSTP014]),218CLKDEV_CON_ID("rwdt0", &mstp_clks[MSTP013]),219CLKDEV_CON_ID("mfi0", &mstp_clks[MSTP011]),220CLKDEV_CON_ID("flctl0", &mstp_clks[MSTP010]),221222CLKDEV_ICK_ID("fck", "sh-sci.0", &mstp_clks[MSTP007]),223CLKDEV_ICK_ID("fck", "sh-sci.1", &mstp_clks[MSTP006]),224CLKDEV_ICK_ID("fck", "sh-sci.2", &mstp_clks[MSTP005]),225CLKDEV_ICK_ID("fck", "sh-sci.3", &mstp_clks[MSTP004]),226227CLKDEV_CON_ID("sio0", &mstp_clks[MSTP003]),228CLKDEV_CON_ID("siof0", &mstp_clks[MSTP002]),229CLKDEV_CON_ID("siof1", &mstp_clks[MSTP001]),230CLKDEV_DEV_ID("i2c-sh_mobile.0", &mstp_clks[MSTP109]),231CLKDEV_DEV_ID("i2c-sh_mobile.1", &mstp_clks[MSTP108]),232CLKDEV_CON_ID("tpu0", &mstp_clks[MSTP225]),233CLKDEV_CON_ID("irda0", &mstp_clks[MSTP224]),234CLKDEV_CON_ID("sdhi0", &mstp_clks[MSTP218]),235CLKDEV_CON_ID("mmcif0", &mstp_clks[MSTP217]),236CLKDEV_CON_ID("sim0", &mstp_clks[MSTP216]),237CLKDEV_CON_ID("keysc0", &mstp_clks[MSTP214]),238CLKDEV_CON_ID("tsif0", &mstp_clks[MSTP213]),239CLKDEV_CON_ID("s3d40", &mstp_clks[MSTP212]),240CLKDEV_CON_ID("usbf0", &mstp_clks[MSTP211]),241CLKDEV_CON_ID("siu0", &mstp_clks[MSTP208]),242CLKDEV_CON_ID("jpu0", &mstp_clks[MSTP206]),243CLKDEV_CON_ID("vou0", &mstp_clks[MSTP205]),244CLKDEV_CON_ID("beu0", &mstp_clks[MSTP204]),245CLKDEV_CON_ID("ceu0", &mstp_clks[MSTP203]),246CLKDEV_CON_ID("veu0", &mstp_clks[MSTP202]),247CLKDEV_CON_ID("vpu0", &mstp_clks[MSTP201]),248CLKDEV_CON_ID("lcdc0", &mstp_clks[MSTP200]),249};250251int __init arch_clk_init(void)252{253int k, ret = 0;254255/* autodetect extal or dll configuration */256if (__raw_readl(PLLCR) & 0x1000)257pll_clk.parent = &dll_clk;258else259pll_clk.parent = &extal_clk;260261for (k = 0; !ret && (k < ARRAY_SIZE(main_clks)); k++)262ret = clk_register(main_clks[k]);263264clkdev_add_table(lookups, ARRAY_SIZE(lookups));265266if (!ret)267ret = sh_clk_div4_register(div4_clks, DIV4_NR, &div4_table);268269if (!ret)270ret = sh_clk_div6_register(div6_clks, DIV6_NR);271272if (!ret)273ret = sh_clk_mstp_register(mstp_clks, MSTP_NR);274275return ret;276}277278279