Committer: Michael Beasley <mike@snafu.setup>
[mikesnafu-overlay.git] / drivers / scsi / aic7xxx_old / aic7xxx_proc.c
blobb07e4f04fd00b3b82e3121a9decd8fe87b1a5a5e
1 /*+M*************************************************************************
2 * Adaptec AIC7xxx device driver proc support for Linux.
4 * Copyright (c) 1995, 1996 Dean W. Gehnert
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2, or (at your option)
9 * any later version.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License
17 * along with this program; see the file COPYING. If not, write to
18 * the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
20 * ----------------------------------------------------------------
21 * o Modified from the EATA-DMA /proc support.
22 * o Additional support for device block statistics provided by
23 * Matthew Jacob.
24 * o Correction of overflow by Heinz Mauelshagen
25 * o Adittional corrections by Doug Ledford
27 * Dean W. Gehnert, deang@teleport.com, 05/01/96
29 * $Id: aic7xxx_proc.c,v 4.1 1997/06/97 08:23:42 deang Exp $
30 *-M*************************************************************************/
33 #define BLS (&aic7xxx_buffer[size])
34 #define HDRB \
35 " 0 - 4K 4 - 16K 16 - 64K 64 - 256K 256K - 1M 1M+"
37 #ifdef PROC_DEBUG
38 extern int vsprintf(char *, const char *, va_list);
40 static void
41 proc_debug(const char *fmt, ...)
43 va_list ap;
44 char buf[256];
46 va_start(ap, fmt);
47 vsprintf(buf, fmt, ap);
48 printk(buf);
49 va_end(ap);
51 #else /* PROC_DEBUG */
52 # define proc_debug(fmt, args...)
53 #endif /* PROC_DEBUG */
55 static int aic7xxx_buffer_size = 0;
56 static char *aic7xxx_buffer = NULL;
59 /*+F*************************************************************************
60 * Function:
61 * aic7xxx_set_info
63 * Description:
64 * Set parameters for the driver from the /proc filesystem.
65 *-F*************************************************************************/
66 static int
67 aic7xxx_set_info(char *buffer, int length, struct Scsi_Host *HBAptr)
69 proc_debug("aic7xxx_set_info(): %s\n", buffer);
70 return (-ENOSYS); /* Currently this is a no-op */
74 /*+F*************************************************************************
75 * Function:
76 * aic7xxx_proc_info
78 * Description:
79 * Return information to handle /proc support for the driver.
80 *-F*************************************************************************/
81 int
82 aic7xxx_proc_info ( struct Scsi_Host *HBAptr, char *buffer, char **start, off_t offset, int length,
83 int inout)
85 struct aic7xxx_host *p;
86 struct aic_dev_data *aic_dev;
87 struct scsi_device *sdptr;
88 int size = 0;
89 unsigned char i;
90 unsigned char tindex;
92 for(p=first_aic7xxx; p && p->host != HBAptr; p=p->next)
95 if (!p)
97 size += sprintf(buffer, "Can't find adapter for host number %d\n", HBAptr->host_no);
98 if (size > length)
100 return (size);
102 else
104 return (length);
108 if (inout == TRUE) /* Has data been written to the file? */
110 return (aic7xxx_set_info(buffer, length, HBAptr));
113 p = (struct aic7xxx_host *) HBAptr->hostdata;
116 * It takes roughly 1K of space to hold all relevant card info, not
117 * counting any proc stats, so we start out with a 1.5k buffer size and
118 * if proc_stats is defined, then we sweep the stats structure to see
119 * how many drives we will be printing out for and add 384 bytes per
120 * device with active stats.
122 * Hmmmm...that 1.5k seems to keep growing as items get added so they
123 * can be easily viewed for debugging purposes. So, we bumped that
124 * 1.5k to 4k so we can quit having to bump it all the time.
127 size = 4096;
128 list_for_each_entry(aic_dev, &p->aic_devs, list)
129 size += 512;
130 if (aic7xxx_buffer_size != size)
132 if (aic7xxx_buffer != NULL)
134 kfree(aic7xxx_buffer);
135 aic7xxx_buffer_size = 0;
137 aic7xxx_buffer = kmalloc(size, GFP_KERNEL);
139 if (aic7xxx_buffer == NULL)
141 size = sprintf(buffer, "AIC7xxx - kmalloc error at line %d\n",
142 __LINE__);
143 return size;
145 aic7xxx_buffer_size = size;
147 size = 0;
148 size += sprintf(BLS, "Adaptec AIC7xxx driver version: ");
149 size += sprintf(BLS, "%s/", AIC7XXX_C_VERSION);
150 size += sprintf(BLS, "%s", AIC7XXX_H_VERSION);
151 size += sprintf(BLS, "\n");
152 size += sprintf(BLS, "Adapter Configuration:\n");
153 size += sprintf(BLS, " SCSI Adapter: %s\n",
154 board_names[p->board_name_index]);
155 if (p->flags & AHC_TWIN)
156 size += sprintf(BLS, " Twin Channel Controller ");
157 else
159 char *channel = "";
160 char *ultra = "";
161 char *wide = "Narrow ";
162 if (p->flags & AHC_MULTI_CHANNEL)
164 channel = " Channel A";
165 if (p->flags & (AHC_CHNLB|AHC_CHNLC))
166 channel = (p->flags & AHC_CHNLB) ? " Channel B" : " Channel C";
168 if (p->features & AHC_WIDE)
169 wide = "Wide ";
170 if (p->features & AHC_ULTRA3)
172 switch(p->chip & AHC_CHIPID_MASK)
174 case AHC_AIC7892:
175 case AHC_AIC7899:
176 ultra = "Ultra-160/m LVD/SE ";
177 break;
178 default:
179 ultra = "Ultra-3 LVD/SE ";
180 break;
183 else if (p->features & AHC_ULTRA2)
184 ultra = "Ultra-2 LVD/SE ";
185 else if (p->features & AHC_ULTRA)
186 ultra = "Ultra ";
187 size += sprintf(BLS, " %s%sController%s ",
188 ultra, wide, channel);
190 switch(p->chip & ~AHC_CHIPID_MASK)
192 case AHC_VL:
193 size += sprintf(BLS, "at VLB slot %d\n", p->pci_device_fn);
194 break;
195 case AHC_EISA:
196 size += sprintf(BLS, "at EISA slot %d\n", p->pci_device_fn);
197 break;
198 default:
199 size += sprintf(BLS, "at PCI %d/%d/%d\n", p->pci_bus,
200 PCI_SLOT(p->pci_device_fn), PCI_FUNC(p->pci_device_fn));
201 break;
203 if( !(p->maddr) )
205 size += sprintf(BLS, " Programmed I/O Base: %lx\n", p->base);
207 else
209 size += sprintf(BLS, " PCI MMAPed I/O Base: 0x%lx\n", p->mbase);
211 if( (p->chip & (AHC_VL | AHC_EISA)) )
213 size += sprintf(BLS, " BIOS Memory Address: 0x%08x\n", p->bios_address);
215 size += sprintf(BLS, " Adapter SEEPROM Config: %s\n",
216 (p->flags & AHC_SEEPROM_FOUND) ? "SEEPROM found and used." :
217 ((p->flags & AHC_USEDEFAULTS) ? "SEEPROM not found, using defaults." :
218 "SEEPROM not found, using leftover BIOS values.") );
219 size += sprintf(BLS, " Adaptec SCSI BIOS: %s\n",
220 (p->flags & AHC_BIOS_ENABLED) ? "Enabled" : "Disabled");
221 size += sprintf(BLS, " IRQ: %d\n", HBAptr->irq);
222 size += sprintf(BLS, " SCBs: Active %d, Max Active %d,\n",
223 p->activescbs, p->max_activescbs);
224 size += sprintf(BLS, " Allocated %d, HW %d, "
225 "Page %d\n", p->scb_data->numscbs, p->scb_data->maxhscbs,
226 p->scb_data->maxscbs);
227 if (p->flags & AHC_EXTERNAL_SRAM)
228 size += sprintf(BLS, " Using External SCB SRAM\n");
229 size += sprintf(BLS, " Interrupts: %ld", p->isr_count);
230 if (p->chip & AHC_EISA)
232 size += sprintf(BLS, " %s\n",
233 (p->pause & IRQMS) ? "(Level Sensitive)" : "(Edge Triggered)");
235 else
237 size += sprintf(BLS, "\n");
239 size += sprintf(BLS, " BIOS Control Word: 0x%04x\n",
240 p->bios_control);
241 size += sprintf(BLS, " Adapter Control Word: 0x%04x\n",
242 p->adapter_control);
243 size += sprintf(BLS, " Extended Translation: %sabled\n",
244 (p->flags & AHC_EXTEND_TRANS_A) ? "En" : "Dis");
245 size += sprintf(BLS, "Disconnect Enable Flags: 0x%04x\n", p->discenable);
246 if (p->features & (AHC_ULTRA | AHC_ULTRA2))
248 size += sprintf(BLS, " Ultra Enable Flags: 0x%04x\n", p->ultraenb);
250 size += sprintf(BLS, "Default Tag Queue Depth: %d\n", aic7xxx_default_queue_depth);
251 size += sprintf(BLS, " Tagged Queue By Device array for aic7xxx host "
252 "instance %d:\n", p->instance);
253 size += sprintf(BLS, " {");
254 for(i=0; i < (MAX_TARGETS - 1); i++)
255 size += sprintf(BLS, "%d,",aic7xxx_tag_info[p->instance].tag_commands[i]);
256 size += sprintf(BLS, "%d}\n",aic7xxx_tag_info[p->instance].tag_commands[i]);
258 size += sprintf(BLS, "\n");
259 size += sprintf(BLS, "Statistics:\n\n");
260 list_for_each_entry(aic_dev, &p->aic_devs, list)
262 sdptr = aic_dev->SDptr;
263 tindex = sdptr->channel << 3 | sdptr->id;
264 size += sprintf(BLS, "(scsi%d:%d:%d:%d)\n",
265 p->host_no, sdptr->channel, sdptr->id, sdptr->lun);
266 size += sprintf(BLS, " Device using %s/%s",
267 (aic_dev->cur.width == MSG_EXT_WDTR_BUS_16_BIT) ?
268 "Wide" : "Narrow",
269 (aic_dev->cur.offset != 0) ?
270 "Sync transfers at " : "Async transfers.\n" );
271 if (aic_dev->cur.offset != 0)
273 struct aic7xxx_syncrate *sync_rate;
274 unsigned char options = aic_dev->cur.options;
275 int period = aic_dev->cur.period;
276 int rate = (aic_dev->cur.width ==
277 MSG_EXT_WDTR_BUS_16_BIT) ? 1 : 0;
279 sync_rate = aic7xxx_find_syncrate(p, &period, 0, &options);
280 if (sync_rate != NULL)
282 size += sprintf(BLS, "%s MByte/sec, offset %d\n",
283 sync_rate->rate[rate],
284 aic_dev->cur.offset );
286 else
288 size += sprintf(BLS, "3.3 MByte/sec, offset %d\n",
289 aic_dev->cur.offset );
292 size += sprintf(BLS, " Transinfo settings: ");
293 size += sprintf(BLS, "current(%d/%d/%d/%d), ",
294 aic_dev->cur.period,
295 aic_dev->cur.offset,
296 aic_dev->cur.width,
297 aic_dev->cur.options);
298 size += sprintf(BLS, "goal(%d/%d/%d/%d), ",
299 aic_dev->goal.period,
300 aic_dev->goal.offset,
301 aic_dev->goal.width,
302 aic_dev->goal.options);
303 size += sprintf(BLS, "user(%d/%d/%d/%d)\n",
304 p->user[tindex].period,
305 p->user[tindex].offset,
306 p->user[tindex].width,
307 p->user[tindex].options);
308 if(sdptr->simple_tags)
310 size += sprintf(BLS, " Tagged Command Queueing Enabled, Ordered Tags %s, Depth %d/%d\n", sdptr->ordered_tags ? "Enabled" : "Disabled", sdptr->queue_depth, aic_dev->max_q_depth);
312 if(aic_dev->barrier_total)
313 size += sprintf(BLS, " Total transfers %ld:\n (%ld/%ld/%ld/%ld reads/writes/REQ_BARRIER/Ordered Tags)\n",
314 aic_dev->r_total+aic_dev->w_total, aic_dev->r_total, aic_dev->w_total,
315 aic_dev->barrier_total, aic_dev->ordered_total);
316 else
317 size += sprintf(BLS, " Total transfers %ld:\n (%ld/%ld reads/writes)\n",
318 aic_dev->r_total+aic_dev->w_total, aic_dev->r_total, aic_dev->w_total);
319 size += sprintf(BLS, "%s\n", HDRB);
320 size += sprintf(BLS, " Reads:");
321 for (i = 0; i < ARRAY_SIZE(aic_dev->r_bins); i++)
323 size += sprintf(BLS, " %10ld", aic_dev->r_bins[i]);
325 size += sprintf(BLS, "\n");
326 size += sprintf(BLS, " Writes:");
327 for (i = 0; i < ARRAY_SIZE(aic_dev->w_bins); i++)
329 size += sprintf(BLS, " %10ld", aic_dev->w_bins[i]);
331 size += sprintf(BLS, "\n");
332 size += sprintf(BLS, "\n\n");
334 if (size >= aic7xxx_buffer_size)
336 printk(KERN_WARNING "aic7xxx: Overflow in aic7xxx_proc.c\n");
339 if (offset > size - 1)
341 kfree(aic7xxx_buffer);
342 aic7xxx_buffer = NULL;
343 aic7xxx_buffer_size = length = 0;
344 *start = NULL;
346 else
348 *start = buffer;
349 length = min_t(int, length, size - offset);
350 memcpy(buffer, &aic7xxx_buffer[offset], length);
353 return (length);
357 * Overrides for Emacs so that we follow Linus's tabbing style.
358 * Emacs will notice this stuff at the end of the file and automatically
359 * adjust the settings for this buffer only. This must remain at the end
360 * of the file.
361 * ---------------------------------------------------------------------------
362 * Local variables:
363 * c-indent-level: 2
364 * c-brace-imaginary-offset: 0
365 * c-brace-offset: -2
366 * c-argdecl-indent: 2
367 * c-label-offset: -2
368 * c-continued-statement-offset: 2
369 * c-continued-brace-offset: 0
370 * indent-tabs-mode: nil
371 * tab-width: 8
372 * End: