timer.c 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121
  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. * SPDX-License-Identifier: GPL-2.0+
  9. */
  10. #include <common.h>
  11. #include <asm/io.h>
  12. #include <asm/armv7m.h>
  13. #include <asm/arch/stm32.h>
  14. DECLARE_GLOBAL_DATA_PTR;
  15. #define STM32_TIM2_BASE (STM32_APB1PERIPH_BASE + 0x0000)
  16. #define RCC_APB1ENR_TIM2EN (1 << 0)
  17. struct stm32_tim2_5 {
  18. u32 cr1;
  19. u32 cr2;
  20. u32 smcr;
  21. u32 dier;
  22. u32 sr;
  23. u32 egr;
  24. u32 ccmr1;
  25. u32 ccmr2;
  26. u32 ccer;
  27. u32 cnt;
  28. u32 psc;
  29. u32 arr;
  30. u32 reserved1;
  31. u32 ccr1;
  32. u32 ccr2;
  33. u32 ccr3;
  34. u32 ccr4;
  35. u32 reserved2;
  36. u32 dcr;
  37. u32 dmar;
  38. u32 or;
  39. };
  40. #define TIM_CR1_CEN (1 << 0)
  41. #define TIM_EGR_UG (1 << 0)
  42. int timer_init(void)
  43. {
  44. struct stm32_tim2_5 *tim = (struct stm32_tim2_5 *)STM32_TIM2_BASE;
  45. setbits_le32(&STM32_RCC->apb1enr, RCC_APB1ENR_TIM2EN);
  46. if (clock_get(CLOCK_AHB) == clock_get(CLOCK_APB1))
  47. writel((clock_get(CLOCK_APB1) / CONFIG_SYS_HZ_CLOCK) - 1,
  48. &tim->psc);
  49. else
  50. writel(((clock_get(CLOCK_APB1) * 2) / CONFIG_SYS_HZ_CLOCK) - 1,
  51. &tim->psc);
  52. writel(0xFFFFFFFF, &tim->arr);
  53. writel(TIM_CR1_CEN, &tim->cr1);
  54. setbits_le32(&tim->egr, TIM_EGR_UG);
  55. gd->arch.tbl = 0;
  56. gd->arch.tbu = 0;
  57. gd->arch.lastinc = 0;
  58. return 0;
  59. }
  60. ulong get_timer(ulong base)
  61. {
  62. return (get_ticks() / (CONFIG_SYS_HZ_CLOCK / CONFIG_SYS_HZ)) - base;
  63. }
  64. unsigned long long get_ticks(void)
  65. {
  66. struct stm32_tim2_5 *tim = (struct stm32_tim2_5 *)STM32_TIM2_BASE;
  67. u32 now;
  68. now = readl(&tim->cnt);
  69. if (now >= gd->arch.lastinc)
  70. gd->arch.tbl += (now - gd->arch.lastinc);
  71. else
  72. gd->arch.tbl += (0xFFFFFFFF - gd->arch.lastinc) + now;
  73. gd->arch.lastinc = now;
  74. return gd->arch.tbl;
  75. }
  76. void reset_timer(void)
  77. {
  78. struct stm32_tim2_5 *tim = (struct stm32_tim2_5 *)STM32_TIM2_BASE;
  79. gd->arch.lastinc = readl(&tim->cnt);
  80. gd->arch.tbl = 0;
  81. }
  82. /* delay x useconds */
  83. void __udelay(ulong usec)
  84. {
  85. unsigned long long start;
  86. start = get_ticks(); /* get current timestamp */
  87. while ((get_ticks() - start) < usec)
  88. ; /* loop till time has passed */
  89. }
  90. /*
  91. * This function is derived from PowerPC code (timebase clock frequency).
  92. * On ARM it returns the number of timer ticks per second.
  93. */
  94. ulong get_tbclk(void)
  95. {
  96. return CONFIG_SYS_HZ_CLOCK;
  97. }