2 * EEPROM parser code for mac80211 Prism54 drivers
4 * Copyright (c) 2006, Michael Wu <flamingice@sourmilk.net>
5 * Copyright (c) 2007-2009, Christian Lamparter <chunkeey@web.de>
6 * Copyright 2008, Johannes Berg <johannes@sipsolutions.net>
9 * - the islsm (softmac prism54) driver, which is:
10 * Copyright 2004-2006 Jean-Baptiste Note <jbnote@gmail.com>, et al.
12 * Copyright (C) 2008 Nokia Corporation and/or its subsidiary(-ies).
14 * This program is free software; you can redistribute it and/or modify
15 * it under the terms of the GNU General Public License version 2 as
16 * published by the Free Software Foundation.
19 #include <linux/init.h>
20 #include <linux/firmware.h>
21 #include <linux/etherdevice.h>
22 #include <linux/sort.h>
23 #include <linux/slab.h>
25 #include <net/mac80211.h>
31 static struct ieee80211_rate p54_bgrates
[] = {
32 { .bitrate
= 10, .hw_value
= 0, },
33 { .bitrate
= 20, .hw_value
= 1, .flags
= IEEE80211_RATE_SHORT_PREAMBLE
},
34 { .bitrate
= 55, .hw_value
= 2, .flags
= IEEE80211_RATE_SHORT_PREAMBLE
},
35 { .bitrate
= 110, .hw_value
= 3, .flags
= IEEE80211_RATE_SHORT_PREAMBLE
},
36 { .bitrate
= 60, .hw_value
= 4, },
37 { .bitrate
= 90, .hw_value
= 5, },
38 { .bitrate
= 120, .hw_value
= 6, },
39 { .bitrate
= 180, .hw_value
= 7, },
40 { .bitrate
= 240, .hw_value
= 8, },
41 { .bitrate
= 360, .hw_value
= 9, },
42 { .bitrate
= 480, .hw_value
= 10, },
43 { .bitrate
= 540, .hw_value
= 11, },
46 static struct ieee80211_rate p54_arates
[] = {
47 { .bitrate
= 60, .hw_value
= 4, },
48 { .bitrate
= 90, .hw_value
= 5, },
49 { .bitrate
= 120, .hw_value
= 6, },
50 { .bitrate
= 180, .hw_value
= 7, },
51 { .bitrate
= 240, .hw_value
= 8, },
52 { .bitrate
= 360, .hw_value
= 9, },
53 { .bitrate
= 480, .hw_value
= 10, },
54 { .bitrate
= 540, .hw_value
= 11, },
57 #define CHAN_HAS_CAL BIT(0)
58 #define CHAN_HAS_LIMIT BIT(1)
59 #define CHAN_HAS_CURVE BIT(2)
60 #define CHAN_HAS_ALL (CHAN_HAS_CAL | CHAN_HAS_LIMIT | CHAN_HAS_CURVE)
62 struct p54_channel_entry
{
66 enum ieee80211_band band
;
69 struct p54_channel_list
{
70 struct p54_channel_entry
*channels
;
73 size_t band_channel_num
[IEEE80211_NUM_BANDS
];
76 static int p54_get_band_from_freq(u16 freq
)
78 /* FIXME: sync these values with the 802.11 spec */
80 if ((freq
>= 2412) && (freq
<= 2484))
81 return IEEE80211_BAND_2GHZ
;
83 if ((freq
>= 4920) && (freq
<= 5825))
84 return IEEE80211_BAND_5GHZ
;
89 static int p54_compare_channels(const void *_a
,
92 const struct p54_channel_entry
*a
= _a
;
93 const struct p54_channel_entry
*b
= _b
;
95 return a
->index
- b
->index
;
98 static int p54_fill_band_bitrates(struct ieee80211_hw
*dev
,
99 struct ieee80211_supported_band
*band_entry
,
100 enum ieee80211_band band
)
102 /* TODO: generate rate array dynamically */
105 case IEEE80211_BAND_2GHZ
:
106 band_entry
->bitrates
= p54_bgrates
;
107 band_entry
->n_bitrates
= ARRAY_SIZE(p54_bgrates
);
109 case IEEE80211_BAND_5GHZ
:
110 band_entry
->bitrates
= p54_arates
;
111 band_entry
->n_bitrates
= ARRAY_SIZE(p54_arates
);
120 static int p54_generate_band(struct ieee80211_hw
*dev
,
121 struct p54_channel_list
*list
,
122 enum ieee80211_band band
)
124 struct p54_common
*priv
= dev
->priv
;
125 struct ieee80211_supported_band
*tmp
, *old
;
129 if ((!list
->entries
) || (!list
->band_channel_num
[band
]))
132 tmp
= kzalloc(sizeof(*tmp
), GFP_KERNEL
);
136 tmp
->channels
= kzalloc(sizeof(struct ieee80211_channel
) *
137 list
->band_channel_num
[band
], GFP_KERNEL
);
141 ret
= p54_fill_band_bitrates(dev
, tmp
, band
);
145 for (i
= 0, j
= 0; (j
< list
->band_channel_num
[band
]) &&
146 (i
< list
->entries
); i
++) {
148 if (list
->channels
[i
].band
!= band
)
151 if (list
->channels
[i
].data
!= CHAN_HAS_ALL
) {
152 wiphy_err(dev
->wiphy
,
153 "%s%s%s is/are missing for channel:%d [%d MHz].\n",
154 (list
->channels
[i
].data
& CHAN_HAS_CAL
? "" :
155 " [iqauto calibration data]"),
156 (list
->channels
[i
].data
& CHAN_HAS_LIMIT
? "" :
157 " [output power limits]"),
158 (list
->channels
[i
].data
& CHAN_HAS_CURVE
? "" :
160 list
->channels
[i
].index
, list
->channels
[i
].freq
);
164 tmp
->channels
[j
].band
= list
->channels
[i
].band
;
165 tmp
->channels
[j
].center_freq
= list
->channels
[i
].freq
;
170 wiphy_err(dev
->wiphy
, "Disabling totally damaged %d GHz band\n",
171 (band
== IEEE80211_BAND_2GHZ
) ? 2 : 5);
178 old
= priv
->band_table
[band
];
179 priv
->band_table
[band
] = tmp
;
181 kfree(old
->channels
);
189 kfree(tmp
->channels
);
196 static void p54_update_channel_param(struct p54_channel_list
*list
,
202 * usually all lists in the eeprom are mostly sorted.
203 * so it's very likely that the entry we are looking for
204 * is right at the end of the list
206 for (i
= list
->entries
; i
>= 0; i
--) {
207 if (freq
== list
->channels
[i
].freq
) {
208 list
->channels
[i
].data
|= data
;
213 if ((i
< 0) && (list
->entries
< list
->max_entries
)) {
214 /* entry does not exist yet. Initialize a new one. */
215 band
= p54_get_band_from_freq(freq
);
218 * filter out frequencies which don't belong into
219 * any supported band.
225 list
->band_channel_num
[band
]++;
227 list
->channels
[i
].freq
= freq
;
228 list
->channels
[i
].data
= data
;
229 list
->channels
[i
].band
= band
;
230 list
->channels
[i
].index
= ieee80211_frequency_to_channel(freq
);
231 /* TODO: parse output_limit and fill max_power */
235 static int p54_generate_channel_lists(struct ieee80211_hw
*dev
)
237 struct p54_common
*priv
= dev
->priv
;
238 struct p54_channel_list
*list
;
239 unsigned int i
, j
, max_channel_num
;
243 if ((priv
->iq_autocal_len
!= priv
->curve_data
->entries
) ||
244 (priv
->iq_autocal_len
!= priv
->output_limit
->entries
))
245 wiphy_err(dev
->wiphy
,
246 "Unsupported or damaged EEPROM detected. "
247 "You may not be able to use all channels.\n");
249 max_channel_num
= max_t(unsigned int, priv
->output_limit
->entries
,
250 priv
->iq_autocal_len
);
251 max_channel_num
= max_t(unsigned int, max_channel_num
,
252 priv
->curve_data
->entries
);
254 list
= kzalloc(sizeof(*list
), GFP_KERNEL
);
260 list
->max_entries
= max_channel_num
;
261 list
->channels
= kzalloc(sizeof(struct p54_channel_entry
) *
262 max_channel_num
, GFP_KERNEL
);
266 for (i
= 0; i
< max_channel_num
; i
++) {
267 if (i
< priv
->iq_autocal_len
) {
268 freq
= le16_to_cpu(priv
->iq_autocal
[i
].freq
);
269 p54_update_channel_param(list
, freq
, CHAN_HAS_CAL
);
272 if (i
< priv
->output_limit
->entries
) {
273 freq
= le16_to_cpup((__le16
*) (i
*
274 priv
->output_limit
->entry_size
+
275 priv
->output_limit
->offset
+
276 priv
->output_limit
->data
));
278 p54_update_channel_param(list
, freq
, CHAN_HAS_LIMIT
);
281 if (i
< priv
->curve_data
->entries
) {
282 freq
= le16_to_cpup((__le16
*) (i
*
283 priv
->curve_data
->entry_size
+
284 priv
->curve_data
->offset
+
285 priv
->curve_data
->data
));
287 p54_update_channel_param(list
, freq
, CHAN_HAS_CURVE
);
291 /* sort the list by the channel index */
292 sort(list
->channels
, list
->entries
, sizeof(struct p54_channel_entry
),
293 p54_compare_channels
, NULL
);
295 for (i
= 0, j
= 0; i
< IEEE80211_NUM_BANDS
; i
++) {
296 if (p54_generate_band(dev
, list
, i
) == 0)
300 /* no useable band available. */
306 kfree(list
->channels
);
313 static int p54_convert_rev0(struct ieee80211_hw
*dev
,
314 struct pda_pa_curve_data
*curve_data
)
316 struct p54_common
*priv
= dev
->priv
;
317 struct p54_pa_curve_data_sample
*dst
;
318 struct pda_pa_curve_data_sample_rev0
*src
;
319 size_t cd_len
= sizeof(*curve_data
) +
320 (curve_data
->points_per_channel
*sizeof(*dst
) + 2) *
321 curve_data
->channels
;
323 void *source
, *target
;
325 priv
->curve_data
= kmalloc(sizeof(*priv
->curve_data
) + cd_len
,
327 if (!priv
->curve_data
)
330 priv
->curve_data
->entries
= curve_data
->channels
;
331 priv
->curve_data
->entry_size
= sizeof(__le16
) +
332 sizeof(*dst
) * curve_data
->points_per_channel
;
333 priv
->curve_data
->offset
= offsetof(struct pda_pa_curve_data
, data
);
334 priv
->curve_data
->len
= cd_len
;
335 memcpy(priv
->curve_data
->data
, curve_data
, sizeof(*curve_data
));
336 source
= curve_data
->data
;
337 target
= ((struct pda_pa_curve_data
*) priv
->curve_data
->data
)->data
;
338 for (i
= 0; i
< curve_data
->channels
; i
++) {
339 __le16
*freq
= source
;
340 source
+= sizeof(__le16
);
341 *((__le16
*)target
) = *freq
;
342 target
+= sizeof(__le16
);
343 for (j
= 0; j
< curve_data
->points_per_channel
; j
++) {
347 dst
->rf_power
= src
->rf_power
;
348 dst
->pa_detector
= src
->pa_detector
;
349 dst
->data_64qam
= src
->pcv
;
350 /* "invent" the points for the other modulations */
351 #define SUB(x, y) (u8)(((x) - (y)) > (x) ? 0 : (x) - (y))
352 dst
->data_16qam
= SUB(src
->pcv
, 12);
353 dst
->data_qpsk
= SUB(dst
->data_16qam
, 12);
354 dst
->data_bpsk
= SUB(dst
->data_qpsk
, 12);
355 dst
->data_barker
= SUB(dst
->data_bpsk
, 14);
357 target
+= sizeof(*dst
);
358 source
+= sizeof(*src
);
365 static int p54_convert_rev1(struct ieee80211_hw
*dev
,
366 struct pda_pa_curve_data
*curve_data
)
368 struct p54_common
*priv
= dev
->priv
;
369 struct p54_pa_curve_data_sample
*dst
;
370 struct pda_pa_curve_data_sample_rev1
*src
;
371 size_t cd_len
= sizeof(*curve_data
) +
372 (curve_data
->points_per_channel
*sizeof(*dst
) + 2) *
373 curve_data
->channels
;
375 void *source
, *target
;
377 priv
->curve_data
= kzalloc(cd_len
+ sizeof(*priv
->curve_data
),
379 if (!priv
->curve_data
)
382 priv
->curve_data
->entries
= curve_data
->channels
;
383 priv
->curve_data
->entry_size
= sizeof(__le16
) +
384 sizeof(*dst
) * curve_data
->points_per_channel
;
385 priv
->curve_data
->offset
= offsetof(struct pda_pa_curve_data
, data
);
386 priv
->curve_data
->len
= cd_len
;
387 memcpy(priv
->curve_data
->data
, curve_data
, sizeof(*curve_data
));
388 source
= curve_data
->data
;
389 target
= ((struct pda_pa_curve_data
*) priv
->curve_data
->data
)->data
;
390 for (i
= 0; i
< curve_data
->channels
; i
++) {
391 __le16
*freq
= source
;
392 source
+= sizeof(__le16
);
393 *((__le16
*)target
) = *freq
;
394 target
+= sizeof(__le16
);
395 for (j
= 0; j
< curve_data
->points_per_channel
; j
++) {
396 memcpy(target
, source
, sizeof(*src
));
398 target
+= sizeof(*dst
);
399 source
+= sizeof(*src
);
407 static const char *p54_rf_chips
[] = { "INVALID-0", "Duette3", "Duette2",
408 "Frisbee", "Xbow", "Longbow", "INVALID-6", "INVALID-7" };
410 static void p54_parse_rssical(struct ieee80211_hw
*dev
, void *data
, int len
,
413 struct p54_common
*priv
= dev
->priv
;
414 int offset
= (type
== PDR_RSSI_LINEAR_APPROXIMATION_EXTENDED
) ? 2 : 0;
415 int entry_size
= sizeof(struct pda_rssi_cal_entry
) + offset
;
416 int num_entries
= (type
== PDR_RSSI_LINEAR_APPROXIMATION
) ? 1 : 2;
419 if (len
!= (entry_size
* num_entries
)) {
420 wiphy_err(dev
->wiphy
,
421 "unknown rssi calibration data packing type:(%x) len:%d.\n",
424 print_hex_dump_bytes("rssical:", DUMP_PREFIX_NONE
,
427 wiphy_err(dev
->wiphy
, "please report this issue.\n");
431 for (i
= 0; i
< num_entries
; i
++) {
432 struct pda_rssi_cal_entry
*cal
= data
+
433 (offset
+ i
* entry_size
);
434 priv
->rssical_db
[i
].mul
= (s16
) le16_to_cpu(cal
->mul
);
435 priv
->rssical_db
[i
].add
= (s16
) le16_to_cpu(cal
->add
);
439 static void p54_parse_default_country(struct ieee80211_hw
*dev
,
442 struct pda_country
*country
;
444 if (len
!= sizeof(*country
)) {
445 wiphy_err(dev
->wiphy
,
446 "found possible invalid default country eeprom entry. (entry size: %d)\n",
449 print_hex_dump_bytes("country:", DUMP_PREFIX_NONE
,
452 wiphy_err(dev
->wiphy
, "please report this issue.\n");
456 country
= (struct pda_country
*) data
;
457 if (country
->flags
== PDR_COUNTRY_CERT_CODE_PSEUDO
)
458 regulatory_hint(dev
->wiphy
, country
->alpha2
);
461 * write a shared/common function that converts
462 * "Regulatory domain codes" (802.11-2007 14.8.2.2)
463 * into ISO/IEC 3166-1 alpha2 for regulatory_hint.
468 static int p54_convert_output_limits(struct ieee80211_hw
*dev
,
469 u8
*data
, size_t len
)
471 struct p54_common
*priv
= dev
->priv
;
477 wiphy_err(dev
->wiphy
, "unknown output power db revision:%x\n",
482 if (2 + data
[1] * sizeof(struct pda_channel_output_limit
) > len
)
485 priv
->output_limit
= kmalloc(data
[1] *
486 sizeof(struct pda_channel_output_limit
) +
487 sizeof(*priv
->output_limit
), GFP_KERNEL
);
489 if (!priv
->output_limit
)
492 priv
->output_limit
->offset
= 0;
493 priv
->output_limit
->entries
= data
[1];
494 priv
->output_limit
->entry_size
=
495 sizeof(struct pda_channel_output_limit
);
496 priv
->output_limit
->len
= priv
->output_limit
->entry_size
*
497 priv
->output_limit
->entries
+
498 priv
->output_limit
->offset
;
500 memcpy(priv
->output_limit
->data
, &data
[2],
501 data
[1] * sizeof(struct pda_channel_output_limit
));
506 static struct p54_cal_database
*p54_convert_db(struct pda_custom_wrapper
*src
,
509 struct p54_cal_database
*dst
;
510 size_t payload_len
, entries
, entry_size
, offset
;
512 payload_len
= le16_to_cpu(src
->len
);
513 entries
= le16_to_cpu(src
->entries
);
514 entry_size
= le16_to_cpu(src
->entry_size
);
515 offset
= le16_to_cpu(src
->offset
);
516 if (((entries
* entry_size
+ offset
) != payload_len
) ||
517 (payload_len
+ sizeof(*src
) != total_len
))
520 dst
= kmalloc(sizeof(*dst
) + payload_len
, GFP_KERNEL
);
524 dst
->entries
= entries
;
525 dst
->entry_size
= entry_size
;
526 dst
->offset
= offset
;
527 dst
->len
= payload_len
;
529 memcpy(dst
->data
, src
->data
, payload_len
);
533 int p54_parse_eeprom(struct ieee80211_hw
*dev
, void *eeprom
, int len
)
535 struct p54_common
*priv
= dev
->priv
;
536 struct eeprom_pda_wrap
*wrap
;
537 struct pda_entry
*entry
;
538 unsigned int data_len
, entry_len
;
541 u8
*end
= (u8
*)eeprom
+ len
;
544 wrap
= (struct eeprom_pda_wrap
*) eeprom
;
545 entry
= (void *)wrap
->data
+ le16_to_cpu(wrap
->len
);
547 /* verify that at least the entry length/code fits */
548 while ((u8
*)entry
<= end
- sizeof(*entry
)) {
549 entry_len
= le16_to_cpu(entry
->len
);
550 data_len
= ((entry_len
- 1) << 1);
552 /* abort if entry exceeds whole structure */
553 if ((u8
*)entry
+ sizeof(*entry
) + data_len
> end
)
556 switch (le16_to_cpu(entry
->code
)) {
557 case PDR_MAC_ADDRESS
:
558 if (data_len
!= ETH_ALEN
)
560 SET_IEEE80211_PERM_ADDR(dev
, entry
->data
);
562 case PDR_PRISM_PA_CAL_OUTPUT_POWER_LIMITS
:
563 if (priv
->output_limit
)
565 err
= p54_convert_output_limits(dev
, entry
->data
,
570 case PDR_PRISM_PA_CAL_CURVE_DATA
: {
571 struct pda_pa_curve_data
*curve_data
=
572 (struct pda_pa_curve_data
*)entry
->data
;
573 if (data_len
< sizeof(*curve_data
)) {
578 switch (curve_data
->cal_method_rev
) {
580 err
= p54_convert_rev0(dev
, curve_data
);
583 err
= p54_convert_rev1(dev
, curve_data
);
586 wiphy_err(dev
->wiphy
,
587 "unknown curve data revision %d\n",
588 curve_data
->cal_method_rev
);
596 case PDR_PRISM_ZIF_TX_IQ_CALIBRATION
:
597 priv
->iq_autocal
= kmemdup(entry
->data
, data_len
,
599 if (!priv
->iq_autocal
) {
604 priv
->iq_autocal_len
= data_len
/ sizeof(struct pda_iq_autocal_entry
);
606 case PDR_DEFAULT_COUNTRY
:
607 p54_parse_default_country(dev
, entry
->data
, data_len
);
609 case PDR_INTERFACE_LIST
:
611 while ((u8
*)tmp
< entry
->data
+ data_len
) {
612 struct exp_if
*exp_if
= tmp
;
613 if (exp_if
->if_id
== cpu_to_le16(IF_ID_ISL39000
))
614 synth
= le16_to_cpu(exp_if
->variant
);
615 tmp
+= sizeof(*exp_if
);
618 case PDR_HARDWARE_PLATFORM_COMPONENT_ID
:
621 priv
->version
= *(u8
*)(entry
->data
+ 1);
623 case PDR_RSSI_LINEAR_APPROXIMATION
:
624 case PDR_RSSI_LINEAR_APPROXIMATION_DUAL_BAND
:
625 case PDR_RSSI_LINEAR_APPROXIMATION_EXTENDED
:
626 p54_parse_rssical(dev
, entry
->data
, data_len
,
627 le16_to_cpu(entry
->code
));
629 case PDR_RSSI_LINEAR_APPROXIMATION_CUSTOM
: {
630 __le16
*src
= (void *) entry
->data
;
631 s16
*dst
= (void *) &priv
->rssical_db
;
634 if (data_len
!= sizeof(priv
->rssical_db
)) {
638 for (i
= 0; i
< sizeof(priv
->rssical_db
) /
640 *(dst
++) = (s16
) le16_to_cpu(*(src
++));
643 case PDR_PRISM_PA_CAL_OUTPUT_POWER_LIMITS_CUSTOM
: {
644 struct pda_custom_wrapper
*pda
= (void *) entry
->data
;
645 if (priv
->output_limit
|| data_len
< sizeof(*pda
))
647 priv
->output_limit
= p54_convert_db(pda
, data_len
);
650 case PDR_PRISM_PA_CAL_CURVE_DATA_CUSTOM
: {
651 struct pda_custom_wrapper
*pda
= (void *) entry
->data
;
652 if (priv
->curve_data
|| data_len
< sizeof(*pda
))
654 priv
->curve_data
= p54_convert_db(pda
, data_len
);
658 /* make it overrun */
665 entry
= (void *)entry
+ (entry_len
+ 1)*2;
668 if (!synth
|| !priv
->iq_autocal
|| !priv
->output_limit
||
670 wiphy_err(dev
->wiphy
,
671 "not all required entries found in eeprom!\n");
676 err
= p54_generate_channel_lists(dev
);
680 priv
->rxhw
= synth
& PDR_SYNTH_FRONTEND_MASK
;
681 if (priv
->rxhw
== PDR_SYNTH_FRONTEND_XBOW
)
682 p54_init_xbow_synth(priv
);
683 if (!(synth
& PDR_SYNTH_24_GHZ_DISABLED
))
684 dev
->wiphy
->bands
[IEEE80211_BAND_2GHZ
] =
685 priv
->band_table
[IEEE80211_BAND_2GHZ
];
686 if (!(synth
& PDR_SYNTH_5_GHZ_DISABLED
))
687 dev
->wiphy
->bands
[IEEE80211_BAND_5GHZ
] =
688 priv
->band_table
[IEEE80211_BAND_5GHZ
];
689 if ((synth
& PDR_SYNTH_RX_DIV_MASK
) == PDR_SYNTH_RX_DIV_SUPPORTED
)
690 priv
->rx_diversity_mask
= 3;
691 if ((synth
& PDR_SYNTH_TX_DIV_MASK
) == PDR_SYNTH_TX_DIV_SUPPORTED
)
692 priv
->tx_diversity_mask
= 3;
694 if (!is_valid_ether_addr(dev
->wiphy
->perm_addr
)) {
695 u8 perm_addr
[ETH_ALEN
];
697 wiphy_warn(dev
->wiphy
,
698 "Invalid hwaddr! Using randomly generated MAC addr\n");
699 random_ether_addr(perm_addr
);
700 SET_IEEE80211_PERM_ADDR(dev
, perm_addr
);
703 wiphy_info(dev
->wiphy
, "hwaddr %pM, MAC:isl38%02x RF:%s\n",
704 dev
->wiphy
->perm_addr
, priv
->version
,
705 p54_rf_chips
[priv
->rxhw
]);
710 kfree(priv
->iq_autocal
);
711 kfree(priv
->output_limit
);
712 kfree(priv
->curve_data
);
713 priv
->iq_autocal
= NULL
;
714 priv
->output_limit
= NULL
;
715 priv
->curve_data
= NULL
;
717 wiphy_err(dev
->wiphy
, "eeprom parse failed!\n");
720 EXPORT_SYMBOL_GPL(p54_parse_eeprom
);
722 int p54_read_eeprom(struct ieee80211_hw
*dev
)
724 struct p54_common
*priv
= dev
->priv
;
725 size_t eeprom_size
= 0x2020, offset
= 0, blocksize
, maxblocksize
;
729 maxblocksize
= EEPROM_READBACK_LEN
;
730 if (priv
->fw_var
>= 0x509)
735 eeprom
= kzalloc(eeprom_size
, GFP_KERNEL
);
736 if (unlikely(!eeprom
))
739 while (eeprom_size
) {
740 blocksize
= min(eeprom_size
, maxblocksize
);
741 ret
= p54_download_eeprom(priv
, (void *) (eeprom
+ offset
),
747 eeprom_size
-= blocksize
;
750 ret
= p54_parse_eeprom(dev
, eeprom
, offset
);
755 EXPORT_SYMBOL_GPL(p54_read_eeprom
);