cpu.c 2.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  1. /*
  2. * Copyright (C) 2005-2006 Atmel Corporation
  3. *
  4. * See file CREDITS for list of people who contributed to this
  5. * project.
  6. *
  7. * This program is free software; you can redistribute it and/or
  8. * modify it under the terms of the GNU General Public License as
  9. * published by the Free Software Foundation; either version 2 of
  10. * the License, or (at your option) any later version.
  11. *
  12. * This program is distributed in the hope that it will be useful,
  13. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  15. * GNU General Public License for more details.
  16. *
  17. * You should have received a copy of the GNU General Public License
  18. * along with this program; if not, write to the Free Software
  19. * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
  20. * MA 02111-1307 USA
  21. */
  22. #include <common.h>
  23. #include <command.h>
  24. #include <asm/io.h>
  25. #include <asm/sections.h>
  26. #include <asm/sysreg.h>
  27. #include <asm/arch/clk.h>
  28. #include <asm/arch/memory-map.h>
  29. #include "hsmc3.h"
  30. /* Sanity checks */
  31. #if (CONFIG_SYS_CLKDIV_CPU > CONFIG_SYS_CLKDIV_HSB) \
  32. || (CONFIG_SYS_CLKDIV_HSB > CONFIG_SYS_CLKDIV_PBA) \
  33. || (CONFIG_SYS_CLKDIV_HSB > CONFIG_SYS_CLKDIV_PBB)
  34. # error Constraint fCPU >= fHSB >= fPB{A,B} violated
  35. #endif
  36. #if defined(CONFIG_PLL) && ((CONFIG_SYS_PLL0_MUL < 1) || (CONFIG_SYS_PLL0_DIV < 1))
  37. # error Invalid PLL multiplier and/or divider
  38. #endif
  39. DECLARE_GLOBAL_DATA_PTR;
  40. int cpu_init(void)
  41. {
  42. extern void _evba(void);
  43. gd->cpu_hz = CONFIG_SYS_OSC0_HZ;
  44. /* TODO: Move somewhere else, but needs to be run before we
  45. * increase the clock frequency. */
  46. hsmc3_writel(MODE0, 0x00031103);
  47. hsmc3_writel(CYCLE0, 0x000c000d);
  48. hsmc3_writel(PULSE0, 0x0b0a0906);
  49. hsmc3_writel(SETUP0, 0x00010002);
  50. clk_init();
  51. /* Update the CPU speed according to the PLL configuration */
  52. gd->cpu_hz = get_cpu_clk_rate();
  53. /* Set up the exception handler table and enable exceptions */
  54. sysreg_write(EVBA, (unsigned long)&_evba);
  55. asm volatile("csrf %0" : : "i"(SYSREG_EM_OFFSET));
  56. return 0;
  57. }
  58. void prepare_to_boot(void)
  59. {
  60. /* Flush both caches and the write buffer */
  61. asm volatile("cache %0[4], 010\n\t"
  62. "cache %0[0], 000\n\t"
  63. "sync 0" : : "r"(0) : "memory");
  64. }
  65. int do_reset(cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
  66. {
  67. /* This will reset the CPU core, caches, MMU and all internal busses */
  68. __builtin_mtdr(8, 1 << 13); /* set DC:DBE */
  69. __builtin_mtdr(8, 1 << 30); /* set DC:RES */
  70. /* Flush the pipeline before we declare it a failure */
  71. asm volatile("sub pc, pc, -4");
  72. return -1;
  73. }