Linux Audio

Check our new training course

Loading...
v4.6
 
  1/*
  2 * libata-trace.c - trace functions for libata
  3 *
  4 * Copyright 2015 Hannes Reinecke
  5 * Copyright 2015 SUSE Linux GmbH
  6 *
  7 *  This program is free software; you can redistribute it and/or modify
  8 *  it under the terms of the GNU General Public License as published by
  9 *  the Free Software Foundation; either version 2, or (at your option)
 10 *  any later version.
 11 *
 12 *  This program is distributed in the hope that it will be useful,
 13 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 14 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 15 *  GNU General Public License for more details.
 16 *
 17 *  You should have received a copy of the GNU General Public License
 18 *  along with this program; see the file COPYING.  If not, write to
 19 *  the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
 20 */
 21
 22#include <linux/kernel.h>
 23#include <linux/trace_seq.h>
 24#include <trace/events/libata.h>
 25
 26const char *
 27libata_trace_parse_status(struct trace_seq *p, unsigned char status)
 28{
 29	const char *ret = trace_seq_buffer_ptr(p);
 30
 31	trace_seq_printf(p, "{ ");
 32	if (status & ATA_BUSY)
 33		trace_seq_printf(p, "BUSY ");
 34	if (status & ATA_DRDY)
 35		trace_seq_printf(p, "DRDY ");
 36	if (status & ATA_DF)
 37		trace_seq_printf(p, "DF ");
 38	if (status & ATA_DSC)
 39		trace_seq_printf(p, "DSC ");
 40	if (status & ATA_DRQ)
 41		trace_seq_printf(p, "DRQ ");
 42	if (status & ATA_CORR)
 43		trace_seq_printf(p, "CORR ");
 44	if (status & ATA_SENSE)
 45		trace_seq_printf(p, "SENSE ");
 46	if (status & ATA_ERR)
 47		trace_seq_printf(p, "ERR ");
 48	trace_seq_putc(p, '}');
 49	trace_seq_putc(p, 0);
 50
 51	return ret;
 52}
 53
 54const char *
 55libata_trace_parse_eh_action(struct trace_seq *p, unsigned int eh_action)
 56{
 57	const char *ret = trace_seq_buffer_ptr(p);
 58
 59	trace_seq_printf(p, "%x", eh_action);
 60	if (eh_action) {
 61		trace_seq_printf(p, "{ ");
 62		if (eh_action & ATA_EH_REVALIDATE)
 63			trace_seq_printf(p, "REVALIDATE ");
 64		if (eh_action & (ATA_EH_SOFTRESET | ATA_EH_HARDRESET))
 65			trace_seq_printf(p, "RESET ");
 66		else if (eh_action & ATA_EH_SOFTRESET)
 67			trace_seq_printf(p, "SOFTRESET ");
 68		else if (eh_action & ATA_EH_HARDRESET)
 69			trace_seq_printf(p, "HARDRESET ");
 70		if (eh_action & ATA_EH_ENABLE_LINK)
 71			trace_seq_printf(p, "ENABLE_LINK ");
 72		if (eh_action & ATA_EH_PARK)
 73			trace_seq_printf(p, "PARK ");
 74		trace_seq_putc(p, '}');
 75	}
 76	trace_seq_putc(p, 0);
 77
 78	return ret;
 79}
 80
 81const char *
 82libata_trace_parse_eh_err_mask(struct trace_seq *p, unsigned int eh_err_mask)
 83{
 84	const char *ret = trace_seq_buffer_ptr(p);
 85
 86	trace_seq_printf(p, "%x", eh_err_mask);
 87	if (eh_err_mask) {
 88		trace_seq_printf(p, "{ ");
 89		if (eh_err_mask & AC_ERR_DEV)
 90			trace_seq_printf(p, "DEV ");
 91		if (eh_err_mask & AC_ERR_HSM)
 92			trace_seq_printf(p, "HSM ");
 93		if (eh_err_mask & AC_ERR_TIMEOUT)
 94			trace_seq_printf(p, "TIMEOUT ");
 95		if (eh_err_mask & AC_ERR_MEDIA)
 96			trace_seq_printf(p, "MEDIA ");
 97		if (eh_err_mask & AC_ERR_ATA_BUS)
 98			trace_seq_printf(p, "ATA_BUS ");
 99		if (eh_err_mask & AC_ERR_HOST_BUS)
100			trace_seq_printf(p, "HOST_BUS ");
101		if (eh_err_mask & AC_ERR_SYSTEM)
102			trace_seq_printf(p, "SYSTEM ");
103		if (eh_err_mask & AC_ERR_INVALID)
104			trace_seq_printf(p, "INVALID ");
105		if (eh_err_mask & AC_ERR_OTHER)
106			trace_seq_printf(p, "OTHER ");
107		if (eh_err_mask & AC_ERR_NODEV_HINT)
108			trace_seq_printf(p, "NODEV_HINT ");
109		if (eh_err_mask & AC_ERR_NCQ)
110			trace_seq_printf(p, "NCQ ");
111		trace_seq_putc(p, '}');
112	}
113	trace_seq_putc(p, 0);
114
115	return ret;
116}
117
118const char *
119libata_trace_parse_qc_flags(struct trace_seq *p, unsigned int qc_flags)
120{
121	const char *ret = trace_seq_buffer_ptr(p);
122
123	trace_seq_printf(p, "%x", qc_flags);
124	if (qc_flags) {
125		trace_seq_printf(p, "{ ");
126		if (qc_flags & ATA_QCFLAG_ACTIVE)
127			trace_seq_printf(p, "ACTIVE ");
128		if (qc_flags & ATA_QCFLAG_DMAMAP)
129			trace_seq_printf(p, "DMAMAP ");
130		if (qc_flags & ATA_QCFLAG_IO)
131			trace_seq_printf(p, "IO ");
132		if (qc_flags & ATA_QCFLAG_RESULT_TF)
133			trace_seq_printf(p, "RESULT_TF ");
134		if (qc_flags & ATA_QCFLAG_CLEAR_EXCL)
135			trace_seq_printf(p, "CLEAR_EXCL ");
136		if (qc_flags & ATA_QCFLAG_QUIET)
137			trace_seq_printf(p, "QUIET ");
138		if (qc_flags & ATA_QCFLAG_RETRY)
139			trace_seq_printf(p, "RETRY ");
140		if (qc_flags & ATA_QCFLAG_FAILED)
141			trace_seq_printf(p, "FAILED ");
142		if (qc_flags & ATA_QCFLAG_SENSE_VALID)
143			trace_seq_printf(p, "SENSE_VALID ");
144		if (qc_flags & ATA_QCFLAG_EH_SCHEDULED)
145			trace_seq_printf(p, "EH_SCHEDULED ");
146		trace_seq_putc(p, '}');
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
147	}
148	trace_seq_putc(p, 0);
149
150	return ret;
151}
v5.9
  1// SPDX-License-Identifier: GPL-2.0-or-later
  2/*
  3 * libata-trace.c - trace functions for libata
  4 *
  5 * Copyright 2015 Hannes Reinecke
  6 * Copyright 2015 SUSE Linux GmbH
 
 
 
 
 
 
 
 
 
 
 
 
 
 
  7 */
  8
  9#include <linux/kernel.h>
 10#include <linux/trace_seq.h>
 11#include <trace/events/libata.h>
 12
 13const char *
 14libata_trace_parse_status(struct trace_seq *p, unsigned char status)
 15{
 16	const char *ret = trace_seq_buffer_ptr(p);
 17
 18	trace_seq_printf(p, "{ ");
 19	if (status & ATA_BUSY)
 20		trace_seq_printf(p, "BUSY ");
 21	if (status & ATA_DRDY)
 22		trace_seq_printf(p, "DRDY ");
 23	if (status & ATA_DF)
 24		trace_seq_printf(p, "DF ");
 25	if (status & ATA_DSC)
 26		trace_seq_printf(p, "DSC ");
 27	if (status & ATA_DRQ)
 28		trace_seq_printf(p, "DRQ ");
 29	if (status & ATA_CORR)
 30		trace_seq_printf(p, "CORR ");
 31	if (status & ATA_SENSE)
 32		trace_seq_printf(p, "SENSE ");
 33	if (status & ATA_ERR)
 34		trace_seq_printf(p, "ERR ");
 35	trace_seq_putc(p, '}');
 36	trace_seq_putc(p, 0);
 37
 38	return ret;
 39}
 40
 41const char *
 42libata_trace_parse_eh_action(struct trace_seq *p, unsigned int eh_action)
 43{
 44	const char *ret = trace_seq_buffer_ptr(p);
 45
 46	trace_seq_printf(p, "%x", eh_action);
 47	if (eh_action) {
 48		trace_seq_printf(p, "{ ");
 49		if (eh_action & ATA_EH_REVALIDATE)
 50			trace_seq_printf(p, "REVALIDATE ");
 51		if (eh_action & (ATA_EH_SOFTRESET | ATA_EH_HARDRESET))
 52			trace_seq_printf(p, "RESET ");
 53		else if (eh_action & ATA_EH_SOFTRESET)
 54			trace_seq_printf(p, "SOFTRESET ");
 55		else if (eh_action & ATA_EH_HARDRESET)
 56			trace_seq_printf(p, "HARDRESET ");
 57		if (eh_action & ATA_EH_ENABLE_LINK)
 58			trace_seq_printf(p, "ENABLE_LINK ");
 59		if (eh_action & ATA_EH_PARK)
 60			trace_seq_printf(p, "PARK ");
 61		trace_seq_putc(p, '}');
 62	}
 63	trace_seq_putc(p, 0);
 64
 65	return ret;
 66}
 67
 68const char *
 69libata_trace_parse_eh_err_mask(struct trace_seq *p, unsigned int eh_err_mask)
 70{
 71	const char *ret = trace_seq_buffer_ptr(p);
 72
 73	trace_seq_printf(p, "%x", eh_err_mask);
 74	if (eh_err_mask) {
 75		trace_seq_printf(p, "{ ");
 76		if (eh_err_mask & AC_ERR_DEV)
 77			trace_seq_printf(p, "DEV ");
 78		if (eh_err_mask & AC_ERR_HSM)
 79			trace_seq_printf(p, "HSM ");
 80		if (eh_err_mask & AC_ERR_TIMEOUT)
 81			trace_seq_printf(p, "TIMEOUT ");
 82		if (eh_err_mask & AC_ERR_MEDIA)
 83			trace_seq_printf(p, "MEDIA ");
 84		if (eh_err_mask & AC_ERR_ATA_BUS)
 85			trace_seq_printf(p, "ATA_BUS ");
 86		if (eh_err_mask & AC_ERR_HOST_BUS)
 87			trace_seq_printf(p, "HOST_BUS ");
 88		if (eh_err_mask & AC_ERR_SYSTEM)
 89			trace_seq_printf(p, "SYSTEM ");
 90		if (eh_err_mask & AC_ERR_INVALID)
 91			trace_seq_printf(p, "INVALID ");
 92		if (eh_err_mask & AC_ERR_OTHER)
 93			trace_seq_printf(p, "OTHER ");
 94		if (eh_err_mask & AC_ERR_NODEV_HINT)
 95			trace_seq_printf(p, "NODEV_HINT ");
 96		if (eh_err_mask & AC_ERR_NCQ)
 97			trace_seq_printf(p, "NCQ ");
 98		trace_seq_putc(p, '}');
 99	}
100	trace_seq_putc(p, 0);
101
102	return ret;
103}
104
105const char *
106libata_trace_parse_qc_flags(struct trace_seq *p, unsigned int qc_flags)
107{
108	const char *ret = trace_seq_buffer_ptr(p);
109
110	trace_seq_printf(p, "%x", qc_flags);
111	if (qc_flags) {
112		trace_seq_printf(p, "{ ");
113		if (qc_flags & ATA_QCFLAG_ACTIVE)
114			trace_seq_printf(p, "ACTIVE ");
115		if (qc_flags & ATA_QCFLAG_DMAMAP)
116			trace_seq_printf(p, "DMAMAP ");
117		if (qc_flags & ATA_QCFLAG_IO)
118			trace_seq_printf(p, "IO ");
119		if (qc_flags & ATA_QCFLAG_RESULT_TF)
120			trace_seq_printf(p, "RESULT_TF ");
121		if (qc_flags & ATA_QCFLAG_CLEAR_EXCL)
122			trace_seq_printf(p, "CLEAR_EXCL ");
123		if (qc_flags & ATA_QCFLAG_QUIET)
124			trace_seq_printf(p, "QUIET ");
125		if (qc_flags & ATA_QCFLAG_RETRY)
126			trace_seq_printf(p, "RETRY ");
127		if (qc_flags & ATA_QCFLAG_FAILED)
128			trace_seq_printf(p, "FAILED ");
129		if (qc_flags & ATA_QCFLAG_SENSE_VALID)
130			trace_seq_printf(p, "SENSE_VALID ");
131		if (qc_flags & ATA_QCFLAG_EH_SCHEDULED)
132			trace_seq_printf(p, "EH_SCHEDULED ");
133		trace_seq_putc(p, '}');
134	}
135	trace_seq_putc(p, 0);
136
137	return ret;
138}
139
140const char *
141libata_trace_parse_subcmd(struct trace_seq *p, unsigned char cmd,
142			  unsigned char feature, unsigned char hob_nsect)
143{
144	const char *ret = trace_seq_buffer_ptr(p);
145
146	switch (cmd) {
147	case ATA_CMD_FPDMA_RECV:
148		switch (hob_nsect & 0x5f) {
149		case ATA_SUBCMD_FPDMA_RECV_RD_LOG_DMA_EXT:
150			trace_seq_printf(p, " READ_LOG_DMA_EXT");
151			break;
152		case ATA_SUBCMD_FPDMA_RECV_ZAC_MGMT_IN:
153			trace_seq_printf(p, " ZAC_MGMT_IN");
154			break;
155		}
156		break;
157	case ATA_CMD_FPDMA_SEND:
158		switch (hob_nsect & 0x5f) {
159		case ATA_SUBCMD_FPDMA_SEND_WR_LOG_DMA_EXT:
160			trace_seq_printf(p, " WRITE_LOG_DMA_EXT");
161			break;
162		case ATA_SUBCMD_FPDMA_SEND_DSM:
163			trace_seq_printf(p, " DATASET_MANAGEMENT");
164			break;
165		}
166		break;
167	case ATA_CMD_NCQ_NON_DATA:
168		switch (feature) {
169		case ATA_SUBCMD_NCQ_NON_DATA_ABORT_QUEUE:
170			trace_seq_printf(p, " ABORT_QUEUE");
171			break;
172		case ATA_SUBCMD_NCQ_NON_DATA_SET_FEATURES:
173			trace_seq_printf(p, " SET_FEATURES");
174			break;
175		case ATA_SUBCMD_NCQ_NON_DATA_ZERO_EXT:
176			trace_seq_printf(p, " ZERO_EXT");
177			break;
178		case ATA_SUBCMD_NCQ_NON_DATA_ZAC_MGMT_OUT:
179			trace_seq_printf(p, " ZAC_MGMT_OUT");
180			break;
181		}
182		break;
183	case ATA_CMD_ZAC_MGMT_IN:
184		switch (feature) {
185		case ATA_SUBCMD_ZAC_MGMT_IN_REPORT_ZONES:
186			trace_seq_printf(p, " REPORT_ZONES");
187			break;
188		}
189		break;
190	case ATA_CMD_ZAC_MGMT_OUT:
191		switch (feature) {
192		case ATA_SUBCMD_ZAC_MGMT_OUT_CLOSE_ZONE:
193			trace_seq_printf(p, " CLOSE_ZONE");
194			break;
195		case ATA_SUBCMD_ZAC_MGMT_OUT_FINISH_ZONE:
196			trace_seq_printf(p, " FINISH_ZONE");
197			break;
198		case ATA_SUBCMD_ZAC_MGMT_OUT_OPEN_ZONE:
199			trace_seq_printf(p, " OPEN_ZONE");
200			break;
201		case ATA_SUBCMD_ZAC_MGMT_OUT_RESET_WRITE_POINTER:
202			trace_seq_printf(p, " RESET_WRITE_POINTER");
203			break;
204		}
205		break;
206	}
207	trace_seq_putc(p, 0);
208
209	return ret;
210}