2 *******************************************************************************
4 ** FILE NAME : arcmsr_attr.c
6 ** Description: attributes exported to sysfs and device host
7 *******************************************************************************
8 ** Copyright (C) 2002 - 2005, Areca Technology Corporation All rights reserved
10 ** Web site: www.areca.com.tw
11 ** E-mail: support@areca.com.tw
13 ** This program is free software; you can redistribute it and/or modify
14 ** it under the terms of the GNU General Public License version 2 as
15 ** published by the Free Software Foundation.
16 ** This program is distributed in the hope that it will be useful,
17 ** but WITHOUT ANY WARRANTY; without even the implied warranty of
18 ** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 ** GNU General Public License for more details.
20 *******************************************************************************
21 ** Redistribution and use in source and binary forms, with or without
22 ** modification, are permitted provided that the following conditions
24 ** 1. Redistributions of source code must retain the above copyright
25 ** notice, this list of conditions and the following disclaimer.
26 ** 2. Redistributions in binary form must reproduce the above copyright
27 ** notice, this list of conditions and the following disclaimer in the
28 ** documentation and/or other materials provided with the distribution.
29 ** 3. The name of the author may not be used to endorse or promote products
30 ** derived from this software without specific prior written permission.
32 ** THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
33 ** IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
34 ** OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
35 ** IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
36 ** INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES(INCLUDING,BUT
37 ** NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
38 ** DATA, OR PROFITS; OR BUSINESS INTERRUPTION)HOWEVER CAUSED AND ON ANY
39 ** THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
40 ** (INCLUDING NEGLIGENCE OR OTHERWISE)ARISING IN ANY WAY OUT OF THE USE OF
41 ** THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
42 *******************************************************************************
43 ** For history of changes, see Documentation/scsi/ChangeLog.arcmsr
44 ** Firmware Specification, see Documentation/scsi/arcmsr_spec.txt
45 *******************************************************************************
47 #include <linux/module.h>
48 #include <linux/kernel.h>
49 #include <linux/init.h>
50 #include <linux/errno.h>
51 #include <linux/delay.h>
52 #include <linux/pci.h>
54 #include <scsi/scsi_cmnd.h>
55 #include <scsi/scsi_device.h>
56 #include <scsi/scsi_host.h>
57 #include <scsi/scsi_transport.h>
60 struct device_attribute
*arcmsr_host_attrs
[];
62 static ssize_t
arcmsr_sysfs_iop_message_read(struct file
*filp
,
64 struct bin_attribute
*bin
,
65 char *buf
, loff_t off
,
68 struct device
*dev
= container_of(kobj
,struct device
,kobj
);
69 struct Scsi_Host
*host
= class_to_shost(dev
);
70 struct AdapterControlBlock
*acb
= (struct AdapterControlBlock
*) host
->hostdata
;
71 uint8_t *pQbuffer
,*ptmpQbuffer
;
72 int32_t allxfer_len
= 0;
74 if (!capable(CAP_SYS_ADMIN
))
77 /* do message unit read. */
78 ptmpQbuffer
= (uint8_t *)buf
;
79 while ((acb
->rqbuf_firstindex
!= acb
->rqbuf_lastindex
)
80 && (allxfer_len
< 1031)) {
81 pQbuffer
= &acb
->rqbuffer
[acb
->rqbuf_firstindex
];
82 memcpy(ptmpQbuffer
, pQbuffer
, 1);
83 acb
->rqbuf_firstindex
++;
84 acb
->rqbuf_firstindex
%= ARCMSR_MAX_QBUFFER
;
88 if (acb
->acb_flags
& ACB_F_IOPDATA_OVERFLOW
) {
89 struct QBUFFER __iomem
*prbuffer
;
90 uint8_t __iomem
*iop_data
;
93 acb
->acb_flags
&= ~ACB_F_IOPDATA_OVERFLOW
;
94 prbuffer
= arcmsr_get_iop_rqbuffer(acb
);
95 iop_data
= prbuffer
->data
;
96 iop_len
= readl(&prbuffer
->data_len
);
98 acb
->rqbuffer
[acb
->rqbuf_lastindex
] = readb(iop_data
);
99 acb
->rqbuf_lastindex
++;
100 acb
->rqbuf_lastindex
%= ARCMSR_MAX_QBUFFER
;
104 arcmsr_iop_message_read(acb
);
106 return (allxfer_len
);
109 static ssize_t
arcmsr_sysfs_iop_message_write(struct file
*filp
,
110 struct kobject
*kobj
,
111 struct bin_attribute
*bin
,
112 char *buf
, loff_t off
,
115 struct device
*dev
= container_of(kobj
,struct device
,kobj
);
116 struct Scsi_Host
*host
= class_to_shost(dev
);
117 struct AdapterControlBlock
*acb
= (struct AdapterControlBlock
*) host
->hostdata
;
118 int32_t my_empty_len
, user_len
, wqbuf_firstindex
, wqbuf_lastindex
;
119 uint8_t *pQbuffer
, *ptmpuserbuffer
;
121 if (!capable(CAP_SYS_ADMIN
))
125 /* do message unit write. */
126 ptmpuserbuffer
= (uint8_t *)buf
;
127 user_len
= (int32_t)count
;
128 wqbuf_lastindex
= acb
->wqbuf_lastindex
;
129 wqbuf_firstindex
= acb
->wqbuf_firstindex
;
130 if (wqbuf_lastindex
!= wqbuf_firstindex
) {
131 arcmsr_post_ioctldata2iop(acb
);
132 return 0; /*need retry*/
134 my_empty_len
= (wqbuf_firstindex
-wqbuf_lastindex
- 1)
135 &(ARCMSR_MAX_QBUFFER
- 1);
136 if (my_empty_len
>= user_len
) {
137 while (user_len
> 0) {
139 &acb
->wqbuffer
[acb
->wqbuf_lastindex
];
140 memcpy(pQbuffer
, ptmpuserbuffer
, 1);
141 acb
->wqbuf_lastindex
++;
142 acb
->wqbuf_lastindex
%= ARCMSR_MAX_QBUFFER
;
146 if (acb
->acb_flags
& ACB_F_MESSAGE_WQBUFFER_CLEARED
) {
148 ~ACB_F_MESSAGE_WQBUFFER_CLEARED
;
149 arcmsr_post_ioctldata2iop(acb
);
153 return 0; /*need retry*/
158 static ssize_t
arcmsr_sysfs_iop_message_clear(struct file
*filp
,
159 struct kobject
*kobj
,
160 struct bin_attribute
*bin
,
161 char *buf
, loff_t off
,
164 struct device
*dev
= container_of(kobj
,struct device
,kobj
);
165 struct Scsi_Host
*host
= class_to_shost(dev
);
166 struct AdapterControlBlock
*acb
= (struct AdapterControlBlock
*) host
->hostdata
;
169 if (!capable(CAP_SYS_ADMIN
))
172 if (acb
->acb_flags
& ACB_F_IOPDATA_OVERFLOW
) {
173 acb
->acb_flags
&= ~ACB_F_IOPDATA_OVERFLOW
;
174 arcmsr_iop_message_read(acb
);
177 (ACB_F_MESSAGE_WQBUFFER_CLEARED
178 | ACB_F_MESSAGE_RQBUFFER_CLEARED
179 | ACB_F_MESSAGE_WQBUFFER_READED
);
180 acb
->rqbuf_firstindex
= 0;
181 acb
->rqbuf_lastindex
= 0;
182 acb
->wqbuf_firstindex
= 0;
183 acb
->wqbuf_lastindex
= 0;
184 pQbuffer
= acb
->rqbuffer
;
185 memset(pQbuffer
, 0, sizeof (struct QBUFFER
));
186 pQbuffer
= acb
->wqbuffer
;
187 memset(pQbuffer
, 0, sizeof (struct QBUFFER
));
191 static struct bin_attribute arcmsr_sysfs_message_read_attr
= {
195 .owner
= THIS_MODULE
,
198 .read
= arcmsr_sysfs_iop_message_read
,
201 static struct bin_attribute arcmsr_sysfs_message_write_attr
= {
205 .owner
= THIS_MODULE
,
208 .write
= arcmsr_sysfs_iop_message_write
,
211 static struct bin_attribute arcmsr_sysfs_message_clear_attr
= {
215 .owner
= THIS_MODULE
,
218 .write
= arcmsr_sysfs_iop_message_clear
,
221 int arcmsr_alloc_sysfs_attr(struct AdapterControlBlock
*acb
)
223 struct Scsi_Host
*host
= acb
->host
;
226 error
= sysfs_create_bin_file(&host
->shost_dev
.kobj
, &arcmsr_sysfs_message_read_attr
);
228 printk(KERN_ERR
"arcmsr: alloc sysfs mu_read failed\n");
229 goto error_bin_file_message_read
;
231 error
= sysfs_create_bin_file(&host
->shost_dev
.kobj
, &arcmsr_sysfs_message_write_attr
);
233 printk(KERN_ERR
"arcmsr: alloc sysfs mu_write failed\n");
234 goto error_bin_file_message_write
;
236 error
= sysfs_create_bin_file(&host
->shost_dev
.kobj
, &arcmsr_sysfs_message_clear_attr
);
238 printk(KERN_ERR
"arcmsr: alloc sysfs mu_clear failed\n");
239 goto error_bin_file_message_clear
;
242 error_bin_file_message_clear
:
243 sysfs_remove_bin_file(&host
->shost_dev
.kobj
, &arcmsr_sysfs_message_write_attr
);
244 error_bin_file_message_write
:
245 sysfs_remove_bin_file(&host
->shost_dev
.kobj
, &arcmsr_sysfs_message_read_attr
);
246 error_bin_file_message_read
:
250 void arcmsr_free_sysfs_attr(struct AdapterControlBlock
*acb
)
252 struct Scsi_Host
*host
= acb
->host
;
254 sysfs_remove_bin_file(&host
->shost_dev
.kobj
, &arcmsr_sysfs_message_clear_attr
);
255 sysfs_remove_bin_file(&host
->shost_dev
.kobj
, &arcmsr_sysfs_message_write_attr
);
256 sysfs_remove_bin_file(&host
->shost_dev
.kobj
, &arcmsr_sysfs_message_read_attr
);
261 arcmsr_attr_host_driver_version(struct device
*dev
,
262 struct device_attribute
*attr
, char *buf
)
264 return snprintf(buf
, PAGE_SIZE
,
266 ARCMSR_DRIVER_VERSION
);
270 arcmsr_attr_host_driver_posted_cmd(struct device
*dev
,
271 struct device_attribute
*attr
, char *buf
)
273 struct Scsi_Host
*host
= class_to_shost(dev
);
274 struct AdapterControlBlock
*acb
=
275 (struct AdapterControlBlock
*) host
->hostdata
;
276 return snprintf(buf
, PAGE_SIZE
,
278 atomic_read(&acb
->ccboutstandingcount
));
282 arcmsr_attr_host_driver_reset(struct device
*dev
,
283 struct device_attribute
*attr
, char *buf
)
285 struct Scsi_Host
*host
= class_to_shost(dev
);
286 struct AdapterControlBlock
*acb
=
287 (struct AdapterControlBlock
*) host
->hostdata
;
288 return snprintf(buf
, PAGE_SIZE
,
294 arcmsr_attr_host_driver_abort(struct device
*dev
,
295 struct device_attribute
*attr
, char *buf
)
297 struct Scsi_Host
*host
= class_to_shost(dev
);
298 struct AdapterControlBlock
*acb
=
299 (struct AdapterControlBlock
*) host
->hostdata
;
300 return snprintf(buf
, PAGE_SIZE
,
306 arcmsr_attr_host_fw_model(struct device
*dev
, struct device_attribute
*attr
,
309 struct Scsi_Host
*host
= class_to_shost(dev
);
310 struct AdapterControlBlock
*acb
=
311 (struct AdapterControlBlock
*) host
->hostdata
;
312 return snprintf(buf
, PAGE_SIZE
,
318 arcmsr_attr_host_fw_version(struct device
*dev
,
319 struct device_attribute
*attr
, char *buf
)
321 struct Scsi_Host
*host
= class_to_shost(dev
);
322 struct AdapterControlBlock
*acb
=
323 (struct AdapterControlBlock
*) host
->hostdata
;
325 return snprintf(buf
, PAGE_SIZE
,
331 arcmsr_attr_host_fw_request_len(struct device
*dev
,
332 struct device_attribute
*attr
, char *buf
)
334 struct Scsi_Host
*host
= class_to_shost(dev
);
335 struct AdapterControlBlock
*acb
=
336 (struct AdapterControlBlock
*) host
->hostdata
;
338 return snprintf(buf
, PAGE_SIZE
,
340 acb
->firm_request_len
);
344 arcmsr_attr_host_fw_numbers_queue(struct device
*dev
,
345 struct device_attribute
*attr
, char *buf
)
347 struct Scsi_Host
*host
= class_to_shost(dev
);
348 struct AdapterControlBlock
*acb
=
349 (struct AdapterControlBlock
*) host
->hostdata
;
351 return snprintf(buf
, PAGE_SIZE
,
353 acb
->firm_numbers_queue
);
357 arcmsr_attr_host_fw_sdram_size(struct device
*dev
,
358 struct device_attribute
*attr
, char *buf
)
360 struct Scsi_Host
*host
= class_to_shost(dev
);
361 struct AdapterControlBlock
*acb
=
362 (struct AdapterControlBlock
*) host
->hostdata
;
364 return snprintf(buf
, PAGE_SIZE
,
366 acb
->firm_sdram_size
);
370 arcmsr_attr_host_fw_hd_channels(struct device
*dev
,
371 struct device_attribute
*attr
, char *buf
)
373 struct Scsi_Host
*host
= class_to_shost(dev
);
374 struct AdapterControlBlock
*acb
=
375 (struct AdapterControlBlock
*) host
->hostdata
;
377 return snprintf(buf
, PAGE_SIZE
,
379 acb
->firm_hd_channels
);
382 static DEVICE_ATTR(host_driver_version
, S_IRUGO
, arcmsr_attr_host_driver_version
, NULL
);
383 static DEVICE_ATTR(host_driver_posted_cmd
, S_IRUGO
, arcmsr_attr_host_driver_posted_cmd
, NULL
);
384 static DEVICE_ATTR(host_driver_reset
, S_IRUGO
, arcmsr_attr_host_driver_reset
, NULL
);
385 static DEVICE_ATTR(host_driver_abort
, S_IRUGO
, arcmsr_attr_host_driver_abort
, NULL
);
386 static DEVICE_ATTR(host_fw_model
, S_IRUGO
, arcmsr_attr_host_fw_model
, NULL
);
387 static DEVICE_ATTR(host_fw_version
, S_IRUGO
, arcmsr_attr_host_fw_version
, NULL
);
388 static DEVICE_ATTR(host_fw_request_len
, S_IRUGO
, arcmsr_attr_host_fw_request_len
, NULL
);
389 static DEVICE_ATTR(host_fw_numbers_queue
, S_IRUGO
, arcmsr_attr_host_fw_numbers_queue
, NULL
);
390 static DEVICE_ATTR(host_fw_sdram_size
, S_IRUGO
, arcmsr_attr_host_fw_sdram_size
, NULL
);
391 static DEVICE_ATTR(host_fw_hd_channels
, S_IRUGO
, arcmsr_attr_host_fw_hd_channels
, NULL
);
393 struct device_attribute
*arcmsr_host_attrs
[] = {
394 &dev_attr_host_driver_version
,
395 &dev_attr_host_driver_posted_cmd
,
396 &dev_attr_host_driver_reset
,
397 &dev_attr_host_driver_abort
,
398 &dev_attr_host_fw_model
,
399 &dev_attr_host_fw_version
,
400 &dev_attr_host_fw_request_len
,
401 &dev_attr_host_fw_numbers_queue
,
402 &dev_attr_host_fw_sdram_size
,
403 &dev_attr_host_fw_hd_channels
,