2 * PMC-Sierra 8001/8081/8088/8089 SAS/SATA based host adapters driver
4 * Copyright (c) 2008-2009 USI Co., Ltd.
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions
10 * 1. Redistributions of source code must retain the above copyright
11 * notice, this list of conditions, and the following disclaimer,
12 * without modification.
13 * 2. Redistributions in binary form must reproduce at minimum a disclaimer
14 * substantially similar to the "NO WARRANTY" disclaimer below
15 * ("Disclaimer") and any redistribution must be conditioned upon
16 * including a substantially similar Disclaimer requirement for further
17 * binary redistribution.
18 * 3. Neither the names of the above-listed copyright holders nor the names
19 * of any contributors may be used to endorse or promote products derived
20 * from this software without specific prior written permission.
22 * Alternatively, this software may be distributed under the terms of the
23 * GNU General Public License ("GPL") version 2 as published by the Free
24 * Software Foundation.
27 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
28 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
29 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR
30 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
31 * HOLDERS OR CONTRIBUTORS BE LIABLE FOR SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
32 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
33 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
34 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
35 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
36 * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
37 * POSSIBILITY OF SUCH DAMAGES.
40 #include <linux/firmware.h>
41 #include <linux/slab.h>
42 #include "pm8001_sas.h"
43 #include "pm8001_ctl.h"
45 /* scsi host attributes */
48 * pm8001_ctl_mpi_interface_rev_show - MPI interface revision number
49 * @cdev: pointer to embedded class device
50 * @buf: the buffer returned
52 * A sysfs 'read-only' shost attribute.
54 static ssize_t
pm8001_ctl_mpi_interface_rev_show(struct device
*cdev
,
55 struct device_attribute
*attr
, char *buf
)
57 struct Scsi_Host
*shost
= class_to_shost(cdev
);
58 struct sas_ha_struct
*sha
= SHOST_TO_SAS_HA(shost
);
59 struct pm8001_hba_info
*pm8001_ha
= sha
->lldd_ha
;
61 if (pm8001_ha
->chip_id
== chip_8001
) {
62 return snprintf(buf
, PAGE_SIZE
, "%d\n",
63 pm8001_ha
->main_cfg_tbl
.pm8001_tbl
.interface_rev
);
65 return snprintf(buf
, PAGE_SIZE
, "%d\n",
66 pm8001_ha
->main_cfg_tbl
.pm80xx_tbl
.interface_rev
);
70 DEVICE_ATTR(interface_rev
, S_IRUGO
, pm8001_ctl_mpi_interface_rev_show
, NULL
);
73 * pm8001_ctl_fw_version_show - firmware version
74 * @cdev: pointer to embedded class device
75 * @buf: the buffer returned
77 * A sysfs 'read-only' shost attribute.
79 static ssize_t
pm8001_ctl_fw_version_show(struct device
*cdev
,
80 struct device_attribute
*attr
, char *buf
)
82 struct Scsi_Host
*shost
= class_to_shost(cdev
);
83 struct sas_ha_struct
*sha
= SHOST_TO_SAS_HA(shost
);
84 struct pm8001_hba_info
*pm8001_ha
= sha
->lldd_ha
;
86 if (pm8001_ha
->chip_id
== chip_8001
) {
87 return snprintf(buf
, PAGE_SIZE
, "%02x.%02x.%02x.%02x\n",
88 (u8
)(pm8001_ha
->main_cfg_tbl
.pm8001_tbl
.firmware_rev
>> 24),
89 (u8
)(pm8001_ha
->main_cfg_tbl
.pm8001_tbl
.firmware_rev
>> 16),
90 (u8
)(pm8001_ha
->main_cfg_tbl
.pm8001_tbl
.firmware_rev
>> 8),
91 (u8
)(pm8001_ha
->main_cfg_tbl
.pm8001_tbl
.firmware_rev
));
93 return snprintf(buf
, PAGE_SIZE
, "%02x.%02x.%02x.%02x\n",
94 (u8
)(pm8001_ha
->main_cfg_tbl
.pm80xx_tbl
.firmware_rev
>> 24),
95 (u8
)(pm8001_ha
->main_cfg_tbl
.pm80xx_tbl
.firmware_rev
>> 16),
96 (u8
)(pm8001_ha
->main_cfg_tbl
.pm80xx_tbl
.firmware_rev
>> 8),
97 (u8
)(pm8001_ha
->main_cfg_tbl
.pm80xx_tbl
.firmware_rev
));
100 static DEVICE_ATTR(fw_version
, S_IRUGO
, pm8001_ctl_fw_version_show
, NULL
);
102 * pm8001_ctl_max_out_io_show - max outstanding io supported
103 * @cdev: pointer to embedded class device
104 * @buf: the buffer returned
106 * A sysfs 'read-only' shost attribute.
108 static ssize_t
pm8001_ctl_max_out_io_show(struct device
*cdev
,
109 struct device_attribute
*attr
, char *buf
)
111 struct Scsi_Host
*shost
= class_to_shost(cdev
);
112 struct sas_ha_struct
*sha
= SHOST_TO_SAS_HA(shost
);
113 struct pm8001_hba_info
*pm8001_ha
= sha
->lldd_ha
;
115 if (pm8001_ha
->chip_id
== chip_8001
) {
116 return snprintf(buf
, PAGE_SIZE
, "%d\n",
117 pm8001_ha
->main_cfg_tbl
.pm8001_tbl
.max_out_io
);
119 return snprintf(buf
, PAGE_SIZE
, "%d\n",
120 pm8001_ha
->main_cfg_tbl
.pm80xx_tbl
.max_out_io
);
123 static DEVICE_ATTR(max_out_io
, S_IRUGO
, pm8001_ctl_max_out_io_show
, NULL
);
125 * pm8001_ctl_max_devices_show - max devices support
126 * @cdev: pointer to embedded class device
127 * @buf: the buffer returned
129 * A sysfs 'read-only' shost attribute.
131 static ssize_t
pm8001_ctl_max_devices_show(struct device
*cdev
,
132 struct device_attribute
*attr
, char *buf
)
134 struct Scsi_Host
*shost
= class_to_shost(cdev
);
135 struct sas_ha_struct
*sha
= SHOST_TO_SAS_HA(shost
);
136 struct pm8001_hba_info
*pm8001_ha
= sha
->lldd_ha
;
138 if (pm8001_ha
->chip_id
== chip_8001
) {
139 return snprintf(buf
, PAGE_SIZE
, "%04d\n",
140 (u16
)(pm8001_ha
->main_cfg_tbl
.pm8001_tbl
.max_sgl
>> 16)
143 return snprintf(buf
, PAGE_SIZE
, "%04d\n",
144 (u16
)(pm8001_ha
->main_cfg_tbl
.pm80xx_tbl
.max_sgl
>> 16)
148 static DEVICE_ATTR(max_devices
, S_IRUGO
, pm8001_ctl_max_devices_show
, NULL
);
150 * pm8001_ctl_max_sg_list_show - max sg list supported iff not 0.0 for no
151 * hardware limitation
152 * @cdev: pointer to embedded class device
153 * @buf: the buffer returned
155 * A sysfs 'read-only' shost attribute.
157 static ssize_t
pm8001_ctl_max_sg_list_show(struct device
*cdev
,
158 struct device_attribute
*attr
, char *buf
)
160 struct Scsi_Host
*shost
= class_to_shost(cdev
);
161 struct sas_ha_struct
*sha
= SHOST_TO_SAS_HA(shost
);
162 struct pm8001_hba_info
*pm8001_ha
= sha
->lldd_ha
;
164 if (pm8001_ha
->chip_id
== chip_8001
) {
165 return snprintf(buf
, PAGE_SIZE
, "%04d\n",
166 pm8001_ha
->main_cfg_tbl
.pm8001_tbl
.max_sgl
& 0x0000FFFF
169 return snprintf(buf
, PAGE_SIZE
, "%04d\n",
170 pm8001_ha
->main_cfg_tbl
.pm80xx_tbl
.max_sgl
& 0x0000FFFF
174 static DEVICE_ATTR(max_sg_list
, S_IRUGO
, pm8001_ctl_max_sg_list_show
, NULL
);
181 show_sas_spec_support_status(unsigned int mode
, char *buf
)
186 len
= sprintf(buf
, "%s", "SAS1.1");
188 len
+= sprintf(buf
+ len
, "%s%s", len
? ", " : "", "SAS2.0");
189 len
+= sprintf(buf
+ len
, "\n");
195 * pm8001_ctl_sas_spec_support_show - sas spec supported
196 * @cdev: pointer to embedded class device
197 * @buf: the buffer returned
199 * A sysfs 'read-only' shost attribute.
201 static ssize_t
pm8001_ctl_sas_spec_support_show(struct device
*cdev
,
202 struct device_attribute
*attr
, char *buf
)
205 struct Scsi_Host
*shost
= class_to_shost(cdev
);
206 struct sas_ha_struct
*sha
= SHOST_TO_SAS_HA(shost
);
207 struct pm8001_hba_info
*pm8001_ha
= sha
->lldd_ha
;
208 /* fe000000 means supports SAS2.1 */
209 if (pm8001_ha
->chip_id
== chip_8001
)
210 mode
= (pm8001_ha
->main_cfg_tbl
.pm8001_tbl
.ctrl_cap_flag
&
213 /* fe000000 means supports SAS2.1 */
214 mode
= (pm8001_ha
->main_cfg_tbl
.pm80xx_tbl
.ctrl_cap_flag
&
216 return show_sas_spec_support_status(mode
, buf
);
218 static DEVICE_ATTR(sas_spec_support
, S_IRUGO
,
219 pm8001_ctl_sas_spec_support_show
, NULL
);
222 * pm8001_ctl_sas_address_show - sas address
223 * @cdev: pointer to embedded class device
224 * @buf: the buffer returned
226 * This is the controller sas address
228 * A sysfs 'read-only' shost attribute.
230 static ssize_t
pm8001_ctl_host_sas_address_show(struct device
*cdev
,
231 struct device_attribute
*attr
, char *buf
)
233 struct Scsi_Host
*shost
= class_to_shost(cdev
);
234 struct sas_ha_struct
*sha
= SHOST_TO_SAS_HA(shost
);
235 struct pm8001_hba_info
*pm8001_ha
= sha
->lldd_ha
;
236 return snprintf(buf
, PAGE_SIZE
, "0x%016llx\n",
237 be64_to_cpu(*(__be64
*)pm8001_ha
->sas_addr
));
239 static DEVICE_ATTR(host_sas_address
, S_IRUGO
,
240 pm8001_ctl_host_sas_address_show
, NULL
);
243 * pm8001_ctl_logging_level_show - logging level
244 * @cdev: pointer to embedded class device
245 * @buf: the buffer returned
247 * A sysfs 'read/write' shost attribute.
249 static ssize_t
pm8001_ctl_logging_level_show(struct device
*cdev
,
250 struct device_attribute
*attr
, char *buf
)
252 struct Scsi_Host
*shost
= class_to_shost(cdev
);
253 struct sas_ha_struct
*sha
= SHOST_TO_SAS_HA(shost
);
254 struct pm8001_hba_info
*pm8001_ha
= sha
->lldd_ha
;
256 return snprintf(buf
, PAGE_SIZE
, "%08xh\n", pm8001_ha
->logging_level
);
258 static ssize_t
pm8001_ctl_logging_level_store(struct device
*cdev
,
259 struct device_attribute
*attr
, const char *buf
, size_t count
)
261 struct Scsi_Host
*shost
= class_to_shost(cdev
);
262 struct sas_ha_struct
*sha
= SHOST_TO_SAS_HA(shost
);
263 struct pm8001_hba_info
*pm8001_ha
= sha
->lldd_ha
;
266 if (sscanf(buf
, "%x", &val
) != 1)
269 pm8001_ha
->logging_level
= val
;
273 static DEVICE_ATTR(logging_level
, S_IRUGO
| S_IWUSR
,
274 pm8001_ctl_logging_level_show
, pm8001_ctl_logging_level_store
);
276 * pm8001_ctl_aap_log_show - aap1 event log
277 * @cdev: pointer to embedded class device
278 * @buf: the buffer returned
280 * A sysfs 'read-only' shost attribute.
282 static ssize_t
pm8001_ctl_aap_log_show(struct device
*cdev
,
283 struct device_attribute
*attr
, char *buf
)
285 struct Scsi_Host
*shost
= class_to_shost(cdev
);
286 struct sas_ha_struct
*sha
= SHOST_TO_SAS_HA(shost
);
287 struct pm8001_hba_info
*pm8001_ha
= sha
->lldd_ha
;
289 #define AAP1_MEMMAP(r, c) \
290 (*(u32 *)((u8*)pm8001_ha->memoryMap.region[AAP1].virt_ptr + (r) * 32 \
295 for (i
= 0; i
< max
; i
++) {
296 str
+= sprintf(str
, "0x%08x 0x%08x 0x%08x 0x%08x 0x%08x 0x%08x"
310 static DEVICE_ATTR(aap_log
, S_IRUGO
, pm8001_ctl_aap_log_show
, NULL
);
312 * pm8001_ctl_ib_queue_log_show - Out bound Queue log
313 * @cdev:pointer to embedded class device
314 * @buf: the buffer returned
315 * A sysfs 'read-only' shost attribute.
317 static ssize_t
pm8001_ctl_ib_queue_log_show(struct device
*cdev
,
318 struct device_attribute
*attr
, char *buf
)
320 struct Scsi_Host
*shost
= class_to_shost(cdev
);
321 struct sas_ha_struct
*sha
= SHOST_TO_SAS_HA(shost
);
322 struct pm8001_hba_info
*pm8001_ha
= sha
->lldd_ha
;
326 #define IB_MEMMAP(c) \
327 (*(u32 *)((u8 *)pm8001_ha-> \
328 memoryMap.region[IB].virt_ptr + \
329 pm8001_ha->evtlog_ib_offset + (c)))
331 for (offset
= 0; offset
< IB_OB_READ_TIMES
; offset
++) {
332 str
+= sprintf(str
, "0x%08x\n", IB_MEMMAP(start
));
335 pm8001_ha
->evtlog_ib_offset
+= SYSFS_OFFSET
;
336 if (((pm8001_ha
->evtlog_ib_offset
) % (PM80XX_IB_OB_QUEUE_SIZE
)) == 0)
337 pm8001_ha
->evtlog_ib_offset
= 0;
342 static DEVICE_ATTR(ib_log
, S_IRUGO
, pm8001_ctl_ib_queue_log_show
, NULL
);
344 * pm8001_ctl_ob_queue_log_show - Out bound Queue log
345 * @cdev:pointer to embedded class device
346 * @buf: the buffer returned
347 * A sysfs 'read-only' shost attribute.
350 static ssize_t
pm8001_ctl_ob_queue_log_show(struct device
*cdev
,
351 struct device_attribute
*attr
, char *buf
)
353 struct Scsi_Host
*shost
= class_to_shost(cdev
);
354 struct sas_ha_struct
*sha
= SHOST_TO_SAS_HA(shost
);
355 struct pm8001_hba_info
*pm8001_ha
= sha
->lldd_ha
;
359 #define OB_MEMMAP(c) \
360 (*(u32 *)((u8 *)pm8001_ha-> \
361 memoryMap.region[OB].virt_ptr + \
362 pm8001_ha->evtlog_ob_offset + (c)))
364 for (offset
= 0; offset
< IB_OB_READ_TIMES
; offset
++) {
365 str
+= sprintf(str
, "0x%08x\n", OB_MEMMAP(start
));
368 pm8001_ha
->evtlog_ob_offset
+= SYSFS_OFFSET
;
369 if (((pm8001_ha
->evtlog_ob_offset
) % (PM80XX_IB_OB_QUEUE_SIZE
)) == 0)
370 pm8001_ha
->evtlog_ob_offset
= 0;
374 static DEVICE_ATTR(ob_log
, S_IRUGO
, pm8001_ctl_ob_queue_log_show
, NULL
);
376 * pm8001_ctl_bios_version_show - Bios version Display
377 * @cdev:pointer to embedded class device
378 * @buf:the buffer returned
379 * A sysfs 'read-only' shost attribute.
381 static ssize_t
pm8001_ctl_bios_version_show(struct device
*cdev
,
382 struct device_attribute
*attr
, char *buf
)
384 struct Scsi_Host
*shost
= class_to_shost(cdev
);
385 struct sas_ha_struct
*sha
= SHOST_TO_SAS_HA(shost
);
386 struct pm8001_hba_info
*pm8001_ha
= sha
->lldd_ha
;
389 DECLARE_COMPLETION_ONSTACK(completion
);
390 struct pm8001_ioctl_payload payload
;
392 pm8001_ha
->nvmd_completion
= &completion
;
393 payload
.minor_function
= 7;
395 payload
.length
= 4096;
396 payload
.func_specific
= kzalloc(4096, GFP_KERNEL
);
397 if (!payload
.func_specific
)
399 if (PM8001_CHIP_DISP
->get_nvmd_req(pm8001_ha
, &payload
)) {
400 kfree(payload
.func_specific
);
403 wait_for_completion(&completion
);
404 for (bios_index
= BIOSOFFSET
; bios_index
< BIOS_OFFSET_LIMIT
;
406 str
+= sprintf(str
, "%c",
407 *(payload
.func_specific
+bios_index
));
408 kfree(payload
.func_specific
);
411 static DEVICE_ATTR(bios_version
, S_IRUGO
, pm8001_ctl_bios_version_show
, NULL
);
413 * pm8001_ctl_aap_log_show - IOP event log
414 * @cdev: pointer to embedded class device
415 * @buf: the buffer returned
417 * A sysfs 'read-only' shost attribute.
419 static ssize_t
pm8001_ctl_iop_log_show(struct device
*cdev
,
420 struct device_attribute
*attr
, char *buf
)
422 struct Scsi_Host
*shost
= class_to_shost(cdev
);
423 struct sas_ha_struct
*sha
= SHOST_TO_SAS_HA(shost
);
424 struct pm8001_hba_info
*pm8001_ha
= sha
->lldd_ha
;
425 #define IOP_MEMMAP(r, c) \
426 (*(u32 *)((u8*)pm8001_ha->memoryMap.region[IOP].virt_ptr + (r) * 32 \
431 for (i
= 0; i
< max
; i
++) {
432 str
+= sprintf(str
, "0x%08x 0x%08x 0x%08x 0x%08x 0x%08x 0x%08x"
446 static DEVICE_ATTR(iop_log
, S_IRUGO
, pm8001_ctl_iop_log_show
, NULL
);
449 ** pm8001_ctl_fatal_log_show - fatal error logging
450 ** @cdev:pointer to embedded class device
451 ** @buf: the buffer returned
453 ** A sysfs 'read-only' shost attribute.
456 static ssize_t
pm8001_ctl_fatal_log_show(struct device
*cdev
,
457 struct device_attribute
*attr
, char *buf
)
461 count
= pm80xx_get_fatal_dump(cdev
, attr
, buf
);
465 static DEVICE_ATTR(fatal_log
, S_IRUGO
, pm8001_ctl_fatal_log_show
, NULL
);
469 ** pm8001_ctl_gsm_log_show - gsm dump collection
470 ** @cdev:pointer to embedded class device
471 ** @buf: the buffer returned
472 **A sysfs 'read-only' shost attribute.
474 static ssize_t
pm8001_ctl_gsm_log_show(struct device
*cdev
,
475 struct device_attribute
*attr
, char *buf
)
479 count
= pm8001_get_gsm_dump(cdev
, SYSFS_OFFSET
, buf
);
483 static DEVICE_ATTR(gsm_log
, S_IRUGO
, pm8001_ctl_gsm_log_show
, NULL
);
485 #define FLASH_CMD_NONE 0x00
486 #define FLASH_CMD_UPDATE 0x01
487 #define FLASH_CMD_SET_NVMD 0x02
489 struct flash_command
{
494 static struct flash_command flash_command_table
[] =
496 {"set_nvmd", FLASH_CMD_SET_NVMD
},
497 {"update", FLASH_CMD_UPDATE
},
498 {"", FLASH_CMD_NONE
} /* Last entry should be NULL. */
506 static struct error_fw flash_error_table
[] =
508 {"Failed to open fw image file", FAIL_OPEN_BIOS_FILE
},
509 {"image header mismatch", FLASH_UPDATE_HDR_ERR
},
510 {"image offset mismatch", FLASH_UPDATE_OFFSET_ERR
},
511 {"image CRC Error", FLASH_UPDATE_CRC_ERR
},
512 {"image length Error.", FLASH_UPDATE_LENGTH_ERR
},
513 {"Failed to program flash chip", FLASH_UPDATE_HW_ERR
},
514 {"Flash chip not supported.", FLASH_UPDATE_DNLD_NOT_SUPPORTED
},
515 {"Flash update disabled.", FLASH_UPDATE_DISABLED
},
516 {"Flash in progress", FLASH_IN_PROGRESS
},
517 {"Image file size Error", FAIL_FILE_SIZE
},
518 {"Input parameter error", FAIL_PARAMETERS
},
519 {"Out of memory", FAIL_OUT_MEMORY
},
520 {"OK", 0} /* Last entry err_code = 0. */
523 static int pm8001_set_nvmd(struct pm8001_hba_info
*pm8001_ha
)
525 struct pm8001_ioctl_payload
*payload
;
526 DECLARE_COMPLETION_ONSTACK(completion
);
529 u32 length
= 1024 * 5 + sizeof(*payload
) - 1;
531 if (pm8001_ha
->fw_image
->size
> 4096) {
532 pm8001_ha
->fw_status
= FAIL_FILE_SIZE
;
536 ioctlbuffer
= kzalloc(length
, GFP_KERNEL
);
538 pm8001_ha
->fw_status
= FAIL_OUT_MEMORY
;
541 payload
= (struct pm8001_ioctl_payload
*)ioctlbuffer
;
542 memcpy((u8
*)&payload
->func_specific
, (u8
*)pm8001_ha
->fw_image
->data
,
543 pm8001_ha
->fw_image
->size
);
544 payload
->length
= pm8001_ha
->fw_image
->size
;
546 payload
->minor_function
= 0x1;
547 pm8001_ha
->nvmd_completion
= &completion
;
548 ret
= PM8001_CHIP_DISP
->set_nvmd_req(pm8001_ha
, payload
);
550 pm8001_ha
->fw_status
= FAIL_OUT_MEMORY
;
553 wait_for_completion(&completion
);
559 static int pm8001_update_flash(struct pm8001_hba_info
*pm8001_ha
)
561 struct pm8001_ioctl_payload
*payload
;
562 DECLARE_COMPLETION_ONSTACK(completion
);
564 struct fw_control_info
*fwControl
;
565 u32 partitionSize
, partitionSizeTmp
;
566 u32 loopNumber
, loopcount
;
567 struct pm8001_fw_image_header
*image_hdr
;
570 u32 length
= 1024 * 16 + sizeof(*payload
) - 1;
572 if (pm8001_ha
->fw_image
->size
< 28) {
573 pm8001_ha
->fw_status
= FAIL_FILE_SIZE
;
576 ioctlbuffer
= kzalloc(length
, GFP_KERNEL
);
578 pm8001_ha
->fw_status
= FAIL_OUT_MEMORY
;
581 image_hdr
= (struct pm8001_fw_image_header
*)pm8001_ha
->fw_image
->data
;
582 while (sizeRead
< pm8001_ha
->fw_image
->size
) {
584 *(u32
*)((u8
*)&image_hdr
->image_length
+ sizeRead
);
585 partitionSize
= be32_to_cpu(partitionSizeTmp
);
586 loopcount
= DIV_ROUND_UP(partitionSize
+ HEADER_LEN
,
588 for (loopNumber
= 0; loopNumber
< loopcount
; loopNumber
++) {
589 payload
= (struct pm8001_ioctl_payload
*)ioctlbuffer
;
590 payload
->length
= 1024*16;
593 (struct fw_control_info
*)&payload
->func_specific
;
594 fwControl
->len
= IOCTL_BUF_SIZE
; /* IN */
595 fwControl
->size
= partitionSize
+ HEADER_LEN
;/* IN */
596 fwControl
->retcode
= 0;/* OUT */
597 fwControl
->offset
= loopNumber
* IOCTL_BUF_SIZE
;/*OUT */
599 /* for the last chunk of data in case file size is not even with
600 4k, load only the rest*/
601 if (((loopcount
-loopNumber
) == 1) &&
602 ((partitionSize
+ HEADER_LEN
) % IOCTL_BUF_SIZE
)) {
604 (partitionSize
+ HEADER_LEN
) % IOCTL_BUF_SIZE
;
605 memcpy((u8
*)fwControl
->buffer
,
606 (u8
*)pm8001_ha
->fw_image
->data
+ sizeRead
,
607 (partitionSize
+ HEADER_LEN
) % IOCTL_BUF_SIZE
);
609 (partitionSize
+ HEADER_LEN
) % IOCTL_BUF_SIZE
;
611 memcpy((u8
*)fwControl
->buffer
,
612 (u8
*)pm8001_ha
->fw_image
->data
+ sizeRead
,
614 sizeRead
+= IOCTL_BUF_SIZE
;
617 pm8001_ha
->nvmd_completion
= &completion
;
618 ret
= PM8001_CHIP_DISP
->fw_flash_update_req(pm8001_ha
, payload
);
620 pm8001_ha
->fw_status
= FAIL_OUT_MEMORY
;
623 wait_for_completion(&completion
);
624 if (fwControl
->retcode
> FLASH_UPDATE_IN_PROGRESS
) {
625 pm8001_ha
->fw_status
= fwControl
->retcode
;
635 static ssize_t
pm8001_store_update_fw(struct device
*cdev
,
636 struct device_attribute
*attr
,
637 const char *buf
, size_t count
)
639 struct Scsi_Host
*shost
= class_to_shost(cdev
);
640 struct sas_ha_struct
*sha
= SHOST_TO_SAS_HA(shost
);
641 struct pm8001_hba_info
*pm8001_ha
= sha
->lldd_ha
;
642 char *cmd_ptr
, *filename_ptr
;
644 int flash_command
= FLASH_CMD_NONE
;
647 if (!capable(CAP_SYS_ADMIN
))
650 /* this test protects us from running two flash processes at once,
651 * so we should start with this test */
652 if (pm8001_ha
->fw_status
== FLASH_IN_PROGRESS
)
654 pm8001_ha
->fw_status
= FLASH_IN_PROGRESS
;
656 cmd_ptr
= kzalloc(count
*2, GFP_KERNEL
);
658 pm8001_ha
->fw_status
= FAIL_OUT_MEMORY
;
662 filename_ptr
= cmd_ptr
+ count
;
663 res
= sscanf(buf
, "%s %s", cmd_ptr
, filename_ptr
);
665 pm8001_ha
->fw_status
= FAIL_PARAMETERS
;
670 for (i
= 0; flash_command_table
[i
].code
!= FLASH_CMD_NONE
; i
++) {
671 if (!memcmp(flash_command_table
[i
].command
,
672 cmd_ptr
, strlen(cmd_ptr
))) {
673 flash_command
= flash_command_table
[i
].code
;
677 if (flash_command
== FLASH_CMD_NONE
) {
678 pm8001_ha
->fw_status
= FAIL_PARAMETERS
;
683 ret
= request_firmware(&pm8001_ha
->fw_image
,
688 PM8001_FAIL_DBG(pm8001_ha
,
690 "Failed to load firmware image file %s, error %d\n",
692 pm8001_ha
->fw_status
= FAIL_OPEN_BIOS_FILE
;
696 if (FLASH_CMD_UPDATE
== flash_command
)
697 ret
= pm8001_update_flash(pm8001_ha
);
699 ret
= pm8001_set_nvmd(pm8001_ha
);
701 release_firmware(pm8001_ha
->fw_image
);
708 pm8001_ha
->fw_status
= FLASH_OK
;
712 static ssize_t
pm8001_show_update_fw(struct device
*cdev
,
713 struct device_attribute
*attr
, char *buf
)
716 struct Scsi_Host
*shost
= class_to_shost(cdev
);
717 struct sas_ha_struct
*sha
= SHOST_TO_SAS_HA(shost
);
718 struct pm8001_hba_info
*pm8001_ha
= sha
->lldd_ha
;
720 for (i
= 0; flash_error_table
[i
].err_code
!= 0; i
++) {
721 if (flash_error_table
[i
].err_code
== pm8001_ha
->fw_status
)
724 if (pm8001_ha
->fw_status
!= FLASH_IN_PROGRESS
)
725 pm8001_ha
->fw_status
= FLASH_OK
;
727 return snprintf(buf
, PAGE_SIZE
, "status=%x %s\n",
728 flash_error_table
[i
].err_code
,
729 flash_error_table
[i
].reason
);
732 static DEVICE_ATTR(update_fw
, S_IRUGO
|S_IWUSR
|S_IWGRP
,
733 pm8001_show_update_fw
, pm8001_store_update_fw
);
734 struct device_attribute
*pm8001_host_attrs
[] = {
735 &dev_attr_interface_rev
,
736 &dev_attr_fw_version
,
742 &dev_attr_max_out_io
,
743 &dev_attr_max_devices
,
744 &dev_attr_max_sg_list
,
745 &dev_attr_sas_spec_support
,
746 &dev_attr_logging_level
,
747 &dev_attr_host_sas_address
,
748 &dev_attr_bios_version
,