Path: blob/master/arch/sh/kernel/cpu/sh4a/clock-sh7343.c
17531 views
/*1* arch/sh/kernel/cpu/sh4a/clock-sh7343.c2*3* SH7343 clock framework support4*5* Copyright (C) 2009 Magnus Damm6*7* This program is free software; you can redistribute it and/or modify8* it under the terms of the GNU General Public License as published by9* the Free Software Foundation; either version 2 of the License10*11* This program is distributed in the hope that it will be useful,12* but WITHOUT ANY WARRANTY; without even the implied warranty of13* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the14* GNU General Public License for more details.15*16* You should have received a copy of the GNU General Public License17* along with this program; if not, write to the Free Software18* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA19*/20#include <linux/init.h>21#include <linux/kernel.h>22#include <linux/io.h>23#include <linux/clkdev.h>24#include <asm/clock.h>2526/* SH7343 registers */27#define FRQCR 0xa415000028#define VCLKCR 0xa415000429#define SCLKACR 0xa415000830#define SCLKBCR 0xa415000c31#define PLLCR 0xa415002432#define MSTPCR0 0xa415003033#define MSTPCR1 0xa415003434#define MSTPCR2 0xa415003835#define DLLFRQ 0xa41500503637/* Fixed 32 KHz root clock for RTC and Power Management purposes */38static struct clk r_clk = {39.rate = 32768,40};4142/*43* Default rate for the root input clock, reset this with clk_set_rate()44* from the platform code.45*/46struct clk extal_clk = {47.rate = 33333333,48};4950/* The dll block multiplies the 32khz r_clk, may be used instead of extal */51static unsigned long dll_recalc(struct clk *clk)52{53unsigned long mult;5455if (__raw_readl(PLLCR) & 0x1000)56mult = __raw_readl(DLLFRQ);57else58mult = 0;5960return clk->parent->rate * mult;61}6263static struct clk_ops dll_clk_ops = {64.recalc = dll_recalc,65};6667static struct clk dll_clk = {68.ops = &dll_clk_ops,69.parent = &r_clk,70.flags = CLK_ENABLE_ON_INIT,71};7273static unsigned long pll_recalc(struct clk *clk)74{75unsigned long mult = 1;7677if (__raw_readl(PLLCR) & 0x4000)78mult = (((__raw_readl(FRQCR) >> 24) & 0x1f) + 1);7980return clk->parent->rate * mult;81}8283static struct clk_ops pll_clk_ops = {84.recalc = pll_recalc,85};8687static struct clk pll_clk = {88.ops = &pll_clk_ops,89.flags = CLK_ENABLE_ON_INIT,90};9192struct clk *main_clks[] = {93&r_clk,94&extal_clk,95&dll_clk,96&pll_clk,97};9899static int multipliers[] = { 1, 2, 1, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1 };100static int divisors[] = { 1, 3, 2, 5, 3, 4, 5, 6, 8, 10, 12, 16, 20 };101102static struct clk_div_mult_table div4_div_mult_table = {103.divisors = divisors,104.nr_divisors = ARRAY_SIZE(divisors),105.multipliers = multipliers,106.nr_multipliers = ARRAY_SIZE(multipliers),107};108109static struct clk_div4_table div4_table = {110.div_mult_table = &div4_div_mult_table,111};112113enum { DIV4_I, DIV4_U, DIV4_SH, DIV4_B, DIV4_B3, DIV4_P,114DIV4_SIUA, DIV4_SIUB, DIV4_NR };115116#define DIV4(_reg, _bit, _mask, _flags) \117SH_CLK_DIV4(&pll_clk, _reg, _bit, _mask, _flags)118119struct clk div4_clks[DIV4_NR] = {120[DIV4_I] = DIV4(FRQCR, 20, 0x1fff, CLK_ENABLE_ON_INIT),121[DIV4_U] = DIV4(FRQCR, 16, 0x1fff, CLK_ENABLE_ON_INIT),122[DIV4_SH] = DIV4(FRQCR, 12, 0x1fff, CLK_ENABLE_ON_INIT),123[DIV4_B] = DIV4(FRQCR, 8, 0x1fff, CLK_ENABLE_ON_INIT),124[DIV4_B3] = DIV4(FRQCR, 4, 0x1fff, CLK_ENABLE_ON_INIT),125[DIV4_P] = DIV4(FRQCR, 0, 0x1fff, 0),126[DIV4_SIUA] = DIV4(SCLKACR, 0, 0x1fff, 0),127[DIV4_SIUB] = DIV4(SCLKBCR, 0, 0x1fff, 0),128};129130enum { DIV6_V, DIV6_NR };131132struct clk div6_clks[DIV6_NR] = {133[DIV6_V] = SH_CLK_DIV6(&pll_clk, VCLKCR, 0),134};135136#define MSTP(_parent, _reg, _bit, _flags) \137SH_CLK_MSTP32(_parent, _reg, _bit, _flags)138139enum { MSTP031, MSTP030, MSTP029, MSTP028, MSTP026,140MSTP023, MSTP022, MSTP021, MSTP020, MSTP019, MSTP018, MSTP017, MSTP016,141MSTP015, MSTP014, MSTP013, MSTP012, MSTP011, MSTP010,142MSTP007, MSTP006, MSTP005, MSTP004, MSTP003, MSTP002, MSTP001,143MSTP109, MSTP108, MSTP100,144MSTP225, MSTP224, MSTP218, MSTP217, MSTP216,145MSTP214, MSTP213, MSTP212, MSTP211, MSTP208,146MSTP206, MSTP205, MSTP204, MSTP203, MSTP202, MSTP201, MSTP200,147MSTP_NR };148149static struct clk mstp_clks[MSTP_NR] = {150[MSTP031] = MSTP(&div4_clks[DIV4_I], MSTPCR0, 31, CLK_ENABLE_ON_INIT),151[MSTP030] = MSTP(&div4_clks[DIV4_I], MSTPCR0, 30, CLK_ENABLE_ON_INIT),152[MSTP029] = MSTP(&div4_clks[DIV4_I], MSTPCR0, 29, CLK_ENABLE_ON_INIT),153[MSTP028] = MSTP(&div4_clks[DIV4_U], MSTPCR0, 28, CLK_ENABLE_ON_INIT),154[MSTP026] = MSTP(&div4_clks[DIV4_B], MSTPCR0, 26, CLK_ENABLE_ON_INIT),155[MSTP023] = MSTP(&div4_clks[DIV4_P], MSTPCR0, 23, 0),156[MSTP022] = MSTP(&div4_clks[DIV4_P], MSTPCR0, 22, 0),157[MSTP021] = MSTP(&div4_clks[DIV4_P], MSTPCR0, 21, 0),158[MSTP020] = MSTP(&div4_clks[DIV4_P], MSTPCR0, 20, 0),159[MSTP019] = MSTP(&div4_clks[DIV4_P], MSTPCR0, 19, 0),160[MSTP017] = MSTP(&div4_clks[DIV4_P], MSTPCR0, 17, 0),161[MSTP015] = MSTP(&div4_clks[DIV4_P], MSTPCR0, 15, 0),162[MSTP014] = MSTP(&r_clk, MSTPCR0, 14, 0),163[MSTP013] = MSTP(&r_clk, MSTPCR0, 13, 0),164[MSTP011] = MSTP(&div4_clks[DIV4_P], MSTPCR0, 11, 0),165[MSTP010] = MSTP(&div4_clks[DIV4_P], MSTPCR0, 10, 0),166[MSTP007] = MSTP(&div4_clks[DIV4_P], MSTPCR0, 7, 0),167[MSTP006] = MSTP(&div4_clks[DIV4_P], MSTPCR0, 6, 0),168[MSTP005] = MSTP(&div4_clks[DIV4_P], MSTPCR0, 5, 0),169[MSTP004] = MSTP(&div4_clks[DIV4_P], MSTPCR0, 4, 0),170[MSTP003] = MSTP(&div4_clks[DIV4_P], MSTPCR0, 3, 0),171[MSTP002] = MSTP(&div4_clks[DIV4_P], MSTPCR0, 2, 0),172[MSTP001] = MSTP(&div4_clks[DIV4_P], MSTPCR0, 1, 0),173174[MSTP109] = MSTP(&div4_clks[DIV4_P], MSTPCR1, 9, 0),175[MSTP108] = MSTP(&div4_clks[DIV4_P], MSTPCR1, 8, 0),176177[MSTP225] = MSTP(&div4_clks[DIV4_P], MSTPCR2, 25, 0),178[MSTP224] = MSTP(&div4_clks[DIV4_P], MSTPCR2, 24, 0),179[MSTP218] = MSTP(&div4_clks[DIV4_P], MSTPCR2, 18, 0),180[MSTP217] = MSTP(&div4_clks[DIV4_P], MSTPCR2, 17, 0),181[MSTP216] = MSTP(&div4_clks[DIV4_P], MSTPCR2, 16, 0),182[MSTP214] = MSTP(&r_clk, MSTPCR2, 14, 0),183[MSTP213] = MSTP(&div4_clks[DIV4_P], MSTPCR2, 13, 0),184[MSTP212] = MSTP(&div4_clks[DIV4_P], MSTPCR2, 12, 0),185[MSTP211] = MSTP(&div4_clks[DIV4_P], MSTPCR2, 11, 0),186[MSTP208] = MSTP(&div4_clks[DIV4_B], MSTPCR2, 8, 0),187[MSTP206] = MSTP(&div4_clks[DIV4_B], MSTPCR2, 6, CLK_ENABLE_ON_INIT),188[MSTP205] = MSTP(&div4_clks[DIV4_B], MSTPCR2, 5, 0),189[MSTP204] = MSTP(&div4_clks[DIV4_B], MSTPCR2, 4, 0),190[MSTP203] = MSTP(&div4_clks[DIV4_B], MSTPCR2, 3, 0),191[MSTP202] = MSTP(&div4_clks[DIV4_B], MSTPCR2, 2, CLK_ENABLE_ON_INIT),192[MSTP201] = MSTP(&div4_clks[DIV4_B], MSTPCR2, 1, CLK_ENABLE_ON_INIT),193[MSTP200] = MSTP(&div4_clks[DIV4_B], MSTPCR2, 0, 0),194};195196#define CLKDEV_CON_ID(_id, _clk) { .con_id = _id, .clk = _clk }197198static struct clk_lookup lookups[] = {199/* main clocks */200CLKDEV_CON_ID("rclk", &r_clk),201CLKDEV_CON_ID("extal", &extal_clk),202CLKDEV_CON_ID("dll_clk", &dll_clk),203CLKDEV_CON_ID("pll_clk", &pll_clk),204205/* DIV4 clocks */206CLKDEV_CON_ID("cpu_clk", &div4_clks[DIV4_I]),207CLKDEV_CON_ID("umem_clk", &div4_clks[DIV4_U]),208CLKDEV_CON_ID("shyway_clk", &div4_clks[DIV4_SH]),209CLKDEV_CON_ID("bus_clk", &div4_clks[DIV4_B]),210CLKDEV_CON_ID("b3_clk", &div4_clks[DIV4_B3]),211CLKDEV_CON_ID("peripheral_clk", &div4_clks[DIV4_P]),212CLKDEV_CON_ID("siua_clk", &div4_clks[DIV4_SIUA]),213CLKDEV_CON_ID("siub_clk", &div4_clks[DIV4_SIUB]),214215/* DIV6 clocks */216CLKDEV_CON_ID("video_clk", &div6_clks[DIV6_V]),217218/* MSTP32 clocks */219CLKDEV_CON_ID("tlb0", &mstp_clks[MSTP031]),220CLKDEV_CON_ID("ic0", &mstp_clks[MSTP030]),221CLKDEV_CON_ID("oc0", &mstp_clks[MSTP029]),222CLKDEV_CON_ID("uram0", &mstp_clks[MSTP028]),223CLKDEV_CON_ID("xymem0", &mstp_clks[MSTP026]),224CLKDEV_CON_ID("intc3", &mstp_clks[MSTP023]),225CLKDEV_CON_ID("intc0", &mstp_clks[MSTP022]),226CLKDEV_CON_ID("dmac0", &mstp_clks[MSTP021]),227CLKDEV_CON_ID("sh0", &mstp_clks[MSTP020]),228CLKDEV_CON_ID("hudi0", &mstp_clks[MSTP019]),229CLKDEV_CON_ID("ubc0", &mstp_clks[MSTP017]),230CLKDEV_CON_ID("tmu_fck", &mstp_clks[MSTP015]),231CLKDEV_CON_ID("cmt_fck", &mstp_clks[MSTP014]),232CLKDEV_CON_ID("rwdt0", &mstp_clks[MSTP013]),233CLKDEV_CON_ID("mfi0", &mstp_clks[MSTP011]),234CLKDEV_CON_ID("flctl0", &mstp_clks[MSTP010]),235{236/* SCIF0 */237.dev_id = "sh-sci.0",238.con_id = "sci_fck",239.clk = &mstp_clks[MSTP007],240}, {241/* SCIF1 */242.dev_id = "sh-sci.1",243.con_id = "sci_fck",244.clk = &mstp_clks[MSTP006],245}, {246/* SCIF2 */247.dev_id = "sh-sci.2",248.con_id = "sci_fck",249.clk = &mstp_clks[MSTP005],250}, {251/* SCIF3 */252.dev_id = "sh-sci.3",253.con_id = "sci_fck",254.clk = &mstp_clks[MSTP004],255},256CLKDEV_CON_ID("sio0", &mstp_clks[MSTP003]),257CLKDEV_CON_ID("siof0", &mstp_clks[MSTP002]),258CLKDEV_CON_ID("siof1", &mstp_clks[MSTP001]),259CLKDEV_CON_ID("i2c0", &mstp_clks[MSTP109]),260CLKDEV_CON_ID("i2c1", &mstp_clks[MSTP108]),261CLKDEV_CON_ID("tpu0", &mstp_clks[MSTP225]),262CLKDEV_CON_ID("irda0", &mstp_clks[MSTP224]),263CLKDEV_CON_ID("sdhi0", &mstp_clks[MSTP218]),264CLKDEV_CON_ID("mmcif0", &mstp_clks[MSTP217]),265CLKDEV_CON_ID("sim0", &mstp_clks[MSTP216]),266CLKDEV_CON_ID("keysc0", &mstp_clks[MSTP214]),267CLKDEV_CON_ID("tsif0", &mstp_clks[MSTP213]),268CLKDEV_CON_ID("s3d40", &mstp_clks[MSTP212]),269CLKDEV_CON_ID("usbf0", &mstp_clks[MSTP211]),270CLKDEV_CON_ID("siu0", &mstp_clks[MSTP208]),271CLKDEV_CON_ID("jpu0", &mstp_clks[MSTP206]),272CLKDEV_CON_ID("vou0", &mstp_clks[MSTP205]),273CLKDEV_CON_ID("beu0", &mstp_clks[MSTP204]),274CLKDEV_CON_ID("ceu0", &mstp_clks[MSTP203]),275CLKDEV_CON_ID("veu0", &mstp_clks[MSTP202]),276CLKDEV_CON_ID("vpu0", &mstp_clks[MSTP201]),277CLKDEV_CON_ID("lcdc0", &mstp_clks[MSTP200]),278};279280int __init arch_clk_init(void)281{282int k, ret = 0;283284/* autodetect extal or dll configuration */285if (__raw_readl(PLLCR) & 0x1000)286pll_clk.parent = &dll_clk;287else288pll_clk.parent = &extal_clk;289290for (k = 0; !ret && (k < ARRAY_SIZE(main_clks)); k++)291ret = clk_register(main_clks[k]);292293clkdev_add_table(lookups, ARRAY_SIZE(lookups));294295if (!ret)296ret = sh_clk_div4_register(div4_clks, DIV4_NR, &div4_table);297298if (!ret)299ret = sh_clk_div6_register(div6_clks, DIV6_NR);300301if (!ret)302ret = sh_clk_mstp32_register(mstp_clks, MSTP_NR);303304return ret;305}306307308