reset.c 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106
  1. /*
  2. * reset.c - logic for resetting the cpu
  3. *
  4. * Copyright (c) 2005-2008 Analog Devices Inc.
  5. *
  6. * Licensed under the GPL-2 or later.
  7. */
  8. #include <common.h>
  9. #include <command.h>
  10. #include <asm/blackfin.h>
  11. #include "cpu.h"
  12. /* A system soft reset makes external memory unusable so force
  13. * this function into L1. We use the compiler ssync here rather
  14. * than SSYNC() because it's safe (no interrupts and such) and
  15. * we save some L1. We do not need to force sanity in the SYSCR
  16. * register as the BMODE selection bit is cleared by the soft
  17. * reset while the Core B bit (on dual core parts) is cleared by
  18. * the core reset.
  19. */
  20. __attribute__ ((__l1_text__, __noreturn__))
  21. static void bfin_reset(void)
  22. {
  23. /* Wait for completion of "system" events such as cache line
  24. * line fills so that we avoid infinite stalls later on as
  25. * much as possible. This code is in L1, so it won't trigger
  26. * any such event after this point in time.
  27. */
  28. __builtin_bfin_ssync();
  29. /* The bootrom checks to see how it was reset and will
  30. * automatically perform a software reset for us when
  31. * it starts executing after the core reset.
  32. */
  33. if (ANOMALY_05000353 || ANOMALY_05000386) {
  34. /* Initiate System software reset. */
  35. bfin_write_SWRST(0x7);
  36. /* Due to the way reset is handled in the hardware, we need
  37. * to delay for 10 SCLKS. The only reliable way to do this is
  38. * to calculate the CCLK/SCLK ratio and multiply 10. For now,
  39. * we'll assume worse case which is a 1:15 ratio.
  40. */
  41. asm(
  42. "LSETUP (1f, 1f) LC0 = %0\n"
  43. "1: nop;"
  44. :
  45. : "a" (15 * 10)
  46. : "LC0", "LB0", "LT0"
  47. );
  48. /* Clear System software reset */
  49. bfin_write_SWRST(0);
  50. /* The BF526 ROM will crash during reset */
  51. #if defined(__ADSPBF522__) || defined(__ADSPBF524__) || defined(__ADSPBF526__)
  52. bfin_read_SWRST();
  53. #endif
  54. /* Wait for the SWRST write to complete. Cannot rely on SSYNC
  55. * though as the System state is all reset now.
  56. */
  57. asm(
  58. "LSETUP (1f, 1f) LC1 = %0\n"
  59. "1: nop;"
  60. :
  61. : "a" (15 * 1)
  62. : "LC1", "LB1", "LT1"
  63. );
  64. }
  65. while (1)
  66. /* Issue core reset */
  67. asm("raise 1");
  68. }
  69. /* We need to trampoline ourselves up into L1 since our linker
  70. * does not have relaxtion support and will only generate a
  71. * PC relative call with a 25 bit immediate. This is not enough
  72. * to get us from the top of SDRAM into L1.
  73. */
  74. __attribute__ ((__noreturn__))
  75. static inline void bfin_reset_trampoline(void)
  76. {
  77. if (board_reset)
  78. board_reset();
  79. while (1)
  80. asm("jump (%0);" : : "a" (bfin_reset));
  81. }
  82. __attribute__ ((__noreturn__))
  83. void bfin_reset_or_hang(void)
  84. {
  85. #ifdef CONFIG_PANIC_HANG
  86. hang();
  87. #else
  88. bfin_reset_trampoline();
  89. #endif
  90. }
  91. int do_reset(cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
  92. {
  93. bfin_reset_trampoline();
  94. return 0;
  95. }