2 * This file is provided under a dual BSD/GPLv2 license. When using or
3 * redistributing this file, you may do so under either license.
7 * Copyright(c) 2008 - 2011 Intel Corporation. All rights reserved.
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of version 2 of the GNU General Public License as
11 * published by the Free Software Foundation.
13 * This program is distributed in the hope that it will be useful, but
14 * WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * General Public License for more details.
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 51 Franklin St - Fifth Floor, Boston, MA 02110-1301 USA.
21 * The full GNU General Public License is included in this distribution
22 * in the file called LICENSE.GPL.
25 /* probe_roms - scan for oem parameters */
27 #include <linux/kernel.h>
28 #include <linux/firmware.h>
29 #include <linux/uaccess.h>
30 #include <linux/efi.h>
31 #include <asm/probe_roms.h>
35 #include "probe_roms.h"
37 static efi_char16_t isci_efivar_name
[] =
38 {'R', 's', 't', 'S', 'c', 'u', 'O'};
40 struct isci_orom
*isci_request_oprom(struct pci_dev
*pdev
)
42 void __iomem
*oprom
= pci_map_biosrom(pdev
);
43 struct isci_orom
*rom
= NULL
;
47 struct isci_oem_hdr oem_hdr
;
53 len
= pci_biosrom_size(pdev
);
54 rom
= devm_kzalloc(&pdev
->dev
, sizeof(*rom
), GFP_KERNEL
);
57 "Unable to allocate memory for orom\n");
61 for (i
= 0; i
< len
&& rom
; i
+= ISCI_OEM_SIG_SIZE
) {
62 memcpy_fromio(oem_sig
, oprom
+ i
, ISCI_OEM_SIG_SIZE
);
64 /* we think we found the OEM table */
65 if (memcmp(oem_sig
, ISCI_OEM_SIG
, ISCI_OEM_SIG_SIZE
) == 0) {
68 memcpy_fromio(&oem_hdr
, oprom
+ i
, sizeof(oem_hdr
));
70 copy_len
= min(oem_hdr
.len
- sizeof(oem_hdr
),
74 oprom
+ i
+ sizeof(oem_hdr
),
77 /* calculate checksum */
79 for (j
= 0, sum
= 0; j
< sizeof(oem_hdr
); j
++, tmp
++)
83 for (j
= 0; j
< sizeof(*rom
); j
++, tmp
++)
88 "OEM table checksum failed\n");
92 /* keep going if that's not the oem param table */
93 if (memcmp(rom
->hdr
.signature
,
95 ISCI_ROM_SIG_SIZE
) != 0)
99 "OEM parameter table found in OROM\n");
105 dev_err(&pdev
->dev
, "oprom parse error\n");
106 devm_kfree(&pdev
->dev
, rom
);
109 pci_unmap_biosrom(oprom
);
114 enum sci_status
isci_parse_oem_parameters(struct sci_oem_params
*oem
,
115 struct isci_orom
*orom
, int scu_index
)
117 /* check for valid inputs */
118 if (scu_index
< 0 || scu_index
>= SCI_MAX_CONTROLLERS
||
119 scu_index
> orom
->hdr
.num_elements
|| !oem
)
122 *oem
= orom
->ctrl
[scu_index
];
126 struct isci_orom
*isci_request_firmware(struct pci_dev
*pdev
, const struct firmware
*fw
)
128 struct isci_orom
*orom
= NULL
, *data
;
131 if (request_firmware(&fw
, ISCI_FW_NAME
, &pdev
->dev
) != 0)
134 if (fw
->size
< sizeof(*orom
))
137 data
= (struct isci_orom
*)fw
->data
;
139 if (strncmp(ISCI_ROM_SIG
, data
->hdr
.signature
,
140 strlen(ISCI_ROM_SIG
)) != 0)
143 orom
= devm_kzalloc(&pdev
->dev
, fw
->size
, GFP_KERNEL
);
147 memcpy(orom
, fw
->data
, fw
->size
);
150 * deprecated: override default amp_control for pre-preproduction
153 if (isci_si_rev
<= ISCI_SI_REVB0
)
156 for (i
= 0; i
< ARRAY_SIZE(orom
->ctrl
); i
++)
157 for (j
= 0; j
< ARRAY_SIZE(orom
->ctrl
[i
].phys
); j
++) {
158 orom
->ctrl
[i
].phys
[j
].afe_tx_amp_control0
= 0xe7c03;
159 orom
->ctrl
[i
].phys
[j
].afe_tx_amp_control1
= 0xe7c03;
160 orom
->ctrl
[i
].phys
[j
].afe_tx_amp_control2
= 0xe7c03;
161 orom
->ctrl
[i
].phys
[j
].afe_tx_amp_control3
= 0xe7c03;
164 release_firmware(fw
);
169 static struct efi
*get_efi(void)
178 struct isci_orom
*isci_get_efi_var(struct pci_dev
*pdev
)
181 struct isci_orom
*rom
;
182 struct isci_oem_hdr
*oem_hdr
;
190 efi_data
= devm_kzalloc(&pdev
->dev
, data_len
, GFP_KERNEL
);
193 "Unable to allocate memory for EFI data\n");
197 rom
= (struct isci_orom
*)(efi_data
+ sizeof(struct isci_oem_hdr
));
200 status
= get_efi()->get_variable(isci_efivar_name
,
201 &ISCI_EFI_VENDOR_GUID
,
206 status
= EFI_NOT_FOUND
;
208 if (status
!= EFI_SUCCESS
) {
210 "Unable to obtain EFI var data for OEM parms\n");
214 oem_hdr
= (struct isci_oem_hdr
*)efi_data
;
216 if (memcmp(oem_hdr
->sig
, ISCI_OEM_SIG
, ISCI_OEM_SIG_SIZE
) != 0) {
218 "Invalid OEM header signature\n");
222 /* calculate checksum */
223 tmp
= (u8
*)efi_data
;
224 for (j
= 0, sum
= 0; j
< (sizeof(*oem_hdr
) + sizeof(*rom
)); j
++, tmp
++)
229 "OEM table checksum failed\n");
233 if (memcmp(rom
->hdr
.signature
,
235 ISCI_ROM_SIG_SIZE
) != 0) {
237 "Invalid OEM table signature\n");