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(s: p);
17
18 trace_seq_printf(s: p, fmt: "{ ");
19 if (status & ATA_BUSY)
20 trace_seq_printf(s: p, fmt: "BUSY ");
21 if (status & ATA_DRDY)
22 trace_seq_printf(s: p, fmt: "DRDY ");
23 if (status & ATA_DF)
24 trace_seq_printf(s: p, fmt: "DF ");
25 if (status & ATA_DSC)
26 trace_seq_printf(s: p, fmt: "DSC ");
27 if (status & ATA_DRQ)
28 trace_seq_printf(s: p, fmt: "DRQ ");
29 if (status & ATA_CORR)
30 trace_seq_printf(s: p, fmt: "CORR ");
31 if (status & ATA_SENSE)
32 trace_seq_printf(s: p, fmt: "SENSE ");
33 if (status & ATA_ERR)
34 trace_seq_printf(s: p, fmt: "ERR ");
35 trace_seq_putc(s: p, c: '}');
36 trace_seq_putc(s: p, c: 0);
37
38 return ret;
39}
40
41const char *
42libata_trace_parse_host_stat(struct trace_seq *p, unsigned char host_stat)
43{
44 const char *ret = trace_seq_buffer_ptr(s: p);
45
46 trace_seq_printf(s: p, fmt: "{ ");
47 if (host_stat & ATA_DMA_INTR)
48 trace_seq_printf(s: p, fmt: "INTR ");
49 if (host_stat & ATA_DMA_ERR)
50 trace_seq_printf(s: p, fmt: "ERR ");
51 if (host_stat & ATA_DMA_ACTIVE)
52 trace_seq_printf(s: p, fmt: "ACTIVE ");
53 trace_seq_putc(s: p, c: '}');
54 trace_seq_putc(s: p, c: 0);
55
56 return ret;
57}
58
59const char *
60libata_trace_parse_eh_action(struct trace_seq *p, unsigned int eh_action)
61{
62 const char *ret = trace_seq_buffer_ptr(s: p);
63
64 trace_seq_printf(s: p, fmt: "%x", eh_action);
65 if (eh_action) {
66 trace_seq_printf(s: p, fmt: "{ ");
67 if (eh_action & ATA_EH_REVALIDATE)
68 trace_seq_printf(s: p, fmt: "REVALIDATE ");
69 if (eh_action & (ATA_EH_SOFTRESET | ATA_EH_HARDRESET))
70 trace_seq_printf(s: p, fmt: "RESET ");
71 else if (eh_action & ATA_EH_SOFTRESET)
72 trace_seq_printf(s: p, fmt: "SOFTRESET ");
73 else if (eh_action & ATA_EH_HARDRESET)
74 trace_seq_printf(s: p, fmt: "HARDRESET ");
75 if (eh_action & ATA_EH_ENABLE_LINK)
76 trace_seq_printf(s: p, fmt: "ENABLE_LINK ");
77 if (eh_action & ATA_EH_PARK)
78 trace_seq_printf(s: p, fmt: "PARK ");
79 trace_seq_putc(s: p, c: '}');
80 }
81 trace_seq_putc(s: p, c: 0);
82
83 return ret;
84}
85
86const char *
87libata_trace_parse_eh_err_mask(struct trace_seq *p, unsigned int eh_err_mask)
88{
89 const char *ret = trace_seq_buffer_ptr(s: p);
90
91 trace_seq_printf(s: p, fmt: "%x", eh_err_mask);
92 if (eh_err_mask) {
93 trace_seq_printf(s: p, fmt: "{ ");
94 if (eh_err_mask & AC_ERR_DEV)
95 trace_seq_printf(s: p, fmt: "DEV ");
96 if (eh_err_mask & AC_ERR_HSM)
97 trace_seq_printf(s: p, fmt: "HSM ");
98 if (eh_err_mask & AC_ERR_TIMEOUT)
99 trace_seq_printf(s: p, fmt: "TIMEOUT ");
100 if (eh_err_mask & AC_ERR_MEDIA)
101 trace_seq_printf(s: p, fmt: "MEDIA ");
102 if (eh_err_mask & AC_ERR_ATA_BUS)
103 trace_seq_printf(s: p, fmt: "ATA_BUS ");
104 if (eh_err_mask & AC_ERR_HOST_BUS)
105 trace_seq_printf(s: p, fmt: "HOST_BUS ");
106 if (eh_err_mask & AC_ERR_SYSTEM)
107 trace_seq_printf(s: p, fmt: "SYSTEM ");
108 if (eh_err_mask & AC_ERR_INVALID)
109 trace_seq_printf(s: p, fmt: "INVALID ");
110 if (eh_err_mask & AC_ERR_OTHER)
111 trace_seq_printf(s: p, fmt: "OTHER ");
112 if (eh_err_mask & AC_ERR_NODEV_HINT)
113 trace_seq_printf(s: p, fmt: "NODEV_HINT ");
114 if (eh_err_mask & AC_ERR_NCQ)
115 trace_seq_printf(s: p, fmt: "NCQ ");
116 trace_seq_putc(s: p, c: '}');
117 }
118 trace_seq_putc(s: p, c: 0);
119
120 return ret;
121}
122
123const char *
124libata_trace_parse_qc_flags(struct trace_seq *p, unsigned int qc_flags)
125{
126 const char *ret = trace_seq_buffer_ptr(s: p);
127
128 trace_seq_printf(s: p, fmt: "%x", qc_flags);
129 if (qc_flags) {
130 trace_seq_printf(s: p, fmt: "{ ");
131 if (qc_flags & ATA_QCFLAG_ACTIVE)
132 trace_seq_printf(s: p, fmt: "ACTIVE ");
133 if (qc_flags & ATA_QCFLAG_DMAMAP)
134 trace_seq_printf(s: p, fmt: "DMAMAP ");
135 if (qc_flags & ATA_QCFLAG_IO)
136 trace_seq_printf(s: p, fmt: "IO ");
137 if (qc_flags & ATA_QCFLAG_RESULT_TF)
138 trace_seq_printf(s: p, fmt: "RESULT_TF ");
139 if (qc_flags & ATA_QCFLAG_CLEAR_EXCL)
140 trace_seq_printf(s: p, fmt: "CLEAR_EXCL ");
141 if (qc_flags & ATA_QCFLAG_QUIET)
142 trace_seq_printf(s: p, fmt: "QUIET ");
143 if (qc_flags & ATA_QCFLAG_RETRY)
144 trace_seq_printf(s: p, fmt: "RETRY ");
145 if (qc_flags & ATA_QCFLAG_EH)
146 trace_seq_printf(s: p, fmt: "FAILED ");
147 if (qc_flags & ATA_QCFLAG_SENSE_VALID)
148 trace_seq_printf(s: p, fmt: "SENSE_VALID ");
149 if (qc_flags & ATA_QCFLAG_EH_SCHEDULED)
150 trace_seq_printf(s: p, fmt: "EH_SCHEDULED ");
151 trace_seq_putc(s: p, c: '}');
152 }
153 trace_seq_putc(s: p, c: 0);
154
155 return ret;
156}
157
158const char *
159libata_trace_parse_tf_flags(struct trace_seq *p, unsigned int tf_flags)
160{
161 const char *ret = trace_seq_buffer_ptr(s: p);
162
163 trace_seq_printf(s: p, fmt: "%x", tf_flags);
164 if (tf_flags) {
165 trace_seq_printf(s: p, fmt: "{ ");
166 if (tf_flags & ATA_TFLAG_LBA48)
167 trace_seq_printf(s: p, fmt: "LBA48 ");
168 if (tf_flags & ATA_TFLAG_ISADDR)
169 trace_seq_printf(s: p, fmt: "ISADDR ");
170 if (tf_flags & ATA_TFLAG_DEVICE)
171 trace_seq_printf(s: p, fmt: "DEV ");
172 if (tf_flags & ATA_TFLAG_WRITE)
173 trace_seq_printf(s: p, fmt: "WRITE ");
174 if (tf_flags & ATA_TFLAG_LBA)
175 trace_seq_printf(s: p, fmt: "LBA ");
176 if (tf_flags & ATA_TFLAG_FUA)
177 trace_seq_printf(s: p, fmt: "FUA ");
178 if (tf_flags & ATA_TFLAG_POLLING)
179 trace_seq_printf(s: p, fmt: "POLL ");
180 trace_seq_putc(s: p, c: '}');
181 }
182 trace_seq_putc(s: p, c: 0);
183
184 return ret;
185}
186
187const char *
188libata_trace_parse_subcmd(struct trace_seq *p, unsigned char cmd,
189 unsigned char feature, unsigned char hob_nsect)
190{
191 const char *ret = trace_seq_buffer_ptr(s: p);
192
193 switch (cmd) {
194 case ATA_CMD_FPDMA_RECV:
195 switch (hob_nsect & 0x5f) {
196 case ATA_SUBCMD_FPDMA_RECV_RD_LOG_DMA_EXT:
197 trace_seq_printf(s: p, fmt: " READ_LOG_DMA_EXT");
198 break;
199 case ATA_SUBCMD_FPDMA_RECV_ZAC_MGMT_IN:
200 trace_seq_printf(s: p, fmt: " ZAC_MGMT_IN");
201 break;
202 }
203 break;
204 case ATA_CMD_FPDMA_SEND:
205 switch (hob_nsect & 0x5f) {
206 case ATA_SUBCMD_FPDMA_SEND_WR_LOG_DMA_EXT:
207 trace_seq_printf(s: p, fmt: " WRITE_LOG_DMA_EXT");
208 break;
209 case ATA_SUBCMD_FPDMA_SEND_DSM:
210 trace_seq_printf(s: p, fmt: " DATASET_MANAGEMENT");
211 break;
212 }
213 break;
214 case ATA_CMD_NCQ_NON_DATA:
215 switch (feature) {
216 case ATA_SUBCMD_NCQ_NON_DATA_ABORT_QUEUE:
217 trace_seq_printf(s: p, fmt: " ABORT_QUEUE");
218 break;
219 case ATA_SUBCMD_NCQ_NON_DATA_SET_FEATURES:
220 trace_seq_printf(s: p, fmt: " SET_FEATURES");
221 break;
222 case ATA_SUBCMD_NCQ_NON_DATA_ZERO_EXT:
223 trace_seq_printf(s: p, fmt: " ZERO_EXT");
224 break;
225 case ATA_SUBCMD_NCQ_NON_DATA_ZAC_MGMT_OUT:
226 trace_seq_printf(s: p, fmt: " ZAC_MGMT_OUT");
227 break;
228 }
229 break;
230 case ATA_CMD_ZAC_MGMT_IN:
231 switch (feature) {
232 case ATA_SUBCMD_ZAC_MGMT_IN_REPORT_ZONES:
233 trace_seq_printf(s: p, fmt: " REPORT_ZONES");
234 break;
235 }
236 break;
237 case ATA_CMD_ZAC_MGMT_OUT:
238 switch (feature) {
239 case ATA_SUBCMD_ZAC_MGMT_OUT_CLOSE_ZONE:
240 trace_seq_printf(s: p, fmt: " CLOSE_ZONE");
241 break;
242 case ATA_SUBCMD_ZAC_MGMT_OUT_FINISH_ZONE:
243 trace_seq_printf(s: p, fmt: " FINISH_ZONE");
244 break;
245 case ATA_SUBCMD_ZAC_MGMT_OUT_OPEN_ZONE:
246 trace_seq_printf(s: p, fmt: " OPEN_ZONE");
247 break;
248 case ATA_SUBCMD_ZAC_MGMT_OUT_RESET_WRITE_POINTER:
249 trace_seq_printf(s: p, fmt: " RESET_WRITE_POINTER");
250 break;
251 }
252 break;
253 }
254 trace_seq_putc(s: p, c: 0);
255
256 return ret;
257}
258

source code of linux/drivers/ata/libata-trace.c