clock.c 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196
  1. /*
  2. * (C) Copyright 2015
  3. * Kamil Lulko, <kamil.lulko@gmail.com>
  4. *
  5. * Copyright 2015 ATS Advanced Telematics Systems GmbH
  6. * Copyright 2015 Konsulko Group, Matt Porter <mporter@konsulko.com>
  7. *
  8. * (C) Copyright 2014
  9. * STMicroelectronics
  10. *
  11. * SPDX-License-Identifier: GPL-2.0+
  12. */
  13. #include <common.h>
  14. #include <asm/io.h>
  15. #include <asm/arch/stm32.h>
  16. #define RCC_CR_HSION (1 << 0)
  17. #define RCC_CR_HSEON (1 << 16)
  18. #define RCC_CR_HSERDY (1 << 17)
  19. #define RCC_CR_HSEBYP (1 << 18)
  20. #define RCC_CR_CSSON (1 << 19)
  21. #define RCC_CR_PLLON (1 << 24)
  22. #define RCC_CR_PLLRDY (1 << 25)
  23. #define RCC_CFGR_PLLMUL_MASK 0x3C0000
  24. #define RCC_CFGR_PLLMUL_SHIFT 18
  25. #define RCC_CFGR_PLLSRC_HSE (1 << 16)
  26. #define RCC_CFGR_AHB_PSC_MASK 0xF0
  27. #define RCC_CFGR_APB1_PSC_MASK 0x700
  28. #define RCC_CFGR_APB2_PSC_MASK 0x3800
  29. #define RCC_CFGR_SW0 (1 << 0)
  30. #define RCC_CFGR_SW1 (1 << 1)
  31. #define RCC_CFGR_SW_MASK 0x3
  32. #define RCC_CFGR_SW_HSI 0
  33. #define RCC_CFGR_SW_HSE RCC_CFGR_SW0
  34. #define RCC_CFGR_SW_PLL RCC_CFGR_SW1
  35. #define RCC_CFGR_SWS0 (1 << 2)
  36. #define RCC_CFGR_SWS1 (1 << 3)
  37. #define RCC_CFGR_SWS_MASK 0xC
  38. #define RCC_CFGR_SWS_HSI 0
  39. #define RCC_CFGR_SWS_HSE RCC_CFGR_SWS0
  40. #define RCC_CFGR_SWS_PLL RCC_CFGR_SWS1
  41. #define RCC_CFGR_HPRE_SHIFT 4
  42. #define RCC_CFGR_PPRE1_SHIFT 8
  43. #define RCC_CFGR_PPRE2_SHIFT 11
  44. #define RCC_APB1ENR_PWREN (1 << 28)
  45. #define PWR_CR_VOS0 (1 << 14)
  46. #define PWR_CR_VOS1 (1 << 15)
  47. #define PWR_CR_VOS_MASK 0xC000
  48. #define PWR_CR_VOS_SCALE_MODE_1 (PWR_CR_VOS0 | PWR_CR_VOS1)
  49. #define PWR_CR_VOS_SCALE_MODE_2 (PWR_CR_VOS1)
  50. #define PWR_CR_VOS_SCALE_MODE_3 (PWR_CR_VOS0)
  51. #define FLASH_ACR_WS(n) n
  52. #define FLASH_ACR_PRFTEN (1 << 8)
  53. #define FLASH_ACR_ICEN (1 << 9)
  54. #define FLASH_ACR_DCEN (1 << 10)
  55. struct psc {
  56. u8 ahb_psc;
  57. u8 apb1_psc;
  58. u8 apb2_psc;
  59. };
  60. #define AHB_PSC_1 0
  61. #define AHB_PSC_2 0x8
  62. #define AHB_PSC_4 0x9
  63. #define AHB_PSC_8 0xA
  64. #define AHB_PSC_16 0xB
  65. #define AHB_PSC_64 0xC
  66. #define AHB_PSC_128 0xD
  67. #define AHB_PSC_256 0xE
  68. #define AHB_PSC_512 0xF
  69. #define APB_PSC_1 0
  70. #define APB_PSC_2 0x4
  71. #define APB_PSC_4 0x5
  72. #define APB_PSC_8 0x6
  73. #define APB_PSC_16 0x7
  74. #if !defined(CONFIG_STM32_HSE_HZ)
  75. #error "CONFIG_STM32_HSE_HZ not defined!"
  76. #else
  77. #if (CONFIG_STM32_HSE_HZ == 8000000)
  78. #define RCC_CFGR_PLLMUL_CFG 0x7
  79. struct psc psc_hse = {
  80. .ahb_psc = AHB_PSC_1,
  81. .apb1_psc = APB_PSC_2,
  82. .apb2_psc = APB_PSC_1
  83. };
  84. #else
  85. #error "No PLL/Prescaler configuration for given CONFIG_STM32_HSE_HZ exists"
  86. #endif
  87. #endif
  88. int configure_clocks(void)
  89. {
  90. /* Reset RCC configuration */
  91. setbits_le32(&STM32_RCC->cr, RCC_CR_HSION);
  92. writel(0, &STM32_RCC->cfgr); /* Reset CFGR */
  93. clrbits_le32(&STM32_RCC->cr, (RCC_CR_HSEON | RCC_CR_CSSON
  94. | RCC_CR_PLLON));
  95. clrbits_le32(&STM32_RCC->cr, RCC_CR_HSEBYP);
  96. writel(0, &STM32_RCC->cir); /* Disable all interrupts */
  97. /* Configure for HSE+PLL operation */
  98. setbits_le32(&STM32_RCC->cr, RCC_CR_HSEON);
  99. while (!(readl(&STM32_RCC->cr) & RCC_CR_HSERDY))
  100. ;
  101. /* Enable high performance mode, System frequency up to 168 MHz */
  102. setbits_le32(&STM32_RCC->apb1enr, RCC_APB1ENR_PWREN);
  103. writel(PWR_CR_VOS_SCALE_MODE_1, &STM32_PWR->cr);
  104. setbits_le32(&STM32_RCC->cfgr,
  105. RCC_CFGR_PLLMUL_CFG << RCC_CFGR_PLLMUL_SHIFT);
  106. setbits_le32(&STM32_RCC->cfgr, RCC_CFGR_PLLSRC_HSE);
  107. setbits_le32(&STM32_RCC->cfgr, ((
  108. psc_hse.ahb_psc << RCC_CFGR_HPRE_SHIFT)
  109. | (psc_hse.apb1_psc << RCC_CFGR_PPRE1_SHIFT)
  110. | (psc_hse.apb2_psc << RCC_CFGR_PPRE2_SHIFT)));
  111. setbits_le32(&STM32_RCC->cr, RCC_CR_PLLON);
  112. while (!(readl(&STM32_RCC->cr) & RCC_CR_PLLRDY))
  113. ;
  114. /* 5 wait states, Prefetch enabled, D-Cache enabled, I-Cache enabled */
  115. writel(FLASH_ACR_WS(5) | FLASH_ACR_PRFTEN | FLASH_ACR_ICEN
  116. | FLASH_ACR_DCEN, &STM32_FLASH->acr);
  117. clrbits_le32(&STM32_RCC->cfgr, (RCC_CFGR_SW0 | RCC_CFGR_SW1));
  118. setbits_le32(&STM32_RCC->cfgr, RCC_CFGR_SW_PLL);
  119. while ((readl(&STM32_RCC->cfgr) & RCC_CFGR_SWS_MASK) !=
  120. RCC_CFGR_SWS_PLL)
  121. ;
  122. return 0;
  123. }
  124. unsigned long clock_get(enum clock clck)
  125. {
  126. u32 sysclk = 0;
  127. u32 shift = 0;
  128. /* PLL table lookups for clock computation */
  129. u8 pll_mul_table[16] = {
  130. 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 16
  131. };
  132. /* Prescaler table lookups for clock computation */
  133. u8 ahb_psc_table[16] = {
  134. 0, 0, 0, 0, 0, 0, 0, 0, 1, 2, 3, 4, 6, 7, 8, 9
  135. };
  136. u8 apb_psc_table[8] = {
  137. 0, 0, 0, 0, 1, 2, 3, 4
  138. };
  139. if ((readl(&STM32_RCC->cfgr) & RCC_CFGR_SWS_MASK) ==
  140. RCC_CFGR_SWS_PLL) {
  141. u16 pll;
  142. pll = ((readl(&STM32_RCC->cfgr) & RCC_CFGR_PLLMUL_MASK)
  143. >> RCC_CFGR_PLLMUL_SHIFT);
  144. sysclk = CONFIG_STM32_HSE_HZ * pll_mul_table[pll];
  145. }
  146. switch (clck) {
  147. case CLOCK_CORE:
  148. return sysclk;
  149. break;
  150. case CLOCK_AHB:
  151. shift = ahb_psc_table[(
  152. (readl(&STM32_RCC->cfgr) & RCC_CFGR_AHB_PSC_MASK)
  153. >> RCC_CFGR_HPRE_SHIFT)];
  154. return sysclk >>= shift;
  155. break;
  156. case CLOCK_APB1:
  157. shift = apb_psc_table[(
  158. (readl(&STM32_RCC->cfgr) & RCC_CFGR_APB1_PSC_MASK)
  159. >> RCC_CFGR_PPRE1_SHIFT)];
  160. return sysclk >>= shift;
  161. break;
  162. case CLOCK_APB2:
  163. shift = apb_psc_table[(
  164. (readl(&STM32_RCC->cfgr) & RCC_CFGR_APB2_PSC_MASK)
  165. >> RCC_CFGR_PPRE2_SHIFT)];
  166. return sysclk >>= shift;
  167. break;
  168. default:
  169. return 0;
  170. break;
  171. }
  172. }