cpu.c 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  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. * See file CREDITS for list of people who contributed to this
  8. * project.
  9. *
  10. * This program is free software; you can redistribute it and/or
  11. * modify it under the terms of the GNU General Public License as
  12. * published by the Free Software Foundation; either version 2 of
  13. * the License, or (at your option) any later version.
  14. *
  15. * This program is distributed in the hope that it will be useful,
  16. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  17. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  18. * GNU General Public License for more details.
  19. *
  20. * You should have received a copy of the GNU General Public License
  21. * along with this program; if not, write to the Free Software
  22. * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
  23. * MA 02111-1307 USA
  24. */
  25. #include <common.h>
  26. #include <asm/arch/hardware.h>
  27. #include <asm/arch/at91_pmc.h>
  28. #include <asm/arch/at91_pit.h>
  29. #include <asm/arch/at91_gpbr.h>
  30. #include <asm/arch/clk.h>
  31. #include <asm/arch/io.h>
  32. #ifndef CONFIG_SYS_AT91_MAIN_CLOCK
  33. #define CONFIG_SYS_AT91_MAIN_CLOCK 0
  34. #endif
  35. int arch_cpu_init(void)
  36. {
  37. return at91_clock_init(CONFIG_SYS_AT91_MAIN_CLOCK);
  38. }
  39. void arch_preboot_os(void)
  40. {
  41. ulong cpiv;
  42. at91_pit_t *pit = (at91_pit_t *) AT91_PIT_BASE;
  43. cpiv = AT91_PIT_MR_PIV_MASK(readl(&pit->piir));
  44. /*
  45. * Disable PITC
  46. * Add 0x1000 to current counter to stop it faster
  47. * without waiting for wrapping back to 0
  48. */
  49. writel(cpiv + 0x1000, &pit->mr);
  50. }
  51. #if defined(CONFIG_DISPLAY_CPUINFO)
  52. int print_cpuinfo(void)
  53. {
  54. char buf[32];
  55. printf("CPU: %s\n", CONFIG_SYS_AT91_CPU_NAME);
  56. printf("Crystal frequency: %8s MHz\n",
  57. strmhz(buf, get_main_clk_rate()));
  58. printf("CPU clock : %8s MHz\n",
  59. strmhz(buf, get_cpu_clk_rate()));
  60. printf("Master clock : %8s MHz\n",
  61. strmhz(buf, get_mck_clk_rate()));
  62. return 0;
  63. }
  64. #endif
  65. #ifdef CONFIG_BOOTCOUNT_LIMIT
  66. /*
  67. * We combine the BOOTCOUNT_MAGIC and bootcount in one 32-bit register.
  68. * This is done so we need to use only one of the four GPBR registers.
  69. */
  70. void bootcount_store (ulong a)
  71. {
  72. at91_gpbr_t *gpbr = (at91_gpbr_t *) AT91_GPR_BASE;
  73. writel((BOOTCOUNT_MAGIC & 0xffff0000) | (a & 0x0000ffff),
  74. &gpbr->reg[AT91_GPBR_INDEX_BOOTCOUNT]);
  75. }
  76. ulong bootcount_load (void)
  77. {
  78. at91_gpbr_t *gpbr = (at91_gpbr_t *) AT91_GPR_BASE;
  79. ulong val = readl(&gpbr->reg[AT91_GPBR_INDEX_BOOTCOUNT]);
  80. if ((val & 0xffff0000) != (BOOTCOUNT_MAGIC & 0xffff0000))
  81. return 0;
  82. else
  83. return val & 0x0000ffff;
  84. }
  85. #endif /* CONFIG_BOOTCOUNT_LIMIT */