setup.c 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112
  1. /*
  2. *
  3. * arch/xtensa/platform-iss/setup.c
  4. *
  5. * Platform specific initialization.
  6. *
  7. * Authors: Chris Zankel <chris@zankel.net>
  8. * Joe Taylor <joe@tensilica.com>
  9. *
  10. * Copyright 2001 - 2005 Tensilica Inc.
  11. *
  12. * This program is free software; you can redistribute it and/or modify it
  13. * under the terms of the GNU General Public License as published by the
  14. * Free Software Foundation; either version 2 of the License, or (at your
  15. * option) any later version.
  16. *
  17. */
  18. #include <linux/config.h>
  19. #include <linux/stddef.h>
  20. #include <linux/kernel.h>
  21. #include <linux/init.h>
  22. #include <linux/errno.h>
  23. #include <linux/reboot.h>
  24. #include <linux/pci.h>
  25. #include <linux/kdev_t.h>
  26. #include <linux/types.h>
  27. #include <linux/major.h>
  28. #include <linux/blkdev.h>
  29. #include <linux/console.h>
  30. #include <linux/delay.h>
  31. #include <linux/stringify.h>
  32. #include <linux/notifier.h>
  33. #include <asm/platform.h>
  34. #include <asm/bootparam.h>
  35. void __init platform_init(bp_tag_t* bootparam)
  36. {
  37. }
  38. void platform_halt(void)
  39. {
  40. printk (" ** Called platform_halt(), looping forever! **\n");
  41. while (1);
  42. }
  43. void platform_power_off(void)
  44. {
  45. printk (" ** Called platform_power_off(), looping forever! **\n");
  46. while (1);
  47. }
  48. void platform_restart(void)
  49. {
  50. /* Flush and reset the mmu, simulate a processor reset, and
  51. * jump to the reset vector. */
  52. __asm__ __volatile__("movi a2, 15\n\t"
  53. "wsr a2, " __stringify(ICOUNTLEVEL) "\n\t"
  54. "movi a2, 0\n\t"
  55. "wsr a2, " __stringify(ICOUNT) "\n\t"
  56. "wsr a2, " __stringify(IBREAKENABLE) "\n\t"
  57. "wsr a2, " __stringify(LCOUNT) "\n\t"
  58. "movi a2, 0x1f\n\t"
  59. "wsr a2, " __stringify(PS) "\n\t"
  60. "isync\n\t"
  61. "jx %0\n\t"
  62. :
  63. : "a" (XCHAL_RESET_VECTOR_VADDR)
  64. : "a2");
  65. /* control never gets here */
  66. }
  67. extern void iss_net_poll(void);
  68. const char twirl[]="|/-\\|/-\\";
  69. void platform_heartbeat(void)
  70. {
  71. #if 0
  72. static int i = 0, j = 0;
  73. if (--i < 0) {
  74. i = 99;
  75. printk("\r%c\r", twirl[j++]);
  76. if (j == 8)
  77. j = 0;
  78. }
  79. #endif
  80. }
  81. static int
  82. iss_panic_event(struct notifier_block *this, unsigned long event, void *ptr)
  83. {
  84. __asm__ __volatile__("movi a2, -1; simcall\n");
  85. return NOTIFY_DONE;
  86. }
  87. static struct notifier_block iss_panic_block = {
  88. iss_panic_event,
  89. NULL,
  90. 0
  91. };
  92. void __init platform_setup(char **p_cmdline)
  93. {
  94. atomic_notifier_chain_register(&panic_notifier_list, &iss_panic_block);
  95. }