sas_dump.c 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. /*
  2. * Serial Attached SCSI (SAS) Dump/Debugging routines
  3. *
  4. * Copyright (C) 2005 Adaptec, Inc. All rights reserved.
  5. * Copyright (C) 2005 Luben Tuikov <luben_tuikov@adaptec.com>
  6. *
  7. * This file is licensed under GPLv2.
  8. *
  9. * This program is free software; you can redistribute it and/or
  10. * modify it under the terms of the GNU General Public License as
  11. * published by the Free Software Foundation; either version 2 of the
  12. * License, or (at your option) any later version.
  13. *
  14. * This program is distributed in the hope that it will be useful, but
  15. * WITHOUT ANY WARRANTY; without even the implied warranty of
  16. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  17. * General Public License for more details.
  18. *
  19. * You should have received a copy of the GNU General Public License
  20. * along with this program; if not, write to the Free Software
  21. * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
  22. *
  23. */
  24. #include "sas_dump.h"
  25. static const char *sas_hae_str[] = {
  26. [0] = "HAE_RESET",
  27. };
  28. static const char *sas_porte_str[] = {
  29. [0] = "PORTE_BYTES_DMAED",
  30. [1] = "PORTE_BROADCAST_RCVD",
  31. [2] = "PORTE_LINK_RESET_ERR",
  32. [3] = "PORTE_TIMER_EVENT",
  33. [4] = "PORTE_HARD_RESET",
  34. };
  35. static const char *sas_phye_str[] = {
  36. [0] = "PHYE_LOSS_OF_SIGNAL",
  37. [1] = "PHYE_OOB_DONE",
  38. [2] = "PHYE_OOB_ERROR",
  39. [3] = "PHYE_SPINUP_HOLD",
  40. [4] = "PHYE_RESUME_TIMEOUT",
  41. };
  42. void sas_dprint_porte(int phyid, enum port_event pe)
  43. {
  44. SAS_DPRINTK("phy%d: port event: %s\n", phyid, sas_porte_str[pe]);
  45. }
  46. void sas_dprint_phye(int phyid, enum phy_event pe)
  47. {
  48. SAS_DPRINTK("phy%d: phy event: %s\n", phyid, sas_phye_str[pe]);
  49. }
  50. void sas_dprint_hae(struct sas_ha_struct *sas_ha, enum ha_event he)
  51. {
  52. SAS_DPRINTK("ha %s: %s event\n", dev_name(sas_ha->dev),
  53. sas_hae_str[he]);
  54. }
  55. void sas_dump_port(struct asd_sas_port *port)
  56. {
  57. SAS_DPRINTK("port%d: class:0x%x\n", port->id, port->class);
  58. SAS_DPRINTK("port%d: sas_addr:%llx\n", port->id,
  59. SAS_ADDR(port->sas_addr));
  60. SAS_DPRINTK("port%d: attached_sas_addr:%llx\n", port->id,
  61. SAS_ADDR(port->attached_sas_addr));
  62. SAS_DPRINTK("port%d: iproto:0x%x\n", port->id, port->iproto);
  63. SAS_DPRINTK("port%d: tproto:0x%x\n", port->id, port->tproto);
  64. SAS_DPRINTK("port%d: oob_mode:0x%x\n", port->id, port->oob_mode);
  65. SAS_DPRINTK("port%d: num_phys:%d\n", port->id, port->num_phys);
  66. }