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/clock.h>
19 #include <plat/clock-clksrc.h>
22 #include <plat/cpu-freq.h>
25 #include <asm/mach/map.h>
27 #include <mach/regs-clock.h>
28 #include <mach/regs-s3c2443-clock.h>
32 * this clock is sourced from msysclk and can have a number of
33 * divider values applied to it to then be fed into armclk.
34 * The real clock definition is done in s3c2443-clock.c,
35 * only the armdiv divisor table must be defined here.
38 static unsigned int armdiv
[8] = {
47 static struct clksrc_clk hsspi_eplldiv
= {
49 .name
= "hsspi-eplldiv",
50 .parent
= &clk_esysclk
.clk
,
52 .enable
= s3c2443_clkcon_enable_s
,
54 .reg_div
= { .reg
= S3C2443_CLKDIV1
, .size
= 2, .shift
= 24 },
57 static struct clk
*hsspi_sources
[] = {
58 [0] = &hsspi_eplldiv
.clk
,
59 [1] = NULL
, /* to fix */
62 static struct clksrc_clk hsspi_mux
= {
66 .sources
= &(struct clksrc_sources
) {
67 .sources
= hsspi_sources
,
68 .nr_sources
= ARRAY_SIZE(hsspi_sources
),
70 .reg_src
= { .reg
= S3C2443_CLKSRC
, .size
= 1, .shift
= 18 },
73 static struct clksrc_clk hsmmc_div
[] = {
77 .devname
= "s3c-sdhci.0",
78 .parent
= &clk_esysclk
.clk
,
80 .reg_div
= { .reg
= S3C2416_CLKDIV2
, .size
= 2, .shift
= 6 },
85 .devname
= "s3c-sdhci.1",
86 .parent
= &clk_esysclk
.clk
,
88 .reg_div
= { .reg
= S3C2443_CLKDIV1
, .size
= 2, .shift
= 6 },
92 static struct clksrc_clk hsmmc_mux0
= {
95 .devname
= "s3c-sdhci.0",
97 .enable
= s3c2443_clkcon_enable_s
,
99 .sources
= &(struct clksrc_sources
) {
101 .sources
= (struct clk
* []) {
102 [0] = &hsmmc_div
[0].clk
,
103 [1] = NULL
, /* to fix */
106 .reg_src
= { .reg
= S3C2443_CLKSRC
, .size
= 1, .shift
= 16 },
109 static struct clksrc_clk hsmmc_mux1
= {
112 .devname
= "s3c-sdhci.1",
113 .ctrlbit
= (1 << 12),
114 .enable
= s3c2443_clkcon_enable_s
,
116 .sources
= &(struct clksrc_sources
) {
118 .sources
= (struct clk
* []) {
119 [0] = &hsmmc_div
[1].clk
,
120 [1] = NULL
, /* to fix */
123 .reg_src
= { .reg
= S3C2443_CLKSRC
, .size
= 1, .shift
= 17 },
126 static struct clk hsmmc0_clk
= {
128 .devname
= "s3c-sdhci.0",
130 .enable
= s3c2443_clkcon_enable_h
,
131 .ctrlbit
= S3C2416_HCLKCON_HSMMC0
,
134 static struct clksrc_clk
*clksrcs
[] __initdata
= {
143 static struct clk_lookup s3c2416_clk_lookup
[] = {
144 CLKDEV_INIT("s3c-sdhci.0", "mmc_busclk.0", &hsmmc0_clk
),
145 CLKDEV_INIT("s3c-sdhci.0", "mmc_busclk.2", &hsmmc_mux0
.clk
),
146 CLKDEV_INIT("s3c-sdhci.1", "mmc_busclk.2", &hsmmc_mux1
.clk
),
147 /* s3c2443-spi.0 is used on s3c2416 and s3c2450 as well */
148 CLKDEV_INIT("s3c2443-spi.0", "spi_busclk2", &hsspi_mux
.clk
),
151 void __init
s3c2416_init_clocks(int xtal
)
153 u32 epllcon
= __raw_readl(S3C2443_EPLLCON
);
154 u32 epllcon1
= __raw_readl(S3C2443_EPLLCON
+4);
157 /* s3c2416 EPLL compatible with s3c64xx */
158 clk_epll
.rate
= s3c_get_pll6553x(xtal
, epllcon
, epllcon1
);
160 clk_epll
.parent
= &clk_epllref
.clk
;
162 s3c2443_common_init_clocks(xtal
, s3c2416_get_pll
,
163 armdiv
, ARRAY_SIZE(armdiv
),
164 S3C2416_CLKDIV0_ARMDIV_MASK
);
166 for (ptr
= 0; ptr
< ARRAY_SIZE(clksrcs
); ptr
++)
167 s3c_register_clksrc(clksrcs
[ptr
], 1);
169 s3c24xx_register_clock(&hsmmc0_clk
);
170 clkdev_add_table(s3c2416_clk_lookup
, ARRAY_SIZE(s3c2416_clk_lookup
));