clock.c 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156
  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. #include <linux/kernel.h>
  13. #include <linux/clk.h>
  14. #include <linux/err.h>
  15. #include <linux/string.h>
  16. #include <asm/div64.h>
  17. #include <asm/hardware.h>
  18. #include <asm/io.h>
  19. struct clk {
  20. char *name;
  21. unsigned long rate;
  22. int users;
  23. u32 enable_reg;
  24. u32 enable_mask;
  25. };
  26. static struct clk clk_pll1 = {
  27. .name = "pll1",
  28. };
  29. static struct clk clk_f = {
  30. .name = "fclk",
  31. };
  32. static struct clk clk_h = {
  33. .name = "hclk",
  34. };
  35. static struct clk clk_p = {
  36. .name = "pclk",
  37. };
  38. static struct clk clk_pll2 = {
  39. .name = "pll2",
  40. };
  41. static struct clk clk_usb_host = {
  42. .name = "usb_host",
  43. .enable_reg = EP93XX_SYSCON_CLOCK_CONTROL,
  44. .enable_mask = EP93XX_SYSCON_CLOCK_USH_EN,
  45. };
  46. static struct clk *clocks[] = {
  47. &clk_pll1,
  48. &clk_f,
  49. &clk_h,
  50. &clk_p,
  51. &clk_pll2,
  52. &clk_usb_host,
  53. };
  54. struct clk *clk_get(struct device *dev, const char *id)
  55. {
  56. int i;
  57. for (i = 0; i < ARRAY_SIZE(clocks); i++) {
  58. if (!strcmp(clocks[i]->name, id))
  59. return clocks[i];
  60. }
  61. return ERR_PTR(-ENOENT);
  62. }
  63. int clk_enable(struct clk *clk)
  64. {
  65. if (!clk->users++ && clk->enable_reg) {
  66. u32 value;
  67. value = __raw_readl(clk->enable_reg);
  68. __raw_writel(value | clk->enable_mask, clk->enable_reg);
  69. }
  70. return 0;
  71. }
  72. void clk_disable(struct clk *clk)
  73. {
  74. if (!--clk->users && clk->enable_reg) {
  75. u32 value;
  76. value = __raw_readl(clk->enable_reg);
  77. __raw_writel(value & ~clk->enable_mask, clk->enable_reg);
  78. }
  79. }
  80. unsigned long clk_get_rate(struct clk *clk)
  81. {
  82. return clk->rate;
  83. }
  84. void clk_put(struct clk *clk)
  85. {
  86. }
  87. static char fclk_divisors[] = { 1, 2, 4, 8, 16, 1, 1, 1 };
  88. static char hclk_divisors[] = { 1, 2, 4, 5, 6, 8, 16, 32 };
  89. static char pclk_divisors[] = { 1, 2, 4, 8 };
  90. /*
  91. * PLL rate = 14.7456 MHz * (X1FBD + 1) * (X2FBD + 1) / (X2IPD + 1) / 2^PS
  92. */
  93. static unsigned long calc_pll_rate(u32 config_word)
  94. {
  95. unsigned long long rate;
  96. int i;
  97. rate = 14745600;
  98. rate *= ((config_word >> 11) & 0x1f) + 1; /* X1FBD */
  99. rate *= ((config_word >> 5) & 0x3f) + 1; /* X2FBD */
  100. do_div(rate, (config_word & 0x1f) + 1); /* X2IPD */
  101. for (i = 0; i < ((config_word >> 16) & 3); i++) /* PS */
  102. rate >>= 1;
  103. return (unsigned long)rate;
  104. }
  105. void ep93xx_clock_init(void)
  106. {
  107. u32 value;
  108. value = __raw_readl(EP93XX_SYSCON_CLOCK_SET1);
  109. if (!(value & 0x00800000)) { /* PLL1 bypassed? */
  110. clk_pll1.rate = 14745600;
  111. } else {
  112. clk_pll1.rate = calc_pll_rate(value);
  113. }
  114. clk_f.rate = clk_pll1.rate / fclk_divisors[(value >> 25) & 0x7];
  115. clk_h.rate = clk_pll1.rate / hclk_divisors[(value >> 20) & 0x7];
  116. clk_p.rate = clk_h.rate / pclk_divisors[(value >> 18) & 0x3];
  117. value = __raw_readl(EP93XX_SYSCON_CLOCK_SET2);
  118. if (!(value & 0x00080000)) { /* PLL2 bypassed? */
  119. clk_pll2.rate = 14745600;
  120. } else if (value & 0x00040000) { /* PLL2 enabled? */
  121. clk_pll2.rate = calc_pll_rate(value);
  122. } else {
  123. clk_pll2.rate = 0;
  124. }
  125. clk_usb_host.rate = clk_pll2.rate / (((value >> 28) & 0xf) + 1);
  126. printk(KERN_INFO "ep93xx: PLL1 running at %ld MHz, PLL2 at %ld MHz\n",
  127. clk_pll1.rate / 1000000, clk_pll2.rate / 1000000);
  128. printk(KERN_INFO "ep93xx: FCLK %ld MHz, HCLK %ld MHz, PCLK %ld MHz\n",
  129. clk_f.rate / 1000000, clk_h.rate / 1000000,
  130. clk_p.rate / 1000000);
  131. }