blob: b24efd4e3e3de2c1f681c68936c52eca839cd8ea [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * firmware_class.c - Multi purpose firmware loading support
3 *
Markus Rechberger87d37a42007-06-04 18:45:44 +02004 * Copyright (c) 2003 Manuel Estrada Sainz
Linus Torvalds1da177e2005-04-16 15:20:36 -07005 *
6 * Please see Documentation/firmware_class/ for more information.
7 *
8 */
9
Randy.Dunlapc59ede72006-01-11 12:17:46 -080010#include <linux/capability.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070011#include <linux/device.h>
12#include <linux/module.h>
13#include <linux/init.h>
14#include <linux/timer.h>
15#include <linux/vmalloc.h>
16#include <linux/interrupt.h>
17#include <linux/bitops.h>
Laura Garciacad1e552006-05-23 23:22:38 +020018#include <linux/mutex.h>
Sukadev Bhattiprolu563d0752006-09-29 01:59:31 -070019#include <linux/kthread.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070020
21#include <linux/firmware.h>
22#include "base.h"
23
Greg Kroah-Hartmane55c8792006-09-14 07:30:59 -070024#define to_dev(obj) container_of(obj, struct device, kobj)
25
Markus Rechberger87d37a42007-06-04 18:45:44 +020026MODULE_AUTHOR("Manuel Estrada Sainz");
Linus Torvalds1da177e2005-04-16 15:20:36 -070027MODULE_DESCRIPTION("Multi purpose firmware loading support");
28MODULE_LICENSE("GPL");
29
30enum {
31 FW_STATUS_LOADING,
32 FW_STATUS_DONE,
33 FW_STATUS_ABORT,
Linus Torvalds1da177e2005-04-16 15:20:36 -070034};
35
Dave Jones2f651682007-01-25 15:56:15 -050036static int loading_timeout = 60; /* In seconds */
Linus Torvalds1da177e2005-04-16 15:20:36 -070037
38/* fw_lock could be moved to 'struct firmware_priv' but since it is just
39 * guarding for corner cases a global lock should be OK */
Laura Garciacad1e552006-05-23 23:22:38 +020040static DEFINE_MUTEX(fw_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070041
42struct firmware_priv {
43 char fw_id[FIRMWARE_NAME_MAX];
44 struct completion completion;
45 struct bin_attribute attr_data;
46 struct firmware *fw;
47 unsigned long status;
48 int alloc_size;
49 struct timer_list timeout;
50};
51
Arjan van de Ven858119e2006-01-14 13:20:43 -080052static void
Linus Torvalds1da177e2005-04-16 15:20:36 -070053fw_load_abort(struct firmware_priv *fw_priv)
54{
55 set_bit(FW_STATUS_ABORT, &fw_priv->status);
56 wmb();
57 complete(&fw_priv->completion);
58}
59
60static ssize_t
61firmware_timeout_show(struct class *class, char *buf)
62{
63 return sprintf(buf, "%d\n", loading_timeout);
64}
65
66/**
Randy Dunlapeb8e3172005-10-30 15:03:01 -080067 * firmware_timeout_store - set number of seconds to wait for firmware
68 * @class: device class pointer
69 * @buf: buffer to scan for timeout value
70 * @count: number of bytes in @buf
71 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070072 * Sets the number of seconds to wait for the firmware. Once
Randy Dunlapeb8e3172005-10-30 15:03:01 -080073 * this expires an error will be returned to the driver and no
Linus Torvalds1da177e2005-04-16 15:20:36 -070074 * firmware will be provided.
75 *
Randy Dunlapeb8e3172005-10-30 15:03:01 -080076 * Note: zero means 'wait forever'.
Linus Torvalds1da177e2005-04-16 15:20:36 -070077 **/
78static ssize_t
79firmware_timeout_store(struct class *class, const char *buf, size_t count)
80{
81 loading_timeout = simple_strtol(buf, NULL, 10);
Stanislaw W. Gruszkab92eac02005-06-28 20:44:51 -070082 if (loading_timeout < 0)
83 loading_timeout = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070084 return count;
85}
86
87static CLASS_ATTR(timeout, 0644, firmware_timeout_show, firmware_timeout_store);
88
Greg Kroah-Hartmane55c8792006-09-14 07:30:59 -070089static void fw_dev_release(struct device *dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -070090
Greg Kroah-Hartmane55c8792006-09-14 07:30:59 -070091static int firmware_uevent(struct device *dev, char **envp, int num_envp,
92 char *buffer, int buffer_size)
Linus Torvalds1da177e2005-04-16 15:20:36 -070093{
Greg Kroah-Hartmane55c8792006-09-14 07:30:59 -070094 struct firmware_priv *fw_priv = dev_get_drvdata(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -070095 int i = 0, len = 0;
96
Kay Sievers312c0042005-11-16 09:00:00 +010097 if (add_uevent_var(envp, num_envp, &i, buffer, buffer_size, &len,
98 "FIRMWARE=%s", fw_priv->fw_id))
Linus Torvalds1da177e2005-04-16 15:20:36 -070099 return -ENOMEM;
Kay Sievers312c0042005-11-16 09:00:00 +0100100 if (add_uevent_var(envp, num_envp, &i, buffer, buffer_size, &len,
101 "TIMEOUT=%i", loading_timeout))
kay.sievers@vrfy.org68970892005-04-18 21:57:31 -0700102 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103 envp[i] = NULL;
104
105 return 0;
106}
107
Adrian Bunk1b81d662006-05-20 15:00:16 -0700108static struct class firmware_class = {
109 .name = "firmware",
Greg Kroah-Hartmane55c8792006-09-14 07:30:59 -0700110 .dev_uevent = firmware_uevent,
111 .dev_release = fw_dev_release,
Adrian Bunk1b81d662006-05-20 15:00:16 -0700112};
113
Greg Kroah-Hartmane55c8792006-09-14 07:30:59 -0700114static ssize_t firmware_loading_show(struct device *dev,
115 struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116{
Greg Kroah-Hartmane55c8792006-09-14 07:30:59 -0700117 struct firmware_priv *fw_priv = dev_get_drvdata(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118 int loading = test_bit(FW_STATUS_LOADING, &fw_priv->status);
119 return sprintf(buf, "%d\n", loading);
120}
121
122/**
Randy Dunlapeb8e3172005-10-30 15:03:01 -0800123 * firmware_loading_store - set value in the 'loading' control file
Greg Kroah-Hartmane55c8792006-09-14 07:30:59 -0700124 * @dev: device pointer
Randy Dunlapaf9997e2006-12-22 01:06:52 -0800125 * @attr: device attribute pointer
Randy Dunlapeb8e3172005-10-30 15:03:01 -0800126 * @buf: buffer to scan for loading control value
127 * @count: number of bytes in @buf
128 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129 * The relevant values are:
130 *
131 * 1: Start a load, discarding any previous partial load.
Randy Dunlapeb8e3172005-10-30 15:03:01 -0800132 * 0: Conclude the load and hand the data to the driver code.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133 * -1: Conclude the load with an error and discard any written data.
134 **/
Greg Kroah-Hartmane55c8792006-09-14 07:30:59 -0700135static ssize_t firmware_loading_store(struct device *dev,
136 struct device_attribute *attr,
137 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138{
Greg Kroah-Hartmane55c8792006-09-14 07:30:59 -0700139 struct firmware_priv *fw_priv = dev_get_drvdata(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140 int loading = simple_strtol(buf, NULL, 10);
141
142 switch (loading) {
143 case 1:
Laura Garciacad1e552006-05-23 23:22:38 +0200144 mutex_lock(&fw_lock);
Stanislaw W. Gruszkab92eac02005-06-28 20:44:51 -0700145 if (!fw_priv->fw) {
Laura Garciacad1e552006-05-23 23:22:38 +0200146 mutex_unlock(&fw_lock);
Stanislaw W. Gruszkab92eac02005-06-28 20:44:51 -0700147 break;
148 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149 vfree(fw_priv->fw->data);
150 fw_priv->fw->data = NULL;
151 fw_priv->fw->size = 0;
152 fw_priv->alloc_size = 0;
153 set_bit(FW_STATUS_LOADING, &fw_priv->status);
Laura Garciacad1e552006-05-23 23:22:38 +0200154 mutex_unlock(&fw_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155 break;
156 case 0:
157 if (test_bit(FW_STATUS_LOADING, &fw_priv->status)) {
158 complete(&fw_priv->completion);
159 clear_bit(FW_STATUS_LOADING, &fw_priv->status);
160 break;
161 }
162 /* fallthrough */
163 default:
164 printk(KERN_ERR "%s: unexpected value (%d)\n", __FUNCTION__,
165 loading);
166 /* fallthrough */
167 case -1:
168 fw_load_abort(fw_priv);
169 break;
170 }
171
172 return count;
173}
174
Greg Kroah-Hartmane55c8792006-09-14 07:30:59 -0700175static DEVICE_ATTR(loading, 0644, firmware_loading_show, firmware_loading_store);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176
177static ssize_t
Zhang Rui91a69022007-06-09 13:57:22 +0800178firmware_data_read(struct kobject *kobj, struct bin_attribute *bin_attr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179 char *buffer, loff_t offset, size_t count)
180{
Greg Kroah-Hartmane55c8792006-09-14 07:30:59 -0700181 struct device *dev = to_dev(kobj);
182 struct firmware_priv *fw_priv = dev_get_drvdata(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183 struct firmware *fw;
184 ssize_t ret_count = count;
185
Laura Garciacad1e552006-05-23 23:22:38 +0200186 mutex_lock(&fw_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187 fw = fw_priv->fw;
Stanislaw W. Gruszkab92eac02005-06-28 20:44:51 -0700188 if (!fw || test_bit(FW_STATUS_DONE, &fw_priv->status)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189 ret_count = -ENODEV;
190 goto out;
191 }
192 if (offset > fw->size) {
193 ret_count = 0;
194 goto out;
195 }
196 if (offset + ret_count > fw->size)
197 ret_count = fw->size - offset;
198
199 memcpy(buffer, fw->data + offset, ret_count);
200out:
Laura Garciacad1e552006-05-23 23:22:38 +0200201 mutex_unlock(&fw_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202 return ret_count;
203}
Randy Dunlapeb8e3172005-10-30 15:03:01 -0800204
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205static int
206fw_realloc_buffer(struct firmware_priv *fw_priv, int min_size)
207{
208 u8 *new_data;
Jeff Moyer30560ba2006-02-13 14:52:38 -0800209 int new_size = fw_priv->alloc_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210
211 if (min_size <= fw_priv->alloc_size)
212 return 0;
213
Jeff Moyer30560ba2006-02-13 14:52:38 -0800214 new_size = ALIGN(min_size, PAGE_SIZE);
215 new_data = vmalloc(new_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216 if (!new_data) {
217 printk(KERN_ERR "%s: unable to alloc buffer\n", __FUNCTION__);
218 /* Make sure that we don't keep incomplete data */
219 fw_load_abort(fw_priv);
220 return -ENOMEM;
221 }
Jeff Moyer30560ba2006-02-13 14:52:38 -0800222 fw_priv->alloc_size = new_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223 if (fw_priv->fw->data) {
224 memcpy(new_data, fw_priv->fw->data, fw_priv->fw->size);
225 vfree(fw_priv->fw->data);
226 }
227 fw_priv->fw->data = new_data;
228 BUG_ON(min_size > fw_priv->alloc_size);
229 return 0;
230}
231
232/**
Randy Dunlapeb8e3172005-10-30 15:03:01 -0800233 * firmware_data_write - write method for firmware
Greg Kroah-Hartmane55c8792006-09-14 07:30:59 -0700234 * @kobj: kobject for the device
Randy Dunlap42e61f42007-07-23 21:42:11 -0700235 * @bin_attr: bin_attr structure
Randy Dunlapeb8e3172005-10-30 15:03:01 -0800236 * @buffer: buffer being written
237 * @offset: buffer offset for write in total data store area
238 * @count: buffer size
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239 *
Randy Dunlapeb8e3172005-10-30 15:03:01 -0800240 * Data written to the 'data' attribute will be later handed to
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241 * the driver as a firmware image.
242 **/
243static ssize_t
Zhang Rui91a69022007-06-09 13:57:22 +0800244firmware_data_write(struct kobject *kobj, struct bin_attribute *bin_attr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245 char *buffer, loff_t offset, size_t count)
246{
Greg Kroah-Hartmane55c8792006-09-14 07:30:59 -0700247 struct device *dev = to_dev(kobj);
248 struct firmware_priv *fw_priv = dev_get_drvdata(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249 struct firmware *fw;
250 ssize_t retval;
251
252 if (!capable(CAP_SYS_RAWIO))
253 return -EPERM;
Stanislaw W. Gruszkab92eac02005-06-28 20:44:51 -0700254
Laura Garciacad1e552006-05-23 23:22:38 +0200255 mutex_lock(&fw_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256 fw = fw_priv->fw;
Stanislaw W. Gruszkab92eac02005-06-28 20:44:51 -0700257 if (!fw || test_bit(FW_STATUS_DONE, &fw_priv->status)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258 retval = -ENODEV;
259 goto out;
260 }
261 retval = fw_realloc_buffer(fw_priv, offset + count);
262 if (retval)
263 goto out;
264
265 memcpy(fw->data + offset, buffer, count);
266
267 fw->size = max_t(size_t, offset + count, fw->size);
268 retval = count;
269out:
Laura Garciacad1e552006-05-23 23:22:38 +0200270 mutex_unlock(&fw_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271 return retval;
272}
Randy Dunlapeb8e3172005-10-30 15:03:01 -0800273
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274static struct bin_attribute firmware_attr_data_tmpl = {
Tejun Heo7b595752007-06-14 03:45:17 +0900275 .attr = {.name = "data", .mode = 0644},
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276 .size = 0,
277 .read = firmware_data_read,
278 .write = firmware_data_write,
279};
280
Greg Kroah-Hartmane55c8792006-09-14 07:30:59 -0700281static void fw_dev_release(struct device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282{
Greg Kroah-Hartmane55c8792006-09-14 07:30:59 -0700283 struct firmware_priv *fw_priv = dev_get_drvdata(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284
285 kfree(fw_priv);
Greg Kroah-Hartmane55c8792006-09-14 07:30:59 -0700286 kfree(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287
288 module_put(THIS_MODULE);
289}
290
291static void
292firmware_class_timeout(u_long data)
293{
294 struct firmware_priv *fw_priv = (struct firmware_priv *) data;
295 fw_load_abort(fw_priv);
296}
297
Greg Kroah-Hartmane55c8792006-09-14 07:30:59 -0700298static inline void fw_setup_device_id(struct device *f_dev, struct device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299{
300 /* XXX warning we should watch out for name collisions */
Greg Kroah-Hartmane55c8792006-09-14 07:30:59 -0700301 strlcpy(f_dev->bus_id, dev->bus_id, BUS_ID_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302}
303
Greg Kroah-Hartmane55c8792006-09-14 07:30:59 -0700304static int fw_register_device(struct device **dev_p, const char *fw_name,
305 struct device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306{
307 int retval;
Jiri Slaby4aed0642005-09-13 01:25:01 -0700308 struct firmware_priv *fw_priv = kzalloc(sizeof(*fw_priv),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309 GFP_KERNEL);
Greg Kroah-Hartmane55c8792006-09-14 07:30:59 -0700310 struct device *f_dev = kzalloc(sizeof(*f_dev), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311
Greg Kroah-Hartmane55c8792006-09-14 07:30:59 -0700312 *dev_p = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313
Greg Kroah-Hartmane55c8792006-09-14 07:30:59 -0700314 if (!fw_priv || !f_dev) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315 printk(KERN_ERR "%s: kmalloc failed\n", __FUNCTION__);
316 retval = -ENOMEM;
317 goto error_kfree;
318 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319
320 init_completion(&fw_priv->completion);
321 fw_priv->attr_data = firmware_attr_data_tmpl;
322 strlcpy(fw_priv->fw_id, fw_name, FIRMWARE_NAME_MAX);
323
324 fw_priv->timeout.function = firmware_class_timeout;
325 fw_priv->timeout.data = (u_long) fw_priv;
326 init_timer(&fw_priv->timeout);
327
Greg Kroah-Hartmane55c8792006-09-14 07:30:59 -0700328 fw_setup_device_id(f_dev, device);
329 f_dev->parent = device;
330 f_dev->class = &firmware_class;
331 dev_set_drvdata(f_dev, fw_priv);
Cornelia Huckbdc49602007-03-29 11:12:14 +0200332 f_dev->uevent_suppress = 1;
Greg Kroah-Hartmane55c8792006-09-14 07:30:59 -0700333 retval = device_register(f_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334 if (retval) {
Greg Kroah-Hartmane55c8792006-09-14 07:30:59 -0700335 printk(KERN_ERR "%s: device_register failed\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336 __FUNCTION__);
337 goto error_kfree;
338 }
Greg Kroah-Hartmane55c8792006-09-14 07:30:59 -0700339 *dev_p = f_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340 return 0;
341
342error_kfree:
343 kfree(fw_priv);
Greg Kroah-Hartmane55c8792006-09-14 07:30:59 -0700344 kfree(f_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345 return retval;
346}
347
Greg Kroah-Hartmane55c8792006-09-14 07:30:59 -0700348static int fw_setup_device(struct firmware *fw, struct device **dev_p,
349 const char *fw_name, struct device *device,
350 int uevent)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351{
Greg Kroah-Hartmane55c8792006-09-14 07:30:59 -0700352 struct device *f_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353 struct firmware_priv *fw_priv;
354 int retval;
355
Greg Kroah-Hartmane55c8792006-09-14 07:30:59 -0700356 *dev_p = NULL;
357 retval = fw_register_device(&f_dev, fw_name, device);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358 if (retval)
359 goto out;
360
361 /* Need to pin this module until class device is destroyed */
362 __module_get(THIS_MODULE);
363
Greg Kroah-Hartmane55c8792006-09-14 07:30:59 -0700364 fw_priv = dev_get_drvdata(f_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365
366 fw_priv->fw = fw;
Greg Kroah-Hartmane55c8792006-09-14 07:30:59 -0700367 retval = sysfs_create_bin_file(&f_dev->kobj, &fw_priv->attr_data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368 if (retval) {
369 printk(KERN_ERR "%s: sysfs_create_bin_file failed\n",
370 __FUNCTION__);
371 goto error_unreg;
372 }
373
Greg Kroah-Hartmane55c8792006-09-14 07:30:59 -0700374 retval = device_create_file(f_dev, &dev_attr_loading);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375 if (retval) {
Greg Kroah-Hartmane55c8792006-09-14 07:30:59 -0700376 printk(KERN_ERR "%s: device_create_file failed\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377 __FUNCTION__);
378 goto error_unreg;
379 }
380
Kay Sievers312c0042005-11-16 09:00:00 +0100381 if (uevent)
Cornelia Huckbdc49602007-03-29 11:12:14 +0200382 f_dev->uevent_suppress = 0;
Greg Kroah-Hartmane55c8792006-09-14 07:30:59 -0700383 *dev_p = f_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384 goto out;
385
386error_unreg:
Greg Kroah-Hartmane55c8792006-09-14 07:30:59 -0700387 device_unregister(f_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388out:
389 return retval;
390}
391
Abhay Salunke6e3eaab2005-09-06 15:17:13 -0700392static int
393_request_firmware(const struct firmware **firmware_p, const char *name,
Kay Sievers312c0042005-11-16 09:00:00 +0100394 struct device *device, int uevent)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395{
Greg Kroah-Hartmane55c8792006-09-14 07:30:59 -0700396 struct device *f_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397 struct firmware_priv *fw_priv;
398 struct firmware *firmware;
399 int retval;
400
401 if (!firmware_p)
402 return -EINVAL;
403
Jiri Slaby4aed0642005-09-13 01:25:01 -0700404 *firmware_p = firmware = kzalloc(sizeof(*firmware), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405 if (!firmware) {
406 printk(KERN_ERR "%s: kmalloc(struct firmware) failed\n",
407 __FUNCTION__);
408 retval = -ENOMEM;
409 goto out;
410 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411
Greg Kroah-Hartmane55c8792006-09-14 07:30:59 -0700412 retval = fw_setup_device(firmware, &f_dev, name, device, uevent);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413 if (retval)
414 goto error_kfree_fw;
415
Greg Kroah-Hartmane55c8792006-09-14 07:30:59 -0700416 fw_priv = dev_get_drvdata(f_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417
Kay Sievers312c0042005-11-16 09:00:00 +0100418 if (uevent) {
Abhay Salunke6e3eaab2005-09-06 15:17:13 -0700419 if (loading_timeout > 0) {
420 fw_priv->timeout.expires = jiffies + loading_timeout * HZ;
421 add_timer(&fw_priv->timeout);
422 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423
Greg Kroah-Hartmane55c8792006-09-14 07:30:59 -0700424 kobject_uevent(&f_dev->kobj, KOBJ_ADD);
Abhay Salunke6e3eaab2005-09-06 15:17:13 -0700425 wait_for_completion(&fw_priv->completion);
426 set_bit(FW_STATUS_DONE, &fw_priv->status);
427 del_timer_sync(&fw_priv->timeout);
428 } else
429 wait_for_completion(&fw_priv->completion);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430
Laura Garciacad1e552006-05-23 23:22:38 +0200431 mutex_lock(&fw_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432 if (!fw_priv->fw->size || test_bit(FW_STATUS_ABORT, &fw_priv->status)) {
433 retval = -ENOENT;
434 release_firmware(fw_priv->fw);
435 *firmware_p = NULL;
436 }
437 fw_priv->fw = NULL;
Laura Garciacad1e552006-05-23 23:22:38 +0200438 mutex_unlock(&fw_lock);
Greg Kroah-Hartmane55c8792006-09-14 07:30:59 -0700439 device_unregister(f_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440 goto out;
441
442error_kfree_fw:
443 kfree(firmware);
444 *firmware_p = NULL;
445out:
446 return retval;
447}
448
449/**
Kay Sievers312c0042005-11-16 09:00:00 +0100450 * request_firmware: - send firmware request and wait for it
Randy Dunlapeb8e3172005-10-30 15:03:01 -0800451 * @firmware_p: pointer to firmware image
452 * @name: name of firmware file
453 * @device: device for which firmware is being loaded
454 *
455 * @firmware_p will be used to return a firmware image by the name
Abhay Salunke6e3eaab2005-09-06 15:17:13 -0700456 * of @name for device @device.
457 *
458 * Should be called from user context where sleeping is allowed.
459 *
Kay Sievers312c0042005-11-16 09:00:00 +0100460 * @name will be used as $FIRMWARE in the uevent environment and
Abhay Salunke6e3eaab2005-09-06 15:17:13 -0700461 * should be distinctive enough not to be confused with any other
462 * firmware image for this or any other device.
463 **/
464int
465request_firmware(const struct firmware **firmware_p, const char *name,
466 struct device *device)
467{
Kay Sievers312c0042005-11-16 09:00:00 +0100468 int uevent = 1;
469 return _request_firmware(firmware_p, name, device, uevent);
Abhay Salunke6e3eaab2005-09-06 15:17:13 -0700470}
471
472/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473 * release_firmware: - release the resource associated with a firmware image
Randy Dunlapeb8e3172005-10-30 15:03:01 -0800474 * @fw: firmware resource to release
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475 **/
476void
477release_firmware(const struct firmware *fw)
478{
479 if (fw) {
480 vfree(fw->data);
481 kfree(fw);
482 }
483}
484
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485/* Async support */
486struct firmware_work {
487 struct work_struct work;
488 struct module *module;
489 const char *name;
490 struct device *device;
491 void *context;
492 void (*cont)(const struct firmware *fw, void *context);
Kay Sievers312c0042005-11-16 09:00:00 +0100493 int uevent;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494};
495
496static int
497request_firmware_work_func(void *arg)
498{
499 struct firmware_work *fw_work = arg;
500 const struct firmware *fw;
matthieu castet113fab12005-11-13 16:07:39 -0800501 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502 if (!arg) {
503 WARN_ON(1);
504 return 0;
505 }
matthieu castet113fab12005-11-13 16:07:39 -0800506 ret = _request_firmware(&fw, fw_work->name, fw_work->device,
Kay Sievers312c0042005-11-16 09:00:00 +0100507 fw_work->uevent);
matthieu castet113fab12005-11-13 16:07:39 -0800508 if (ret < 0)
509 fw_work->cont(NULL, fw_work->context);
510 else {
511 fw_work->cont(fw, fw_work->context);
512 release_firmware(fw);
513 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514 module_put(fw_work->module);
515 kfree(fw_work);
matthieu castet113fab12005-11-13 16:07:39 -0800516 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517}
518
519/**
Randy Dunlapeb8e3172005-10-30 15:03:01 -0800520 * request_firmware_nowait: asynchronous version of request_firmware
521 * @module: module requesting the firmware
Kay Sievers312c0042005-11-16 09:00:00 +0100522 * @uevent: sends uevent to copy the firmware image if this flag
Randy Dunlapeb8e3172005-10-30 15:03:01 -0800523 * is non-zero else the firmware copy must be done manually.
524 * @name: name of firmware file
525 * @device: device for which firmware is being loaded
526 * @context: will be passed over to @cont, and
527 * @fw may be %NULL if firmware request fails.
528 * @cont: function will be called asynchronously when the firmware
529 * request is over.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531 * Asynchronous variant of request_firmware() for contexts where
532 * it is not possible to sleep.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533 **/
534int
535request_firmware_nowait(
Kay Sievers312c0042005-11-16 09:00:00 +0100536 struct module *module, int uevent,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537 const char *name, struct device *device, void *context,
538 void (*cont)(const struct firmware *fw, void *context))
539{
Sukadev Bhattiprolu563d0752006-09-29 01:59:31 -0700540 struct task_struct *task;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541 struct firmware_work *fw_work = kmalloc(sizeof (struct firmware_work),
542 GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543
544 if (!fw_work)
545 return -ENOMEM;
546 if (!try_module_get(module)) {
547 kfree(fw_work);
548 return -EFAULT;
549 }
550
551 *fw_work = (struct firmware_work) {
552 .module = module,
553 .name = name,
554 .device = device,
555 .context = context,
556 .cont = cont,
Kay Sievers312c0042005-11-16 09:00:00 +0100557 .uevent = uevent,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558 };
559
Sukadev Bhattiprolu563d0752006-09-29 01:59:31 -0700560 task = kthread_run(request_firmware_work_func, fw_work,
561 "firmware/%s", name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562
Sukadev Bhattiprolu563d0752006-09-29 01:59:31 -0700563 if (IS_ERR(task)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564 fw_work->cont(NULL, fw_work->context);
matthieu castet113fab12005-11-13 16:07:39 -0800565 module_put(fw_work->module);
566 kfree(fw_work);
Sukadev Bhattiprolu563d0752006-09-29 01:59:31 -0700567 return PTR_ERR(task);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568 }
569 return 0;
570}
571
572static int __init
573firmware_class_init(void)
574{
575 int error;
576 error = class_register(&firmware_class);
577 if (error) {
578 printk(KERN_ERR "%s: class_register failed\n", __FUNCTION__);
579 return error;
580 }
581 error = class_create_file(&firmware_class, &class_attr_timeout);
582 if (error) {
583 printk(KERN_ERR "%s: class_create_file failed\n",
584 __FUNCTION__);
585 class_unregister(&firmware_class);
586 }
587 return error;
588
589}
590static void __exit
591firmware_class_exit(void)
592{
593 class_unregister(&firmware_class);
594}
595
Shaohua Lia30a6a22006-09-27 01:50:52 -0700596fs_initcall(firmware_class_init);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597module_exit(firmware_class_exit);
598
599EXPORT_SYMBOL(release_firmware);
600EXPORT_SYMBOL(request_firmware);
601EXPORT_SYMBOL(request_firmware_nowait);