opal-kmsg.c 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. /*
  2. * kmsg dumper that ensures the OPAL console fully flushes panic messages
  3. *
  4. * Author: Russell Currey <ruscur@russell.cc>
  5. *
  6. * Copyright 2015 IBM Corporation.
  7. *
  8. * This program is free software; you can redistribute it and/or modify it
  9. * under the terms of the GNU General Public License as published by the
  10. * Free Software Foundation; either version 2 of the License, or (at your
  11. * option) any later version.
  12. */
  13. #include <linux/kmsg_dump.h>
  14. #include <asm/opal.h>
  15. #include <asm/opal-api.h>
  16. /*
  17. * Console output is controlled by OPAL firmware. The kernel regularly calls
  18. * OPAL_POLL_EVENTS, which flushes some console output. In a panic state,
  19. * however, the kernel no longer calls OPAL_POLL_EVENTS and the panic message
  20. * may not be completely printed. This function does not actually dump the
  21. * message, it just ensures that OPAL completely flushes the console buffer.
  22. */
  23. static void force_opal_console_flush(struct kmsg_dumper *dumper,
  24. enum kmsg_dump_reason reason)
  25. {
  26. int i;
  27. int64_t ret;
  28. /*
  29. * Outside of a panic context the pollers will continue to run,
  30. * so we don't need to do any special flushing.
  31. */
  32. if (reason != KMSG_DUMP_PANIC)
  33. return;
  34. if (opal_check_token(OPAL_CONSOLE_FLUSH)) {
  35. ret = opal_console_flush(0);
  36. if (ret == OPAL_UNSUPPORTED || ret == OPAL_PARAMETER)
  37. return;
  38. /* Incrementally flush until there's nothing left */
  39. while (opal_console_flush(0) != OPAL_SUCCESS);
  40. } else {
  41. /*
  42. * If OPAL_CONSOLE_FLUSH is not implemented in the firmware,
  43. * the console can still be flushed by calling the polling
  44. * function enough times to flush the buffer. We don't know
  45. * how much output still needs to be flushed, but we can be
  46. * generous since the kernel is in panic and doesn't need
  47. * to do much else.
  48. */
  49. printk(KERN_NOTICE "opal: OPAL_CONSOLE_FLUSH missing.\n");
  50. for (i = 0; i < 1024; i++) {
  51. opal_poll_events(NULL);
  52. }
  53. }
  54. }
  55. static struct kmsg_dumper opal_kmsg_dumper = {
  56. .dump = force_opal_console_flush
  57. };
  58. void __init opal_kmsg_init(void)
  59. {
  60. int rc;
  61. /* Add our dumper to the list */
  62. rc = kmsg_dump_register(&opal_kmsg_dumper);
  63. if (rc != 0)
  64. pr_err("opal: kmsg_dump_register failed; returned %d\n", rc);
  65. }