clk.c 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  1. /*
  2. * Copyright (C) 2005-2008 Atmel Corporation
  3. *
  4. * See file CREDITS for list of people who contributed to this
  5. * project.
  6. *
  7. * This program is free software; you can redistribute it and/or
  8. * modify it under the terms of the GNU General Public License as
  9. * published by the Free Software Foundation; either version 2 of
  10. * the License, or (at your option) any later version.
  11. *
  12. * This program is distributed in the hope that it will be useful,
  13. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  15. * GNU General Public License for more details.
  16. *
  17. * You should have received a copy of the GNU General Public License
  18. * along with this program; if not, write to the Free Software
  19. * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
  20. * MA 02111-1307 USA
  21. */
  22. #include <common.h>
  23. #include <asm/io.h>
  24. #include <asm/arch/clk.h>
  25. #include <asm/arch/memory-map.h>
  26. #include <asm/arch/portmux.h>
  27. #include "sm.h"
  28. void clk_init(void)
  29. {
  30. uint32_t cksel;
  31. /* in case of soft resets, disable watchdog */
  32. sm_writel(WDT_CTRL, SM_BF(KEY, 0x55));
  33. sm_writel(WDT_CTRL, SM_BF(KEY, 0xaa));
  34. #ifdef CONFIG_PLL
  35. /* Initialize the PLL */
  36. sm_writel(PM_PLL0, (SM_BF(PLLCOUNT, CONFIG_SYS_PLL0_SUPPRESS_CYCLES)
  37. | SM_BF(PLLMUL, CONFIG_SYS_PLL0_MUL - 1)
  38. | SM_BF(PLLDIV, CONFIG_SYS_PLL0_DIV - 1)
  39. | SM_BF(PLLOPT, CONFIG_SYS_PLL0_OPT)
  40. | SM_BF(PLLOSC, 0)
  41. | SM_BIT(PLLEN)));
  42. /* Wait for lock */
  43. while (!(sm_readl(PM_ISR) & SM_BIT(LOCK0))) ;
  44. #endif
  45. /* Set up clocks for the CPU and all peripheral buses */
  46. cksel = 0;
  47. if (CONFIG_SYS_CLKDIV_CPU)
  48. cksel |= SM_BIT(CPUDIV) | SM_BF(CPUSEL, CONFIG_SYS_CLKDIV_CPU - 1);
  49. if (CONFIG_SYS_CLKDIV_HSB)
  50. cksel |= SM_BIT(HSBDIV) | SM_BF(HSBSEL, CONFIG_SYS_CLKDIV_HSB - 1);
  51. if (CONFIG_SYS_CLKDIV_PBA)
  52. cksel |= SM_BIT(PBADIV) | SM_BF(PBASEL, CONFIG_SYS_CLKDIV_PBA - 1);
  53. if (CONFIG_SYS_CLKDIV_PBB)
  54. cksel |= SM_BIT(PBBDIV) | SM_BF(PBBSEL, CONFIG_SYS_CLKDIV_PBB - 1);
  55. sm_writel(PM_CKSEL, cksel);
  56. #ifdef CONFIG_PLL
  57. /* Use PLL0 as main clock */
  58. sm_writel(PM_MCCTRL, SM_BIT(PLLSEL));
  59. #endif
  60. }
  61. unsigned long __gclk_set_rate(unsigned int id, enum gclk_parent parent,
  62. unsigned long rate, unsigned long parent_rate)
  63. {
  64. unsigned long divider;
  65. if (rate == 0 || parent_rate == 0) {
  66. sm_writel(PM_GCCTRL(id), 0);
  67. return 0;
  68. }
  69. divider = (parent_rate + rate / 2) / rate;
  70. if (divider <= 1) {
  71. sm_writel(PM_GCCTRL(id), parent | SM_BIT(CEN));
  72. rate = parent_rate;
  73. } else {
  74. divider = min(255, divider / 2 - 1);
  75. sm_writel(PM_GCCTRL(id), parent | SM_BIT(CEN) | SM_BIT(DIVEN)
  76. | SM_BF(DIV, divider));
  77. rate = parent_rate / (2 * (divider + 1));
  78. }
  79. return rate;
  80. }