clock.c 3.7 KB

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