clock.c 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  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. }
  50. void db8500_clocks_init(void)
  51. {
  52. /*
  53. * Enable all clocks. This is u-boot, we can enable it all. There is no
  54. * powersave in u-boot.
  55. */
  56. u8500_clock_enable(1, 9, -1); /* GPIO0 */
  57. u8500_clock_enable(2, 11, -1);/* GPIO1 */
  58. u8500_clock_enable(3, 8, -1); /* GPIO2 */
  59. u8500_clock_enable(5, 1, -1); /* GPIO3 */
  60. u8500_clock_enable(3, 6, 6); /* UART2 */
  61. u8500_clock_enable(3, 3, 3); /* I2C0 */
  62. u8500_clock_enable(1, 5, 5); /* SDI0 */
  63. u8500_clock_enable(2, 4, 2); /* SDI4 */
  64. u8500_clock_enable(6, 6, -1); /* MTU0 */
  65. u8500_clock_enable(3, 4, 4); /* SDI2 */
  66. /*
  67. * Enabling clocks for all devices which are AMBA devices in the
  68. * kernel. Otherwise they will not get probe()'d because the
  69. * peripheral ID register will not be powered.
  70. */
  71. /* XXX: some of these differ between ED/V1 */
  72. u8500_clock_enable(1, 1, 1); /* UART1 */
  73. u8500_clock_enable(1, 0, 0); /* UART0 */
  74. u8500_clock_enable(3, 2, 2); /* SSP1 */
  75. u8500_clock_enable(3, 1, 1); /* SSP0 */
  76. u8500_clock_enable(2, 8, -1); /* SPI0 */
  77. u8500_clock_enable(2, 5, 3); /* MSP2 */
  78. }