Lennert Buytenhek | 1d81eed | 2006-06-24 10:33:02 +0100 | [diff] [blame] | 1 | /* |
| 2 | * arch/arm/mach-ep93xx/clock.c |
| 3 | * Clock control for Cirrus EP93xx chips. |
| 4 | * |
| 5 | * Copyright (C) 2006 Lennert Buytenhek <buytenh@wantstofly.org> |
| 6 | * |
| 7 | * This program is free software; you can redistribute it and/or modify |
| 8 | * it under the terms of the GNU General Public License as published by |
| 9 | * the Free Software Foundation; either version 2 of the License, or (at |
| 10 | * your option) any later version. |
| 11 | */ |
| 12 | |
| 13 | #include <linux/kernel.h> |
| 14 | #include <linux/clk.h> |
| 15 | #include <linux/err.h> |
Lennert Buytenhek | 51dd249 | 2007-02-04 22:45:33 +0100 | [diff] [blame] | 16 | #include <linux/module.h> |
Lennert Buytenhek | 1d81eed | 2006-06-24 10:33:02 +0100 | [diff] [blame] | 17 | #include <linux/string.h> |
Russell King | fced80c | 2008-09-06 12:10:45 +0100 | [diff] [blame] | 18 | #include <linux/io.h> |
Russell King | ae696fd | 2008-11-30 17:11:49 +0000 | [diff] [blame^] | 19 | |
| 20 | #include <asm/clkdev.h> |
Lennert Buytenhek | 1d81eed | 2006-06-24 10:33:02 +0100 | [diff] [blame] | 21 | #include <asm/div64.h> |
Russell King | a09e64f | 2008-08-05 16:14:15 +0100 | [diff] [blame] | 22 | #include <mach/hardware.h> |
Lennert Buytenhek | 1d81eed | 2006-06-24 10:33:02 +0100 | [diff] [blame] | 23 | |
| 24 | struct clk { |
Lennert Buytenhek | 1d81eed | 2006-06-24 10:33:02 +0100 | [diff] [blame] | 25 | unsigned long rate; |
| 26 | int users; |
| 27 | u32 enable_reg; |
| 28 | u32 enable_mask; |
| 29 | }; |
| 30 | |
Russell King | ed519de | 2007-04-22 12:30:41 +0100 | [diff] [blame] | 31 | static struct clk clk_uart = { |
Russell King | ed519de | 2007-04-22 12:30:41 +0100 | [diff] [blame] | 32 | .rate = 14745600, |
| 33 | }; |
Russell King | ae696fd | 2008-11-30 17:11:49 +0000 | [diff] [blame^] | 34 | static struct clk clk_pll1; |
| 35 | static struct clk clk_f; |
| 36 | static struct clk clk_h; |
| 37 | static struct clk clk_p; |
| 38 | static struct clk clk_pll2; |
Lennert Buytenhek | 1d81eed | 2006-06-24 10:33:02 +0100 | [diff] [blame] | 39 | static struct clk clk_usb_host = { |
Lennert Buytenhek | 1d81eed | 2006-06-24 10:33:02 +0100 | [diff] [blame] | 40 | .enable_reg = EP93XX_SYSCON_CLOCK_CONTROL, |
| 41 | .enable_mask = EP93XX_SYSCON_CLOCK_USH_EN, |
| 42 | }; |
| 43 | |
Russell King | ae696fd | 2008-11-30 17:11:49 +0000 | [diff] [blame^] | 44 | #define INIT_CK(dev,con,ck) \ |
| 45 | { .dev_id = dev, .con_id = con, .clk = ck } |
Lennert Buytenhek | 1d81eed | 2006-06-24 10:33:02 +0100 | [diff] [blame] | 46 | |
Russell King | ae696fd | 2008-11-30 17:11:49 +0000 | [diff] [blame^] | 47 | static struct clk_lookup clocks[] = { |
| 48 | INIT_CK("apb:uart1", NULL, &clk_uart), |
| 49 | INIT_CK("apb:uart2", NULL, &clk_uart), |
| 50 | INIT_CK("apb:uart3", NULL, &clk_uart), |
| 51 | INIT_CK(NULL, "pll1", &clk_pll1), |
| 52 | INIT_CK(NULL, "fclk", &clk_f), |
| 53 | INIT_CK(NULL, "hclk", &clk_h), |
| 54 | INIT_CK(NULL, "pclk", &clk_p), |
| 55 | INIT_CK(NULL, "pll2", &clk_pll2), |
| 56 | INIT_CK(NULL, "usb_host", &clk_usb_host), |
Lennert Buytenhek | 1d81eed | 2006-06-24 10:33:02 +0100 | [diff] [blame] | 57 | }; |
| 58 | |
Lennert Buytenhek | 1d81eed | 2006-06-24 10:33:02 +0100 | [diff] [blame] | 59 | |
| 60 | int clk_enable(struct clk *clk) |
| 61 | { |
| 62 | if (!clk->users++ && clk->enable_reg) { |
| 63 | u32 value; |
| 64 | |
| 65 | value = __raw_readl(clk->enable_reg); |
| 66 | __raw_writel(value | clk->enable_mask, clk->enable_reg); |
| 67 | } |
| 68 | |
| 69 | return 0; |
| 70 | } |
Dmitry Baryshkov | 0c5d5b7 | 2008-07-10 14:44:23 +0100 | [diff] [blame] | 71 | EXPORT_SYMBOL(clk_enable); |
Lennert Buytenhek | 1d81eed | 2006-06-24 10:33:02 +0100 | [diff] [blame] | 72 | |
| 73 | void clk_disable(struct clk *clk) |
| 74 | { |
| 75 | if (!--clk->users && clk->enable_reg) { |
| 76 | u32 value; |
| 77 | |
| 78 | value = __raw_readl(clk->enable_reg); |
| 79 | __raw_writel(value & ~clk->enable_mask, clk->enable_reg); |
| 80 | } |
| 81 | } |
Dmitry Baryshkov | 0c5d5b7 | 2008-07-10 14:44:23 +0100 | [diff] [blame] | 82 | EXPORT_SYMBOL(clk_disable); |
Lennert Buytenhek | 1d81eed | 2006-06-24 10:33:02 +0100 | [diff] [blame] | 83 | |
| 84 | unsigned long clk_get_rate(struct clk *clk) |
| 85 | { |
| 86 | return clk->rate; |
| 87 | } |
Dmitry Baryshkov | 0c5d5b7 | 2008-07-10 14:44:23 +0100 | [diff] [blame] | 88 | EXPORT_SYMBOL(clk_get_rate); |
Lennert Buytenhek | 1d81eed | 2006-06-24 10:33:02 +0100 | [diff] [blame] | 89 | |
Lennert Buytenhek | 1d81eed | 2006-06-24 10:33:02 +0100 | [diff] [blame] | 90 | |
| 91 | static char fclk_divisors[] = { 1, 2, 4, 8, 16, 1, 1, 1 }; |
| 92 | static char hclk_divisors[] = { 1, 2, 4, 5, 6, 8, 16, 32 }; |
| 93 | static char pclk_divisors[] = { 1, 2, 4, 8 }; |
| 94 | |
| 95 | /* |
| 96 | * PLL rate = 14.7456 MHz * (X1FBD + 1) * (X2FBD + 1) / (X2IPD + 1) / 2^PS |
| 97 | */ |
| 98 | static unsigned long calc_pll_rate(u32 config_word) |
| 99 | { |
| 100 | unsigned long long rate; |
| 101 | int i; |
| 102 | |
| 103 | rate = 14745600; |
| 104 | rate *= ((config_word >> 11) & 0x1f) + 1; /* X1FBD */ |
| 105 | rate *= ((config_word >> 5) & 0x3f) + 1; /* X2FBD */ |
| 106 | do_div(rate, (config_word & 0x1f) + 1); /* X2IPD */ |
| 107 | for (i = 0; i < ((config_word >> 16) & 3); i++) /* PS */ |
| 108 | rate >>= 1; |
| 109 | |
| 110 | return (unsigned long)rate; |
| 111 | } |
| 112 | |
Lennert Buytenhek | 51dd249 | 2007-02-04 22:45:33 +0100 | [diff] [blame] | 113 | static int __init ep93xx_clock_init(void) |
Lennert Buytenhek | 1d81eed | 2006-06-24 10:33:02 +0100 | [diff] [blame] | 114 | { |
| 115 | u32 value; |
Russell King | ae696fd | 2008-11-30 17:11:49 +0000 | [diff] [blame^] | 116 | int i; |
Lennert Buytenhek | 1d81eed | 2006-06-24 10:33:02 +0100 | [diff] [blame] | 117 | |
| 118 | value = __raw_readl(EP93XX_SYSCON_CLOCK_SET1); |
| 119 | if (!(value & 0x00800000)) { /* PLL1 bypassed? */ |
| 120 | clk_pll1.rate = 14745600; |
| 121 | } else { |
| 122 | clk_pll1.rate = calc_pll_rate(value); |
| 123 | } |
| 124 | clk_f.rate = clk_pll1.rate / fclk_divisors[(value >> 25) & 0x7]; |
| 125 | clk_h.rate = clk_pll1.rate / hclk_divisors[(value >> 20) & 0x7]; |
| 126 | clk_p.rate = clk_h.rate / pclk_divisors[(value >> 18) & 0x3]; |
| 127 | |
| 128 | value = __raw_readl(EP93XX_SYSCON_CLOCK_SET2); |
| 129 | if (!(value & 0x00080000)) { /* PLL2 bypassed? */ |
| 130 | clk_pll2.rate = 14745600; |
| 131 | } else if (value & 0x00040000) { /* PLL2 enabled? */ |
| 132 | clk_pll2.rate = calc_pll_rate(value); |
| 133 | } else { |
| 134 | clk_pll2.rate = 0; |
| 135 | } |
| 136 | clk_usb_host.rate = clk_pll2.rate / (((value >> 28) & 0xf) + 1); |
| 137 | |
| 138 | printk(KERN_INFO "ep93xx: PLL1 running at %ld MHz, PLL2 at %ld MHz\n", |
| 139 | clk_pll1.rate / 1000000, clk_pll2.rate / 1000000); |
| 140 | printk(KERN_INFO "ep93xx: FCLK %ld MHz, HCLK %ld MHz, PCLK %ld MHz\n", |
| 141 | clk_f.rate / 1000000, clk_h.rate / 1000000, |
| 142 | clk_p.rate / 1000000); |
Lennert Buytenhek | 51dd249 | 2007-02-04 22:45:33 +0100 | [diff] [blame] | 143 | |
Russell King | ae696fd | 2008-11-30 17:11:49 +0000 | [diff] [blame^] | 144 | for (i = 0; i < ARRAY_SIZE(clocks); i++) |
| 145 | clkdev_add(&clocks[i]); |
Lennert Buytenhek | 51dd249 | 2007-02-04 22:45:33 +0100 | [diff] [blame] | 146 | return 0; |
Lennert Buytenhek | 1d81eed | 2006-06-24 10:33:02 +0100 | [diff] [blame] | 147 | } |
Lennert Buytenhek | 51dd249 | 2007-02-04 22:45:33 +0100 | [diff] [blame] | 148 | arch_initcall(ep93xx_clock_init); |