cpu.c 1.5 KB

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