xref: /linux/drivers/scsi/pm8001/pm8001_ctl.c (revision 3932b9ca55b0be314a36d3e84faff3e823c081f5)
1 /*
2  * PMC-Sierra 8001/8081/8088/8089 SAS/SATA based host adapters driver
3  *
4  * Copyright (c) 2008-2009 USI Co., Ltd.
5  * All rights reserved.
6  *
7  * Redistribution and use in source and binary forms, with or without
8  * modification, are permitted provided that the following conditions
9  * are met:
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.
21  *
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.
25  *
26  * NO WARRANTY
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.
38  *
39  */
40 #include <linux/firmware.h>
41 #include <linux/slab.h>
42 #include "pm8001_sas.h"
43 #include "pm8001_ctl.h"
44 
45 /* scsi host attributes */
46 
47 /**
48  * pm8001_ctl_mpi_interface_rev_show - MPI interface revision number
49  * @cdev: pointer to embedded class device
50  * @buf: the buffer returned
51  *
52  * A sysfs 'read-only' shost attribute.
53  */
54 static ssize_t pm8001_ctl_mpi_interface_rev_show(struct device *cdev,
55 	struct device_attribute *attr, char *buf)
56 {
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;
60 
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);
64 	} else {
65 		return snprintf(buf, PAGE_SIZE, "%d\n",
66 			pm8001_ha->main_cfg_tbl.pm80xx_tbl.interface_rev);
67 	}
68 }
69 static
70 DEVICE_ATTR(interface_rev, S_IRUGO, pm8001_ctl_mpi_interface_rev_show, NULL);
71 
72 /**
73  * pm8001_ctl_fw_version_show - firmware version
74  * @cdev: pointer to embedded class device
75  * @buf: the buffer returned
76  *
77  * A sysfs 'read-only' shost attribute.
78  */
79 static ssize_t pm8001_ctl_fw_version_show(struct device *cdev,
80 	struct device_attribute *attr, char *buf)
81 {
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;
85 
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));
92 	} else {
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));
98 	}
99 }
100 static DEVICE_ATTR(fw_version, S_IRUGO, pm8001_ctl_fw_version_show, NULL);
101 /**
102  * pm8001_ctl_max_out_io_show - max outstanding io supported
103  * @cdev: pointer to embedded class device
104  * @buf: the buffer returned
105  *
106  * A sysfs 'read-only' shost attribute.
107  */
108 static ssize_t pm8001_ctl_max_out_io_show(struct device *cdev,
109 	struct device_attribute *attr, char *buf)
110 {
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;
114 
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);
118 	} else {
119 		return snprintf(buf, PAGE_SIZE, "%d\n",
120 			pm8001_ha->main_cfg_tbl.pm80xx_tbl.max_out_io);
121 	}
122 }
123 static DEVICE_ATTR(max_out_io, S_IRUGO, pm8001_ctl_max_out_io_show, NULL);
124 /**
125  * pm8001_ctl_max_devices_show - max devices support
126  * @cdev: pointer to embedded class device
127  * @buf: the buffer returned
128  *
129  * A sysfs 'read-only' shost attribute.
130  */
131 static ssize_t pm8001_ctl_max_devices_show(struct device *cdev,
132 	struct device_attribute *attr, char *buf)
133 {
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;
137 
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)
141 			);
142 	} else {
143 		return snprintf(buf, PAGE_SIZE, "%04d\n",
144 			(u16)(pm8001_ha->main_cfg_tbl.pm80xx_tbl.max_sgl >> 16)
145 			);
146 	}
147 }
148 static DEVICE_ATTR(max_devices, S_IRUGO, pm8001_ctl_max_devices_show, NULL);
149 /**
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
154  *
155  * A sysfs 'read-only' shost attribute.
156  */
157 static ssize_t pm8001_ctl_max_sg_list_show(struct device *cdev,
158 	struct device_attribute *attr, char *buf)
159 {
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;
163 
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
167 			);
168 	} else {
169 		return snprintf(buf, PAGE_SIZE, "%04d\n",
170 			pm8001_ha->main_cfg_tbl.pm80xx_tbl.max_sgl & 0x0000FFFF
171 			);
172 	}
173 }
174 static DEVICE_ATTR(max_sg_list, S_IRUGO, pm8001_ctl_max_sg_list_show, NULL);
175 
176 #define SAS_1_0 0x1
177 #define SAS_1_1 0x2
178 #define SAS_2_0 0x4
179 
180 static ssize_t
181 show_sas_spec_support_status(unsigned int mode, char *buf)
182 {
183 	ssize_t len = 0;
184 
185 	if (mode & SAS_1_1)
186 		len = sprintf(buf, "%s", "SAS1.1");
187 	if (mode & SAS_2_0)
188 		len += sprintf(buf + len, "%s%s", len ? ", " : "", "SAS2.0");
189 	len += sprintf(buf + len, "\n");
190 
191 	return len;
192 }
193 
194 /**
195  * pm8001_ctl_sas_spec_support_show - sas spec supported
196  * @cdev: pointer to embedded class device
197  * @buf: the buffer returned
198  *
199  * A sysfs 'read-only' shost attribute.
200  */
201 static ssize_t pm8001_ctl_sas_spec_support_show(struct device *cdev,
202 	struct device_attribute *attr, char *buf)
203 {
204 	unsigned int mode;
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 &
211 							0xfe000000)>>25;
212 	else
213 		/* fe000000 means supports SAS2.1 */
214 		mode = (pm8001_ha->main_cfg_tbl.pm80xx_tbl.ctrl_cap_flag &
215 							0xfe000000)>>25;
216 	return show_sas_spec_support_status(mode, buf);
217 }
218 static DEVICE_ATTR(sas_spec_support, S_IRUGO,
219 		   pm8001_ctl_sas_spec_support_show, NULL);
220 
221 /**
222  * pm8001_ctl_sas_address_show - sas address
223  * @cdev: pointer to embedded class device
224  * @buf: the buffer returned
225  *
226  * This is the controller sas address
227  *
228  * A sysfs 'read-only' shost attribute.
229  */
230 static ssize_t pm8001_ctl_host_sas_address_show(struct device *cdev,
231 	struct device_attribute *attr, char *buf)
232 {
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));
238 }
239 static DEVICE_ATTR(host_sas_address, S_IRUGO,
240 		   pm8001_ctl_host_sas_address_show, NULL);
241 
242 /**
243  * pm8001_ctl_logging_level_show - logging level
244  * @cdev: pointer to embedded class device
245  * @buf: the buffer returned
246  *
247  * A sysfs 'read/write' shost attribute.
248  */
249 static ssize_t pm8001_ctl_logging_level_show(struct device *cdev,
250 	struct device_attribute *attr, char *buf)
251 {
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;
255 
256 	return snprintf(buf, PAGE_SIZE, "%08xh\n", pm8001_ha->logging_level);
257 }
258 static ssize_t pm8001_ctl_logging_level_store(struct device *cdev,
259 	struct device_attribute *attr, const char *buf, size_t count)
260 {
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;
264 	int val = 0;
265 
266 	if (sscanf(buf, "%x", &val) != 1)
267 		return -EINVAL;
268 
269 	pm8001_ha->logging_level = val;
270 	return strlen(buf);
271 }
272 
273 static DEVICE_ATTR(logging_level, S_IRUGO | S_IWUSR,
274 	pm8001_ctl_logging_level_show, pm8001_ctl_logging_level_store);
275 /**
276  * pm8001_ctl_aap_log_show - aap1 event log
277  * @cdev: pointer to embedded class device
278  * @buf: the buffer returned
279  *
280  * A sysfs 'read-only' shost attribute.
281  */
282 static ssize_t pm8001_ctl_aap_log_show(struct device *cdev,
283 	struct device_attribute *attr, char *buf)
284 {
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;
288 	int i;
289 #define AAP1_MEMMAP(r, c) \
290 	(*(u32 *)((u8*)pm8001_ha->memoryMap.region[AAP1].virt_ptr + (r) * 32 \
291 	+ (c)))
292 
293 	char *str = buf;
294 	int max = 2;
295 	for (i = 0; i < max; i++) {
296 		str += sprintf(str, "0x%08x 0x%08x 0x%08x 0x%08x 0x%08x 0x%08x"
297 			       "0x%08x 0x%08x\n",
298 			       AAP1_MEMMAP(i, 0),
299 			       AAP1_MEMMAP(i, 4),
300 			       AAP1_MEMMAP(i, 8),
301 			       AAP1_MEMMAP(i, 12),
302 			       AAP1_MEMMAP(i, 16),
303 			       AAP1_MEMMAP(i, 20),
304 			       AAP1_MEMMAP(i, 24),
305 			       AAP1_MEMMAP(i, 28));
306 	}
307 
308 	return str - buf;
309 }
310 static DEVICE_ATTR(aap_log, S_IRUGO, pm8001_ctl_aap_log_show, NULL);
311 /**
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.
316  */
317 static ssize_t pm8001_ctl_ib_queue_log_show(struct device *cdev,
318 	struct device_attribute *attr, char *buf)
319 {
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;
323 	int offset;
324 	char *str = buf;
325 	int start = 0;
326 #define IB_MEMMAP(c)	\
327 		(*(u32 *)((u8 *)pm8001_ha->	\
328 		memoryMap.region[IB].virt_ptr +	\
329 		pm8001_ha->evtlog_ib_offset + (c)))
330 
331 	for (offset = 0; offset < IB_OB_READ_TIMES; offset++) {
332 		str += sprintf(str, "0x%08x\n", IB_MEMMAP(start));
333 		start = start + 4;
334 	}
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;
338 
339 	return str - buf;
340 }
341 
342 static DEVICE_ATTR(ib_log, S_IRUGO, pm8001_ctl_ib_queue_log_show, NULL);
343 /**
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.
348  */
349 
350 static ssize_t pm8001_ctl_ob_queue_log_show(struct device *cdev,
351 	struct device_attribute *attr, char *buf)
352 {
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;
356 	int offset;
357 	char *str = buf;
358 	int start = 0;
359 #define OB_MEMMAP(c)	\
360 		(*(u32 *)((u8 *)pm8001_ha->	\
361 		memoryMap.region[OB].virt_ptr +	\
362 		pm8001_ha->evtlog_ob_offset + (c)))
363 
364 	for (offset = 0; offset < IB_OB_READ_TIMES; offset++) {
365 		str += sprintf(str, "0x%08x\n", OB_MEMMAP(start));
366 		start = start + 4;
367 	}
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;
371 
372 	return str - buf;
373 }
374 static DEVICE_ATTR(ob_log, S_IRUGO, pm8001_ctl_ob_queue_log_show, NULL);
375 /**
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.
380  */
381 static ssize_t pm8001_ctl_bios_version_show(struct device *cdev,
382 	struct device_attribute *attr, char *buf)
383 {
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;
387 	char *str = buf;
388 	void *virt_addr;
389 	int bios_index;
390 	DECLARE_COMPLETION_ONSTACK(completion);
391 	struct pm8001_ioctl_payload payload;
392 
393 	pm8001_ha->nvmd_completion = &completion;
394 	payload.minor_function = 7;
395 	payload.offset = 0;
396 	payload.length = 4096;
397 	payload.func_specific = kzalloc(4096, GFP_KERNEL);
398 	if (!payload.func_specific)
399 		return -ENOMEM;
400 	if (PM8001_CHIP_DISP->get_nvmd_req(pm8001_ha, &payload)) {
401 		kfree(payload.func_specific);
402 		return -ENOMEM;
403 	}
404 	wait_for_completion(&completion);
405 	virt_addr = pm8001_ha->memoryMap.region[NVMD].virt_ptr;
406 	for (bios_index = BIOSOFFSET; bios_index < BIOS_OFFSET_LIMIT;
407 		bios_index++)
408 		str += sprintf(str, "%c",
409 			*((u8 *)((u8 *)virt_addr+bios_index)));
410 	kfree(payload.func_specific);
411 	return str - buf;
412 }
413 static DEVICE_ATTR(bios_version, S_IRUGO, pm8001_ctl_bios_version_show, NULL);
414 /**
415  * pm8001_ctl_aap_log_show - IOP event log
416  * @cdev: pointer to embedded class device
417  * @buf: the buffer returned
418  *
419  * A sysfs 'read-only' shost attribute.
420  */
421 static ssize_t pm8001_ctl_iop_log_show(struct device *cdev,
422 	struct device_attribute *attr, char *buf)
423 {
424 	struct Scsi_Host *shost = class_to_shost(cdev);
425 	struct sas_ha_struct *sha = SHOST_TO_SAS_HA(shost);
426 	struct pm8001_hba_info *pm8001_ha = sha->lldd_ha;
427 #define IOP_MEMMAP(r, c) \
428 	(*(u32 *)((u8*)pm8001_ha->memoryMap.region[IOP].virt_ptr + (r) * 32 \
429 	+ (c)))
430 	int i;
431 	char *str = buf;
432 	int max = 2;
433 	for (i = 0; i < max; i++) {
434 		str += sprintf(str, "0x%08x 0x%08x 0x%08x 0x%08x 0x%08x 0x%08x"
435 			       "0x%08x 0x%08x\n",
436 			       IOP_MEMMAP(i, 0),
437 			       IOP_MEMMAP(i, 4),
438 			       IOP_MEMMAP(i, 8),
439 			       IOP_MEMMAP(i, 12),
440 			       IOP_MEMMAP(i, 16),
441 			       IOP_MEMMAP(i, 20),
442 			       IOP_MEMMAP(i, 24),
443 			       IOP_MEMMAP(i, 28));
444 	}
445 
446 	return str - buf;
447 }
448 static DEVICE_ATTR(iop_log, S_IRUGO, pm8001_ctl_iop_log_show, NULL);
449 
450 /**
451  ** pm8001_ctl_fatal_log_show - fatal error logging
452  ** @cdev:pointer to embedded class device
453  ** @buf: the buffer returned
454  **
455  ** A sysfs 'read-only' shost attribute.
456  **/
457 
458 static ssize_t pm8001_ctl_fatal_log_show(struct device *cdev,
459 	struct device_attribute *attr, char *buf)
460 {
461 	ssize_t count;
462 
463 	count = pm80xx_get_fatal_dump(cdev, attr, buf);
464 	return count;
465 }
466 
467 static DEVICE_ATTR(fatal_log, S_IRUGO, pm8001_ctl_fatal_log_show, NULL);
468 
469 
470 /**
471  ** pm8001_ctl_gsm_log_show - gsm dump collection
472  ** @cdev:pointer to embedded class device
473  ** @buf: the buffer returned
474  **A sysfs 'read-only' shost attribute.
475  **/
476 static ssize_t pm8001_ctl_gsm_log_show(struct device *cdev,
477 	struct device_attribute *attr, char *buf)
478 {
479 	ssize_t count;
480 
481 	count = pm8001_get_gsm_dump(cdev, SYSFS_OFFSET, buf);
482 	return count;
483 }
484 
485 static DEVICE_ATTR(gsm_log, S_IRUGO, pm8001_ctl_gsm_log_show, NULL);
486 
487 #define FLASH_CMD_NONE      0x00
488 #define FLASH_CMD_UPDATE    0x01
489 #define FLASH_CMD_SET_NVMD    0x02
490 
491 struct flash_command {
492      u8      command[8];
493      int     code;
494 };
495 
496 static struct flash_command flash_command_table[] =
497 {
498      {"set_nvmd",    FLASH_CMD_SET_NVMD},
499      {"update",      FLASH_CMD_UPDATE},
500      {"",            FLASH_CMD_NONE} /* Last entry should be NULL. */
501 };
502 
503 struct error_fw {
504      char    *reason;
505      int     err_code;
506 };
507 
508 static struct error_fw flash_error_table[] =
509 {
510      {"Failed to open fw image file",	FAIL_OPEN_BIOS_FILE},
511      {"image header mismatch",		FLASH_UPDATE_HDR_ERR},
512      {"image offset mismatch",		FLASH_UPDATE_OFFSET_ERR},
513      {"image CRC Error",		FLASH_UPDATE_CRC_ERR},
514      {"image length Error.",		FLASH_UPDATE_LENGTH_ERR},
515      {"Failed to program flash chip",	FLASH_UPDATE_HW_ERR},
516      {"Flash chip not supported.",	FLASH_UPDATE_DNLD_NOT_SUPPORTED},
517      {"Flash update disabled.",		FLASH_UPDATE_DISABLED},
518      {"Flash in progress",		FLASH_IN_PROGRESS},
519      {"Image file size Error",		FAIL_FILE_SIZE},
520      {"Input parameter error",		FAIL_PARAMETERS},
521      {"Out of memory",			FAIL_OUT_MEMORY},
522      {"OK", 0}	/* Last entry err_code = 0. */
523 };
524 
525 static int pm8001_set_nvmd(struct pm8001_hba_info *pm8001_ha)
526 {
527 	struct pm8001_ioctl_payload	*payload;
528 	DECLARE_COMPLETION_ONSTACK(completion);
529 	u8		*ioctlbuffer;
530 	u32		ret;
531 	u32		length = 1024 * 5 + sizeof(*payload) - 1;
532 
533 	if (pm8001_ha->fw_image->size > 4096) {
534 		pm8001_ha->fw_status = FAIL_FILE_SIZE;
535 		return -EFAULT;
536 	}
537 
538 	ioctlbuffer = kzalloc(length, GFP_KERNEL);
539 	if (!ioctlbuffer) {
540 		pm8001_ha->fw_status = FAIL_OUT_MEMORY;
541 		return -ENOMEM;
542 	}
543 	payload = (struct pm8001_ioctl_payload *)ioctlbuffer;
544 	memcpy((u8 *)&payload->func_specific, (u8 *)pm8001_ha->fw_image->data,
545 				pm8001_ha->fw_image->size);
546 	payload->length = pm8001_ha->fw_image->size;
547 	payload->id = 0;
548 	payload->minor_function = 0x1;
549 	pm8001_ha->nvmd_completion = &completion;
550 	ret = PM8001_CHIP_DISP->set_nvmd_req(pm8001_ha, payload);
551 	if (ret) {
552 		pm8001_ha->fw_status = FAIL_OUT_MEMORY;
553 		goto out;
554 	}
555 	wait_for_completion(&completion);
556 out:
557 	kfree(ioctlbuffer);
558 	return ret;
559 }
560 
561 static int pm8001_update_flash(struct pm8001_hba_info *pm8001_ha)
562 {
563 	struct pm8001_ioctl_payload	*payload;
564 	DECLARE_COMPLETION_ONSTACK(completion);
565 	u8		*ioctlbuffer;
566 	struct fw_control_info	*fwControl;
567 	u32		partitionSize, partitionSizeTmp;
568 	u32		loopNumber, loopcount;
569 	struct pm8001_fw_image_header *image_hdr;
570 	u32		sizeRead = 0;
571 	u32		ret = 0;
572 	u32		length = 1024 * 16 + sizeof(*payload) - 1;
573 
574 	if (pm8001_ha->fw_image->size < 28) {
575 		pm8001_ha->fw_status = FAIL_FILE_SIZE;
576 		return -EFAULT;
577 	}
578 	ioctlbuffer = kzalloc(length, GFP_KERNEL);
579 	if (!ioctlbuffer) {
580 		pm8001_ha->fw_status = FAIL_OUT_MEMORY;
581 		return -ENOMEM;
582 	}
583 	image_hdr = (struct pm8001_fw_image_header *)pm8001_ha->fw_image->data;
584 	while (sizeRead < pm8001_ha->fw_image->size) {
585 		partitionSizeTmp =
586 			*(u32 *)((u8 *)&image_hdr->image_length + sizeRead);
587 		partitionSize = be32_to_cpu(partitionSizeTmp);
588 		loopcount = DIV_ROUND_UP(partitionSize + HEADER_LEN,
589 					IOCTL_BUF_SIZE);
590 		for (loopNumber = 0; loopNumber < loopcount; loopNumber++) {
591 			payload = (struct pm8001_ioctl_payload *)ioctlbuffer;
592 			payload->length = 1024*16;
593 			payload->id = 0;
594 			fwControl =
595 			      (struct fw_control_info *)&payload->func_specific;
596 			fwControl->len = IOCTL_BUF_SIZE;   /* IN */
597 			fwControl->size = partitionSize + HEADER_LEN;/* IN */
598 			fwControl->retcode = 0;/* OUT */
599 			fwControl->offset = loopNumber * IOCTL_BUF_SIZE;/*OUT */
600 
601 		/* for the last chunk of data in case file size is not even with
602 		4k, load only the rest*/
603 		if (((loopcount-loopNumber) == 1) &&
604 			((partitionSize + HEADER_LEN) % IOCTL_BUF_SIZE)) {
605 			fwControl->len =
606 				(partitionSize + HEADER_LEN) % IOCTL_BUF_SIZE;
607 			memcpy((u8 *)fwControl->buffer,
608 				(u8 *)pm8001_ha->fw_image->data + sizeRead,
609 				(partitionSize + HEADER_LEN) % IOCTL_BUF_SIZE);
610 			sizeRead +=
611 				(partitionSize + HEADER_LEN) % IOCTL_BUF_SIZE;
612 		} else {
613 			memcpy((u8 *)fwControl->buffer,
614 				(u8 *)pm8001_ha->fw_image->data + sizeRead,
615 				IOCTL_BUF_SIZE);
616 			sizeRead += IOCTL_BUF_SIZE;
617 		}
618 
619 		pm8001_ha->nvmd_completion = &completion;
620 		ret = PM8001_CHIP_DISP->fw_flash_update_req(pm8001_ha, payload);
621 		if (ret) {
622 			pm8001_ha->fw_status = FAIL_OUT_MEMORY;
623 			goto out;
624 		}
625 		wait_for_completion(&completion);
626 		if (fwControl->retcode > FLASH_UPDATE_IN_PROGRESS) {
627 			pm8001_ha->fw_status = fwControl->retcode;
628 			ret = -EFAULT;
629 			goto out;
630 		}
631 		}
632 	}
633 out:
634 	kfree(ioctlbuffer);
635 	return ret;
636 }
637 static ssize_t pm8001_store_update_fw(struct device *cdev,
638 				      struct device_attribute *attr,
639 				      const char *buf, size_t count)
640 {
641 	struct Scsi_Host *shost = class_to_shost(cdev);
642 	struct sas_ha_struct *sha = SHOST_TO_SAS_HA(shost);
643 	struct pm8001_hba_info *pm8001_ha = sha->lldd_ha;
644 	char *cmd_ptr, *filename_ptr;
645 	int res, i;
646 	int flash_command = FLASH_CMD_NONE;
647 	int ret;
648 
649 	if (!capable(CAP_SYS_ADMIN))
650 		return -EACCES;
651 
652 	/* this test protects us from running two flash processes at once,
653 	 * so we should start with this test */
654 	if (pm8001_ha->fw_status == FLASH_IN_PROGRESS)
655 		return -EINPROGRESS;
656 	pm8001_ha->fw_status = FLASH_IN_PROGRESS;
657 
658 	cmd_ptr = kzalloc(count*2, GFP_KERNEL);
659 	if (!cmd_ptr) {
660 		pm8001_ha->fw_status = FAIL_OUT_MEMORY;
661 		return -ENOMEM;
662 	}
663 
664 	filename_ptr = cmd_ptr + count;
665 	res = sscanf(buf, "%s %s", cmd_ptr, filename_ptr);
666 	if (res != 2) {
667 		pm8001_ha->fw_status = FAIL_PARAMETERS;
668 		ret = -EINVAL;
669 		goto out;
670 	}
671 
672 	for (i = 0; flash_command_table[i].code != FLASH_CMD_NONE; i++) {
673 		if (!memcmp(flash_command_table[i].command,
674 				 cmd_ptr, strlen(cmd_ptr))) {
675 			flash_command = flash_command_table[i].code;
676 			break;
677 		}
678 	}
679 	if (flash_command == FLASH_CMD_NONE) {
680 		pm8001_ha->fw_status = FAIL_PARAMETERS;
681 		ret = -EINVAL;
682 		goto out;
683 	}
684 
685 	ret = request_firmware(&pm8001_ha->fw_image,
686 			       filename_ptr,
687 			       pm8001_ha->dev);
688 
689 	if (ret) {
690 		PM8001_FAIL_DBG(pm8001_ha,
691 			pm8001_printk(
692 			"Failed to load firmware image file %s,	error %d\n",
693 			filename_ptr, ret));
694 		pm8001_ha->fw_status = FAIL_OPEN_BIOS_FILE;
695 		goto out;
696 	}
697 
698 	if (FLASH_CMD_UPDATE == flash_command)
699 		ret = pm8001_update_flash(pm8001_ha);
700 	else
701 		ret = pm8001_set_nvmd(pm8001_ha);
702 
703 	release_firmware(pm8001_ha->fw_image);
704 out:
705 	kfree(cmd_ptr);
706 
707 	if (ret)
708 		return ret;
709 
710 	pm8001_ha->fw_status = FLASH_OK;
711 	return count;
712 }
713 
714 static ssize_t pm8001_show_update_fw(struct device *cdev,
715 				     struct device_attribute *attr, char *buf)
716 {
717 	int i;
718 	struct Scsi_Host *shost = class_to_shost(cdev);
719 	struct sas_ha_struct *sha = SHOST_TO_SAS_HA(shost);
720 	struct pm8001_hba_info *pm8001_ha = sha->lldd_ha;
721 
722 	for (i = 0; flash_error_table[i].err_code != 0; i++) {
723 		if (flash_error_table[i].err_code == pm8001_ha->fw_status)
724 			break;
725 	}
726 	if (pm8001_ha->fw_status != FLASH_IN_PROGRESS)
727 		pm8001_ha->fw_status = FLASH_OK;
728 
729 	return snprintf(buf, PAGE_SIZE, "status=%x %s\n",
730 			flash_error_table[i].err_code,
731 			flash_error_table[i].reason);
732 }
733 
734 static DEVICE_ATTR(update_fw, S_IRUGO|S_IWUSR|S_IWGRP,
735 	pm8001_show_update_fw, pm8001_store_update_fw);
736 struct device_attribute *pm8001_host_attrs[] = {
737 	&dev_attr_interface_rev,
738 	&dev_attr_fw_version,
739 	&dev_attr_update_fw,
740 	&dev_attr_aap_log,
741 	&dev_attr_iop_log,
742 	&dev_attr_fatal_log,
743 	&dev_attr_gsm_log,
744 	&dev_attr_max_out_io,
745 	&dev_attr_max_devices,
746 	&dev_attr_max_sg_list,
747 	&dev_attr_sas_spec_support,
748 	&dev_attr_logging_level,
749 	&dev_attr_host_sas_address,
750 	&dev_attr_bios_version,
751 	&dev_attr_ib_log,
752 	&dev_attr_ob_log,
753 	NULL,
754 };
755 
756