1 // SPDX-License-Identifier: GPL-2.0-only
3 * Aic94xx SAS/SATA driver access to shared data structures and memory
6 * Copyright (C) 2005 Adaptec, Inc. All rights reserved.
7 * Copyright (C) 2005 Luben Tuikov <luben_tuikov@adaptec.com>
10 #include <linux/pci.h>
11 #include <linux/slab.h>
12 #include <linux/delay.h>
15 #include "aic94xx_reg.h"
16 #include "aic94xx_sds.h"
18 /* ---------- OCM stuff ---------- */
20 struct asd_ocm_dir_ent
{
25 } __attribute__ ((packed
));
34 struct asd_ocm_dir_ent entry
[15];
35 } __attribute__ ((packed
));
37 #define OCM_DE_OCM_DIR 0x00
38 #define OCM_DE_WIN_DRVR 0x01
39 #define OCM_DE_BIOS_CHIM 0x02
40 #define OCM_DE_RAID_ENGN 0x03
41 #define OCM_DE_BIOS_INTL 0x04
42 #define OCM_DE_BIOS_CHIM_OSM 0x05
43 #define OCM_DE_BIOS_CHIM_DYNAMIC 0x06
44 #define OCM_DE_ADDC2C_RES0 0x07
45 #define OCM_DE_ADDC2C_RES1 0x08
46 #define OCM_DE_ADDC2C_RES2 0x09
47 #define OCM_DE_ADDC2C_RES3 0x0A
49 #define OCM_INIT_DIR_ENTRIES 5
50 /***************************************************************************
51 * OCM directory default
52 ***************************************************************************/
53 static struct asd_ocm_dir OCMDirInit
=
55 .sig
= {0x4D, 0x4F}, /* signature */
56 .num_de
= OCM_INIT_DIR_ENTRIES
, /* no. of directory entries */
59 /***************************************************************************
60 * OCM directory Entries default
61 ***************************************************************************/
62 static struct asd_ocm_dir_ent OCMDirEntriesInit
[OCM_INIT_DIR_ENTRIES
] =
65 .type
= (OCM_DE_ADDC2C_RES0
), /* Entry type */
66 .offs
= {128}, /* Offset */
67 .size
= {0, 4}, /* size */
70 .type
= (OCM_DE_ADDC2C_RES1
), /* Entry type */
71 .offs
= {128, 4}, /* Offset */
72 .size
= {0, 4}, /* size */
75 .type
= (OCM_DE_ADDC2C_RES2
), /* Entry type */
76 .offs
= {128, 8}, /* Offset */
77 .size
= {0, 4}, /* size */
80 .type
= (OCM_DE_ADDC2C_RES3
), /* Entry type */
81 .offs
= {128, 12}, /* Offset */
82 .size
= {0, 4}, /* size */
85 .type
= (OCM_DE_WIN_DRVR
), /* Entry type */
86 .offs
= {128, 16}, /* Offset */
87 .size
= {128, 235, 1}, /* size */
91 struct asd_bios_chim_struct
{
103 /* The unit element array is right here.
105 } __attribute__ ((packed
));
108 * asd_read_ocm_seg - read an on chip memory (OCM) segment
109 * @asd_ha: pointer to the host adapter structure
110 * @buffer: where to write the read data
111 * @offs: offset into OCM where to read from
112 * @size: how many bytes to read
114 * Return the number of bytes not read. Return 0 on success.
116 static int asd_read_ocm_seg(struct asd_ha_struct
*asd_ha
, void *buffer
,
120 if (unlikely(asd_ha
->iospace
))
121 asd_read_reg_string(asd_ha
, buffer
, offs
+OCM_BASE_ADDR
, size
);
123 for ( ; size
> 0; size
--, offs
++, p
++)
124 *p
= asd_read_ocm_byte(asd_ha
, offs
);
129 static int asd_read_ocm_dir(struct asd_ha_struct
*asd_ha
,
130 struct asd_ocm_dir
*dir
, u32 offs
)
132 int err
= asd_read_ocm_seg(asd_ha
, dir
, offs
, sizeof(*dir
));
134 ASD_DPRINTK("couldn't read ocm segment\n");
138 if (dir
->sig
[0] != 'M' || dir
->sig
[1] != 'O') {
139 ASD_DPRINTK("no valid dir signature(%c%c) at start of OCM\n",
140 dir
->sig
[0], dir
->sig
[1]);
143 if (dir
->major
!= 0) {
144 asd_printk("unsupported major version of ocm dir:0x%x\n",
153 * asd_write_ocm_seg - write an on chip memory (OCM) segment
154 * @asd_ha: pointer to the host adapter structure
155 * @buffer: where to read the write data
156 * @offs: offset into OCM to write to
157 * @size: how many bytes to write
159 * Return the number of bytes not written. Return 0 on success.
161 static void asd_write_ocm_seg(struct asd_ha_struct
*asd_ha
, void *buffer
,
165 if (unlikely(asd_ha
->iospace
))
166 asd_write_reg_string(asd_ha
, buffer
, offs
+OCM_BASE_ADDR
, size
);
168 for ( ; size
> 0; size
--, offs
++, p
++)
169 asd_write_ocm_byte(asd_ha
, offs
, *p
);
174 #define THREE_TO_NUM(X) ((X)[0] | ((X)[1] << 8) | ((X)[2] << 16))
176 static int asd_find_dir_entry(struct asd_ocm_dir
*dir
, u8 type
,
177 u32
*offs
, u32
*size
)
180 struct asd_ocm_dir_ent
*ent
;
182 for (i
= 0; i
< dir
->num_de
; i
++) {
183 if (dir
->entry
[i
].type
== type
)
186 if (i
>= dir
->num_de
)
188 ent
= &dir
->entry
[i
];
189 *offs
= (u32
) THREE_TO_NUM(ent
->offs
);
190 *size
= (u32
) THREE_TO_NUM(ent
->size
);
194 #define OCM_BIOS_CHIM_DE 2
195 #define BC_BIOS_PRESENT 1
197 static int asd_get_bios_chim(struct asd_ha_struct
*asd_ha
,
198 struct asd_ocm_dir
*dir
)
201 struct asd_bios_chim_struct
*bc_struct
;
204 err
= asd_find_dir_entry(dir
, OCM_BIOS_CHIM_DE
, &offs
, &size
);
206 ASD_DPRINTK("couldn't find BIOS_CHIM dir ent\n");
210 bc_struct
= kmalloc(sizeof(*bc_struct
), GFP_KERNEL
);
212 asd_printk("no memory for bios_chim struct\n");
215 err
= asd_read_ocm_seg(asd_ha
, (void *)bc_struct
, offs
,
218 ASD_DPRINTK("couldn't read ocm segment\n");
221 if (strncmp(bc_struct
->sig
, "SOIB", 4)
222 && strncmp(bc_struct
->sig
, "IPSA", 4)) {
223 ASD_DPRINTK("BIOS_CHIM entry has no valid sig(%c%c%c%c)\n",
224 bc_struct
->sig
[0], bc_struct
->sig
[1],
225 bc_struct
->sig
[2], bc_struct
->sig
[3]);
229 if (bc_struct
->major
!= 1) {
230 asd_printk("BIOS_CHIM unsupported major version:0x%x\n",
235 if (bc_struct
->flags
& BC_BIOS_PRESENT
) {
236 asd_ha
->hw_prof
.bios
.present
= 1;
237 asd_ha
->hw_prof
.bios
.maj
= bc_struct
->bios_major
;
238 asd_ha
->hw_prof
.bios
.min
= bc_struct
->bios_minor
;
239 asd_ha
->hw_prof
.bios
.bld
= le32_to_cpu(bc_struct
->bios_build
);
240 ASD_DPRINTK("BIOS present (%d,%d), %d\n",
241 asd_ha
->hw_prof
.bios
.maj
,
242 asd_ha
->hw_prof
.bios
.min
,
243 asd_ha
->hw_prof
.bios
.bld
);
245 asd_ha
->hw_prof
.ue
.num
= le16_to_cpu(bc_struct
->ue_num
);
246 asd_ha
->hw_prof
.ue
.size
= le16_to_cpu(bc_struct
->ue_size
);
247 ASD_DPRINTK("ue num:%d, ue size:%d\n", asd_ha
->hw_prof
.ue
.num
,
248 asd_ha
->hw_prof
.ue
.size
);
249 size
= asd_ha
->hw_prof
.ue
.num
* asd_ha
->hw_prof
.ue
.size
;
252 asd_ha
->hw_prof
.ue
.area
= kmalloc(size
, GFP_KERNEL
);
253 if (!asd_ha
->hw_prof
.ue
.area
)
255 err
= asd_read_ocm_seg(asd_ha
, (void *)asd_ha
->hw_prof
.ue
.area
,
256 offs
+ sizeof(*bc_struct
), size
);
258 kfree(asd_ha
->hw_prof
.ue
.area
);
259 asd_ha
->hw_prof
.ue
.area
= NULL
;
260 asd_ha
->hw_prof
.ue
.num
= 0;
261 asd_ha
->hw_prof
.ue
.size
= 0;
262 ASD_DPRINTK("couldn't read ue entries(%d)\n", err
);
272 asd_hwi_initialize_ocm_dir (struct asd_ha_struct
*asd_ha
)
277 for (i
= 0; i
< OCM_MAX_SIZE
; i
+= 4)
278 asd_write_ocm_dword(asd_ha
, i
, 0);
281 asd_write_ocm_seg(asd_ha
, &OCMDirInit
, 0,
282 sizeof(struct asd_ocm_dir
));
284 /* Write Dir Entries */
285 for (i
= 0; i
< OCM_INIT_DIR_ENTRIES
; i
++)
286 asd_write_ocm_seg(asd_ha
, &OCMDirEntriesInit
[i
],
287 sizeof(struct asd_ocm_dir
) +
288 (i
* sizeof(struct asd_ocm_dir_ent
))
289 , sizeof(struct asd_ocm_dir_ent
));
294 asd_hwi_check_ocm_access (struct asd_ha_struct
*asd_ha
)
296 struct pci_dev
*pcidev
= asd_ha
->pcidev
;
301 /* check if OCM has been initialized by BIOS */
302 reg
= asd_read_reg_dword(asd_ha
, EXSICNFGR
);
304 if (!(reg
& OCMINITIALIZED
)) {
305 err
= pci_read_config_dword(pcidev
, PCIC_INTRPT_STAT
, &v
);
307 asd_printk("couldn't access PCIC_INTRPT_STAT of %s\n",
312 printk(KERN_INFO
"OCM is not initialized by BIOS,"
313 "reinitialize it and ignore it, current IntrptStatus"
317 err
= pci_write_config_dword(pcidev
,
318 PCIC_INTRPT_STAT
, v
);
320 asd_printk("couldn't write PCIC_INTRPT_STAT of %s\n",
325 asd_hwi_initialize_ocm_dir(asd_ha
);
333 * asd_read_ocm - read on chip memory (OCM)
334 * @asd_ha: pointer to the host adapter structure
336 int asd_read_ocm(struct asd_ha_struct
*asd_ha
)
339 struct asd_ocm_dir
*dir
;
341 if (asd_hwi_check_ocm_access(asd_ha
))
344 dir
= kmalloc(sizeof(*dir
), GFP_KERNEL
);
346 asd_printk("no memory for ocm dir\n");
350 err
= asd_read_ocm_dir(asd_ha
, dir
, 0);
354 err
= asd_get_bios_chim(asd_ha
, dir
);
360 /* ---------- FLASH stuff ---------- */
362 #define FLASH_RESET 0xF0
364 #define ASD_FLASH_SIZE 0x200000
365 #define FLASH_DIR_COOKIE "*** ADAPTEC FLASH DIRECTORY *** "
366 #define FLASH_NEXT_ENTRY_OFFS 0x2000
367 #define FLASH_MAX_DIR_ENTRIES 32
369 #define FLASH_DE_TYPE_MASK 0x3FFFFFFF
370 #define FLASH_DE_MS 0x120
371 #define FLASH_DE_CTRL_A_USER 0xE0
373 struct asd_flash_de
{
381 } __attribute__ ((packed
));
383 struct asd_flash_dir
{
387 __le32 chksum_antidote
;
389 u8 bld_id
[32]; /* build id data */
390 u8 ver_data
[32]; /* date and time of build */
395 struct asd_flash_de dir_entry
[FLASH_MAX_DIR_ENTRIES
];
396 } __attribute__ ((packed
));
398 struct asd_manuf_sec
{
399 char sig
[2]; /* 'S', 'M' */
406 u8 sas_addr
[SAS_ADDR_SIZE
];
407 u8 pcba_sn
[ASD_PCBA_SN_SIZE
];
408 /* Here start the other segments */
410 } __attribute__ ((packed
));
412 struct asd_manuf_phy_desc
{
413 u8 state
; /* low 4 bits */
414 #define MS_PHY_STATE_ENABLED 0
415 #define MS_PHY_STATE_REPORTED 1
416 #define MS_PHY_STATE_HIDDEN 2
419 u8 phy_control_0
; /* mode 5 reg 0x160 */
420 u8 phy_control_1
; /* mode 5 reg 0x161 */
421 u8 phy_control_2
; /* mode 5 reg 0x162 */
422 u8 phy_control_3
; /* mode 5 reg 0x163 */
423 } __attribute__ ((packed
));
425 struct asd_manuf_phy_param
{
426 char sig
[2]; /* 'P', 'M' */
430 u8 num_phy_desc
; /* 8 */
431 u8 phy_desc_size
; /* 8 */
435 struct asd_manuf_phy_desc phy_desc
[ASD_MAX_PHYS
];
436 } __attribute__ ((packed
));
439 static const char *asd_sb_type
[] = {
442 [2 ... 0x7F] = "unknown",
444 [0x81 ... 0xFF] = "VENDOR_UNIQUExx"
448 struct asd_ms_sb_desc
{
453 } __attribute__ ((packed
));
456 static const char *asd_conn_type
[] = {
457 [0 ... 7] = "unknown",
461 [0x80] = "PCIX_DAUGHTER0",
462 [0x81] = "SAS_DAUGHTER0",
463 [0x82 ... 0xFF] = "VENDOR_UNIQUExx"
466 static const char *asd_conn_location
[] = {
474 struct asd_ms_conn_desc
{
477 u8 num_sideband_desc
;
478 u8 size_sideband_desc
;
481 struct asd_ms_sb_desc sb_desc
[0];
482 } __attribute__ ((packed
));
484 struct asd_nd_phy_desc
{
486 u8 attch_specific
[0];
487 } __attribute__ ((packed
));
490 static const char *asd_node_type
[] = {
496 "MULTI_DROP_I2C_BUS",
500 struct asd_ms_node_desc
{
506 struct asd_nd_phy_desc phy_desc
[0];
507 } __attribute__ ((packed
));
509 struct asd_ms_conn_map
{
510 char sig
[2]; /* 'M', 'C' */
514 __le16 cm_size
; /* size of this struct */
520 struct asd_ms_conn_desc conn_desc
[0];
521 struct asd_ms_node_desc node_desc
[0];
522 } __attribute__ ((packed
));
524 struct asd_ctrla_phy_entry
{
525 u8 sas_addr
[SAS_ADDR_SIZE
];
526 u8 sas_link_rates
; /* max in hi bits, min in low bits */
530 } __attribute__ ((packed
));
532 struct asd_ctrla_phy_settings
{
536 u8 num_phys
; /* number of PHYs in the PCI function */
538 struct asd_ctrla_phy_entry phy_ent
[ASD_MAX_PHYS
];
539 } __attribute__ ((packed
));
545 u8 something_here
[0];
546 } __attribute__ ((packed
));
548 static int asd_poll_flash(struct asd_ha_struct
*asd_ha
)
553 for (c
= 5000; c
> 0; c
--) {
554 d
= asd_read_reg_byte(asd_ha
, asd_ha
->hw_prof
.flash
.bar
);
555 d
^= asd_read_reg_byte(asd_ha
, asd_ha
->hw_prof
.flash
.bar
);
563 static int asd_reset_flash(struct asd_ha_struct
*asd_ha
)
567 err
= asd_poll_flash(asd_ha
);
570 asd_write_reg_byte(asd_ha
, asd_ha
->hw_prof
.flash
.bar
, FLASH_RESET
);
571 err
= asd_poll_flash(asd_ha
);
576 static int asd_read_flash_seg(struct asd_ha_struct
*asd_ha
,
577 void *buffer
, u32 offs
, int size
)
579 asd_read_reg_string(asd_ha
, buffer
, asd_ha
->hw_prof
.flash
.bar
+offs
,
585 * asd_find_flash_dir - finds and reads the flash directory
586 * @asd_ha: pointer to the host adapter structure
587 * @flash_dir: pointer to flash directory structure
589 * If found, the flash directory segment will be copied to
590 * @flash_dir. Return 1 if found, 0 if not.
592 static int asd_find_flash_dir(struct asd_ha_struct
*asd_ha
,
593 struct asd_flash_dir
*flash_dir
)
596 for (v
= 0; v
< ASD_FLASH_SIZE
; v
+= FLASH_NEXT_ENTRY_OFFS
) {
597 asd_read_flash_seg(asd_ha
, flash_dir
, v
,
598 sizeof(FLASH_DIR_COOKIE
)-1);
599 if (memcmp(flash_dir
->cookie
, FLASH_DIR_COOKIE
,
600 sizeof(FLASH_DIR_COOKIE
)-1) == 0) {
601 asd_ha
->hw_prof
.flash
.dir_offs
= v
;
602 asd_read_flash_seg(asd_ha
, flash_dir
, v
,
610 static int asd_flash_getid(struct asd_ha_struct
*asd_ha
)
615 reg
= asd_read_reg_dword(asd_ha
, EXSICNFGR
);
617 if (pci_read_config_dword(asd_ha
->pcidev
, PCI_CONF_FLSH_BAR
,
618 &asd_ha
->hw_prof
.flash
.bar
)) {
619 asd_printk("couldn't read PCI_CONF_FLSH_BAR of %s\n",
620 pci_name(asd_ha
->pcidev
));
623 asd_ha
->hw_prof
.flash
.present
= 1;
624 asd_ha
->hw_prof
.flash
.wide
= reg
& FLASHW
? 1 : 0;
625 err
= asd_reset_flash(asd_ha
);
627 ASD_DPRINTK("couldn't reset flash(%d)\n", err
);
633 static u16
asd_calc_flash_chksum(u16
*p
, int size
)
644 static int asd_find_flash_de(struct asd_flash_dir
*flash_dir
, u32 entry_type
,
645 u32
*offs
, u32
*size
)
648 struct asd_flash_de
*de
;
650 for (i
= 0; i
< FLASH_MAX_DIR_ENTRIES
; i
++) {
651 u32 type
= le32_to_cpu(flash_dir
->dir_entry
[i
].type
);
653 type
&= FLASH_DE_TYPE_MASK
;
654 if (type
== entry_type
)
657 if (i
>= FLASH_MAX_DIR_ENTRIES
)
659 de
= &flash_dir
->dir_entry
[i
];
660 *offs
= le32_to_cpu(de
->offs
);
661 *size
= le32_to_cpu(de
->pad_size
);
665 static int asd_validate_ms(struct asd_manuf_sec
*ms
)
667 if (ms
->sig
[0] != 'S' || ms
->sig
[1] != 'M') {
668 ASD_DPRINTK("manuf sec: no valid sig(%c%c)\n",
669 ms
->sig
[0], ms
->sig
[1]);
673 asd_printk("unsupported manuf. sector. major version:%x\n",
677 ms
->offs_next
= le16_to_cpu((__force __le16
) ms
->offs_next
);
678 ms
->chksum
= le16_to_cpu((__force __le16
) ms
->chksum
);
679 ms
->size
= le16_to_cpu((__force __le16
) ms
->size
);
681 if (asd_calc_flash_chksum((u16
*)ms
, ms
->size
/2)) {
682 asd_printk("failed manuf sector checksum\n");
688 static int asd_ms_get_sas_addr(struct asd_ha_struct
*asd_ha
,
689 struct asd_manuf_sec
*ms
)
691 memcpy(asd_ha
->hw_prof
.sas_addr
, ms
->sas_addr
, SAS_ADDR_SIZE
);
695 static int asd_ms_get_pcba_sn(struct asd_ha_struct
*asd_ha
,
696 struct asd_manuf_sec
*ms
)
698 memcpy(asd_ha
->hw_prof
.pcba_sn
, ms
->pcba_sn
, ASD_PCBA_SN_SIZE
);
699 asd_ha
->hw_prof
.pcba_sn
[ASD_PCBA_SN_SIZE
] = '\0';
704 * asd_find_ll_by_id - find a linked list entry by its id
705 * @start: void pointer to the first element in the linked list
706 * @id0: the first byte of the id (offs 0)
707 * @id1: the second byte of the id (offs 1)
709 * @start has to be the _base_ element start, since the
710 * linked list entries's offset is from this pointer.
711 * Some linked list entries use only the first id, in which case
712 * you can pass 0xFF for the second.
714 static void *asd_find_ll_by_id(void * const start
, const u8 id0
, const u8 id1
)
716 struct asd_ll_el
*el
= start
;
726 el
= start
+ le16_to_cpu(el
->next
);
727 } while (el
!= start
);
733 * asd_ms_get_phy_params - get phy parameters from the manufacturing sector
734 * @asd_ha: pointer to the host adapter structure
735 * @manuf_sec: pointer to the manufacturing sector
737 * The manufacturing sector contans also the linked list of sub-segments,
738 * since when it was read, its size was taken from the flash directory,
739 * not from the structure size.
741 * HIDDEN phys do not count in the total count. REPORTED phys cannot
742 * be enabled but are reported and counted towards the total.
743 * ENABLED phys are enabled by default and count towards the total.
744 * The absolute total phy number is ASD_MAX_PHYS. hw_prof->num_phys
745 * merely specifies the number of phys the host adapter decided to
746 * report. E.g., it is possible for phys 0, 1 and 2 to be HIDDEN,
747 * phys 3, 4 and 5 to be REPORTED and phys 6 and 7 to be ENABLED.
748 * In this case ASD_MAX_PHYS is 8, hw_prof->num_phys is 5, and only 2
749 * are actually enabled (enabled by default, max number of phys
750 * enableable in this case).
752 static int asd_ms_get_phy_params(struct asd_ha_struct
*asd_ha
,
753 struct asd_manuf_sec
*manuf_sec
)
758 struct asd_manuf_phy_param
*phy_param
;
759 struct asd_manuf_phy_param dflt_phy_param
;
761 phy_param
= asd_find_ll_by_id(manuf_sec
, 'P', 'M');
763 ASD_DPRINTK("ms: no phy parameters found\n");
764 ASD_DPRINTK("ms: Creating default phy parameters\n");
765 dflt_phy_param
.sig
[0] = 'P';
766 dflt_phy_param
.sig
[1] = 'M';
767 dflt_phy_param
.maj
= 0;
768 dflt_phy_param
.min
= 2;
769 dflt_phy_param
.num_phy_desc
= 8;
770 dflt_phy_param
.phy_desc_size
= sizeof(struct asd_manuf_phy_desc
);
771 for (i
=0; i
< ASD_MAX_PHYS
; i
++) {
772 dflt_phy_param
.phy_desc
[i
].state
= 0;
773 dflt_phy_param
.phy_desc
[i
].phy_id
= i
;
774 dflt_phy_param
.phy_desc
[i
].phy_control_0
= 0xf6;
775 dflt_phy_param
.phy_desc
[i
].phy_control_1
= 0x10;
776 dflt_phy_param
.phy_desc
[i
].phy_control_2
= 0x43;
777 dflt_phy_param
.phy_desc
[i
].phy_control_3
= 0xeb;
780 phy_param
= &dflt_phy_param
;
784 if (phy_param
->maj
!= 0) {
785 asd_printk("unsupported manuf. phy param major version:0x%x\n",
790 ASD_DPRINTK("ms: num_phy_desc: %d\n", phy_param
->num_phy_desc
);
791 asd_ha
->hw_prof
.enabled_phys
= 0;
792 for (i
= 0; i
< phy_param
->num_phy_desc
; i
++) {
793 struct asd_manuf_phy_desc
*pd
= &phy_param
->phy_desc
[i
];
794 switch (pd
->state
& 0xF) {
795 case MS_PHY_STATE_HIDDEN
:
796 ASD_DPRINTK("ms: phy%d: HIDDEN\n", i
);
798 case MS_PHY_STATE_REPORTED
:
799 ASD_DPRINTK("ms: phy%d: REPORTED\n", i
);
800 asd_ha
->hw_prof
.enabled_phys
&= ~(1 << i
);
803 case MS_PHY_STATE_ENABLED
:
804 ASD_DPRINTK("ms: phy%d: ENABLED\n", i
);
805 asd_ha
->hw_prof
.enabled_phys
|= (1 << i
);
809 asd_ha
->hw_prof
.phy_desc
[i
].phy_control_0
= pd
->phy_control_0
;
810 asd_ha
->hw_prof
.phy_desc
[i
].phy_control_1
= pd
->phy_control_1
;
811 asd_ha
->hw_prof
.phy_desc
[i
].phy_control_2
= pd
->phy_control_2
;
812 asd_ha
->hw_prof
.phy_desc
[i
].phy_control_3
= pd
->phy_control_3
;
814 asd_ha
->hw_prof
.max_phys
= rep_phys
+ en_phys
;
815 asd_ha
->hw_prof
.num_phys
= en_phys
;
816 ASD_DPRINTK("ms: max_phys:0x%x, num_phys:0x%x\n",
817 asd_ha
->hw_prof
.max_phys
, asd_ha
->hw_prof
.num_phys
);
818 ASD_DPRINTK("ms: enabled_phys:0x%x\n", asd_ha
->hw_prof
.enabled_phys
);
822 static int asd_ms_get_connector_map(struct asd_ha_struct
*asd_ha
,
823 struct asd_manuf_sec
*manuf_sec
)
825 struct asd_ms_conn_map
*cm
;
827 cm
= asd_find_ll_by_id(manuf_sec
, 'M', 'C');
829 ASD_DPRINTK("ms: no connector map found\n");
834 ASD_DPRINTK("ms: unsupported: connector map major version 0x%x"
846 * asd_process_ms - find and extract information from the manufacturing sector
847 * @asd_ha: pointer to the host adapter structure
848 * @flash_dir: pointer to the flash directory
850 static int asd_process_ms(struct asd_ha_struct
*asd_ha
,
851 struct asd_flash_dir
*flash_dir
)
854 struct asd_manuf_sec
*manuf_sec
;
857 err
= asd_find_flash_de(flash_dir
, FLASH_DE_MS
, &offs
, &size
);
859 ASD_DPRINTK("Couldn't find the manuf. sector\n");
867 manuf_sec
= kmalloc(size
, GFP_KERNEL
);
869 ASD_DPRINTK("no mem for manuf sector\n");
873 err
= asd_read_flash_seg(asd_ha
, (void *)manuf_sec
, offs
, size
);
875 ASD_DPRINTK("couldn't read manuf sector at 0x%x, size 0x%x\n",
880 err
= asd_validate_ms(manuf_sec
);
882 ASD_DPRINTK("couldn't validate manuf sector\n");
886 err
= asd_ms_get_sas_addr(asd_ha
, manuf_sec
);
888 ASD_DPRINTK("couldn't read the SAS_ADDR\n");
891 ASD_DPRINTK("manuf sect SAS_ADDR %llx\n",
892 SAS_ADDR(asd_ha
->hw_prof
.sas_addr
));
894 err
= asd_ms_get_pcba_sn(asd_ha
, manuf_sec
);
896 ASD_DPRINTK("couldn't read the PCBA SN\n");
899 ASD_DPRINTK("manuf sect PCBA SN %s\n", asd_ha
->hw_prof
.pcba_sn
);
901 err
= asd_ms_get_phy_params(asd_ha
, manuf_sec
);
903 ASD_DPRINTK("ms: couldn't get phy parameters\n");
907 err
= asd_ms_get_connector_map(asd_ha
, manuf_sec
);
909 ASD_DPRINTK("ms: couldn't get connector map\n");
919 static int asd_process_ctrla_phy_settings(struct asd_ha_struct
*asd_ha
,
920 struct asd_ctrla_phy_settings
*ps
)
923 for (i
= 0; i
< ps
->num_phys
; i
++) {
924 struct asd_ctrla_phy_entry
*pe
= &ps
->phy_ent
[i
];
926 if (!PHY_ENABLED(asd_ha
, i
))
928 if (*(u64
*)pe
->sas_addr
== 0) {
929 asd_ha
->hw_prof
.enabled_phys
&= ~(1 << i
);
932 /* This is the SAS address which should be sent in IDENTIFY. */
933 memcpy(asd_ha
->hw_prof
.phy_desc
[i
].sas_addr
, pe
->sas_addr
,
935 asd_ha
->hw_prof
.phy_desc
[i
].max_sas_lrate
=
936 (pe
->sas_link_rates
& 0xF0) >> 4;
937 asd_ha
->hw_prof
.phy_desc
[i
].min_sas_lrate
=
938 (pe
->sas_link_rates
& 0x0F);
939 asd_ha
->hw_prof
.phy_desc
[i
].max_sata_lrate
=
940 (pe
->sata_link_rates
& 0xF0) >> 4;
941 asd_ha
->hw_prof
.phy_desc
[i
].min_sata_lrate
=
942 (pe
->sata_link_rates
& 0x0F);
943 asd_ha
->hw_prof
.phy_desc
[i
].flags
= pe
->flags
;
944 ASD_DPRINTK("ctrla: phy%d: sas_addr: %llx, sas rate:0x%x-0x%x,"
945 " sata rate:0x%x-0x%x, flags:0x%x\n",
947 SAS_ADDR(asd_ha
->hw_prof
.phy_desc
[i
].sas_addr
),
948 asd_ha
->hw_prof
.phy_desc
[i
].max_sas_lrate
,
949 asd_ha
->hw_prof
.phy_desc
[i
].min_sas_lrate
,
950 asd_ha
->hw_prof
.phy_desc
[i
].max_sata_lrate
,
951 asd_ha
->hw_prof
.phy_desc
[i
].min_sata_lrate
,
952 asd_ha
->hw_prof
.phy_desc
[i
].flags
);
959 * asd_process_ctrl_a_user - process CTRL-A user settings
960 * @asd_ha: pointer to the host adapter structure
961 * @flash_dir: pointer to the flash directory
963 static int asd_process_ctrl_a_user(struct asd_ha_struct
*asd_ha
,
964 struct asd_flash_dir
*flash_dir
)
968 struct asd_ll_el
*el
= NULL
;
969 struct asd_ctrla_phy_settings
*ps
;
970 struct asd_ctrla_phy_settings dflt_ps
;
972 err
= asd_find_flash_de(flash_dir
, FLASH_DE_CTRL_A_USER
, &offs
, &size
);
974 ASD_DPRINTK("couldn't find CTRL-A user settings section\n");
975 ASD_DPRINTK("Creating default CTRL-A user settings section\n");
978 dflt_ps
.num_phys
= 8;
979 for (i
=0; i
< ASD_MAX_PHYS
; i
++) {
980 memcpy(dflt_ps
.phy_ent
[i
].sas_addr
,
981 asd_ha
->hw_prof
.sas_addr
, SAS_ADDR_SIZE
);
982 dflt_ps
.phy_ent
[i
].sas_link_rates
= 0x98;
983 dflt_ps
.phy_ent
[i
].flags
= 0x0;
984 dflt_ps
.phy_ent
[i
].sata_link_rates
= 0x0;
987 size
= sizeof(struct asd_ctrla_phy_settings
);
996 el
= kmalloc(size
, GFP_KERNEL
);
998 ASD_DPRINTK("no mem for ctrla user settings section\n");
1002 err
= asd_read_flash_seg(asd_ha
, (void *)el
, offs
, size
);
1004 ASD_DPRINTK("couldn't read ctrla phy settings section\n");
1009 ps
= asd_find_ll_by_id(el
, 'h', 0xFF);
1011 ASD_DPRINTK("couldn't find ctrla phy settings struct\n");
1015 err
= asd_process_ctrla_phy_settings(asd_ha
, ps
);
1017 ASD_DPRINTK("couldn't process ctrla phy settings\n");
1027 * asd_read_flash - read flash memory
1028 * @asd_ha: pointer to the host adapter structure
1030 int asd_read_flash(struct asd_ha_struct
*asd_ha
)
1033 struct asd_flash_dir
*flash_dir
;
1035 err
= asd_flash_getid(asd_ha
);
1039 flash_dir
= kmalloc(sizeof(*flash_dir
), GFP_KERNEL
);
1044 if (!asd_find_flash_dir(asd_ha
, flash_dir
)) {
1045 ASD_DPRINTK("couldn't find flash directory\n");
1049 if (le32_to_cpu(flash_dir
->rev
) != 2) {
1050 asd_printk("unsupported flash dir version:0x%x\n",
1051 le32_to_cpu(flash_dir
->rev
));
1055 err
= asd_process_ms(asd_ha
, flash_dir
);
1057 ASD_DPRINTK("couldn't process manuf sector settings\n");
1061 err
= asd_process_ctrl_a_user(asd_ha
, flash_dir
);
1063 ASD_DPRINTK("couldn't process CTRL-A user settings\n");
1073 * asd_verify_flash_seg - verify data with flash memory
1074 * @asd_ha: pointer to the host adapter structure
1075 * @src: pointer to the source data to be verified
1076 * @dest_offset: offset from flash memory
1077 * @bytes_to_verify: total bytes to verify
1079 int asd_verify_flash_seg(struct asd_ha_struct
*asd_ha
,
1080 const void *src
, u32 dest_offset
, u32 bytes_to_verify
)
1085 u32 nv_offset
, reg
, i
;
1087 reg
= asd_ha
->hw_prof
.flash
.bar
;
1091 nv_offset
= dest_offset
;
1092 src_buf
= (const u8
*)src
;
1093 for (i
= 0; i
< bytes_to_verify
; i
++) {
1094 flash_char
= asd_read_reg_byte(asd_ha
, reg
+ nv_offset
+ i
);
1095 if (flash_char
!= src_buf
[i
]) {
1104 * asd_write_flash_seg - write data into flash memory
1105 * @asd_ha: pointer to the host adapter structure
1106 * @src: pointer to the source data to be written
1107 * @dest_offset: offset from flash memory
1108 * @bytes_to_write: total bytes to write
1110 int asd_write_flash_seg(struct asd_ha_struct
*asd_ha
,
1111 const void *src
, u32 dest_offset
, u32 bytes_to_write
)
1114 u32 nv_offset
, reg
, i
;
1117 reg
= asd_ha
->hw_prof
.flash
.bar
;
1120 err
= asd_check_flash_type(asd_ha
);
1122 ASD_DPRINTK("couldn't find the type of flash. err=%d\n", err
);
1126 nv_offset
= dest_offset
;
1127 err
= asd_erase_nv_sector(asd_ha
, nv_offset
, bytes_to_write
);
1129 ASD_DPRINTK("Erase failed at offset:0x%x\n",
1134 err
= asd_reset_flash(asd_ha
);
1136 ASD_DPRINTK("couldn't reset flash. err=%d\n", err
);
1140 src_buf
= (const u8
*)src
;
1141 for (i
= 0; i
< bytes_to_write
; i
++) {
1142 /* Setup program command sequence */
1143 switch (asd_ha
->hw_prof
.flash
.method
) {
1144 case FLASH_METHOD_A
:
1146 asd_write_reg_byte(asd_ha
,
1147 (reg
+ 0xAAA), 0xAA);
1148 asd_write_reg_byte(asd_ha
,
1149 (reg
+ 0x555), 0x55);
1150 asd_write_reg_byte(asd_ha
,
1151 (reg
+ 0xAAA), 0xA0);
1152 asd_write_reg_byte(asd_ha
,
1153 (reg
+ nv_offset
+ i
),
1157 case FLASH_METHOD_B
:
1159 asd_write_reg_byte(asd_ha
,
1160 (reg
+ 0x555), 0xAA);
1161 asd_write_reg_byte(asd_ha
,
1162 (reg
+ 0x2AA), 0x55);
1163 asd_write_reg_byte(asd_ha
,
1164 (reg
+ 0x555), 0xA0);
1165 asd_write_reg_byte(asd_ha
,
1166 (reg
+ nv_offset
+ i
),
1173 if (asd_chk_write_status(asd_ha
,
1174 (nv_offset
+ i
), 0) != 0) {
1175 ASD_DPRINTK("aicx: Write failed at offset:0x%x\n",
1176 reg
+ nv_offset
+ i
);
1177 return FAIL_WRITE_FLASH
;
1181 err
= asd_reset_flash(asd_ha
);
1183 ASD_DPRINTK("couldn't reset flash. err=%d\n", err
);
1189 int asd_chk_write_status(struct asd_ha_struct
*asd_ha
,
1190 u32 sector_addr
, u8 erase_flag
)
1194 u8 nv_data1
, nv_data2
;
1198 * Read from DQ2 requires sector address
1199 * while it's dont care for DQ6
1201 reg
= asd_ha
->hw_prof
.flash
.bar
;
1203 for (loop_cnt
= 0; loop_cnt
< 50000; loop_cnt
++) {
1204 nv_data1
= asd_read_reg_byte(asd_ha
, reg
);
1205 nv_data2
= asd_read_reg_byte(asd_ha
, reg
);
1207 toggle_bit1
= ((nv_data1
& FLASH_STATUS_BIT_MASK_DQ6
)
1208 ^ (nv_data2
& FLASH_STATUS_BIT_MASK_DQ6
));
1210 if (toggle_bit1
== 0) {
1213 if (nv_data2
& FLASH_STATUS_BIT_MASK_DQ5
) {
1214 nv_data1
= asd_read_reg_byte(asd_ha
,
1216 nv_data2
= asd_read_reg_byte(asd_ha
,
1219 ((nv_data1
& FLASH_STATUS_BIT_MASK_DQ6
)
1220 ^ (nv_data2
& FLASH_STATUS_BIT_MASK_DQ6
));
1222 if (toggle_bit1
== 0)
1228 * ERASE is a sector-by-sector operation and requires
1229 * more time to finish while WRITE is byte-byte-byte
1230 * operation and takes lesser time to finish.
1232 * For some strange reason a reduced ERASE delay gives different
1233 * behaviour across different spirit boards. Hence we set
1234 * a optimum balance of 50mus for ERASE which works well
1235 * across all boards.
1238 udelay(FLASH_STATUS_ERASE_DELAY_COUNT
);
1240 udelay(FLASH_STATUS_WRITE_DELAY_COUNT
);
1247 * asd_hwi_erase_nv_sector - Erase the flash memory sectors.
1248 * @asd_ha: pointer to the host adapter structure
1249 * @flash_addr: pointer to offset from flash memory
1250 * @size: total bytes to erase.
1252 int asd_erase_nv_sector(struct asd_ha_struct
*asd_ha
, u32 flash_addr
, u32 size
)
1257 reg
= asd_ha
->hw_prof
.flash
.bar
;
1259 /* sector staring address */
1260 sector_addr
= flash_addr
& FLASH_SECTOR_SIZE_MASK
;
1263 * Erasing an flash sector needs to be done in six consecutive
1266 while (sector_addr
< flash_addr
+size
) {
1267 switch (asd_ha
->hw_prof
.flash
.method
) {
1268 case FLASH_METHOD_A
:
1269 asd_write_reg_byte(asd_ha
, (reg
+ 0xAAA), 0xAA);
1270 asd_write_reg_byte(asd_ha
, (reg
+ 0x555), 0x55);
1271 asd_write_reg_byte(asd_ha
, (reg
+ 0xAAA), 0x80);
1272 asd_write_reg_byte(asd_ha
, (reg
+ 0xAAA), 0xAA);
1273 asd_write_reg_byte(asd_ha
, (reg
+ 0x555), 0x55);
1274 asd_write_reg_byte(asd_ha
, (reg
+ sector_addr
), 0x30);
1276 case FLASH_METHOD_B
:
1277 asd_write_reg_byte(asd_ha
, (reg
+ 0x555), 0xAA);
1278 asd_write_reg_byte(asd_ha
, (reg
+ 0x2AA), 0x55);
1279 asd_write_reg_byte(asd_ha
, (reg
+ 0x555), 0x80);
1280 asd_write_reg_byte(asd_ha
, (reg
+ 0x555), 0xAA);
1281 asd_write_reg_byte(asd_ha
, (reg
+ 0x2AA), 0x55);
1282 asd_write_reg_byte(asd_ha
, (reg
+ sector_addr
), 0x30);
1288 if (asd_chk_write_status(asd_ha
, sector_addr
, 1) != 0)
1289 return FAIL_ERASE_FLASH
;
1291 sector_addr
+= FLASH_SECTOR_SIZE
;
1297 int asd_check_flash_type(struct asd_ha_struct
*asd_ha
)
1306 /* get Flash memory base address */
1307 reg
= asd_ha
->hw_prof
.flash
.bar
;
1309 /* Determine flash info */
1310 err
= asd_reset_flash(asd_ha
);
1312 ASD_DPRINTK("couldn't reset flash. err=%d\n", err
);
1316 asd_ha
->hw_prof
.flash
.method
= FLASH_METHOD_UNKNOWN
;
1317 asd_ha
->hw_prof
.flash
.manuf
= FLASH_MANUF_ID_UNKNOWN
;
1318 asd_ha
->hw_prof
.flash
.dev_id
= FLASH_DEV_ID_UNKNOWN
;
1320 /* Get flash info. This would most likely be AMD Am29LV family flash.
1321 * First try the sequence for word mode. It is the same as for
1322 * 008B (byte mode only), 160B (word mode) and 800D (word mode).
1324 inc
= asd_ha
->hw_prof
.flash
.wide
? 2 : 1;
1325 asd_write_reg_byte(asd_ha
, reg
+ 0xAAA, 0xAA);
1326 asd_write_reg_byte(asd_ha
, reg
+ 0x555, 0x55);
1327 asd_write_reg_byte(asd_ha
, reg
+ 0xAAA, 0x90);
1328 manuf_id
= asd_read_reg_byte(asd_ha
, reg
);
1329 dev_id
= asd_read_reg_byte(asd_ha
, reg
+ inc
);
1330 sec_prot
= asd_read_reg_byte(asd_ha
, reg
+ inc
+ inc
);
1331 /* Get out of autoselect mode. */
1332 err
= asd_reset_flash(asd_ha
);
1334 ASD_DPRINTK("couldn't reset flash. err=%d\n", err
);
1337 ASD_DPRINTK("Flash MethodA manuf_id(0x%x) dev_id(0x%x) "
1338 "sec_prot(0x%x)\n", manuf_id
, dev_id
, sec_prot
);
1339 err
= asd_reset_flash(asd_ha
);
1344 case FLASH_MANUF_ID_AMD
:
1346 case FLASH_DEV_ID_AM29LV800DT
:
1347 case FLASH_DEV_ID_AM29LV640MT
:
1348 case FLASH_DEV_ID_AM29F800B
:
1349 asd_ha
->hw_prof
.flash
.method
= FLASH_METHOD_A
;
1355 case FLASH_MANUF_ID_ST
:
1357 case FLASH_DEV_ID_STM29W800DT
:
1358 case FLASH_DEV_ID_STM29LV640
:
1359 asd_ha
->hw_prof
.flash
.method
= FLASH_METHOD_A
;
1365 case FLASH_MANUF_ID_FUJITSU
:
1367 case FLASH_DEV_ID_MBM29LV800TE
:
1368 case FLASH_DEV_ID_MBM29DL800TA
:
1369 asd_ha
->hw_prof
.flash
.method
= FLASH_METHOD_A
;
1373 case FLASH_MANUF_ID_MACRONIX
:
1375 case FLASH_DEV_ID_MX29LV800BT
:
1376 asd_ha
->hw_prof
.flash
.method
= FLASH_METHOD_A
;
1382 if (asd_ha
->hw_prof
.flash
.method
== FLASH_METHOD_UNKNOWN
) {
1383 err
= asd_reset_flash(asd_ha
);
1385 ASD_DPRINTK("couldn't reset flash. err=%d\n", err
);
1389 /* Issue Unlock sequence for AM29LV008BT */
1390 asd_write_reg_byte(asd_ha
, (reg
+ 0x555), 0xAA);
1391 asd_write_reg_byte(asd_ha
, (reg
+ 0x2AA), 0x55);
1392 asd_write_reg_byte(asd_ha
, (reg
+ 0x555), 0x90);
1393 manuf_id
= asd_read_reg_byte(asd_ha
, reg
);
1394 dev_id
= asd_read_reg_byte(asd_ha
, reg
+ inc
);
1395 sec_prot
= asd_read_reg_byte(asd_ha
, reg
+ inc
+ inc
);
1397 ASD_DPRINTK("Flash MethodB manuf_id(0x%x) dev_id(0x%x) sec_prot"
1398 "(0x%x)\n", manuf_id
, dev_id
, sec_prot
);
1400 err
= asd_reset_flash(asd_ha
);
1402 ASD_DPRINTK("couldn't reset flash. err=%d\n", err
);
1407 case FLASH_MANUF_ID_AMD
:
1409 case FLASH_DEV_ID_AM29LV008BT
:
1410 asd_ha
->hw_prof
.flash
.method
= FLASH_METHOD_B
;
1416 case FLASH_MANUF_ID_ST
:
1418 case FLASH_DEV_ID_STM29008
:
1419 asd_ha
->hw_prof
.flash
.method
= FLASH_METHOD_B
;
1425 case FLASH_MANUF_ID_FUJITSU
:
1427 case FLASH_DEV_ID_MBM29LV008TA
:
1428 asd_ha
->hw_prof
.flash
.method
= FLASH_METHOD_B
;
1432 case FLASH_MANUF_ID_INTEL
:
1434 case FLASH_DEV_ID_I28LV00TAT
:
1435 asd_ha
->hw_prof
.flash
.method
= FLASH_METHOD_B
;
1439 case FLASH_MANUF_ID_MACRONIX
:
1441 case FLASH_DEV_ID_I28LV00TAT
:
1442 asd_ha
->hw_prof
.flash
.method
= FLASH_METHOD_B
;
1447 return FAIL_FIND_FLASH_ID
;
1451 if (asd_ha
->hw_prof
.flash
.method
== FLASH_METHOD_UNKNOWN
)
1452 return FAIL_FIND_FLASH_ID
;
1454 asd_ha
->hw_prof
.flash
.manuf
= manuf_id
;
1455 asd_ha
->hw_prof
.flash
.dev_id
= dev_id
;
1456 asd_ha
->hw_prof
.flash
.sec_prot
= sec_prot
;