提交 e61c0e33 编写于 作者: A Abhay Salunke 提交者: Linus Torvalds

[PATCH] dell_rbu: enhancements and fixes

BUG fixes:

  The driver used to allocate memory with spinlock held which has been
  fixed in this patch.

  The driver was printing the entire buffer when it received a invalid
  entry in image_type.  The fix is to only print a warning message and not
  the buffer.

Usability enhancements:

  It is possible that due to user error the /sys/class/firmware/dell_rbu
  entries might be missing, this can happen if the user does the following

	echo 1 > /sys/class/firmware/dell_rbu/loading
	echo 0 > /sys/class/firmware/dell_rbu/loading

  This will make the entries in /sys/class/firmware/ to disappear and the
  only way get them back was bby unloading and loading the driver.

  This patch makes the user recreate these entries by echoing init in to
  image_type.

This patch has been tested with Libsmbios and Dell OpenManage.
Signed-off-by: NAbhay Salunke <Abhay_Salunke@dell.com>
Signed-off-by: NAndrew Morton <akpm@osdl.org>
Signed-off-by: NLinus Torvalds <torvalds@osdl.org>
上级 30134492
...@@ -13,6 +13,8 @@ the BIOS on Dell servers (starting from servers sold since 1999), desktops ...@@ -13,6 +13,8 @@ the BIOS on Dell servers (starting from servers sold since 1999), desktops
and notebooks (starting from those sold in 2005). and notebooks (starting from those sold in 2005).
Please go to http://support.dell.com register and you can find info on Please go to http://support.dell.com register and you can find info on
OpenManage and Dell Update packages (DUP). OpenManage and Dell Update packages (DUP).
Libsmbios can also be used to update BIOS on Dell systems go to
http://linux.dell.com/libsmbios/ for details.
Dell_RBU driver supports BIOS update using the monilothic image and packetized Dell_RBU driver supports BIOS update using the monilothic image and packetized
image methods. In case of moniolithic the driver allocates a contiguous chunk image methods. In case of moniolithic the driver allocates a contiguous chunk
...@@ -22,8 +24,8 @@ would place each packet in contiguous physical memory. The driver also ...@@ -22,8 +24,8 @@ would place each packet in contiguous physical memory. The driver also
maintains a link list of packets for reading them back. maintains a link list of packets for reading them back.
If the dell_rbu driver is unloaded all the allocated memory is freed. If the dell_rbu driver is unloaded all the allocated memory is freed.
The rbu driver needs to have an application which will inform the BIOS to The rbu driver needs to have an application (as mentioned above)which will
enable the update in the next system reboot. inform the BIOS to enable the update in the next system reboot.
The user should not unload the rbu driver after downloading the BIOS image The user should not unload the rbu driver after downloading the BIOS image
or updating. or updating.
...@@ -42,9 +44,11 @@ In case of packet mechanism the single memory can be broken in smaller chuks ...@@ -42,9 +44,11 @@ In case of packet mechanism the single memory can be broken in smaller chuks
of contiguous memory and the BIOS image is scattered in these packets. of contiguous memory and the BIOS image is scattered in these packets.
By default the driver uses monolithic memory for the update type. This can be By default the driver uses monolithic memory for the update type. This can be
changed to contiguous during the driver load time by specifying the load changed to packets during the driver load time by specifying the load
parameter image_type=packet. This can also be changed later as below parameter image_type=packet. This can also be changed later as below
echo packet > /sys/devices/platform/dell_rbu/image_type echo packet > /sys/devices/platform/dell_rbu/image_type
Also echoing either mono ,packet or init in to image_type will free up the
memory allocated by the driver.
Do the steps below to download the BIOS image. Do the steps below to download the BIOS image.
1) echo 1 > /sys/class/firmware/dell_rbu/loading 1) echo 1 > /sys/class/firmware/dell_rbu/loading
...@@ -53,9 +57,13 @@ Do the steps below to download the BIOS image. ...@@ -53,9 +57,13 @@ Do the steps below to download the BIOS image.
The /sys/class/firmware/dell_rbu/ entries will remain till the following is The /sys/class/firmware/dell_rbu/ entries will remain till the following is
done. done.
echo -1 > /sys/class/firmware/dell_rbu/loading echo -1 > /sys/class/firmware/dell_rbu/loading.
Until this step is completed the drivr cannot be unloaded. Until this step is completed the drivr cannot be unloaded.
If an user by accident executes steps 1 and 3 above without executing step 2;
it will make the /sys/class/firmware/dell_rbu/ entries to disappear.
The entries can be recreated by doing the following
echo init > /sys/devices/platform/dell_rbu/image_type
NOTE: echoing init in image_type does not change it original value.
Also the driver provides /sys/devices/platform/dell_rbu/data readonly file to Also the driver provides /sys/devices/platform/dell_rbu/data readonly file to
read back the image downloaded. This is useful in case of packet update read back the image downloaded. This is useful in case of packet update
......
...@@ -50,7 +50,7 @@ ...@@ -50,7 +50,7 @@
MODULE_AUTHOR("Abhay Salunke <abhay_salunke@dell.com>"); MODULE_AUTHOR("Abhay Salunke <abhay_salunke@dell.com>");
MODULE_DESCRIPTION("Driver for updating BIOS image on DELL systems"); MODULE_DESCRIPTION("Driver for updating BIOS image on DELL systems");
MODULE_LICENSE("GPL"); MODULE_LICENSE("GPL");
MODULE_VERSION("1.0"); MODULE_VERSION("2.0");
#define BIOS_SCAN_LIMIT 0xffffffff #define BIOS_SCAN_LIMIT 0xffffffff
#define MAX_IMAGE_LENGTH 16 #define MAX_IMAGE_LENGTH 16
...@@ -65,10 +65,11 @@ static struct _rbu_data { ...@@ -65,10 +65,11 @@ static struct _rbu_data {
unsigned long packet_write_count; unsigned long packet_write_count;
unsigned long num_packets; unsigned long num_packets;
unsigned long packetsize; unsigned long packetsize;
int entry_created;
} rbu_data; } rbu_data;
static char image_type[MAX_IMAGE_LENGTH] = "mono"; static char image_type[MAX_IMAGE_LENGTH + 1] = "mono";
module_param_string(image_type, image_type, sizeof(image_type), 0); module_param_string(image_type, image_type, sizeof (image_type), 0);
MODULE_PARM_DESC(image_type, "BIOS image type. choose- mono or packet"); MODULE_PARM_DESC(image_type, "BIOS image type. choose- mono or packet");
struct packet_data { struct packet_data {
...@@ -84,7 +85,8 @@ static struct platform_device *rbu_device; ...@@ -84,7 +85,8 @@ static struct platform_device *rbu_device;
static int context; static int context;
static dma_addr_t dell_rbu_dmaaddr; static dma_addr_t dell_rbu_dmaaddr;
static void init_packet_head(void) static void
init_packet_head(void)
{ {
INIT_LIST_HEAD(&packet_data_head.list); INIT_LIST_HEAD(&packet_data_head.list);
rbu_data.packet_write_count = 0; rbu_data.packet_write_count = 0;
...@@ -93,7 +95,8 @@ static void init_packet_head(void) ...@@ -93,7 +95,8 @@ static void init_packet_head(void)
rbu_data.packetsize = 0; rbu_data.packetsize = 0;
} }
static int fill_last_packet(void *data, size_t length) static int
fill_last_packet(void *data, size_t length)
{ {
struct list_head *ptemp_list; struct list_head *ptemp_list;
struct packet_data *packet = NULL; struct packet_data *packet = NULL;
...@@ -114,7 +117,7 @@ static int fill_last_packet(void *data, size_t length) ...@@ -114,7 +117,7 @@ static int fill_last_packet(void *data, size_t length)
if ((rbu_data.packet_write_count + length) > rbu_data.packetsize) { if ((rbu_data.packet_write_count + length) > rbu_data.packetsize) {
pr_debug("dell_rbu:%s: packet size data " pr_debug("dell_rbu:%s: packet size data "
"overrun\n", __FUNCTION__); "overrun\n", __FUNCTION__);
return -EINVAL; return -EINVAL;
} }
...@@ -135,7 +138,8 @@ static int fill_last_packet(void *data, size_t length) ...@@ -135,7 +138,8 @@ static int fill_last_packet(void *data, size_t length)
return 0; return 0;
} }
static int create_packet(size_t length) static int
create_packet(size_t length)
{ {
struct packet_data *newpacket; struct packet_data *newpacket;
int ordernum = 0; int ordernum = 0;
...@@ -146,12 +150,14 @@ static int create_packet(size_t length) ...@@ -146,12 +150,14 @@ static int create_packet(size_t length)
pr_debug("create_packet: packetsize not specified\n"); pr_debug("create_packet: packetsize not specified\n");
return -EINVAL; return -EINVAL;
} }
spin_unlock(&rbu_data.lock);
newpacket = kmalloc(sizeof (struct packet_data), GFP_KERNEL);
spin_lock(&rbu_data.lock);
newpacket = kmalloc(sizeof(struct packet_data), GFP_KERNEL);
if (!newpacket) { if (!newpacket) {
printk(KERN_WARNING printk(KERN_WARNING
"dell_rbu:%s: failed to allocate new " "dell_rbu:%s: failed to allocate new "
"packet\n", __FUNCTION__); "packet\n", __FUNCTION__);
return -ENOMEM; return -ENOMEM;
} }
...@@ -160,15 +166,17 @@ static int create_packet(size_t length) ...@@ -160,15 +166,17 @@ static int create_packet(size_t length)
* there is no upper limit on memory * there is no upper limit on memory
* address for packetized mechanism * address for packetized mechanism
*/ */
newpacket->data = (unsigned char *)__get_free_pages(GFP_KERNEL, spin_unlock(&rbu_data.lock);
ordernum); newpacket->data = (unsigned char *) __get_free_pages(GFP_KERNEL,
ordernum);
spin_lock(&rbu_data.lock);
pr_debug("create_packet: newpacket %p\n", newpacket->data); pr_debug("create_packet: newpacket %p\n", newpacket->data);
if (!newpacket->data) { if (!newpacket->data) {
printk(KERN_WARNING printk(KERN_WARNING
"dell_rbu:%s: failed to allocate new " "dell_rbu:%s: failed to allocate new "
"packet\n", __FUNCTION__); "packet\n", __FUNCTION__);
kfree(newpacket); kfree(newpacket);
return -ENOMEM; return -ENOMEM;
} }
...@@ -190,7 +198,8 @@ static int create_packet(size_t length) ...@@ -190,7 +198,8 @@ static int create_packet(size_t length)
return 0; return 0;
} }
static int packetize_data(void *data, size_t length) static int
packetize_data(void *data, size_t length)
{ {
int rc = 0; int rc = 0;
...@@ -206,7 +215,7 @@ static int packetize_data(void *data, size_t length) ...@@ -206,7 +215,7 @@ static int packetize_data(void *data, size_t length)
static int static int
do_packet_read(char *data, struct list_head *ptemp_list, do_packet_read(char *data, struct list_head *ptemp_list,
int length, int bytes_read, int *list_read_count) int length, int bytes_read, int *list_read_count)
{ {
void *ptemp_buf; void *ptemp_buf;
struct packet_data *newpacket = NULL; struct packet_data *newpacket = NULL;
...@@ -239,7 +248,8 @@ do_packet_read(char *data, struct list_head *ptemp_list, ...@@ -239,7 +248,8 @@ do_packet_read(char *data, struct list_head *ptemp_list,
return bytes_copied; return bytes_copied;
} }
static int packet_read_list(char *data, size_t * pread_length) static int
packet_read_list(char *data, size_t * pread_length)
{ {
struct list_head *ptemp_list; struct list_head *ptemp_list;
int temp_count = 0; int temp_count = 0;
...@@ -258,8 +268,7 @@ static int packet_read_list(char *data, size_t * pread_length) ...@@ -258,8 +268,7 @@ static int packet_read_list(char *data, size_t * pread_length)
ptemp_list = (&packet_data_head.list)->next; ptemp_list = (&packet_data_head.list)->next;
while (!list_empty(ptemp_list)) { while (!list_empty(ptemp_list)) {
bytes_copied = do_packet_read(pdest, ptemp_list, bytes_copied = do_packet_read(pdest, ptemp_list,
remaining_bytes, bytes_read, remaining_bytes, bytes_read, &temp_count);
&temp_count);
remaining_bytes -= bytes_copied; remaining_bytes -= bytes_copied;
bytes_read += bytes_copied; bytes_read += bytes_copied;
pdest += bytes_copied; pdest += bytes_copied;
...@@ -278,7 +287,8 @@ static int packet_read_list(char *data, size_t * pread_length) ...@@ -278,7 +287,8 @@ static int packet_read_list(char *data, size_t * pread_length)
return 0; return 0;
} }
static void packet_empty_list(void) static void
packet_empty_list(void)
{ {
struct list_head *ptemp_list; struct list_head *ptemp_list;
struct list_head *pnext_list; struct list_head *pnext_list;
...@@ -287,7 +297,7 @@ static void packet_empty_list(void) ...@@ -287,7 +297,7 @@ static void packet_empty_list(void)
ptemp_list = (&packet_data_head.list)->next; ptemp_list = (&packet_data_head.list)->next;
while (!list_empty(ptemp_list)) { while (!list_empty(ptemp_list)) {
newpacket = newpacket =
list_entry(ptemp_list, struct packet_data, list); list_entry(ptemp_list, struct packet_data, list);
pnext_list = ptemp_list->next; pnext_list = ptemp_list->next;
list_del(ptemp_list); list_del(ptemp_list);
ptemp_list = pnext_list; ptemp_list = pnext_list;
...@@ -296,8 +306,8 @@ static void packet_empty_list(void) ...@@ -296,8 +306,8 @@ static void packet_empty_list(void)
* to make sure there are no stale RBU packets left in memory * to make sure there are no stale RBU packets left in memory
*/ */
memset(newpacket->data, 0, rbu_data.packetsize); memset(newpacket->data, 0, rbu_data.packetsize);
free_pages((unsigned long)newpacket->data, free_pages((unsigned long) newpacket->data,
newpacket->ordernum); newpacket->ordernum);
kfree(newpacket); kfree(newpacket);
} }
rbu_data.packet_write_count = 0; rbu_data.packet_write_count = 0;
...@@ -310,7 +320,8 @@ static void packet_empty_list(void) ...@@ -310,7 +320,8 @@ static void packet_empty_list(void)
* img_update_free: Frees the buffer allocated for storing BIOS image * img_update_free: Frees the buffer allocated for storing BIOS image
* Always called with lock held and returned with lock held * Always called with lock held and returned with lock held
*/ */
static void img_update_free(void) static void
img_update_free(void)
{ {
if (!rbu_data.image_update_buffer) if (!rbu_data.image_update_buffer)
return; return;
...@@ -319,14 +330,13 @@ static void img_update_free(void) ...@@ -319,14 +330,13 @@ static void img_update_free(void)
* BIOS image copied in memory. * BIOS image copied in memory.
*/ */
memset(rbu_data.image_update_buffer, 0, memset(rbu_data.image_update_buffer, 0,
rbu_data.image_update_buffer_size); rbu_data.image_update_buffer_size);
if (rbu_data.dma_alloc == 1) if (rbu_data.dma_alloc == 1)
dma_free_coherent(NULL, rbu_data.bios_image_size, dma_free_coherent(NULL, rbu_data.bios_image_size,
rbu_data.image_update_buffer, rbu_data.image_update_buffer, dell_rbu_dmaaddr);
dell_rbu_dmaaddr);
else else
free_pages((unsigned long)rbu_data.image_update_buffer, free_pages((unsigned long) rbu_data.image_update_buffer,
rbu_data.image_update_ordernum); rbu_data.image_update_ordernum);
/* /*
* Re-initialize the rbu_data variables after a free * Re-initialize the rbu_data variables after a free
...@@ -348,7 +358,8 @@ static void img_update_free(void) ...@@ -348,7 +358,8 @@ static void img_update_free(void)
* already allocated size, then that memory is reused. This function is * already allocated size, then that memory is reused. This function is
* called with lock held and returns with lock held. * called with lock held and returns with lock held.
*/ */
static int img_update_realloc(unsigned long size) static int
img_update_realloc(unsigned long size)
{ {
unsigned char *image_update_buffer = NULL; unsigned char *image_update_buffer = NULL;
unsigned long rc; unsigned long rc;
...@@ -366,7 +377,7 @@ static int img_update_realloc(unsigned long size) ...@@ -366,7 +377,7 @@ static int img_update_realloc(unsigned long size)
*/ */
if ((size != 0) && (rbu_data.image_update_buffer == NULL)) { if ((size != 0) && (rbu_data.image_update_buffer == NULL)) {
printk(KERN_ERR "dell_rbu:%s: corruption " printk(KERN_ERR "dell_rbu:%s: corruption "
"check failed\n", __FUNCTION__); "check failed\n", __FUNCTION__);
return -EINVAL; return -EINVAL;
} }
/* /*
...@@ -385,17 +396,16 @@ static int img_update_realloc(unsigned long size) ...@@ -385,17 +396,16 @@ static int img_update_realloc(unsigned long size)
ordernum = get_order(size); ordernum = get_order(size);
image_update_buffer = image_update_buffer =
(unsigned char *)__get_free_pages(GFP_KERNEL, ordernum); (unsigned char *) __get_free_pages(GFP_KERNEL, ordernum);
img_buf_phys_addr = img_buf_phys_addr =
(unsigned long)virt_to_phys(image_update_buffer); (unsigned long) virt_to_phys(image_update_buffer);
if (img_buf_phys_addr > BIOS_SCAN_LIMIT) { if (img_buf_phys_addr > BIOS_SCAN_LIMIT) {
free_pages((unsigned long)image_update_buffer, ordernum); free_pages((unsigned long) image_update_buffer, ordernum);
ordernum = -1; ordernum = -1;
image_update_buffer = dma_alloc_coherent(NULL, size, image_update_buffer = dma_alloc_coherent(NULL, size,
&dell_rbu_dmaaddr, &dell_rbu_dmaaddr, GFP_KERNEL);
GFP_KERNEL);
dma_alloc = 1; dma_alloc = 1;
} }
...@@ -405,20 +415,21 @@ static int img_update_realloc(unsigned long size) ...@@ -405,20 +415,21 @@ static int img_update_realloc(unsigned long size)
rbu_data.image_update_buffer = image_update_buffer; rbu_data.image_update_buffer = image_update_buffer;
rbu_data.image_update_buffer_size = size; rbu_data.image_update_buffer_size = size;
rbu_data.bios_image_size = rbu_data.bios_image_size =
rbu_data.image_update_buffer_size; rbu_data.image_update_buffer_size;
rbu_data.image_update_ordernum = ordernum; rbu_data.image_update_ordernum = ordernum;
rbu_data.dma_alloc = dma_alloc; rbu_data.dma_alloc = dma_alloc;
rc = 0; rc = 0;
} else { } else {
pr_debug("Not enough memory for image update:" pr_debug("Not enough memory for image update:"
"size = %ld\n", size); "size = %ld\n", size);
rc = -ENOMEM; rc = -ENOMEM;
} }
return rc; return rc;
} }
static ssize_t read_packet_data(char *buffer, loff_t pos, size_t count) static ssize_t
read_packet_data(char *buffer, loff_t pos, size_t count)
{ {
int retval; int retval;
size_t bytes_left; size_t bytes_left;
...@@ -438,7 +449,7 @@ static ssize_t read_packet_data(char *buffer, loff_t pos, size_t count) ...@@ -438,7 +449,7 @@ static ssize_t read_packet_data(char *buffer, loff_t pos, size_t count)
if (pos > imagesize) { if (pos > imagesize) {
retval = 0; retval = 0;
printk(KERN_WARNING "dell_rbu:read_packet_data: " printk(KERN_WARNING "dell_rbu:read_packet_data: "
"data underrun\n"); "data underrun\n");
goto read_rbu_data_exit; goto read_rbu_data_exit;
} }
...@@ -459,7 +470,8 @@ static ssize_t read_packet_data(char *buffer, loff_t pos, size_t count) ...@@ -459,7 +470,8 @@ static ssize_t read_packet_data(char *buffer, loff_t pos, size_t count)
return retval; return retval;
} }
static ssize_t read_rbu_mono_data(char *buffer, loff_t pos, size_t count) static ssize_t
read_rbu_mono_data(char *buffer, loff_t pos, size_t count)
{ {
unsigned char *ptemp = NULL; unsigned char *ptemp = NULL;
size_t bytes_left = 0; size_t bytes_left = 0;
...@@ -468,11 +480,11 @@ static ssize_t read_rbu_mono_data(char *buffer, loff_t pos, size_t count) ...@@ -468,11 +480,11 @@ static ssize_t read_rbu_mono_data(char *buffer, loff_t pos, size_t count)
/* check to see if we have something to return */ /* check to see if we have something to return */
if ((rbu_data.image_update_buffer == NULL) || if ((rbu_data.image_update_buffer == NULL) ||
(rbu_data.bios_image_size == 0)) { (rbu_data.bios_image_size == 0)) {
pr_debug("read_rbu_data_mono: image_update_buffer %p ," pr_debug("read_rbu_data_mono: image_update_buffer %p ,"
"bios_image_size %lu\n", "bios_image_size %lu\n",
rbu_data.image_update_buffer, rbu_data.image_update_buffer,
rbu_data.bios_image_size); rbu_data.bios_image_size);
ret_count = -ENOMEM; ret_count = -ENOMEM;
goto read_rbu_data_exit; goto read_rbu_data_exit;
} }
...@@ -515,9 +527,46 @@ read_rbu_data(struct kobject *kobj, char *buffer, loff_t pos, size_t count) ...@@ -515,9 +527,46 @@ read_rbu_data(struct kobject *kobj, char *buffer, loff_t pos, size_t count)
return ret_count; return ret_count;
} }
static void
callbackfn_rbu(const struct firmware *fw, void *context)
{
int rc = 0;
if (!fw || !fw->size) {
rbu_data.entry_created = 0;
return;
}
spin_lock(&rbu_data.lock);
if (!strcmp(image_type, "mono")) {
if (!img_update_realloc(fw->size))
memcpy(rbu_data.image_update_buffer,
fw->data, fw->size);
} else if (!strcmp(image_type, "packet")) {
if (!rbu_data.packetsize)
rbu_data.packetsize = fw->size;
else if (rbu_data.packetsize != fw->size) {
packet_empty_list();
rbu_data.packetsize = fw->size;
}
packetize_data(fw->data, fw->size);
} else
pr_debug("invalid image type specified.\n");
spin_unlock(&rbu_data.lock);
rc = request_firmware_nowait(THIS_MODULE, FW_ACTION_NOHOTPLUG,
"dell_rbu", &rbu_device->dev, &context, callbackfn_rbu);
if (rc)
printk(KERN_ERR
"dell_rbu:%s request_firmware_nowait failed"
" %d\n", __FUNCTION__, rc);
else
rbu_data.entry_created = 1;
}
static ssize_t static ssize_t
read_rbu_image_type(struct kobject *kobj, char *buffer, loff_t pos, read_rbu_image_type(struct kobject *kobj, char *buffer, loff_t pos,
size_t count) size_t count)
{ {
int size = 0; int size = 0;
if (!pos) if (!pos)
...@@ -527,25 +576,63 @@ read_rbu_image_type(struct kobject *kobj, char *buffer, loff_t pos, ...@@ -527,25 +576,63 @@ read_rbu_image_type(struct kobject *kobj, char *buffer, loff_t pos,
static ssize_t static ssize_t
write_rbu_image_type(struct kobject *kobj, char *buffer, loff_t pos, write_rbu_image_type(struct kobject *kobj, char *buffer, loff_t pos,
size_t count) size_t count)
{ {
int rc = count; int rc = count;
int req_firm_rc = 0;
int i;
spin_lock(&rbu_data.lock); spin_lock(&rbu_data.lock);
/*
if (strlen(buffer) < MAX_IMAGE_LENGTH) * Find the first newline or space
sscanf(buffer, "%s", image_type); */
else for (i = 0; i < count; ++i)
printk(KERN_WARNING "dell_rbu: image_type is invalid" if (buffer[i] == '\n' || buffer[i] == ' ') {
"max chars = %d, \n incoming str--%s-- \n", buffer[i] = '\0';
MAX_IMAGE_LENGTH, buffer); break;
}
if (i == count)
buffer[count] = '\0';
if (strstr(buffer, "mono"))
strcpy(image_type, "mono");
else if (strstr(buffer, "packet"))
strcpy(image_type, "packet");
else if (strstr(buffer, "init")) {
/*
* If due to the user error the driver gets in a bad
* state where even though it is loaded , the
* /sys/class/firmware/dell_rbu entries are missing.
* to cover this situation the user can recreate entries
* by writing init to image_type.
*/
if (!rbu_data.entry_created) {
spin_unlock(&rbu_data.lock);
req_firm_rc = request_firmware_nowait(THIS_MODULE,
FW_ACTION_NOHOTPLUG, "dell_rbu",
&rbu_device->dev, &context,
callbackfn_rbu);
if (req_firm_rc) {
printk(KERN_ERR
"dell_rbu:%s request_firmware_nowait"
" failed %d\n", __FUNCTION__, rc);
rc = -EIO;
} else
rbu_data.entry_created = 1;
spin_lock(&rbu_data.lock);
}
} else {
printk(KERN_WARNING "dell_rbu: image_type is invalid\n");
spin_unlock(&rbu_data.lock);
return -EINVAL;
}
/* we must free all previous allocations */ /* we must free all previous allocations */
packet_empty_list(); packet_empty_list();
img_update_free(); img_update_free();
spin_unlock(&rbu_data.lock); spin_unlock(&rbu_data.lock);
return rc;
return rc;
} }
static struct bin_attribute rbu_data_attr = { static struct bin_attribute rbu_data_attr = {
...@@ -559,51 +646,19 @@ static struct bin_attribute rbu_image_type_attr = { ...@@ -559,51 +646,19 @@ static struct bin_attribute rbu_image_type_attr = {
.write = write_rbu_image_type, .write = write_rbu_image_type,
}; };
static void callbackfn_rbu(const struct firmware *fw, void *context) static int __init
{ dcdrbu_init(void)
int rc = 0;
if (!fw || !fw->size)
return;
spin_lock(&rbu_data.lock);
if (!strcmp(image_type, "mono")) {
if (!img_update_realloc(fw->size))
memcpy(rbu_data.image_update_buffer,
fw->data, fw->size);
} else if (!strcmp(image_type, "packet")) {
if (!rbu_data.packetsize)
rbu_data.packetsize = fw->size;
else if (rbu_data.packetsize != fw->size) {
packet_empty_list();
rbu_data.packetsize = fw->size;
}
packetize_data(fw->data, fw->size);
} else
pr_debug("invalid image type specified.\n");
spin_unlock(&rbu_data.lock);
rc = request_firmware_nowait(THIS_MODULE, FW_ACTION_NOHOTPLUG,
"dell_rbu", &rbu_device->dev,
&context, callbackfn_rbu);
if (rc)
printk(KERN_ERR
"dell_rbu:%s request_firmware_nowait failed"
" %d\n", __FUNCTION__, rc);
}
static int __init dcdrbu_init(void)
{ {
int rc = 0; int rc = 0;
spin_lock_init(&rbu_data.lock); spin_lock_init(&rbu_data.lock);
init_packet_head(); init_packet_head();
rbu_device = rbu_device =
platform_device_register_simple("dell_rbu", -1, NULL, 0); platform_device_register_simple("dell_rbu", -1, NULL, 0);
if (!rbu_device) { if (!rbu_device) {
printk(KERN_ERR printk(KERN_ERR
"dell_rbu:%s:platform_device_register_simple " "dell_rbu:%s:platform_device_register_simple "
"failed\n", __FUNCTION__); "failed\n", __FUNCTION__);
return -EIO; return -EIO;
} }
...@@ -611,17 +666,19 @@ static int __init dcdrbu_init(void) ...@@ -611,17 +666,19 @@ static int __init dcdrbu_init(void)
sysfs_create_bin_file(&rbu_device->dev.kobj, &rbu_image_type_attr); sysfs_create_bin_file(&rbu_device->dev.kobj, &rbu_image_type_attr);
rc = request_firmware_nowait(THIS_MODULE, FW_ACTION_NOHOTPLUG, rc = request_firmware_nowait(THIS_MODULE, FW_ACTION_NOHOTPLUG,
"dell_rbu", &rbu_device->dev, "dell_rbu", &rbu_device->dev, &context, callbackfn_rbu);
&context, callbackfn_rbu);
if (rc) if (rc)
printk(KERN_ERR "dell_rbu:%s:request_firmware_nowait" printk(KERN_ERR "dell_rbu:%s:request_firmware_nowait"
" failed %d\n", __FUNCTION__, rc); " failed %d\n", __FUNCTION__, rc);
else
rbu_data.entry_created = 1;
return rc; return rc;
} }
static __exit void dcdrbu_exit(void) static __exit void
dcdrbu_exit(void)
{ {
spin_lock(&rbu_data.lock); spin_lock(&rbu_data.lock);
packet_empty_list(); packet_empty_list();
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册