cpu.c 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. /*
  2. * (C) Copyright 2010
  3. * Reinhard Meyer, reinhard.meyer@emk-elektronik.de
  4. * (C) Copyright 2009
  5. * Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
  6. *
  7. * SPDX-License-Identifier: GPL-2.0+
  8. */
  9. #include <common.h>
  10. #include <asm/io.h>
  11. #include <asm/arch/hardware.h>
  12. #include <asm/arch/at91_pit.h>
  13. #include <asm/arch/at91_gpbr.h>
  14. #include <asm/arch/clk.h>
  15. #ifndef CONFIG_SYS_AT91_MAIN_CLOCK
  16. #define CONFIG_SYS_AT91_MAIN_CLOCK 0
  17. #endif
  18. int arch_cpu_init(void)
  19. {
  20. return at91_clock_init(CONFIG_SYS_AT91_MAIN_CLOCK);
  21. }
  22. void arch_preboot_os(void)
  23. {
  24. ulong cpiv;
  25. at91_pit_t *pit = (at91_pit_t *) ATMEL_BASE_PIT;
  26. cpiv = AT91_PIT_MR_PIV_MASK(readl(&pit->piir));
  27. /*
  28. * Disable PITC
  29. * Add 0x1000 to current counter to stop it faster
  30. * without waiting for wrapping back to 0
  31. */
  32. writel(cpiv + 0x1000, &pit->mr);
  33. }
  34. #if defined(CONFIG_DISPLAY_CPUINFO)
  35. int print_cpuinfo(void)
  36. {
  37. char __maybe_unused buf[32];
  38. printf("CPU: %s\n", ATMEL_CPU_NAME);
  39. printf("Crystal frequency: %8s MHz\n",
  40. strmhz(buf, get_main_clk_rate()));
  41. printf("CPU clock : %8s MHz\n",
  42. strmhz(buf, get_cpu_clk_rate()));
  43. printf("Master clock : %8s MHz\n",
  44. strmhz(buf, get_mck_clk_rate()));
  45. return 0;
  46. }
  47. #endif