pll_cfg.c 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. /*
  2. * PLL setup for Cirrus edb93xx boards
  3. *
  4. * Copyright (C) 2009 Matthias Kaehlcke <matthias@kaehlcke.net>
  5. *
  6. * Copyright (C) 2006 Dominic Rath <Dominic.Rath@gmx.de>
  7. *
  8. * See file CREDITS for list of people who contributed to this
  9. * project.
  10. *
  11. * This program is free software; you can redistribute it and/or
  12. * modify it under the terms of the GNU General Public License as
  13. * published by the Free Software Foundation; either version 2 of
  14. * the License, or (at your option) any later version.
  15. *
  16. * This program is distributed in the hope that it will be useful,
  17. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  18. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  19. * GNU General Public License for more details.
  20. *
  21. * You should have received a copy of the GNU General Public License
  22. * along with this program; if not, write to the Free Software
  23. * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
  24. * MA 02111-1307 USA
  25. */
  26. #include <common.h>
  27. #include <asm/io.h>
  28. #include "pll_cfg.h"
  29. #include "early_udelay.h"
  30. void pll_cfg(void)
  31. {
  32. struct syscon_regs *syscon = (struct syscon_regs *)SYSCON_BASE;
  33. /* setup PLL1 */
  34. writel(CLKSET1_VAL, &syscon->clkset1);
  35. /*
  36. * flush the pipeline
  37. * writing to CLKSET1 causes the EP93xx to enter standby for between
  38. * 8 ms to 16 ms, until PLL1 stabilizes
  39. */
  40. asm("nop");
  41. asm("nop");
  42. asm("nop");
  43. asm("nop");
  44. asm("nop");
  45. /* setup PLL2 */
  46. writel(CLKSET2_VAL, &syscon->clkset2);
  47. /*
  48. * the user's guide recommends to wait at least 1 ms for PLL2 to
  49. * stabilize
  50. */
  51. early_udelay(1000);
  52. }