reboot.c 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115
  1. /*
  2. * arch/blackfin/kernel/reboot.c - handle shutdown/reboot
  3. *
  4. * Copyright 2004-2007 Analog Devices Inc.
  5. *
  6. * Licensed under the GPL-2 or later.
  7. */
  8. #include <linux/interrupt.h>
  9. #include <asm/bfin-global.h>
  10. #include <asm/reboot.h>
  11. #include <asm/bfrom.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. #ifndef CONFIG_BF60x
  24. if (!ANOMALY_05000353 && !ANOMALY_05000386)
  25. bfrom_SoftReset((void *)(L1_SCRATCH_START + L1_SCRATCH_LENGTH - 20));
  26. /* Wait for completion of "system" events such as cache line
  27. * line fills so that we avoid infinite stalls later on as
  28. * much as possible. This code is in L1, so it won't trigger
  29. * any such event after this point in time.
  30. */
  31. __builtin_bfin_ssync();
  32. /* Initiate System software reset. */
  33. bfin_write_SWRST(0x7);
  34. /* Due to the way reset is handled in the hardware, we need
  35. * to delay for 10 SCLKS. The only reliable way to do this is
  36. * to calculate the CCLK/SCLK ratio and multiply 10. For now,
  37. * we'll assume worse case which is a 1:15 ratio.
  38. */
  39. asm(
  40. "LSETUP (1f, 1f) LC0 = %0\n"
  41. "1: nop;"
  42. :
  43. : "a" (15 * 10)
  44. : "LC0", "LB0", "LT0"
  45. );
  46. /* Clear System software reset */
  47. bfin_write_SWRST(0);
  48. /* The BF526 ROM will crash during reset */
  49. #if defined(__ADSPBF522__) || defined(__ADSPBF524__) || defined(__ADSPBF526__)
  50. /* Seems to be fixed with newer parts though ... */
  51. if (__SILICON_REVISION__ < 1 && bfin_revid() < 1)
  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. while (1)
  65. /* Issue core reset */
  66. asm("raise 1");
  67. #else
  68. while (1)
  69. bfin_write_RCU0_CTL(0x1);
  70. #endif
  71. }
  72. __attribute__((weak))
  73. void native_machine_restart(char *cmd)
  74. {
  75. }
  76. void machine_restart(char *cmd)
  77. {
  78. native_machine_restart(cmd);
  79. if (smp_processor_id())
  80. smp_call_function((void *)bfin_reset, 0, 1);
  81. else
  82. bfin_reset();
  83. }
  84. __attribute__((weak))
  85. void native_machine_halt(void)
  86. {
  87. idle_with_irq_disabled();
  88. }
  89. void machine_halt(void)
  90. {
  91. native_machine_halt();
  92. }
  93. __attribute__((weak))
  94. void native_machine_power_off(void)
  95. {
  96. idle_with_irq_disabled();
  97. }
  98. void machine_power_off(void)
  99. {
  100. native_machine_power_off();
  101. }