cpu.c 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  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/memory-map.h>
  28. #include <asm/arch/platform.h>
  29. #include "hsmc3.h"
  30. DECLARE_GLOBAL_DATA_PTR;
  31. int cpu_init(void)
  32. {
  33. const struct device *hebi;
  34. extern void _evba(void);
  35. char *p;
  36. gd->cpu_hz = CFG_OSC0_HZ;
  37. /* fff03400: 00010001 04030402 00050005 10011103 */
  38. hebi = get_device(DEVICE_HEBI);
  39. hsmc3_writel(hebi, MODE0, 0x00031103);
  40. hsmc3_writel(hebi, CYCLE0, 0x000c000d);
  41. hsmc3_writel(hebi, PULSE0, 0x0b0a0906);
  42. hsmc3_writel(hebi, SETUP0, 0x00010002);
  43. pm_init();
  44. sysreg_write(EVBA, (unsigned long)&_evba);
  45. asm volatile("csrf %0" : : "i"(SYSREG_EM_OFFSET));
  46. gd->console_uart = get_device(CFG_CONSOLE_UART_DEV);
  47. /* Lock everything that mess with the flash in the icache */
  48. for (p = __flashprog_start; p <= (__flashprog_end + CFG_ICACHE_LINESZ);
  49. p += CFG_ICACHE_LINESZ)
  50. asm volatile("cache %0, 0x02" : "=m"(*p) :: "memory");
  51. return 0;
  52. }
  53. void prepare_to_boot(void)
  54. {
  55. /* Flush both caches and the write buffer */
  56. asm volatile("cache %0[4], 010\n\t"
  57. "cache %0[0], 000\n\t"
  58. "sync 0" : : "r"(0) : "memory");
  59. }
  60. int do_reset(cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
  61. {
  62. /* This will reset the CPU core, caches, MMU and all internal busses */
  63. __builtin_mtdr(8, 1 << 13); /* set DC:DBE */
  64. __builtin_mtdr(8, 1 << 30); /* set DC:RES */
  65. /* Flush the pipeline before we declare it a failure */
  66. asm volatile("sub pc, pc, -4");
  67. return -1;
  68. }