- more 2.6.17 port work (still does not build)
[linux-flexiantxendom0-3.2.10.git] / drivers / scsi / sas / sas_dump.c
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  * $Id: //depot/sas-class/sas_dump.c#4 $
24  */
25
26 #include "sas_dump.h"
27
28 #ifdef SAS_DEBUG
29
30 static const char *sas_hae_str[] = {
31         [0] = "HAE_RESET",
32 };
33
34 static const char *sas_porte_str[] = {
35         [0] = "PORTE_BYTES_DMAED",
36         [1] = "PORTE_BROADCAST_RCVD",
37         [2] = "PORTE_LINK_RESET_ERR",
38         [3] = "PORTE_TIMER_EVENT",
39         [4] = "PORTE_HARD_RESET",
40 };
41
42 static const char *sas_phye_str[] = {
43         [0] = "PHYE_LOSS_OF_SIGNAL",
44         [1] = "PHYE_OOB_DONE",
45         [2] = "PHYE_OOB_ERROR",
46         [3] = "PHYE_SPINUP_HOLD",
47 };
48
49 void sas_dprint_porte(int phyid, enum port_event pe)
50 {
51         SAS_DPRINTK("phy%d: port event: %s\n", phyid, sas_porte_str[pe]);
52 }
53 void sas_dprint_phye(int phyid, enum phy_event pe)
54 {
55         SAS_DPRINTK("phy%d: phy event: %s\n", phyid, sas_phye_str[pe]);
56 }
57
58 void sas_dprint_hae(struct sas_ha_struct *sas_ha, enum ha_event he)
59 {
60         SAS_DPRINTK("ha %s: %s event\n", pci_name(sas_ha->pcidev),
61                     sas_hae_str[he]);
62 }
63
64 void sas_dump_port(struct sas_port *port)
65 {
66         SAS_DPRINTK("port%d: class:0x%x\n", port->id, port->class);
67         SAS_DPRINTK("port%d: sas_addr:%llx\n", port->id,
68                     SAS_ADDR(port->sas_addr));
69         SAS_DPRINTK("port%d: attached_sas_addr:%llx\n", port->id,
70                     SAS_ADDR(port->attached_sas_addr));
71         SAS_DPRINTK("port%d: iproto:0x%x\n", port->id, port->iproto);
72         SAS_DPRINTK("port%d: tproto:0x%x\n", port->id, port->tproto);
73         SAS_DPRINTK("port%d: oob_mode:0x%x\n", port->id, port->oob_mode);
74         SAS_DPRINTK("port%d: num_phys:%d\n", port->id, port->num_phys);
75 }
76
77 #endif /* SAS_DEBUG */