Abhay Salunke | 6c54c28 | 2005-09-06 15:17:14 -0700 | [diff] [blame] | 1 | /* |
| 2 | * dell_rbu.c |
| 3 | * Bios Update driver for Dell systems |
| 4 | * Author: Dell Inc |
| 5 | * Abhay Salunke <abhay_salunke@dell.com> |
| 6 | * |
| 7 | * Copyright (C) 2005 Dell Inc. |
| 8 | * |
| 9 | * Remote BIOS Update (rbu) driver is used for updating DELL BIOS by |
| 10 | * creating entries in the /sys file systems on Linux 2.6 and higher |
| 11 | * kernels. The driver supports two mechanism to update the BIOS namely |
| 12 | * contiguous and packetized. Both these methods still require having some |
| 13 | * application to set the CMOS bit indicating the BIOS to update itself |
| 14 | * after a reboot. |
| 15 | * |
| 16 | * Contiguous method: |
| 17 | * This driver writes the incoming data in a monolithic image by allocating |
| 18 | * contiguous physical pages large enough to accommodate the incoming BIOS |
| 19 | * image size. |
| 20 | * |
| 21 | * Packetized method: |
| 22 | * The driver writes the incoming packet image by allocating a new packet |
| 23 | * on every time the packet data is written. This driver requires an |
| 24 | * application to break the BIOS image in to fixed sized packet chunks. |
| 25 | * |
| 26 | * See Documentation/dell_rbu.txt for more info. |
| 27 | * |
| 28 | * This program is free software; you can redistribute it and/or modify |
| 29 | * it under the terms of the GNU General Public License v2.0 as published by |
| 30 | * the Free Software Foundation |
| 31 | * |
| 32 | * This program is distributed in the hope that it will be useful, |
| 33 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 34 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 35 | * GNU General Public License for more details. |
| 36 | */ |
Abhay Salunke | 6c54c28 | 2005-09-06 15:17:14 -0700 | [diff] [blame] | 37 | #include <linux/init.h> |
| 38 | #include <linux/module.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 39 | #include <linux/slab.h> |
Abhay Salunke | 6c54c28 | 2005-09-06 15:17:14 -0700 | [diff] [blame] | 40 | #include <linux/string.h> |
| 41 | #include <linux/errno.h> |
| 42 | #include <linux/blkdev.h> |
Russell King | d052d1b | 2005-10-29 19:07:23 +0100 | [diff] [blame] | 43 | #include <linux/platform_device.h> |
Abhay Salunke | 6c54c28 | 2005-09-06 15:17:14 -0700 | [diff] [blame] | 44 | #include <linux/spinlock.h> |
| 45 | #include <linux/moduleparam.h> |
| 46 | #include <linux/firmware.h> |
| 47 | #include <linux/dma-mapping.h> |
| 48 | |
| 49 | MODULE_AUTHOR("Abhay Salunke <abhay_salunke@dell.com>"); |
| 50 | MODULE_DESCRIPTION("Driver for updating BIOS image on DELL systems"); |
| 51 | MODULE_LICENSE("GPL"); |
Abhay Salunke | 2c56084 | 2006-01-14 13:21:14 -0800 | [diff] [blame] | 52 | MODULE_VERSION("3.2"); |
Abhay Salunke | 6c54c28 | 2005-09-06 15:17:14 -0700 | [diff] [blame] | 53 | |
| 54 | #define BIOS_SCAN_LIMIT 0xffffffff |
| 55 | #define MAX_IMAGE_LENGTH 16 |
| 56 | static struct _rbu_data { |
| 57 | void *image_update_buffer; |
| 58 | unsigned long image_update_buffer_size; |
| 59 | unsigned long bios_image_size; |
| 60 | int image_update_ordernum; |
| 61 | int dma_alloc; |
| 62 | spinlock_t lock; |
| 63 | unsigned long packet_read_count; |
Abhay Salunke | 6c54c28 | 2005-09-06 15:17:14 -0700 | [diff] [blame] | 64 | unsigned long num_packets; |
| 65 | unsigned long packetsize; |
Abhay Salunke | ad6ce87 | 2005-10-11 08:29:02 -0700 | [diff] [blame] | 66 | unsigned long imagesize; |
Abhay Salunke | e61c0e3 | 2005-09-16 19:28:04 -0700 | [diff] [blame] | 67 | int entry_created; |
Abhay Salunke | 6c54c28 | 2005-09-06 15:17:14 -0700 | [diff] [blame] | 68 | } rbu_data; |
| 69 | |
Abhay Salunke | e61c0e3 | 2005-09-16 19:28:04 -0700 | [diff] [blame] | 70 | static char image_type[MAX_IMAGE_LENGTH + 1] = "mono"; |
| 71 | module_param_string(image_type, image_type, sizeof (image_type), 0); |
Abhay Salunke | ad6ce87 | 2005-10-11 08:29:02 -0700 | [diff] [blame] | 72 | MODULE_PARM_DESC(image_type, |
| 73 | "BIOS image type. choose- mono or packet or init"); |
Abhay Salunke | 6c54c28 | 2005-09-06 15:17:14 -0700 | [diff] [blame] | 74 | |
Abhay Salunke | 274b693 | 2005-11-07 00:59:26 -0800 | [diff] [blame] | 75 | static unsigned long allocation_floor = 0x100000; |
| 76 | module_param(allocation_floor, ulong, 0644); |
| 77 | MODULE_PARM_DESC(allocation_floor, |
| 78 | "Minimum address for allocations when using Packet mode"); |
| 79 | |
Abhay Salunke | 6c54c28 | 2005-09-06 15:17:14 -0700 | [diff] [blame] | 80 | struct packet_data { |
| 81 | struct list_head list; |
| 82 | size_t length; |
| 83 | void *data; |
| 84 | int ordernum; |
| 85 | }; |
| 86 | |
| 87 | static struct packet_data packet_data_head; |
| 88 | |
| 89 | static struct platform_device *rbu_device; |
| 90 | static int context; |
| 91 | static dma_addr_t dell_rbu_dmaaddr; |
| 92 | |
Andrew Morton | dda8577 | 2005-09-16 19:28:05 -0700 | [diff] [blame] | 93 | static void init_packet_head(void) |
Abhay Salunke | 6c54c28 | 2005-09-06 15:17:14 -0700 | [diff] [blame] | 94 | { |
| 95 | INIT_LIST_HEAD(&packet_data_head.list); |
Abhay Salunke | 6c54c28 | 2005-09-06 15:17:14 -0700 | [diff] [blame] | 96 | rbu_data.packet_read_count = 0; |
| 97 | rbu_data.num_packets = 0; |
| 98 | rbu_data.packetsize = 0; |
Abhay Salunke | ad6ce87 | 2005-10-11 08:29:02 -0700 | [diff] [blame] | 99 | rbu_data.imagesize = 0; |
Abhay Salunke | 6c54c28 | 2005-09-06 15:17:14 -0700 | [diff] [blame] | 100 | } |
| 101 | |
Abhay Salunke | ad6ce87 | 2005-10-11 08:29:02 -0700 | [diff] [blame] | 102 | static int create_packet(void *data, size_t length) |
Abhay Salunke | 6c54c28 | 2005-09-06 15:17:14 -0700 | [diff] [blame] | 103 | { |
| 104 | struct packet_data *newpacket; |
| 105 | int ordernum = 0; |
Abhay Salunke | 274b693 | 2005-11-07 00:59:26 -0800 | [diff] [blame] | 106 | int retval = 0; |
| 107 | unsigned int packet_array_size = 0; |
Al Viro | 5ad9201 | 2005-12-15 09:18:00 +0000 | [diff] [blame] | 108 | void **invalid_addr_packet_array = NULL; |
| 109 | void *packet_data_temp_buf = NULL; |
Abhay Salunke | 274b693 | 2005-11-07 00:59:26 -0800 | [diff] [blame] | 110 | unsigned int idx = 0; |
Abhay Salunke | 6c54c28 | 2005-09-06 15:17:14 -0700 | [diff] [blame] | 111 | |
| 112 | pr_debug("create_packet: entry \n"); |
| 113 | |
| 114 | if (!rbu_data.packetsize) { |
| 115 | pr_debug("create_packet: packetsize not specified\n"); |
Abhay Salunke | 274b693 | 2005-11-07 00:59:26 -0800 | [diff] [blame] | 116 | retval = -EINVAL; |
| 117 | goto out_noalloc; |
Abhay Salunke | 6c54c28 | 2005-09-06 15:17:14 -0700 | [diff] [blame] | 118 | } |
Abhay Salunke | 274b693 | 2005-11-07 00:59:26 -0800 | [diff] [blame] | 119 | |
Abhay Salunke | e61c0e3 | 2005-09-16 19:28:04 -0700 | [diff] [blame] | 120 | spin_unlock(&rbu_data.lock); |
Abhay Salunke | 274b693 | 2005-11-07 00:59:26 -0800 | [diff] [blame] | 121 | |
| 122 | newpacket = kzalloc(sizeof (struct packet_data), GFP_KERNEL); |
Abhay Salunke | 6c54c28 | 2005-09-06 15:17:14 -0700 | [diff] [blame] | 123 | |
Abhay Salunke | 6c54c28 | 2005-09-06 15:17:14 -0700 | [diff] [blame] | 124 | if (!newpacket) { |
| 125 | printk(KERN_WARNING |
Abhay Salunke | e61c0e3 | 2005-09-16 19:28:04 -0700 | [diff] [blame] | 126 | "dell_rbu:%s: failed to allocate new " |
Harvey Harrison | eecd585 | 2008-04-29 00:59:19 -0700 | [diff] [blame] | 127 | "packet\n", __func__); |
Abhay Salunke | 274b693 | 2005-11-07 00:59:26 -0800 | [diff] [blame] | 128 | retval = -ENOMEM; |
| 129 | spin_lock(&rbu_data.lock); |
| 130 | goto out_noalloc; |
Abhay Salunke | 6c54c28 | 2005-09-06 15:17:14 -0700 | [diff] [blame] | 131 | } |
| 132 | |
| 133 | ordernum = get_order(length); |
Abhay Salunke | 274b693 | 2005-11-07 00:59:26 -0800 | [diff] [blame] | 134 | |
Abhay Salunke | 6c54c28 | 2005-09-06 15:17:14 -0700 | [diff] [blame] | 135 | /* |
Abhay Salunke | 274b693 | 2005-11-07 00:59:26 -0800 | [diff] [blame] | 136 | * BIOS errata mean we cannot allocate packets below 1MB or they will |
| 137 | * be overwritten by BIOS. |
| 138 | * |
| 139 | * array to temporarily hold packets |
| 140 | * that are below the allocation floor |
| 141 | * |
| 142 | * NOTE: very simplistic because we only need the floor to be at 1MB |
| 143 | * due to BIOS errata. This shouldn't be used for higher floors |
| 144 | * or you will run out of mem trying to allocate the array. |
Abhay Salunke | 6c54c28 | 2005-09-06 15:17:14 -0700 | [diff] [blame] | 145 | */ |
Abhay Salunke | 274b693 | 2005-11-07 00:59:26 -0800 | [diff] [blame] | 146 | packet_array_size = max( |
| 147 | (unsigned int)(allocation_floor / rbu_data.packetsize), |
| 148 | (unsigned int)1); |
| 149 | invalid_addr_packet_array = kzalloc(packet_array_size * sizeof(void*), |
| 150 | GFP_KERNEL); |
Abhay Salunke | 6c54c28 | 2005-09-06 15:17:14 -0700 | [diff] [blame] | 151 | |
Abhay Salunke | 274b693 | 2005-11-07 00:59:26 -0800 | [diff] [blame] | 152 | if (!invalid_addr_packet_array) { |
Abhay Salunke | 6c54c28 | 2005-09-06 15:17:14 -0700 | [diff] [blame] | 153 | printk(KERN_WARNING |
Abhay Salunke | 274b693 | 2005-11-07 00:59:26 -0800 | [diff] [blame] | 154 | "dell_rbu:%s: failed to allocate " |
| 155 | "invalid_addr_packet_array \n", |
Harvey Harrison | eecd585 | 2008-04-29 00:59:19 -0700 | [diff] [blame] | 156 | __func__); |
Abhay Salunke | 274b693 | 2005-11-07 00:59:26 -0800 | [diff] [blame] | 157 | retval = -ENOMEM; |
| 158 | spin_lock(&rbu_data.lock); |
| 159 | goto out_alloc_packet; |
Abhay Salunke | 6c54c28 | 2005-09-06 15:17:14 -0700 | [diff] [blame] | 160 | } |
| 161 | |
Abhay Salunke | 274b693 | 2005-11-07 00:59:26 -0800 | [diff] [blame] | 162 | while (!packet_data_temp_buf) { |
| 163 | packet_data_temp_buf = (unsigned char *) |
| 164 | __get_free_pages(GFP_KERNEL, ordernum); |
| 165 | if (!packet_data_temp_buf) { |
| 166 | printk(KERN_WARNING |
| 167 | "dell_rbu:%s: failed to allocate new " |
Harvey Harrison | eecd585 | 2008-04-29 00:59:19 -0700 | [diff] [blame] | 168 | "packet\n", __func__); |
Abhay Salunke | 274b693 | 2005-11-07 00:59:26 -0800 | [diff] [blame] | 169 | retval = -ENOMEM; |
| 170 | spin_lock(&rbu_data.lock); |
| 171 | goto out_alloc_packet_array; |
| 172 | } |
| 173 | |
| 174 | if ((unsigned long)virt_to_phys(packet_data_temp_buf) |
| 175 | < allocation_floor) { |
| 176 | pr_debug("packet 0x%lx below floor at 0x%lx.\n", |
| 177 | (unsigned long)virt_to_phys( |
| 178 | packet_data_temp_buf), |
| 179 | allocation_floor); |
| 180 | invalid_addr_packet_array[idx++] = packet_data_temp_buf; |
Al Viro | 5ad9201 | 2005-12-15 09:18:00 +0000 | [diff] [blame] | 181 | packet_data_temp_buf = NULL; |
Abhay Salunke | 274b693 | 2005-11-07 00:59:26 -0800 | [diff] [blame] | 182 | } |
| 183 | } |
| 184 | spin_lock(&rbu_data.lock); |
| 185 | |
| 186 | newpacket->data = packet_data_temp_buf; |
| 187 | |
| 188 | pr_debug("create_packet: newpacket at physical addr %lx\n", |
| 189 | (unsigned long)virt_to_phys(newpacket->data)); |
| 190 | |
| 191 | /* packets may not have fixed size */ |
| 192 | newpacket->length = length; |
Abhay Salunke | 6c54c28 | 2005-09-06 15:17:14 -0700 | [diff] [blame] | 193 | newpacket->ordernum = ordernum; |
| 194 | ++rbu_data.num_packets; |
Abhay Salunke | 274b693 | 2005-11-07 00:59:26 -0800 | [diff] [blame] | 195 | |
| 196 | /* initialize the newly created packet headers */ |
Abhay Salunke | 6c54c28 | 2005-09-06 15:17:14 -0700 | [diff] [blame] | 197 | INIT_LIST_HEAD(&newpacket->list); |
| 198 | list_add_tail(&newpacket->list, &packet_data_head.list); |
Abhay Salunke | ad6ce87 | 2005-10-11 08:29:02 -0700 | [diff] [blame] | 199 | |
| 200 | memcpy(newpacket->data, data, length); |
Abhay Salunke | 6c54c28 | 2005-09-06 15:17:14 -0700 | [diff] [blame] | 201 | |
| 202 | pr_debug("create_packet: exit \n"); |
| 203 | |
Abhay Salunke | 274b693 | 2005-11-07 00:59:26 -0800 | [diff] [blame] | 204 | out_alloc_packet_array: |
| 205 | /* always free packet array */ |
| 206 | for (;idx>0;idx--) { |
| 207 | pr_debug("freeing unused packet below floor 0x%lx.\n", |
| 208 | (unsigned long)virt_to_phys( |
| 209 | invalid_addr_packet_array[idx-1])); |
| 210 | free_pages((unsigned long)invalid_addr_packet_array[idx-1], |
| 211 | ordernum); |
| 212 | } |
| 213 | kfree(invalid_addr_packet_array); |
| 214 | |
| 215 | out_alloc_packet: |
| 216 | /* if error, free data */ |
| 217 | if (retval) |
| 218 | kfree(newpacket); |
| 219 | |
| 220 | out_noalloc: |
| 221 | return retval; |
Abhay Salunke | 6c54c28 | 2005-09-06 15:17:14 -0700 | [diff] [blame] | 222 | } |
| 223 | |
Greg Kroah-Hartman | c6c1c94 | 2008-05-29 10:05:08 -0700 | [diff] [blame] | 224 | static int packetize_data(const u8 *data, size_t length) |
Abhay Salunke | 6c54c28 | 2005-09-06 15:17:14 -0700 | [diff] [blame] | 225 | { |
| 226 | int rc = 0; |
Abhay Salunke | ad6ce87 | 2005-10-11 08:29:02 -0700 | [diff] [blame] | 227 | int done = 0; |
| 228 | int packet_length; |
| 229 | u8 *temp; |
| 230 | u8 *end = (u8 *) data + length; |
Zach Brown | cb7cf57 | 2006-10-03 01:16:09 -0700 | [diff] [blame] | 231 | pr_debug("packetize_data: data length %zd\n", length); |
Abhay Salunke | ad6ce87 | 2005-10-11 08:29:02 -0700 | [diff] [blame] | 232 | if (!rbu_data.packetsize) { |
| 233 | printk(KERN_WARNING |
| 234 | "dell_rbu: packetsize not specified\n"); |
| 235 | return -EIO; |
Abhay Salunke | 6c54c28 | 2005-09-06 15:17:14 -0700 | [diff] [blame] | 236 | } |
Abhay Salunke | ad6ce87 | 2005-10-11 08:29:02 -0700 | [diff] [blame] | 237 | |
| 238 | temp = (u8 *) data; |
| 239 | |
| 240 | /* packetize the hunk */ |
| 241 | while (!done) { |
| 242 | if ((temp + rbu_data.packetsize) < end) |
| 243 | packet_length = rbu_data.packetsize; |
| 244 | else { |
| 245 | /* this is the last packet */ |
| 246 | packet_length = end - temp; |
| 247 | done = 1; |
| 248 | } |
| 249 | |
| 250 | if ((rc = create_packet(temp, packet_length))) |
| 251 | return rc; |
| 252 | |
Andrew Morton | 9e42ef7 | 2006-10-11 01:22:13 -0700 | [diff] [blame] | 253 | pr_debug("%p:%td\n", temp, (end - temp)); |
Abhay Salunke | ad6ce87 | 2005-10-11 08:29:02 -0700 | [diff] [blame] | 254 | temp += packet_length; |
| 255 | } |
| 256 | |
| 257 | rbu_data.imagesize = length; |
Abhay Salunke | 6c54c28 | 2005-09-06 15:17:14 -0700 | [diff] [blame] | 258 | |
| 259 | return rc; |
| 260 | } |
| 261 | |
Andrew Morton | dda8577 | 2005-09-16 19:28:05 -0700 | [diff] [blame] | 262 | static int do_packet_read(char *data, struct list_head *ptemp_list, |
Abhay Salunke | e61c0e3 | 2005-09-16 19:28:04 -0700 | [diff] [blame] | 263 | int length, int bytes_read, int *list_read_count) |
Abhay Salunke | 6c54c28 | 2005-09-06 15:17:14 -0700 | [diff] [blame] | 264 | { |
| 265 | void *ptemp_buf; |
| 266 | struct packet_data *newpacket = NULL; |
| 267 | int bytes_copied = 0; |
| 268 | int j = 0; |
| 269 | |
| 270 | newpacket = list_entry(ptemp_list, struct packet_data, list); |
| 271 | *list_read_count += newpacket->length; |
| 272 | |
| 273 | if (*list_read_count > bytes_read) { |
| 274 | /* point to the start of unread data */ |
| 275 | j = newpacket->length - (*list_read_count - bytes_read); |
| 276 | /* point to the offset in the packet buffer */ |
| 277 | ptemp_buf = (u8 *) newpacket->data + j; |
| 278 | /* |
| 279 | * check if there is enough room in |
| 280 | * * the incoming buffer |
| 281 | */ |
| 282 | if (length > (*list_read_count - bytes_read)) |
| 283 | /* |
| 284 | * copy what ever is there in this |
| 285 | * packet and move on |
| 286 | */ |
| 287 | bytes_copied = (*list_read_count - bytes_read); |
| 288 | else |
| 289 | /* copy the remaining */ |
| 290 | bytes_copied = length; |
| 291 | memcpy(data, ptemp_buf, bytes_copied); |
| 292 | } |
| 293 | return bytes_copied; |
| 294 | } |
| 295 | |
Abhay Salunke | ad6ce87 | 2005-10-11 08:29:02 -0700 | [diff] [blame] | 296 | static int packet_read_list(char *data, size_t * pread_length) |
Abhay Salunke | 6c54c28 | 2005-09-06 15:17:14 -0700 | [diff] [blame] | 297 | { |
| 298 | struct list_head *ptemp_list; |
| 299 | int temp_count = 0; |
| 300 | int bytes_copied = 0; |
| 301 | int bytes_read = 0; |
| 302 | int remaining_bytes = 0; |
| 303 | char *pdest = data; |
| 304 | |
| 305 | /* check if we have any packets */ |
| 306 | if (0 == rbu_data.num_packets) |
| 307 | return -ENOMEM; |
| 308 | |
| 309 | remaining_bytes = *pread_length; |
| 310 | bytes_read = rbu_data.packet_read_count; |
| 311 | |
| 312 | ptemp_list = (&packet_data_head.list)->next; |
| 313 | while (!list_empty(ptemp_list)) { |
| 314 | bytes_copied = do_packet_read(pdest, ptemp_list, |
Abhay Salunke | e61c0e3 | 2005-09-16 19:28:04 -0700 | [diff] [blame] | 315 | remaining_bytes, bytes_read, &temp_count); |
Abhay Salunke | 6c54c28 | 2005-09-06 15:17:14 -0700 | [diff] [blame] | 316 | remaining_bytes -= bytes_copied; |
| 317 | bytes_read += bytes_copied; |
| 318 | pdest += bytes_copied; |
| 319 | /* |
| 320 | * check if we reached end of buffer before reaching the |
| 321 | * last packet |
| 322 | */ |
| 323 | if (remaining_bytes == 0) |
| 324 | break; |
| 325 | |
| 326 | ptemp_list = ptemp_list->next; |
| 327 | } |
| 328 | /*finally set the bytes read */ |
| 329 | *pread_length = bytes_read - rbu_data.packet_read_count; |
| 330 | rbu_data.packet_read_count = bytes_read; |
| 331 | return 0; |
| 332 | } |
| 333 | |
Andrew Morton | dda8577 | 2005-09-16 19:28:05 -0700 | [diff] [blame] | 334 | static void packet_empty_list(void) |
Abhay Salunke | 6c54c28 | 2005-09-06 15:17:14 -0700 | [diff] [blame] | 335 | { |
| 336 | struct list_head *ptemp_list; |
| 337 | struct list_head *pnext_list; |
| 338 | struct packet_data *newpacket; |
| 339 | |
| 340 | ptemp_list = (&packet_data_head.list)->next; |
| 341 | while (!list_empty(ptemp_list)) { |
| 342 | newpacket = |
Abhay Salunke | e61c0e3 | 2005-09-16 19:28:04 -0700 | [diff] [blame] | 343 | list_entry(ptemp_list, struct packet_data, list); |
Abhay Salunke | 6c54c28 | 2005-09-06 15:17:14 -0700 | [diff] [blame] | 344 | pnext_list = ptemp_list->next; |
| 345 | list_del(ptemp_list); |
| 346 | ptemp_list = pnext_list; |
| 347 | /* |
| 348 | * zero out the RBU packet memory before freeing |
| 349 | * to make sure there are no stale RBU packets left in memory |
| 350 | */ |
| 351 | memset(newpacket->data, 0, rbu_data.packetsize); |
Abhay Salunke | e61c0e3 | 2005-09-16 19:28:04 -0700 | [diff] [blame] | 352 | free_pages((unsigned long) newpacket->data, |
| 353 | newpacket->ordernum); |
Abhay Salunke | 6c54c28 | 2005-09-06 15:17:14 -0700 | [diff] [blame] | 354 | kfree(newpacket); |
| 355 | } |
Abhay Salunke | 6c54c28 | 2005-09-06 15:17:14 -0700 | [diff] [blame] | 356 | rbu_data.packet_read_count = 0; |
| 357 | rbu_data.num_packets = 0; |
Abhay Salunke | ad6ce87 | 2005-10-11 08:29:02 -0700 | [diff] [blame] | 358 | rbu_data.imagesize = 0; |
Abhay Salunke | 6c54c28 | 2005-09-06 15:17:14 -0700 | [diff] [blame] | 359 | } |
| 360 | |
| 361 | /* |
| 362 | * img_update_free: Frees the buffer allocated for storing BIOS image |
| 363 | * Always called with lock held and returned with lock held |
| 364 | */ |
Andrew Morton | dda8577 | 2005-09-16 19:28:05 -0700 | [diff] [blame] | 365 | static void img_update_free(void) |
Abhay Salunke | 6c54c28 | 2005-09-06 15:17:14 -0700 | [diff] [blame] | 366 | { |
| 367 | if (!rbu_data.image_update_buffer) |
| 368 | return; |
| 369 | /* |
| 370 | * zero out this buffer before freeing it to get rid of any stale |
| 371 | * BIOS image copied in memory. |
| 372 | */ |
| 373 | memset(rbu_data.image_update_buffer, 0, |
Abhay Salunke | e61c0e3 | 2005-09-16 19:28:04 -0700 | [diff] [blame] | 374 | rbu_data.image_update_buffer_size); |
Abhay Salunke | 6c54c28 | 2005-09-06 15:17:14 -0700 | [diff] [blame] | 375 | if (rbu_data.dma_alloc == 1) |
| 376 | dma_free_coherent(NULL, rbu_data.bios_image_size, |
Abhay Salunke | e61c0e3 | 2005-09-16 19:28:04 -0700 | [diff] [blame] | 377 | rbu_data.image_update_buffer, dell_rbu_dmaaddr); |
Abhay Salunke | 6c54c28 | 2005-09-06 15:17:14 -0700 | [diff] [blame] | 378 | else |
Abhay Salunke | e61c0e3 | 2005-09-16 19:28:04 -0700 | [diff] [blame] | 379 | free_pages((unsigned long) rbu_data.image_update_buffer, |
| 380 | rbu_data.image_update_ordernum); |
Abhay Salunke | 6c54c28 | 2005-09-06 15:17:14 -0700 | [diff] [blame] | 381 | |
| 382 | /* |
| 383 | * Re-initialize the rbu_data variables after a free |
| 384 | */ |
| 385 | rbu_data.image_update_ordernum = -1; |
| 386 | rbu_data.image_update_buffer = NULL; |
| 387 | rbu_data.image_update_buffer_size = 0; |
| 388 | rbu_data.bios_image_size = 0; |
| 389 | rbu_data.dma_alloc = 0; |
| 390 | } |
| 391 | |
| 392 | /* |
| 393 | * img_update_realloc: This function allocates the contiguous pages to |
| 394 | * accommodate the requested size of data. The memory address and size |
| 395 | * values are stored globally and on every call to this function the new |
| 396 | * size is checked to see if more data is required than the existing size. |
| 397 | * If true the previous memory is freed and new allocation is done to |
| 398 | * accommodate the new size. If the incoming size is less then than the |
| 399 | * already allocated size, then that memory is reused. This function is |
| 400 | * called with lock held and returns with lock held. |
| 401 | */ |
Andrew Morton | dda8577 | 2005-09-16 19:28:05 -0700 | [diff] [blame] | 402 | static int img_update_realloc(unsigned long size) |
Abhay Salunke | 6c54c28 | 2005-09-06 15:17:14 -0700 | [diff] [blame] | 403 | { |
| 404 | unsigned char *image_update_buffer = NULL; |
| 405 | unsigned long rc; |
| 406 | unsigned long img_buf_phys_addr; |
| 407 | int ordernum; |
| 408 | int dma_alloc = 0; |
| 409 | |
| 410 | /* |
| 411 | * check if the buffer of sufficient size has been |
| 412 | * already allocated |
| 413 | */ |
| 414 | if (rbu_data.image_update_buffer_size >= size) { |
| 415 | /* |
| 416 | * check for corruption |
| 417 | */ |
| 418 | if ((size != 0) && (rbu_data.image_update_buffer == NULL)) { |
| 419 | printk(KERN_ERR "dell_rbu:%s: corruption " |
Harvey Harrison | eecd585 | 2008-04-29 00:59:19 -0700 | [diff] [blame] | 420 | "check failed\n", __func__); |
Abhay Salunke | 6c54c28 | 2005-09-06 15:17:14 -0700 | [diff] [blame] | 421 | return -EINVAL; |
| 422 | } |
| 423 | /* |
| 424 | * we have a valid pre-allocated buffer with |
| 425 | * sufficient size |
| 426 | */ |
| 427 | return 0; |
| 428 | } |
| 429 | |
| 430 | /* |
| 431 | * free any previously allocated buffer |
| 432 | */ |
| 433 | img_update_free(); |
| 434 | |
| 435 | spin_unlock(&rbu_data.lock); |
| 436 | |
| 437 | ordernum = get_order(size); |
| 438 | image_update_buffer = |
Abhay Salunke | e61c0e3 | 2005-09-16 19:28:04 -0700 | [diff] [blame] | 439 | (unsigned char *) __get_free_pages(GFP_KERNEL, ordernum); |
Abhay Salunke | 6c54c28 | 2005-09-06 15:17:14 -0700 | [diff] [blame] | 440 | |
| 441 | img_buf_phys_addr = |
Abhay Salunke | e61c0e3 | 2005-09-16 19:28:04 -0700 | [diff] [blame] | 442 | (unsigned long) virt_to_phys(image_update_buffer); |
Abhay Salunke | 6c54c28 | 2005-09-06 15:17:14 -0700 | [diff] [blame] | 443 | |
| 444 | if (img_buf_phys_addr > BIOS_SCAN_LIMIT) { |
Abhay Salunke | e61c0e3 | 2005-09-16 19:28:04 -0700 | [diff] [blame] | 445 | free_pages((unsigned long) image_update_buffer, ordernum); |
Abhay Salunke | 6c54c28 | 2005-09-06 15:17:14 -0700 | [diff] [blame] | 446 | ordernum = -1; |
| 447 | image_update_buffer = dma_alloc_coherent(NULL, size, |
Abhay Salunke | e61c0e3 | 2005-09-16 19:28:04 -0700 | [diff] [blame] | 448 | &dell_rbu_dmaaddr, GFP_KERNEL); |
Abhay Salunke | 6c54c28 | 2005-09-06 15:17:14 -0700 | [diff] [blame] | 449 | dma_alloc = 1; |
| 450 | } |
| 451 | |
| 452 | spin_lock(&rbu_data.lock); |
| 453 | |
| 454 | if (image_update_buffer != NULL) { |
| 455 | rbu_data.image_update_buffer = image_update_buffer; |
| 456 | rbu_data.image_update_buffer_size = size; |
| 457 | rbu_data.bios_image_size = |
Abhay Salunke | e61c0e3 | 2005-09-16 19:28:04 -0700 | [diff] [blame] | 458 | rbu_data.image_update_buffer_size; |
Abhay Salunke | 6c54c28 | 2005-09-06 15:17:14 -0700 | [diff] [blame] | 459 | rbu_data.image_update_ordernum = ordernum; |
| 460 | rbu_data.dma_alloc = dma_alloc; |
| 461 | rc = 0; |
| 462 | } else { |
| 463 | pr_debug("Not enough memory for image update:" |
Abhay Salunke | e61c0e3 | 2005-09-16 19:28:04 -0700 | [diff] [blame] | 464 | "size = %ld\n", size); |
Abhay Salunke | 6c54c28 | 2005-09-06 15:17:14 -0700 | [diff] [blame] | 465 | rc = -ENOMEM; |
| 466 | } |
| 467 | |
| 468 | return rc; |
| 469 | } |
| 470 | |
Andrew Morton | dda8577 | 2005-09-16 19:28:05 -0700 | [diff] [blame] | 471 | static ssize_t read_packet_data(char *buffer, loff_t pos, size_t count) |
Abhay Salunke | 6c54c28 | 2005-09-06 15:17:14 -0700 | [diff] [blame] | 472 | { |
| 473 | int retval; |
| 474 | size_t bytes_left; |
| 475 | size_t data_length; |
| 476 | char *ptempBuf = buffer; |
Abhay Salunke | 6c54c28 | 2005-09-06 15:17:14 -0700 | [diff] [blame] | 477 | |
| 478 | /* check to see if we have something to return */ |
| 479 | if (rbu_data.num_packets == 0) { |
| 480 | pr_debug("read_packet_data: no packets written\n"); |
| 481 | retval = -ENOMEM; |
| 482 | goto read_rbu_data_exit; |
| 483 | } |
| 484 | |
Abhay Salunke | ad6ce87 | 2005-10-11 08:29:02 -0700 | [diff] [blame] | 485 | if (pos > rbu_data.imagesize) { |
Abhay Salunke | 6c54c28 | 2005-09-06 15:17:14 -0700 | [diff] [blame] | 486 | retval = 0; |
| 487 | printk(KERN_WARNING "dell_rbu:read_packet_data: " |
Abhay Salunke | e61c0e3 | 2005-09-16 19:28:04 -0700 | [diff] [blame] | 488 | "data underrun\n"); |
Abhay Salunke | 6c54c28 | 2005-09-06 15:17:14 -0700 | [diff] [blame] | 489 | goto read_rbu_data_exit; |
| 490 | } |
| 491 | |
Abhay Salunke | ad6ce87 | 2005-10-11 08:29:02 -0700 | [diff] [blame] | 492 | bytes_left = rbu_data.imagesize - pos; |
Abhay Salunke | 6c54c28 | 2005-09-06 15:17:14 -0700 | [diff] [blame] | 493 | data_length = min(bytes_left, count); |
| 494 | |
| 495 | if ((retval = packet_read_list(ptempBuf, &data_length)) < 0) |
| 496 | goto read_rbu_data_exit; |
| 497 | |
Abhay Salunke | ad6ce87 | 2005-10-11 08:29:02 -0700 | [diff] [blame] | 498 | if ((pos + count) > rbu_data.imagesize) { |
Abhay Salunke | 6c54c28 | 2005-09-06 15:17:14 -0700 | [diff] [blame] | 499 | rbu_data.packet_read_count = 0; |
| 500 | /* this was the last copy */ |
| 501 | retval = bytes_left; |
| 502 | } else |
| 503 | retval = count; |
| 504 | |
| 505 | read_rbu_data_exit: |
| 506 | return retval; |
| 507 | } |
| 508 | |
Andrew Morton | dda8577 | 2005-09-16 19:28:05 -0700 | [diff] [blame] | 509 | static ssize_t read_rbu_mono_data(char *buffer, loff_t pos, size_t count) |
Abhay Salunke | 6c54c28 | 2005-09-06 15:17:14 -0700 | [diff] [blame] | 510 | { |
Abhay Salunke | 6c54c28 | 2005-09-06 15:17:14 -0700 | [diff] [blame] | 511 | /* check to see if we have something to return */ |
| 512 | if ((rbu_data.image_update_buffer == NULL) || |
Abhay Salunke | e61c0e3 | 2005-09-16 19:28:04 -0700 | [diff] [blame] | 513 | (rbu_data.bios_image_size == 0)) { |
Abhay Salunke | 6c54c28 | 2005-09-06 15:17:14 -0700 | [diff] [blame] | 514 | pr_debug("read_rbu_data_mono: image_update_buffer %p ," |
Abhay Salunke | e61c0e3 | 2005-09-16 19:28:04 -0700 | [diff] [blame] | 515 | "bios_image_size %lu\n", |
| 516 | rbu_data.image_update_buffer, |
| 517 | rbu_data.bios_image_size); |
Akinobu Mita | 2537747 | 2008-07-25 01:48:27 -0700 | [diff] [blame] | 518 | return -ENOMEM; |
Abhay Salunke | 6c54c28 | 2005-09-06 15:17:14 -0700 | [diff] [blame] | 519 | } |
| 520 | |
Akinobu Mita | 2537747 | 2008-07-25 01:48:27 -0700 | [diff] [blame] | 521 | return memory_read_from_buffer(buffer, count, &pos, |
| 522 | rbu_data.image_update_buffer, rbu_data.bios_image_size); |
Abhay Salunke | 6c54c28 | 2005-09-06 15:17:14 -0700 | [diff] [blame] | 523 | } |
| 524 | |
Chris Wright | 2c3c8be | 2010-05-12 18:28:57 -0700 | [diff] [blame] | 525 | static ssize_t read_rbu_data(struct file *filp, struct kobject *kobj, |
Zhang Rui | 91a6902 | 2007-06-09 13:57:22 +0800 | [diff] [blame] | 526 | struct bin_attribute *bin_attr, |
| 527 | char *buffer, loff_t pos, size_t count) |
Abhay Salunke | 6c54c28 | 2005-09-06 15:17:14 -0700 | [diff] [blame] | 528 | { |
| 529 | ssize_t ret_count = 0; |
| 530 | |
| 531 | spin_lock(&rbu_data.lock); |
| 532 | |
| 533 | if (!strcmp(image_type, "mono")) |
| 534 | ret_count = read_rbu_mono_data(buffer, pos, count); |
| 535 | else if (!strcmp(image_type, "packet")) |
| 536 | ret_count = read_packet_data(buffer, pos, count); |
| 537 | else |
| 538 | pr_debug("read_rbu_data: invalid image type specified\n"); |
| 539 | |
| 540 | spin_unlock(&rbu_data.lock); |
| 541 | return ret_count; |
| 542 | } |
| 543 | |
Andrew Morton | dda8577 | 2005-09-16 19:28:05 -0700 | [diff] [blame] | 544 | static void callbackfn_rbu(const struct firmware *fw, void *context) |
Abhay Salunke | 6c54c28 | 2005-09-06 15:17:14 -0700 | [diff] [blame] | 545 | { |
Abhay Salunke | 2c56084 | 2006-01-14 13:21:14 -0800 | [diff] [blame] | 546 | rbu_data.entry_created = 0; |
Abhay Salunke | 6c54c28 | 2005-09-06 15:17:14 -0700 | [diff] [blame] | 547 | |
Johannes Berg | 9ebfbd4 | 2009-10-29 12:36:02 +0100 | [diff] [blame] | 548 | if (!fw) |
Abhay Salunke | 6c54c28 | 2005-09-06 15:17:14 -0700 | [diff] [blame] | 549 | return; |
| 550 | |
Johannes Berg | 9ebfbd4 | 2009-10-29 12:36:02 +0100 | [diff] [blame] | 551 | if (!fw->size) |
| 552 | goto out; |
| 553 | |
Abhay Salunke | 6c54c28 | 2005-09-06 15:17:14 -0700 | [diff] [blame] | 554 | spin_lock(&rbu_data.lock); |
| 555 | if (!strcmp(image_type, "mono")) { |
| 556 | if (!img_update_realloc(fw->size)) |
| 557 | memcpy(rbu_data.image_update_buffer, |
Abhay Salunke | e61c0e3 | 2005-09-16 19:28:04 -0700 | [diff] [blame] | 558 | fw->data, fw->size); |
Abhay Salunke | 6c54c28 | 2005-09-06 15:17:14 -0700 | [diff] [blame] | 559 | } else if (!strcmp(image_type, "packet")) { |
Abhay Salunke | ad6ce87 | 2005-10-11 08:29:02 -0700 | [diff] [blame] | 560 | /* |
| 561 | * we need to free previous packets if a |
| 562 | * new hunk of packets needs to be downloaded |
| 563 | */ |
| 564 | packet_empty_list(); |
| 565 | if (packetize_data(fw->data, fw->size)) |
| 566 | /* Incase something goes wrong when we are |
| 567 | * in middle of packetizing the data, we |
| 568 | * need to free up whatever packets might |
| 569 | * have been created before we quit. |
| 570 | */ |
Abhay Salunke | 6c54c28 | 2005-09-06 15:17:14 -0700 | [diff] [blame] | 571 | packet_empty_list(); |
Abhay Salunke | 6c54c28 | 2005-09-06 15:17:14 -0700 | [diff] [blame] | 572 | } else |
| 573 | pr_debug("invalid image type specified.\n"); |
| 574 | spin_unlock(&rbu_data.lock); |
Johannes Berg | 9ebfbd4 | 2009-10-29 12:36:02 +0100 | [diff] [blame] | 575 | out: |
| 576 | release_firmware(fw); |
Abhay Salunke | 6c54c28 | 2005-09-06 15:17:14 -0700 | [diff] [blame] | 577 | } |
| 578 | |
Chris Wright | 2c3c8be | 2010-05-12 18:28:57 -0700 | [diff] [blame] | 579 | static ssize_t read_rbu_image_type(struct file *filp, struct kobject *kobj, |
Zhang Rui | 91a6902 | 2007-06-09 13:57:22 +0800 | [diff] [blame] | 580 | struct bin_attribute *bin_attr, |
| 581 | char *buffer, loff_t pos, size_t count) |
Abhay Salunke | e61c0e3 | 2005-09-16 19:28:04 -0700 | [diff] [blame] | 582 | { |
| 583 | int size = 0; |
| 584 | if (!pos) |
Pavel Roskin | 8115692 | 2009-01-17 13:33:03 -0500 | [diff] [blame] | 585 | size = scnprintf(buffer, count, "%s\n", image_type); |
Abhay Salunke | e61c0e3 | 2005-09-16 19:28:04 -0700 | [diff] [blame] | 586 | return size; |
| 587 | } |
| 588 | |
Chris Wright | 2c3c8be | 2010-05-12 18:28:57 -0700 | [diff] [blame] | 589 | static ssize_t write_rbu_image_type(struct file *filp, struct kobject *kobj, |
Zhang Rui | 91a6902 | 2007-06-09 13:57:22 +0800 | [diff] [blame] | 590 | struct bin_attribute *bin_attr, |
| 591 | char *buffer, loff_t pos, size_t count) |
Abhay Salunke | e61c0e3 | 2005-09-16 19:28:04 -0700 | [diff] [blame] | 592 | { |
| 593 | int rc = count; |
| 594 | int req_firm_rc = 0; |
| 595 | int i; |
| 596 | spin_lock(&rbu_data.lock); |
| 597 | /* |
| 598 | * Find the first newline or space |
| 599 | */ |
| 600 | for (i = 0; i < count; ++i) |
| 601 | if (buffer[i] == '\n' || buffer[i] == ' ') { |
| 602 | buffer[i] = '\0'; |
| 603 | break; |
| 604 | } |
| 605 | if (i == count) |
| 606 | buffer[count] = '\0'; |
| 607 | |
| 608 | if (strstr(buffer, "mono")) |
| 609 | strcpy(image_type, "mono"); |
| 610 | else if (strstr(buffer, "packet")) |
| 611 | strcpy(image_type, "packet"); |
| 612 | else if (strstr(buffer, "init")) { |
| 613 | /* |
| 614 | * If due to the user error the driver gets in a bad |
| 615 | * state where even though it is loaded , the |
| 616 | * /sys/class/firmware/dell_rbu entries are missing. |
| 617 | * to cover this situation the user can recreate entries |
| 618 | * by writing init to image_type. |
| 619 | */ |
| 620 | if (!rbu_data.entry_created) { |
| 621 | spin_unlock(&rbu_data.lock); |
| 622 | req_firm_rc = request_firmware_nowait(THIS_MODULE, |
| 623 | FW_ACTION_NOHOTPLUG, "dell_rbu", |
Johannes Berg | 9ebfbd4 | 2009-10-29 12:36:02 +0100 | [diff] [blame] | 624 | &rbu_device->dev, GFP_KERNEL, &context, |
Abhay Salunke | e61c0e3 | 2005-09-16 19:28:04 -0700 | [diff] [blame] | 625 | callbackfn_rbu); |
| 626 | if (req_firm_rc) { |
| 627 | printk(KERN_ERR |
| 628 | "dell_rbu:%s request_firmware_nowait" |
Harvey Harrison | eecd585 | 2008-04-29 00:59:19 -0700 | [diff] [blame] | 629 | " failed %d\n", __func__, rc); |
Abhay Salunke | e61c0e3 | 2005-09-16 19:28:04 -0700 | [diff] [blame] | 630 | rc = -EIO; |
| 631 | } else |
| 632 | rbu_data.entry_created = 1; |
| 633 | |
| 634 | spin_lock(&rbu_data.lock); |
| 635 | } |
| 636 | } else { |
| 637 | printk(KERN_WARNING "dell_rbu: image_type is invalid\n"); |
| 638 | spin_unlock(&rbu_data.lock); |
| 639 | return -EINVAL; |
| 640 | } |
| 641 | |
| 642 | /* we must free all previous allocations */ |
| 643 | packet_empty_list(); |
| 644 | img_update_free(); |
| 645 | spin_unlock(&rbu_data.lock); |
| 646 | |
| 647 | return rc; |
| 648 | } |
| 649 | |
Chris Wright | 2c3c8be | 2010-05-12 18:28:57 -0700 | [diff] [blame] | 650 | static ssize_t read_rbu_packet_size(struct file *filp, struct kobject *kobj, |
Zhang Rui | 91a6902 | 2007-06-09 13:57:22 +0800 | [diff] [blame] | 651 | struct bin_attribute *bin_attr, |
| 652 | char *buffer, loff_t pos, size_t count) |
Abhay Salunke | ad6ce87 | 2005-10-11 08:29:02 -0700 | [diff] [blame] | 653 | { |
| 654 | int size = 0; |
| 655 | if (!pos) { |
| 656 | spin_lock(&rbu_data.lock); |
Pavel Roskin | 8115692 | 2009-01-17 13:33:03 -0500 | [diff] [blame] | 657 | size = scnprintf(buffer, count, "%lu\n", rbu_data.packetsize); |
Abhay Salunke | ad6ce87 | 2005-10-11 08:29:02 -0700 | [diff] [blame] | 658 | spin_unlock(&rbu_data.lock); |
| 659 | } |
| 660 | return size; |
| 661 | } |
| 662 | |
Chris Wright | 2c3c8be | 2010-05-12 18:28:57 -0700 | [diff] [blame] | 663 | static ssize_t write_rbu_packet_size(struct file *filp, struct kobject *kobj, |
Zhang Rui | 91a6902 | 2007-06-09 13:57:22 +0800 | [diff] [blame] | 664 | struct bin_attribute *bin_attr, |
| 665 | char *buffer, loff_t pos, size_t count) |
Abhay Salunke | ad6ce87 | 2005-10-11 08:29:02 -0700 | [diff] [blame] | 666 | { |
| 667 | unsigned long temp; |
| 668 | spin_lock(&rbu_data.lock); |
| 669 | packet_empty_list(); |
| 670 | sscanf(buffer, "%lu", &temp); |
| 671 | if (temp < 0xffffffff) |
| 672 | rbu_data.packetsize = temp; |
| 673 | |
| 674 | spin_unlock(&rbu_data.lock); |
| 675 | return count; |
| 676 | } |
| 677 | |
Abhay Salunke | e61c0e3 | 2005-09-16 19:28:04 -0700 | [diff] [blame] | 678 | static struct bin_attribute rbu_data_attr = { |
Tejun Heo | 7b59575 | 2007-06-14 03:45:17 +0900 | [diff] [blame] | 679 | .attr = {.name = "data", .mode = 0444}, |
Abhay Salunke | e61c0e3 | 2005-09-16 19:28:04 -0700 | [diff] [blame] | 680 | .read = read_rbu_data, |
| 681 | }; |
| 682 | |
| 683 | static struct bin_attribute rbu_image_type_attr = { |
Tejun Heo | 7b59575 | 2007-06-14 03:45:17 +0900 | [diff] [blame] | 684 | .attr = {.name = "image_type", .mode = 0644}, |
Abhay Salunke | e61c0e3 | 2005-09-16 19:28:04 -0700 | [diff] [blame] | 685 | .read = read_rbu_image_type, |
| 686 | .write = write_rbu_image_type, |
| 687 | }; |
| 688 | |
Abhay Salunke | ad6ce87 | 2005-10-11 08:29:02 -0700 | [diff] [blame] | 689 | static struct bin_attribute rbu_packet_size_attr = { |
Tejun Heo | 7b59575 | 2007-06-14 03:45:17 +0900 | [diff] [blame] | 690 | .attr = {.name = "packet_size", .mode = 0644}, |
Abhay Salunke | ad6ce87 | 2005-10-11 08:29:02 -0700 | [diff] [blame] | 691 | .read = read_rbu_packet_size, |
| 692 | .write = write_rbu_packet_size, |
| 693 | }; |
| 694 | |
Andrew Morton | dda8577 | 2005-09-16 19:28:05 -0700 | [diff] [blame] | 695 | static int __init dcdrbu_init(void) |
Abhay Salunke | 6c54c28 | 2005-09-06 15:17:14 -0700 | [diff] [blame] | 696 | { |
Akinobu Mita | 6897083 | 2006-11-16 01:19:25 -0800 | [diff] [blame] | 697 | int rc; |
Abhay Salunke | 6c54c28 | 2005-09-06 15:17:14 -0700 | [diff] [blame] | 698 | spin_lock_init(&rbu_data.lock); |
| 699 | |
| 700 | init_packet_head(); |
Akinobu Mita | 6897083 | 2006-11-16 01:19:25 -0800 | [diff] [blame] | 701 | rbu_device = platform_device_register_simple("dell_rbu", -1, NULL, 0); |
| 702 | if (IS_ERR(rbu_device)) { |
Abhay Salunke | 6c54c28 | 2005-09-06 15:17:14 -0700 | [diff] [blame] | 703 | printk(KERN_ERR |
Abhay Salunke | e61c0e3 | 2005-09-16 19:28:04 -0700 | [diff] [blame] | 704 | "dell_rbu:%s:platform_device_register_simple " |
Harvey Harrison | eecd585 | 2008-04-29 00:59:19 -0700 | [diff] [blame] | 705 | "failed\n", __func__); |
Akinobu Mita | 6897083 | 2006-11-16 01:19:25 -0800 | [diff] [blame] | 706 | return PTR_ERR(rbu_device); |
Abhay Salunke | 6c54c28 | 2005-09-06 15:17:14 -0700 | [diff] [blame] | 707 | } |
| 708 | |
Jeff Garzik | 41bfcfd | 2006-10-11 01:22:20 -0700 | [diff] [blame] | 709 | rc = sysfs_create_bin_file(&rbu_device->dev.kobj, &rbu_data_attr); |
| 710 | if (rc) |
| 711 | goto out_devreg; |
| 712 | rc = sysfs_create_bin_file(&rbu_device->dev.kobj, &rbu_image_type_attr); |
| 713 | if (rc) |
| 714 | goto out_data; |
| 715 | rc = sysfs_create_bin_file(&rbu_device->dev.kobj, |
Abhay Salunke | ad6ce87 | 2005-10-11 08:29:02 -0700 | [diff] [blame] | 716 | &rbu_packet_size_attr); |
Jeff Garzik | 41bfcfd | 2006-10-11 01:22:20 -0700 | [diff] [blame] | 717 | if (rc) |
| 718 | goto out_imtype; |
Abhay Salunke | 6c54c28 | 2005-09-06 15:17:14 -0700 | [diff] [blame] | 719 | |
Abhay Salunke | 2c56084 | 2006-01-14 13:21:14 -0800 | [diff] [blame] | 720 | rbu_data.entry_created = 0; |
Jeff Garzik | 41bfcfd | 2006-10-11 01:22:20 -0700 | [diff] [blame] | 721 | return 0; |
Abhay Salunke | 6c54c28 | 2005-09-06 15:17:14 -0700 | [diff] [blame] | 722 | |
Jeff Garzik | 41bfcfd | 2006-10-11 01:22:20 -0700 | [diff] [blame] | 723 | out_imtype: |
| 724 | sysfs_remove_bin_file(&rbu_device->dev.kobj, &rbu_image_type_attr); |
| 725 | out_data: |
| 726 | sysfs_remove_bin_file(&rbu_device->dev.kobj, &rbu_data_attr); |
| 727 | out_devreg: |
| 728 | platform_device_unregister(rbu_device); |
| 729 | return rc; |
Abhay Salunke | 6c54c28 | 2005-09-06 15:17:14 -0700 | [diff] [blame] | 730 | } |
| 731 | |
Andrew Morton | dda8577 | 2005-09-16 19:28:05 -0700 | [diff] [blame] | 732 | static __exit void dcdrbu_exit(void) |
Abhay Salunke | 6c54c28 | 2005-09-06 15:17:14 -0700 | [diff] [blame] | 733 | { |
| 734 | spin_lock(&rbu_data.lock); |
| 735 | packet_empty_list(); |
| 736 | img_update_free(); |
| 737 | spin_unlock(&rbu_data.lock); |
| 738 | platform_device_unregister(rbu_device); |
| 739 | } |
| 740 | |
| 741 | module_exit(dcdrbu_exit); |
| 742 | module_init(dcdrbu_init); |
Abhay Salunke | 274b693 | 2005-11-07 00:59:26 -0800 | [diff] [blame] | 743 | |
| 744 | /* vim:noet:ts=8:sw=8 |
| 745 | */ |