1 /* linux/arch/arm/mach-s3c2416/clock.c
3 * Copyright (c) 2010 Simtec Electronics
4 * Copyright (c) 2010 Ben Dooks <ben-linux@fluff.org>
6 * S3C2416 Clock control support
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
14 #include <linux/init.h>
15 #include <linux/clk.h>
17 #include <plat/s3c2416.h>
18 #include <plat/s3c2443.h>
19 #include <plat/clock.h>
20 #include <plat/clock-clksrc.h>
23 #include <plat/cpu-freq.h>
26 #include <asm/mach/map.h>
28 #include <mach/regs-clock.h>
29 #include <mach/regs-s3c2443-clock.h>
33 * this clock is sourced from msysclk and can have a number of
34 * divider values applied to it to then be fed into armclk.
35 * The real clock definition is done in s3c2443-clock.c,
36 * only the armdiv divisor table must be defined here.
39 static unsigned int armdiv
[8] = {
48 static struct clksrc_clk hsspi_eplldiv
= {
50 .name
= "hsspi-eplldiv",
51 .parent
= &clk_esysclk
.clk
,
53 .enable
= s3c2443_clkcon_enable_s
,
55 .reg_div
= { .reg
= S3C2443_CLKDIV1
, .size
= 2, .shift
= 24 },
58 static struct clk
*hsspi_sources
[] = {
59 [0] = &hsspi_eplldiv
.clk
,
60 [1] = NULL
, /* to fix */
63 static struct clksrc_clk hsspi_mux
= {
67 .sources
= &(struct clksrc_sources
) {
68 .sources
= hsspi_sources
,
69 .nr_sources
= ARRAY_SIZE(hsspi_sources
),
71 .reg_src
= { .reg
= S3C2443_CLKSRC
, .size
= 1, .shift
= 18 },
74 static struct clksrc_clk hsmmc_div
[] = {
78 .devname
= "s3c-sdhci.0",
79 .parent
= &clk_esysclk
.clk
,
81 .reg_div
= { .reg
= S3C2416_CLKDIV2
, .size
= 2, .shift
= 6 },
86 .devname
= "s3c-sdhci.1",
87 .parent
= &clk_esysclk
.clk
,
89 .reg_div
= { .reg
= S3C2443_CLKDIV1
, .size
= 2, .shift
= 6 },
93 static struct clksrc_clk hsmmc_mux0
= {
96 .devname
= "s3c-sdhci.0",
98 .enable
= s3c2443_clkcon_enable_s
,
100 .sources
= &(struct clksrc_sources
) {
102 .sources
= (struct clk
* []) {
103 [0] = &hsmmc_div
[0].clk
,
104 [1] = NULL
, /* to fix */
107 .reg_src
= { .reg
= S3C2443_CLKSRC
, .size
= 1, .shift
= 16 },
110 static struct clksrc_clk hsmmc_mux1
= {
113 .devname
= "s3c-sdhci.1",
114 .ctrlbit
= (1 << 12),
115 .enable
= s3c2443_clkcon_enable_s
,
117 .sources
= &(struct clksrc_sources
) {
119 .sources
= (struct clk
* []) {
120 [0] = &hsmmc_div
[1].clk
,
121 [1] = NULL
, /* to fix */
124 .reg_src
= { .reg
= S3C2443_CLKSRC
, .size
= 1, .shift
= 17 },
127 static struct clk hsmmc0_clk
= {
129 .devname
= "s3c-sdhci.0",
131 .enable
= s3c2443_clkcon_enable_h
,
132 .ctrlbit
= S3C2416_HCLKCON_HSMMC0
,
135 void __init_or_cpufreq
s3c2416_setup_clocks(void)
137 s3c2443_common_setup_clocks(s3c2416_get_pll
);
141 static struct clksrc_clk
*clksrcs
[] __initdata
= {
150 static struct clk_lookup s3c2416_clk_lookup
[] = {
151 CLKDEV_INIT("s3c-sdhci.0", "mmc_busclk.0", &hsmmc0_clk
),
152 CLKDEV_INIT("s3c-sdhci.0", "mmc_busclk.2", &hsmmc_mux0
.clk
),
153 CLKDEV_INIT("s3c-sdhci.1", "mmc_busclk.2", &hsmmc_mux1
.clk
),
156 void __init
s3c2416_init_clocks(int xtal
)
158 u32 epllcon
= __raw_readl(S3C2443_EPLLCON
);
159 u32 epllcon1
= __raw_readl(S3C2443_EPLLCON
+4);
162 /* s3c2416 EPLL compatible with s3c64xx */
163 clk_epll
.rate
= s3c_get_pll6553x(xtal
, epllcon
, epllcon1
);
165 clk_epll
.parent
= &clk_epllref
.clk
;
167 s3c2443_common_init_clocks(xtal
, s3c2416_get_pll
,
168 armdiv
, ARRAY_SIZE(armdiv
),
169 S3C2416_CLKDIV0_ARMDIV_MASK
);
171 for (ptr
= 0; ptr
< ARRAY_SIZE(clksrcs
); ptr
++)
172 s3c_register_clksrc(clksrcs
[ptr
], 1);
174 s3c24xx_register_clock(&hsmmc0_clk
);
175 clkdev_add_table(s3c2416_clk_lookup
, ARRAY_SIZE(s3c2416_clk_lookup
));