Ben Dooks | e4d06e3 | 2007-02-16 12:12:31 +0100 | [diff] [blame] | 1 | /* linux/arch/arm/mach-s3c2443/clock.c |
| 2 | * |
Ben Dooks | 4bed36b | 2010-01-30 10:25:49 +0200 | [diff] [blame] | 3 | * Copyright (c) 2007, 2010 Simtec Electronics |
Ben Dooks | e4d06e3 | 2007-02-16 12:12:31 +0100 | [diff] [blame] | 4 | * Ben Dooks <ben@simtec.co.uk> |
| 5 | * |
| 6 | * S3C2443 Clock control support |
| 7 | * |
| 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. |
| 12 | * |
| 13 | * This program is distributed in the hope that it will be useful, |
| 14 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 15 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 16 | * GNU General Public License for more details. |
| 17 | * |
| 18 | * You should have received a copy of the GNU General Public License |
| 19 | * along with this program; if not, write to the Free Software |
| 20 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
| 21 | */ |
| 22 | |
| 23 | #include <linux/init.h> |
Ben Dooks | af337f3 | 2010-04-28 18:03:57 +0900 | [diff] [blame] | 24 | |
Ben Dooks | e4d06e3 | 2007-02-16 12:12:31 +0100 | [diff] [blame] | 25 | #include <linux/module.h> |
| 26 | #include <linux/kernel.h> |
| 27 | #include <linux/list.h> |
| 28 | #include <linux/errno.h> |
| 29 | #include <linux/err.h> |
Kay Sievers | edbaa60 | 2011-12-21 16:26:03 -0800 | [diff] [blame] | 30 | #include <linux/device.h> |
Ben Dooks | e4d06e3 | 2007-02-16 12:12:31 +0100 | [diff] [blame] | 31 | #include <linux/clk.h> |
| 32 | #include <linux/mutex.h> |
Ben Dooks | e4d06e3 | 2007-02-16 12:12:31 +0100 | [diff] [blame] | 33 | #include <linux/serial_core.h> |
Russell King | fced80c | 2008-09-06 12:10:45 +0100 | [diff] [blame] | 34 | #include <linux/io.h> |
Ben Dooks | e4d06e3 | 2007-02-16 12:12:31 +0100 | [diff] [blame] | 35 | |
| 36 | #include <asm/mach/map.h> |
| 37 | |
Russell King | a09e64f | 2008-08-05 16:14:15 +0100 | [diff] [blame] | 38 | #include <mach/hardware.h> |
Ben Dooks | e4d06e3 | 2007-02-16 12:12:31 +0100 | [diff] [blame] | 39 | |
Russell King | a09e64f | 2008-08-05 16:14:15 +0100 | [diff] [blame] | 40 | #include <mach/regs-s3c2443-clock.h> |
Ben Dooks | e4d06e3 | 2007-02-16 12:12:31 +0100 | [diff] [blame] | 41 | |
Ben Dooks | e425382 | 2008-10-21 14:06:38 +0100 | [diff] [blame] | 42 | #include <plat/cpu-freq.h> |
| 43 | |
Ben Dooks | d5120ae | 2008-10-07 23:09:51 +0100 | [diff] [blame] | 44 | #include <plat/clock.h> |
Ben Dooks | 9aa753c | 2010-01-30 09:19:59 +0200 | [diff] [blame] | 45 | #include <plat/clock-clksrc.h> |
Ben Dooks | a2b7ba9 | 2008-10-07 22:26:09 +0100 | [diff] [blame] | 46 | #include <plat/cpu.h> |
Ben Dooks | e4d06e3 | 2007-02-16 12:12:31 +0100 | [diff] [blame] | 47 | |
| 48 | /* We currently have to assume that the system is running |
| 49 | * from the XTPll input, and that all ***REFCLKs are being |
| 50 | * fed from it, as we cannot read the state of OM[4] from |
| 51 | * software. |
| 52 | * |
| 53 | * It would be possible for each board initialisation to |
| 54 | * set the correct muxing at initialisation |
| 55 | */ |
| 56 | |
Ben Dooks | e4d06e3 | 2007-02-16 12:12:31 +0100 | [diff] [blame] | 57 | /* clock selections */ |
| 58 | |
Ben Dooks | ba7622a | 2008-07-07 18:12:39 +0100 | [diff] [blame] | 59 | /* armdiv |
| 60 | * |
| 61 | * this clock is sourced from msysclk and can have a number of |
| 62 | * divider values applied to it to then be fed into armclk. |
Heiko St?bner | aab08ee | 2011-10-14 15:08:56 +0900 | [diff] [blame] | 63 | * The real clock definition is done in s3c2443-clock.c, |
| 64 | * only the armdiv divisor table must be defined here. |
Ben Dooks | ba7622a | 2008-07-07 18:12:39 +0100 | [diff] [blame] | 65 | */ |
| 66 | |
Ben Dooks | 41f23a0 | 2010-01-30 11:14:14 +0200 | [diff] [blame] | 67 | static unsigned int armdiv[16] = { |
| 68 | [S3C2443_CLKDIV0_ARMDIV_1 >> S3C2443_CLKDIV0_ARMDIV_SHIFT] = 1, |
| 69 | [S3C2443_CLKDIV0_ARMDIV_2 >> S3C2443_CLKDIV0_ARMDIV_SHIFT] = 2, |
| 70 | [S3C2443_CLKDIV0_ARMDIV_3 >> S3C2443_CLKDIV0_ARMDIV_SHIFT] = 3, |
| 71 | [S3C2443_CLKDIV0_ARMDIV_4 >> S3C2443_CLKDIV0_ARMDIV_SHIFT] = 4, |
| 72 | [S3C2443_CLKDIV0_ARMDIV_6 >> S3C2443_CLKDIV0_ARMDIV_SHIFT] = 6, |
| 73 | [S3C2443_CLKDIV0_ARMDIV_8 >> S3C2443_CLKDIV0_ARMDIV_SHIFT] = 8, |
| 74 | [S3C2443_CLKDIV0_ARMDIV_12 >> S3C2443_CLKDIV0_ARMDIV_SHIFT] = 12, |
| 75 | [S3C2443_CLKDIV0_ARMDIV_16 >> S3C2443_CLKDIV0_ARMDIV_SHIFT] = 16, |
| 76 | }; |
| 77 | |
Ben Dooks | e4d06e3 | 2007-02-16 12:12:31 +0100 | [diff] [blame] | 78 | /* hsspi |
| 79 | * |
| 80 | * high-speed spi clock, sourced from esysclk |
| 81 | */ |
| 82 | |
Ben Dooks | 9aa753c | 2010-01-30 09:19:59 +0200 | [diff] [blame] | 83 | static struct clksrc_clk clk_hsspi = { |
| 84 | .clk = { |
Heiko Stuebner | 8b069b7 | 2011-09-27 08:45:23 +0900 | [diff] [blame] | 85 | .name = "hsspi-if", |
Ben Dooks | 4bed36b | 2010-01-30 10:25:49 +0200 | [diff] [blame] | 86 | .parent = &clk_esysclk.clk, |
Ben Dooks | 9aa753c | 2010-01-30 09:19:59 +0200 | [diff] [blame] | 87 | .ctrlbit = S3C2443_SCLKCON_HSSPICLK, |
| 88 | .enable = s3c2443_clkcon_enable_s, |
Ben Dooks | b3bf41b | 2009-12-01 01:24:37 +0000 | [diff] [blame] | 89 | }, |
Ben Dooks | 9aa753c | 2010-01-30 09:19:59 +0200 | [diff] [blame] | 90 | .reg_div = { .reg = S3C2443_CLKDIV1, .size = 2, .shift = 4 }, |
Ben Dooks | e4d06e3 | 2007-02-16 12:12:31 +0100 | [diff] [blame] | 91 | }; |
| 92 | |
Ben Dooks | e4d06e3 | 2007-02-16 12:12:31 +0100 | [diff] [blame] | 93 | |
| 94 | /* clk_hsmcc_div |
| 95 | * |
| 96 | * this clock is sourced from epll, and is fed through a divider, |
| 97 | * to a mux controlled by sclkcon where either it or a extclk can |
| 98 | * be fed to the hsmmc block |
| 99 | */ |
| 100 | |
Ben Dooks | 9aa753c | 2010-01-30 09:19:59 +0200 | [diff] [blame] | 101 | static struct clksrc_clk clk_hsmmc_div = { |
| 102 | .clk = { |
| 103 | .name = "hsmmc-div", |
Thomas Abraham | e83626f | 2011-06-14 19:12:26 +0900 | [diff] [blame] | 104 | .devname = "s3c-sdhci.1", |
Ben Dooks | 4bed36b | 2010-01-30 10:25:49 +0200 | [diff] [blame] | 105 | .parent = &clk_esysclk.clk, |
Ben Dooks | b3bf41b | 2009-12-01 01:24:37 +0000 | [diff] [blame] | 106 | }, |
Ben Dooks | 9aa753c | 2010-01-30 09:19:59 +0200 | [diff] [blame] | 107 | .reg_div = { .reg = S3C2443_CLKDIV1, .size = 2, .shift = 6 }, |
Ben Dooks | e4d06e3 | 2007-02-16 12:12:31 +0100 | [diff] [blame] | 108 | }; |
| 109 | |
| 110 | static int s3c2443_setparent_hsmmc(struct clk *clk, struct clk *parent) |
| 111 | { |
| 112 | unsigned long clksrc = __raw_readl(S3C2443_SCLKCON); |
| 113 | |
| 114 | clksrc &= ~(S3C2443_SCLKCON_HSMMCCLK_EXT | |
| 115 | S3C2443_SCLKCON_HSMMCCLK_EPLL); |
| 116 | |
| 117 | if (parent == &clk_epll) |
| 118 | clksrc |= S3C2443_SCLKCON_HSMMCCLK_EPLL; |
| 119 | else if (parent == &clk_ext) |
| 120 | clksrc |= S3C2443_SCLKCON_HSMMCCLK_EXT; |
| 121 | else |
| 122 | return -EINVAL; |
| 123 | |
| 124 | if (clk->usage > 0) { |
| 125 | __raw_writel(clksrc, S3C2443_SCLKCON); |
| 126 | } |
| 127 | |
| 128 | clk->parent = parent; |
| 129 | return 0; |
| 130 | } |
| 131 | |
| 132 | static int s3c2443_enable_hsmmc(struct clk *clk, int enable) |
| 133 | { |
| 134 | return s3c2443_setparent_hsmmc(clk, clk->parent); |
| 135 | } |
| 136 | |
| 137 | static struct clk clk_hsmmc = { |
| 138 | .name = "hsmmc-if", |
Thomas Abraham | e83626f | 2011-06-14 19:12:26 +0900 | [diff] [blame] | 139 | .devname = "s3c-sdhci.1", |
Ben Dooks | 9aa753c | 2010-01-30 09:19:59 +0200 | [diff] [blame] | 140 | .parent = &clk_hsmmc_div.clk, |
Ben Dooks | e4d06e3 | 2007-02-16 12:12:31 +0100 | [diff] [blame] | 141 | .enable = s3c2443_enable_hsmmc, |
Ben Dooks | b3bf41b | 2009-12-01 01:24:37 +0000 | [diff] [blame] | 142 | .ops = &(struct clk_ops) { |
| 143 | .set_parent = s3c2443_setparent_hsmmc, |
| 144 | }, |
Ben Dooks | e4d06e3 | 2007-02-16 12:12:31 +0100 | [diff] [blame] | 145 | }; |
| 146 | |
Ben Dooks | e4d06e3 | 2007-02-16 12:12:31 +0100 | [diff] [blame] | 147 | /* standard clock definitions */ |
| 148 | |
Ben Dooks | 4e04691 | 2010-04-28 12:58:13 +0900 | [diff] [blame] | 149 | static struct clk init_clocks_off[] = { |
Ben Dooks | e4d06e3 | 2007-02-16 12:12:31 +0100 | [diff] [blame] | 150 | { |
Ben Dooks | e4d06e3 | 2007-02-16 12:12:31 +0100 | [diff] [blame] | 151 | .name = "sdi", |
Ben Dooks | e4d06e3 | 2007-02-16 12:12:31 +0100 | [diff] [blame] | 152 | .parent = &clk_p, |
| 153 | .enable = s3c2443_clkcon_enable_p, |
| 154 | .ctrlbit = S3C2443_PCLKCON_SDI, |
| 155 | }, { |
Ben Dooks | e4d06e3 | 2007-02-16 12:12:31 +0100 | [diff] [blame] | 156 | .name = "spi", |
Thomas Abraham | e83626f | 2011-06-14 19:12:26 +0900 | [diff] [blame] | 157 | .devname = "s3c2410-spi.0", |
Ben Dooks | e4d06e3 | 2007-02-16 12:12:31 +0100 | [diff] [blame] | 158 | .parent = &clk_p, |
| 159 | .enable = s3c2443_clkcon_enable_p, |
Ben Dooks | e4d06e3 | 2007-02-16 12:12:31 +0100 | [diff] [blame] | 160 | .ctrlbit = S3C2443_PCLKCON_SPI1, |
| 161 | } |
| 162 | }; |
| 163 | |
Ben Dooks | e4d06e3 | 2007-02-16 12:12:31 +0100 | [diff] [blame] | 164 | /* clocks to add straight away */ |
| 165 | |
Ben Dooks | 9aa753c | 2010-01-30 09:19:59 +0200 | [diff] [blame] | 166 | static struct clksrc_clk *clksrcs[] __initdata = { |
Ben Dooks | e4d06e3 | 2007-02-16 12:12:31 +0100 | [diff] [blame] | 167 | &clk_hsspi, |
| 168 | &clk_hsmmc_div, |
Ben Dooks | 9aa753c | 2010-01-30 09:19:59 +0200 | [diff] [blame] | 169 | }; |
| 170 | |
| 171 | static struct clk *clks[] __initdata = { |
Ben Dooks | e4d06e3 | 2007-02-16 12:12:31 +0100 | [diff] [blame] | 172 | &clk_hsmmc, |
| 173 | }; |
| 174 | |
Heiko Stuebner | d25a8f9 | 2012-04-24 18:06:49 -0700 | [diff] [blame] | 175 | static struct clk_lookup s3c2443_clk_lookup[] = { |
| 176 | CLKDEV_INIT("s3c-sdhci.1", "mmc_busclk.2", &clk_hsmmc), |
Thomas Abraham | a5238e3 | 2012-07-13 07:15:14 +0900 | [diff] [blame] | 177 | CLKDEV_INIT("s3c2443-spi.0", "spi_busclk2", &clk_hsspi.clk), |
Heiko Stuebner | d25a8f9 | 2012-04-24 18:06:49 -0700 | [diff] [blame] | 178 | }; |
| 179 | |
Ben Dooks | e425382 | 2008-10-21 14:06:38 +0100 | [diff] [blame] | 180 | void __init s3c2443_init_clocks(int xtal) |
| 181 | { |
Ben Dooks | e425382 | 2008-10-21 14:06:38 +0100 | [diff] [blame] | 182 | unsigned long epllcon = __raw_readl(S3C2443_EPLLCON); |
Ben Dooks | e425382 | 2008-10-21 14:06:38 +0100 | [diff] [blame] | 183 | int ptr; |
| 184 | |
Ben Dooks | af337f3 | 2010-04-28 18:03:57 +0900 | [diff] [blame] | 185 | clk_epll.rate = s3c2443_get_epll(epllcon, xtal); |
| 186 | clk_epll.parent = &clk_epllref.clk; |
Ben Dooks | e425382 | 2008-10-21 14:06:38 +0100 | [diff] [blame] | 187 | |
Heiko Stuebner | 33ccedf | 2011-10-14 15:08:57 +0900 | [diff] [blame] | 188 | s3c2443_common_init_clocks(xtal, s3c2443_get_mpll, |
Heiko Stuebner | d9a3bfb | 2011-10-14 15:08:56 +0900 | [diff] [blame] | 189 | armdiv, ARRAY_SIZE(armdiv), |
| 190 | S3C2443_CLKDIV0_ARMDIV_MASK); |
Ben Dooks | af337f3 | 2010-04-28 18:03:57 +0900 | [diff] [blame] | 191 | |
Ben Dooks | 4e04691 | 2010-04-28 12:58:13 +0900 | [diff] [blame] | 192 | s3c24xx_register_clocks(clks, ARRAY_SIZE(clks)); |
Ben Dooks | e4d06e3 | 2007-02-16 12:12:31 +0100 | [diff] [blame] | 193 | |
Ben Dooks | 9aa753c | 2010-01-30 09:19:59 +0200 | [diff] [blame] | 194 | for (ptr = 0; ptr < ARRAY_SIZE(clksrcs); ptr++) |
| 195 | s3c_register_clksrc(clksrcs[ptr], 1); |
| 196 | |
Ben Dooks | e4d06e3 | 2007-02-16 12:12:31 +0100 | [diff] [blame] | 197 | /* We must be careful disabling the clocks we are not intending to |
Robert P. J. Day | 3a4fa0a | 2007-10-19 23:10:43 +0200 | [diff] [blame] | 198 | * be using at boot time, as subsystems such as the LCD which do |
Ben Dooks | e4d06e3 | 2007-02-16 12:12:31 +0100 | [diff] [blame] | 199 | * their own DMA requests to the bus can cause the system to lockup |
| 200 | * if they where in the middle of requesting bus access. |
| 201 | * |
| 202 | * Disabling the LCD clock if the LCD is active is very dangerous, |
| 203 | * and therefore the bootloader should be careful to not enable |
| 204 | * the LCD clock if it is not needed. |
| 205 | */ |
| 206 | |
| 207 | /* install (and disable) the clocks we do not need immediately */ |
| 208 | |
Ben Dooks | 4e04691 | 2010-04-28 12:58:13 +0900 | [diff] [blame] | 209 | s3c_register_clocks(init_clocks_off, ARRAY_SIZE(init_clocks_off)); |
| 210 | s3c_disable_clocks(init_clocks_off, ARRAY_SIZE(init_clocks_off)); |
Heiko Stuebner | d25a8f9 | 2012-04-24 18:06:49 -0700 | [diff] [blame] | 211 | clkdev_add_table(s3c2443_clk_lookup, ARRAY_SIZE(s3c2443_clk_lookup)); |
Ben Dooks | e4d06e3 | 2007-02-16 12:12:31 +0100 | [diff] [blame] | 212 | } |