clock.c 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. /*
  2. * (C) Copyright 2009 ST-Ericsson
  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/hardware.h>
  25. DECLARE_GLOBAL_DATA_PTR;
  26. struct clkrst {
  27. unsigned int pcken;
  28. unsigned int pckdis;
  29. unsigned int kcken;
  30. unsigned int kckdis;
  31. };
  32. static unsigned int clkrst_base[] = {
  33. U8500_CLKRST1_BASE,
  34. U8500_CLKRST2_BASE,
  35. U8500_CLKRST3_BASE,
  36. 0,
  37. U8500_CLKRST5_BASE,
  38. U8500_CLKRST6_BASE,
  39. U8500_CLKRST7_BASE, /* ED only */
  40. };
  41. /* Turn on peripheral clock at PRCC level */
  42. void u8500_clock_enable(int periph, int cluster, int kern)
  43. {
  44. struct clkrst *clkrst = (struct clkrst *) clkrst_base[periph - 1];
  45. if (kern != -1)
  46. writel(1 << kern, &clkrst->kcken);
  47. if (cluster != -1)
  48. writel(1 << cluster, &clkrst->pcken);
  49. }