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: erich@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>
53 #include <scsi/scsi_cmnd.h>
54 #include <scsi/scsi_device.h>
55 #include <scsi/scsi_host.h>
56 #include <scsi/scsi_transport.h>
59 struct class_device_attribute *arcmsr_host_attrs[];
62 arcmsr_sysfs_iop_message_read(struct kobject *kobj, char *buf, loff_t off,
65 struct class_device *cdev = container_of(kobj,struct class_device,kobj);
66 struct Scsi_Host *host = class_to_shost(cdev);
67 struct AdapterControlBlock *acb = (struct AdapterControlBlock *) host->hostdata;
68 struct MessageUnit __iomem *reg = acb->pmu;
69 uint8_t *pQbuffer,*ptmpQbuffer;
70 int32_t allxfer_len = 0;
72 if (!capable(CAP_SYS_ADMIN))
75 /* do message unit read. */
76 ptmpQbuffer = (uint8_t *)buf;
77 while ((acb->rqbuf_firstindex != acb->rqbuf_lastindex)
78 && (allxfer_len < 1031)) {
79 pQbuffer = &acb->rqbuffer[acb->rqbuf_firstindex];
80 memcpy(ptmpQbuffer, pQbuffer, 1);
81 acb->rqbuf_firstindex++;
82 acb->rqbuf_firstindex %= ARCMSR_MAX_QBUFFER;
86 if (acb->acb_flags & ACB_F_IOPDATA_OVERFLOW) {
87 struct QBUFFER __iomem * prbuffer = (struct QBUFFER __iomem *)
88 ®->message_rbuffer;
89 uint8_t __iomem * iop_data = (uint8_t __iomem *)prbuffer->data;
92 acb->acb_flags &= ~ACB_F_IOPDATA_OVERFLOW;
93 iop_len = readl(&prbuffer->data_len);
95 acb->rqbuffer[acb->rqbuf_lastindex] = readb(iop_data);
96 acb->rqbuf_lastindex++;
97 acb->rqbuf_lastindex %= ARCMSR_MAX_QBUFFER;
101 writel(ARCMSR_INBOUND_DRIVER_DATA_READ_OK,
102 ®->inbound_doorbell);
104 return (allxfer_len);
108 arcmsr_sysfs_iop_message_write(struct kobject *kobj, char *buf, loff_t off,
111 struct class_device *cdev = container_of(kobj,struct class_device,kobj);
112 struct Scsi_Host *host = class_to_shost(cdev);
113 struct AdapterControlBlock *acb = (struct AdapterControlBlock *) host->hostdata;
114 int32_t my_empty_len, user_len, wqbuf_firstindex, wqbuf_lastindex;
115 uint8_t *pQbuffer, *ptmpuserbuffer;
117 if (!capable(CAP_SYS_ADMIN))
121 /* do message unit write. */
122 ptmpuserbuffer = (uint8_t *)buf;
123 user_len = (int32_t)count;
124 wqbuf_lastindex = acb->wqbuf_lastindex;
125 wqbuf_firstindex = acb->wqbuf_firstindex;
126 if (wqbuf_lastindex != wqbuf_firstindex) {
127 arcmsr_post_Qbuffer(acb);
128 return 0; /*need retry*/
130 my_empty_len = (wqbuf_firstindex-wqbuf_lastindex - 1)
131 &(ARCMSR_MAX_QBUFFER - 1);
132 if (my_empty_len >= user_len) {
133 while (user_len > 0) {
135 &acb->wqbuffer[acb->wqbuf_lastindex];
136 memcpy(pQbuffer, ptmpuserbuffer, 1);
137 acb->wqbuf_lastindex++;
138 acb->wqbuf_lastindex %= ARCMSR_MAX_QBUFFER;
142 if (acb->acb_flags & ACB_F_MESSAGE_WQBUFFER_CLEARED) {
144 ~ACB_F_MESSAGE_WQBUFFER_CLEARED;
145 arcmsr_post_Qbuffer(acb);
149 return 0; /*need retry*/
155 arcmsr_sysfs_iop_message_clear(struct kobject *kobj, char *buf, loff_t off,
158 struct class_device *cdev = container_of(kobj,struct class_device,kobj);
159 struct Scsi_Host *host = class_to_shost(cdev);
160 struct AdapterControlBlock *acb = (struct AdapterControlBlock *) host->hostdata;
161 struct MessageUnit __iomem *reg = acb->pmu;
164 if (!capable(CAP_SYS_ADMIN))
167 if (acb->acb_flags & ACB_F_IOPDATA_OVERFLOW) {
168 acb->acb_flags &= ~ACB_F_IOPDATA_OVERFLOW;
169 writel(ARCMSR_INBOUND_DRIVER_DATA_READ_OK
170 , ®->inbound_doorbell);
173 (ACB_F_MESSAGE_WQBUFFER_CLEARED
174 | ACB_F_MESSAGE_RQBUFFER_CLEARED
175 | ACB_F_MESSAGE_WQBUFFER_READED);
176 acb->rqbuf_firstindex = 0;
177 acb->rqbuf_lastindex = 0;
178 acb->wqbuf_firstindex = 0;
179 acb->wqbuf_lastindex = 0;
180 pQbuffer = acb->rqbuffer;
181 memset(pQbuffer, 0, sizeof (struct QBUFFER));
182 pQbuffer = acb->wqbuffer;
183 memset(pQbuffer, 0, sizeof (struct QBUFFER));
187 static struct bin_attribute arcmsr_sysfs_message_read_attr = {
191 .owner = THIS_MODULE,
194 .read = arcmsr_sysfs_iop_message_read,
197 static struct bin_attribute arcmsr_sysfs_message_write_attr = {
201 .owner = THIS_MODULE,
204 .write = arcmsr_sysfs_iop_message_write,
207 static struct bin_attribute arcmsr_sysfs_message_clear_attr = {
211 .owner = THIS_MODULE,
214 .write = arcmsr_sysfs_iop_message_clear,
217 int arcmsr_alloc_sysfs_attr(struct AdapterControlBlock *acb)
219 struct Scsi_Host *host = acb->host;
222 error = sysfs_create_bin_file(&host->shost_classdev.kobj,
223 &arcmsr_sysfs_message_read_attr);
225 printk(KERN_ERR "arcmsr: alloc sysfs mu_read failed\n");
226 goto error_bin_file_message_read;
228 error = sysfs_create_bin_file(&host->shost_classdev.kobj,
229 &arcmsr_sysfs_message_write_attr);
231 printk(KERN_ERR "arcmsr: alloc sysfs mu_write failed\n");
232 goto error_bin_file_message_write;
234 error = sysfs_create_bin_file(&host->shost_classdev.kobj,
235 &arcmsr_sysfs_message_clear_attr);
237 printk(KERN_ERR "arcmsr: alloc sysfs mu_clear failed\n");
238 goto error_bin_file_message_clear;
241 error_bin_file_message_clear:
242 sysfs_remove_bin_file(&host->shost_classdev.kobj,
243 &arcmsr_sysfs_message_write_attr);
244 error_bin_file_message_write:
245 sysfs_remove_bin_file(&host->shost_classdev.kobj,
246 &arcmsr_sysfs_message_read_attr);
247 error_bin_file_message_read:
252 arcmsr_free_sysfs_attr(struct AdapterControlBlock *acb) {
253 struct Scsi_Host *host = acb->host;
255 sysfs_remove_bin_file(&host->shost_classdev.kobj,
256 &arcmsr_sysfs_message_clear_attr);
257 sysfs_remove_bin_file(&host->shost_classdev.kobj,
258 &arcmsr_sysfs_message_write_attr);
259 sysfs_remove_bin_file(&host->shost_classdev.kobj,
260 &arcmsr_sysfs_message_read_attr);
265 arcmsr_attr_host_driver_version(struct class_device *cdev, char *buf) {
266 return snprintf(buf, PAGE_SIZE,
268 ARCMSR_DRIVER_VERSION);
272 arcmsr_attr_host_driver_posted_cmd(struct class_device *cdev, char *buf) {
273 struct Scsi_Host *host = class_to_shost(cdev);
274 struct AdapterControlBlock *acb = (struct AdapterControlBlock *) host->hostdata;
275 return snprintf(buf, PAGE_SIZE,
277 atomic_read(&acb->ccboutstandingcount));
281 arcmsr_attr_host_driver_reset(struct class_device *cdev, char *buf) {
282 struct Scsi_Host *host = class_to_shost(cdev);
283 struct AdapterControlBlock *acb = (struct AdapterControlBlock *) host->hostdata;
284 return snprintf(buf, PAGE_SIZE,
290 arcmsr_attr_host_driver_abort(struct class_device *cdev, char *buf) {
291 struct Scsi_Host *host = class_to_shost(cdev);
292 struct AdapterControlBlock *acb = (struct AdapterControlBlock *) host->hostdata;
293 return snprintf(buf, PAGE_SIZE,
299 arcmsr_attr_host_fw_model(struct class_device *cdev, char *buf) {
300 struct Scsi_Host *host = class_to_shost(cdev);
301 struct AdapterControlBlock *acb = (struct AdapterControlBlock *) host->hostdata;
302 return snprintf(buf, PAGE_SIZE,
308 arcmsr_attr_host_fw_version(struct class_device *cdev, char *buf) {
309 struct Scsi_Host *host = class_to_shost(cdev);
310 struct AdapterControlBlock *acb = (struct AdapterControlBlock *) host->hostdata;
312 return snprintf(buf, PAGE_SIZE,
318 arcmsr_attr_host_fw_request_len(struct class_device *cdev, char *buf) {
319 struct Scsi_Host *host = class_to_shost(cdev);
320 struct AdapterControlBlock *acb = (struct AdapterControlBlock *) host->hostdata;
322 return snprintf(buf, PAGE_SIZE,
324 acb->firm_request_len);
328 arcmsr_attr_host_fw_numbers_queue(struct class_device *cdev, char *buf) {
329 struct Scsi_Host *host = class_to_shost(cdev);
330 struct AdapterControlBlock *acb = (struct AdapterControlBlock *) host->hostdata;
332 return snprintf(buf, PAGE_SIZE,
334 acb->firm_numbers_queue);
338 arcmsr_attr_host_fw_sdram_size(struct class_device *cdev, char *buf) {
339 struct Scsi_Host *host = class_to_shost(cdev);
340 struct AdapterControlBlock *acb = (struct AdapterControlBlock *) host->hostdata;
342 return snprintf(buf, PAGE_SIZE,
344 acb->firm_sdram_size);
348 arcmsr_attr_host_fw_hd_channels(struct class_device *cdev, char *buf) {
349 struct Scsi_Host *host = class_to_shost(cdev);
350 struct AdapterControlBlock *acb = (struct AdapterControlBlock *) host->hostdata;
352 return snprintf(buf, PAGE_SIZE,
354 acb->firm_hd_channels);
357 static CLASS_DEVICE_ATTR(host_driver_version, S_IRUGO, arcmsr_attr_host_driver_version, NULL);
358 static CLASS_DEVICE_ATTR(host_driver_posted_cmd, S_IRUGO, arcmsr_attr_host_driver_posted_cmd, NULL);
359 static CLASS_DEVICE_ATTR(host_driver_reset, S_IRUGO, arcmsr_attr_host_driver_reset, NULL);
360 static CLASS_DEVICE_ATTR(host_driver_abort, S_IRUGO, arcmsr_attr_host_driver_abort, NULL);
361 static CLASS_DEVICE_ATTR(host_fw_model, S_IRUGO, arcmsr_attr_host_fw_model, NULL);
362 static CLASS_DEVICE_ATTR(host_fw_version, S_IRUGO, arcmsr_attr_host_fw_version, NULL);
363 static CLASS_DEVICE_ATTR(host_fw_request_len, S_IRUGO, arcmsr_attr_host_fw_request_len, NULL);
364 static CLASS_DEVICE_ATTR(host_fw_numbers_queue, S_IRUGO, arcmsr_attr_host_fw_numbers_queue, NULL);
365 static CLASS_DEVICE_ATTR(host_fw_sdram_size, S_IRUGO, arcmsr_attr_host_fw_sdram_size, NULL);
366 static CLASS_DEVICE_ATTR(host_fw_hd_channels, S_IRUGO, arcmsr_attr_host_fw_hd_channels, NULL);
368 struct class_device_attribute *arcmsr_host_attrs[] = {
369 &class_device_attr_host_driver_version,
370 &class_device_attr_host_driver_posted_cmd,
371 &class_device_attr_host_driver_reset,
372 &class_device_attr_host_driver_abort,
373 &class_device_attr_host_fw_model,
374 &class_device_attr_host_fw_version,
375 &class_device_attr_host_fw_request_len,
376 &class_device_attr_host_fw_numbers_queue,
377 &class_device_attr_host_fw_sdram_size,
378 &class_device_attr_host_fw_hd_channels,