Blame view

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