2 Copyright (C) 2004 - 2009 Ivo van Doorn <IvDoorn@gmail.com>
3 Copyright (C) 2004 - 2009 Gertjan van Wingerde <gwingerde@gmail.com>
4 <http://rt2x00.serialmonkey.com>
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2 of the License, or
9 (at your option) any later version.
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with this program; if not, see <http://www.gnu.org/licenses/>.
22 Abstract: rt2x00 firmware loading routines.
25 #include <linux/kernel.h>
26 #include <linux/module.h>
29 #include "rt2x00lib.h"
31 static int rt2x00lib_request_firmware(struct rt2x00_dev
*rt2x00dev
)
33 struct device
*device
= wiphy_dev(rt2x00dev
->hw
->wiphy
);
34 const struct firmware
*fw
;
39 * Read correct firmware from harddisk.
41 fw_name
= rt2x00dev
->ops
->lib
->get_firmware_name(rt2x00dev
);
44 "Invalid firmware filename\n"
45 "Please file bug report to %s\n", DRV_PROJECT
);
49 rt2x00_info(rt2x00dev
, "Loading firmware file '%s'\n", fw_name
);
51 retval
= request_firmware(&fw
, fw_name
, device
);
53 rt2x00_err(rt2x00dev
, "Failed to request Firmware\n");
57 if (!fw
|| !fw
->size
|| !fw
->data
) {
58 rt2x00_err(rt2x00dev
, "Failed to read Firmware\n");
63 rt2x00_info(rt2x00dev
, "Firmware detected - version: %d.%d\n",
64 fw
->data
[fw
->size
- 4], fw
->data
[fw
->size
- 3]);
65 snprintf(rt2x00dev
->hw
->wiphy
->fw_version
,
66 sizeof(rt2x00dev
->hw
->wiphy
->fw_version
), "%d.%d",
67 fw
->data
[fw
->size
- 4], fw
->data
[fw
->size
- 3]);
69 retval
= rt2x00dev
->ops
->lib
->check_firmware(rt2x00dev
, fw
->data
, fw
->size
);
74 rt2x00_err(rt2x00dev
, "Firmware checksum error\n");
77 rt2x00_err(rt2x00dev
, "Invalid firmware file length (len=%zu)\n",
81 rt2x00_err(rt2x00dev
, "Current firmware does not support detected chipset\n");
95 int rt2x00lib_load_firmware(struct rt2x00_dev
*rt2x00dev
)
99 if (!test_bit(REQUIRE_FIRMWARE
, &rt2x00dev
->cap_flags
))
102 if (!rt2x00dev
->fw
) {
103 retval
= rt2x00lib_request_firmware(rt2x00dev
);
109 * Send firmware to the device.
111 retval
= rt2x00dev
->ops
->lib
->load_firmware(rt2x00dev
,
113 rt2x00dev
->fw
->size
);
116 * When the firmware is uploaded to the hardware the LED
117 * association status might have been triggered, for correct
118 * LED handling it should now be reset.
120 rt2x00leds_led_assoc(rt2x00dev
, false);
125 void rt2x00lib_free_firmware(struct rt2x00_dev
*rt2x00dev
)
127 release_firmware(rt2x00dev
->fw
);
128 rt2x00dev
->fw
= NULL
;