2 * Copyright (c) 2000-2001 Adaptec Inc.
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions, and the following disclaimer,
10 * without modification.
11 * 2. Redistributions in binary form must reproduce at minimum a disclaimer
12 * substantially similar to the "NO WARRANTY" disclaimer below
13 * ("Disclaimer") and any redistribution must be conditioned upon
14 * including a substantially similar Disclaimer requirement for further
15 * binary redistribution.
16 * 3. Neither the names of the above-listed copyright holders nor the names
17 * of any contributors may be used to endorse or promote products derived
18 * from this software without specific prior written permission.
20 * Alternatively, this software may be distributed under the terms of the
21 * GNU General Public License ("GPL") version 2 as published by the Free
22 * Software Foundation.
25 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
26 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
27 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR
28 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
29 * HOLDERS OR CONTRIBUTORS BE LIABLE FOR SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
30 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
31 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
32 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
33 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
34 * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
35 * POSSIBILITY OF SUCH DAMAGES.
37 * String handling code courtesy of Gerard Roudier's <groudier@club-internet.fr>
40 * $Id: //depot/aic7xxx/linux/drivers/scsi/aic7xxx/aic79xx_proc.c#19 $
42 #include "aic79xx_osm.h"
43 #include "aic79xx_inline.h"
45 static void copy_mem_info(struct info_str
*info
, char *data
, int len
);
46 static int copy_info(struct info_str
*info
, char *fmt
, ...);
47 static void ahd_dump_target_state(struct ahd_softc
*ahd
,
48 struct info_str
*info
,
49 u_int our_id
, char channel
,
50 u_int target_id
, u_int target_offset
);
51 static void ahd_dump_device_state(struct info_str
*info
,
52 struct ahd_linux_device
*dev
);
53 static int ahd_proc_write_seeprom(struct ahd_softc
*ahd
,
54 char *buffer
, int length
);
57 copy_mem_info(struct info_str
*info
, char *data
, int len
)
59 if (info
->pos
+ len
> info
->offset
+ info
->length
)
60 len
= info
->offset
+ info
->length
- info
->pos
;
62 if (info
->pos
+ len
< info
->offset
) {
67 if (info
->pos
< info
->offset
) {
70 partial
= info
->offset
- info
->pos
;
77 memcpy(info
->buffer
, data
, len
);
84 copy_info(struct info_str
*info
, char *fmt
, ...)
91 len
= vsprintf(buf
, fmt
, args
);
94 copy_mem_info(info
, buf
, len
);
99 ahd_format_transinfo(struct info_str
*info
, struct ahd_transinfo
*tinfo
)
105 if (tinfo
->period
== AHD_PERIOD_UNKNOWN
) {
106 copy_info(info
, "Renegotiation Pending\n");
111 if (tinfo
->offset
!= 0) {
112 freq
= aic_calc_syncsrate(tinfo
->period
);
115 speed
*= (0x01 << tinfo
->width
);
118 copy_info(info
, "%d.%03dMB/s transfers", mb
, speed
% 1000);
120 copy_info(info
, "%dKB/s transfers", speed
);
126 copy_info(info
, " (%d.%03dMHz", freq
/ 1000, freq
% 1000);
127 if ((tinfo
->ppr_options
& MSG_EXT_PPR_RD_STRM
) != 0) {
128 copy_info(info
, " RDSTRM");
131 if ((tinfo
->ppr_options
& MSG_EXT_PPR_DT_REQ
) != 0) {
132 copy_info(info
, "%s", printed_options
? "|DT" : " DT");
135 if ((tinfo
->ppr_options
& MSG_EXT_PPR_IU_REQ
) != 0) {
136 copy_info(info
, "%s", printed_options
? "|IU" : " IU");
139 if ((tinfo
->ppr_options
& MSG_EXT_PPR_RTI
) != 0) {
140 copy_info(info
, "%s",
141 printed_options
? "|RTI" : " RTI");
144 if ((tinfo
->ppr_options
& MSG_EXT_PPR_QAS_REQ
) != 0) {
145 copy_info(info
, "%s",
146 printed_options
? "|QAS" : " QAS");
151 if (tinfo
->width
> 0) {
153 copy_info(info
, ", ");
155 copy_info(info
, " (");
157 copy_info(info
, "%dbit)", 8 * (0x01 << tinfo
->width
));
158 } else if (freq
!= 0) {
159 copy_info(info
, ")");
161 copy_info(info
, "\n");
165 ahd_dump_target_state(struct ahd_softc
*ahd
, struct info_str
*info
,
166 u_int our_id
, char channel
, u_int target_id
,
169 struct ahd_linux_target
*targ
;
170 struct ahd_initiator_tinfo
*tinfo
;
171 struct ahd_tmode_tstate
*tstate
;
174 tinfo
= ahd_fetch_transinfo(ahd
, channel
, our_id
,
176 copy_info(info
, "Target %d Negotiation Settings\n", target_id
);
177 copy_info(info
, "\tUser: ");
178 ahd_format_transinfo(info
, &tinfo
->user
);
179 targ
= ahd
->platform_data
->targets
[target_offset
];
183 copy_info(info
, "\tGoal: ");
184 ahd_format_transinfo(info
, &tinfo
->goal
);
185 copy_info(info
, "\tCurr: ");
186 ahd_format_transinfo(info
, &tinfo
->curr
);
187 copy_info(info
, "\tTransmission Errors %ld\n", targ
->errors_detected
);
189 for (lun
= 0; lun
< AHD_NUM_LUNS
; lun
++) {
190 struct ahd_linux_device
*dev
;
192 dev
= targ
->devices
[lun
];
197 ahd_dump_device_state(info
, dev
);
202 ahd_dump_device_state(struct info_str
*info
, struct ahd_linux_device
*dev
)
204 copy_info(info
, "\tChannel %c Target %d Lun %d Settings\n",
205 dev
->target
->channel
+ 'A', dev
->target
->target
, dev
->lun
);
207 copy_info(info
, "\t\tCommands Queued %ld\n", dev
->commands_issued
);
208 copy_info(info
, "\t\tCommands Active %d\n", dev
->active
);
209 copy_info(info
, "\t\tCommand Openings %d\n", dev
->openings
);
210 copy_info(info
, "\t\tMax Tagged Openings %d\n", dev
->maxtags
);
211 copy_info(info
, "\t\tDevice Queue Frozen Count %d\n", dev
->qfrozen
);
215 ahd_proc_write_seeprom(struct ahd_softc
*ahd
, char *buffer
, int length
)
217 ahd_mode_state saved_modes
;
223 /* Default to failure. */
226 paused
= ahd_is_paused(ahd
);
230 saved_modes
= ahd_save_modes(ahd
);
231 ahd_set_modes(ahd
, AHD_MODE_SCSI
, AHD_MODE_SCSI
);
232 if (length
!= sizeof(struct seeprom_config
)) {
233 printf("ahd_proc_write_seeprom: incorrect buffer size\n");
237 have_seeprom
= ahd_verify_cksum((struct seeprom_config
*)buffer
);
238 if (have_seeprom
== 0) {
239 printf("ahd_proc_write_seeprom: cksum verification failed\n");
243 have_seeprom
= ahd_acquire_seeprom(ahd
);
245 printf("ahd_proc_write_seeprom: No Serial EEPROM\n");
250 if (ahd
->seep_config
== NULL
) {
251 ahd
->seep_config
= malloc(sizeof(*ahd
->seep_config
),
253 if (ahd
->seep_config
== NULL
) {
254 printf("aic79xx: Unable to allocate serial "
255 "eeprom buffer. Write failing\n");
259 printf("aic79xx: Writing Serial EEPROM\n");
260 start_addr
= 32 * (ahd
->channel
- 'A');
261 ahd_write_seeprom(ahd
, (u_int16_t
*)buffer
, start_addr
,
262 sizeof(struct seeprom_config
)/2);
263 ahd_read_seeprom(ahd
, (uint16_t *)ahd
->seep_config
,
264 start_addr
, sizeof(struct seeprom_config
)/2,
265 /*ByteStream*/FALSE
);
266 ahd_release_seeprom(ahd
);
271 ahd_restore_modes(ahd
, saved_modes
);
278 * Return information to handle /proc support for the driver.
281 ahd_linux_proc_info(struct Scsi_Host
*shost
, char *buffer
, char **start
,
282 off_t offset
, int length
, int inout
)
284 struct ahd_softc
*ahd
;
285 struct info_str info
;
294 ahd
= ahd_find_softc(*(struct ahd_softc
**)shost
->hostdata
);
299 /* Has data been written to the file? */
301 retval
= ahd_proc_write_seeprom(ahd
, buffer
, length
);
308 info
.buffer
= buffer
;
309 info
.length
= length
;
310 info
.offset
= offset
;
313 copy_info(&info
, "Adaptec AIC79xx driver version: %s\n",
314 AIC79XX_DRIVER_VERSION
);
315 copy_info(&info
, "%s\n", ahd
->description
);
316 ahd_controller_info(ahd
, ahd_info
);
317 copy_info(&info
, "%s\n", ahd_info
);
318 copy_info(&info
, "Allocated SCBs: %d, SG List Length: %d\n\n",
319 ahd
->scb_data
.numscbs
, AHD_NSEG
);
323 if (ahd
->seep_config
== NULL
)
324 copy_info(&info
, "No Serial EEPROM\n");
326 copy_info(&info
, "Serial EEPROM:\n");
327 for (i
= 0; i
< sizeof(*ahd
->seep_config
)/2; i
++) {
328 if (((i
% 8) == 0) && (i
!= 0)) {
329 copy_info(&info
, "\n");
331 copy_info(&info
, "0x%.4x ",
332 ((uint16_t*)ahd
->seep_config
)[i
]);
334 copy_info(&info
, "\n");
336 copy_info(&info
, "\n");
338 if ((ahd
->features
& AHD_WIDE
) == 0)
341 for (i
= 0; i
<= max_targ
; i
++) {
343 ahd_dump_target_state(ahd
, &info
, ahd
->our_id
, 'A',
344 /*target_id*/i
, /*target_offset*/i
);
346 retval
= info
.pos
> info
.offset
? info
.pos
- info
.offset
: 0;