Commit 1fba4974 authored by Juuso Oikarinen's avatar Juuso Oikarinen Committed by John W. Linville

wl1271: Use vmalloc to allocate memory for firmware

Use vmalloc to allocate memory for the firmware image, and use a smaller
linear buffer for the actual transfer of the firmware to the chipset.

This patch is an adaptation of a similar patch for wl1251 by Kalle Valo.
Signed-off-by: default avatarJuuso Oikarinen <juuso.oikarinen@nokia.com>
Reviewed-by: default avatarLuciano Coelho <luciano.coelho@nokia.com>
Signed-off-by: default avatarLuciano Coelho <luciano.coelho@nokia.com>
Signed-off-by: default avatarJohn W. Linville <linville@tuxdriver.com>
parent c87dec9f
...@@ -94,7 +94,7 @@ static int wl1271_boot_upload_firmware_chunk(struct wl1271 *wl, void *buf, ...@@ -94,7 +94,7 @@ static int wl1271_boot_upload_firmware_chunk(struct wl1271 *wl, void *buf,
size_t fw_data_len, u32 dest) size_t fw_data_len, u32 dest)
{ {
int addr, chunk_num, partition_limit; int addr, chunk_num, partition_limit;
u8 *p; u8 *p, *chunk;
/* whal_FwCtrl_LoadFwImageSm() */ /* whal_FwCtrl_LoadFwImageSm() */
...@@ -103,12 +103,17 @@ static int wl1271_boot_upload_firmware_chunk(struct wl1271 *wl, void *buf, ...@@ -103,12 +103,17 @@ static int wl1271_boot_upload_firmware_chunk(struct wl1271 *wl, void *buf,
wl1271_debug(DEBUG_BOOT, "fw_data_len %zd chunk_size %d", wl1271_debug(DEBUG_BOOT, "fw_data_len %zd chunk_size %d",
fw_data_len, CHUNK_SIZE); fw_data_len, CHUNK_SIZE);
if ((fw_data_len % 4) != 0) { if ((fw_data_len % 4) != 0) {
wl1271_error("firmware length not multiple of four"); wl1271_error("firmware length not multiple of four");
return -EIO; return -EIO;
} }
chunk = kmalloc(CHUNK_SIZE, GFP_KERNEL);
if (!buf) {
wl1271_error("allocation for firmware upload chunk failed");
return -ENOMEM;
}
wl1271_set_partition(wl, dest, wl1271_set_partition(wl, dest,
part_table[PART_DOWN].mem.size, part_table[PART_DOWN].mem.size,
part_table[PART_DOWN].reg.start, part_table[PART_DOWN].reg.start,
...@@ -137,9 +142,10 @@ static int wl1271_boot_upload_firmware_chunk(struct wl1271 *wl, void *buf, ...@@ -137,9 +142,10 @@ static int wl1271_boot_upload_firmware_chunk(struct wl1271 *wl, void *buf,
/* 10.3 upload the chunk */ /* 10.3 upload the chunk */
addr = dest + chunk_num * CHUNK_SIZE; addr = dest + chunk_num * CHUNK_SIZE;
p = buf + chunk_num * CHUNK_SIZE; p = buf + chunk_num * CHUNK_SIZE;
memcpy(chunk, p, CHUNK_SIZE);
wl1271_debug(DEBUG_BOOT, "uploading fw chunk 0x%p to 0x%x", wl1271_debug(DEBUG_BOOT, "uploading fw chunk 0x%p to 0x%x",
p, addr); p, addr);
wl1271_spi_mem_write(wl, addr, p, CHUNK_SIZE); wl1271_spi_mem_write(wl, addr, chunk, CHUNK_SIZE);
chunk_num++; chunk_num++;
} }
...@@ -147,10 +153,12 @@ static int wl1271_boot_upload_firmware_chunk(struct wl1271 *wl, void *buf, ...@@ -147,10 +153,12 @@ static int wl1271_boot_upload_firmware_chunk(struct wl1271 *wl, void *buf,
/* 10.4 upload the last chunk */ /* 10.4 upload the last chunk */
addr = dest + chunk_num * CHUNK_SIZE; addr = dest + chunk_num * CHUNK_SIZE;
p = buf + chunk_num * CHUNK_SIZE; p = buf + chunk_num * CHUNK_SIZE;
memcpy(chunk, p, fw_data_len % CHUNK_SIZE);
wl1271_debug(DEBUG_BOOT, "uploading fw last chunk (%zd B) 0x%p to 0x%x", wl1271_debug(DEBUG_BOOT, "uploading fw last chunk (%zd B) 0x%p to 0x%x",
fw_data_len % CHUNK_SIZE, p, addr); fw_data_len % CHUNK_SIZE, p, addr);
wl1271_spi_mem_write(wl, addr, p, fw_data_len % CHUNK_SIZE); wl1271_spi_mem_write(wl, addr, chunk, fw_data_len % CHUNK_SIZE);
kfree(chunk);
return 0; return 0;
} }
......
...@@ -30,6 +30,7 @@ ...@@ -30,6 +30,7 @@
#include <linux/spi/spi.h> #include <linux/spi/spi.h>
#include <linux/crc32.h> #include <linux/crc32.h>
#include <linux/etherdevice.h> #include <linux/etherdevice.h>
#include <linux/vmalloc.h>
#include <linux/spi/wl12xx.h> #include <linux/spi/wl12xx.h>
#include "wl1271.h" #include "wl1271.h"
...@@ -231,7 +232,7 @@ static int wl1271_fetch_firmware(struct wl1271 *wl) ...@@ -231,7 +232,7 @@ static int wl1271_fetch_firmware(struct wl1271 *wl)
} }
wl->fw_len = fw->size; wl->fw_len = fw->size;
wl->fw = kmalloc(wl->fw_len, GFP_KERNEL); wl->fw = vmalloc(wl->fw_len);
if (!wl->fw) { if (!wl->fw) {
wl1271_error("could not allocate memory for the firmware"); wl1271_error("could not allocate memory for the firmware");
...@@ -1484,7 +1485,7 @@ static int __devexit wl1271_remove(struct spi_device *spi) ...@@ -1484,7 +1485,7 @@ static int __devexit wl1271_remove(struct spi_device *spi)
platform_device_unregister(&wl1271_device); platform_device_unregister(&wl1271_device);
free_irq(wl->irq, wl); free_irq(wl->irq, wl);
kfree(wl->target_mem_map); kfree(wl->target_mem_map);
kfree(wl->fw); vfree(wl->fw);
wl->fw = NULL; wl->fw = NULL;
kfree(wl->nvs); kfree(wl->nvs);
wl->nvs = NULL; wl->nvs = NULL;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment