blob: b0be1d18fee23d5c25d865bba20c0a3560546195 [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
David Woodhouse5658c762008-05-23 13:52:42 +010052#ifdef CONFIG_FW_LOADER
53extern struct builtin_fw __start_builtin_fw[];
54extern struct builtin_fw __end_builtin_fw[];
55#else /* Module case. Avoid ifdefs later; it'll all optimise out */
56static struct builtin_fw *__start_builtin_fw;
57static struct builtin_fw *__end_builtin_fw;
58#endif
59
Arjan van de Ven858119e2006-01-14 13:20:43 -080060static void
Linus Torvalds1da177e2005-04-16 15:20:36 -070061fw_load_abort(struct firmware_priv *fw_priv)
62{
63 set_bit(FW_STATUS_ABORT, &fw_priv->status);
64 wmb();
65 complete(&fw_priv->completion);
66}
67
68static ssize_t
69firmware_timeout_show(struct class *class, char *buf)
70{
71 return sprintf(buf, "%d\n", loading_timeout);
72}
73
74/**
Randy Dunlapeb8e3172005-10-30 15:03:01 -080075 * firmware_timeout_store - set number of seconds to wait for firmware
76 * @class: device class pointer
77 * @buf: buffer to scan for timeout value
78 * @count: number of bytes in @buf
79 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070080 * Sets the number of seconds to wait for the firmware. Once
Randy Dunlapeb8e3172005-10-30 15:03:01 -080081 * this expires an error will be returned to the driver and no
Linus Torvalds1da177e2005-04-16 15:20:36 -070082 * firmware will be provided.
83 *
Randy Dunlapeb8e3172005-10-30 15:03:01 -080084 * Note: zero means 'wait forever'.
Linus Torvalds1da177e2005-04-16 15:20:36 -070085 **/
86static ssize_t
87firmware_timeout_store(struct class *class, const char *buf, size_t count)
88{
89 loading_timeout = simple_strtol(buf, NULL, 10);
Stanislaw W. Gruszkab92eac02005-06-28 20:44:51 -070090 if (loading_timeout < 0)
91 loading_timeout = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070092 return count;
93}
94
95static CLASS_ATTR(timeout, 0644, firmware_timeout_show, firmware_timeout_store);
96
Greg Kroah-Hartmane55c8792006-09-14 07:30:59 -070097static void fw_dev_release(struct device *dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -070098
Kay Sievers7eff2e72007-08-14 15:15:12 +020099static int firmware_uevent(struct device *dev, struct kobj_uevent_env *env)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100{
Greg Kroah-Hartmane55c8792006-09-14 07:30:59 -0700101 struct firmware_priv *fw_priv = dev_get_drvdata(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102
Kay Sievers7eff2e72007-08-14 15:15:12 +0200103 if (add_uevent_var(env, "FIRMWARE=%s", fw_priv->fw_id))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104 return -ENOMEM;
Kay Sievers7eff2e72007-08-14 15:15:12 +0200105 if (add_uevent_var(env, "TIMEOUT=%i", loading_timeout))
kay.sievers@vrfy.org68970892005-04-18 21:57:31 -0700106 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107
108 return 0;
109}
110
Adrian Bunk1b81d662006-05-20 15:00:16 -0700111static struct class firmware_class = {
112 .name = "firmware",
Greg Kroah-Hartmane55c8792006-09-14 07:30:59 -0700113 .dev_uevent = firmware_uevent,
114 .dev_release = fw_dev_release,
Adrian Bunk1b81d662006-05-20 15:00:16 -0700115};
116
Greg Kroah-Hartmane55c8792006-09-14 07:30:59 -0700117static ssize_t firmware_loading_show(struct device *dev,
118 struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119{
Greg Kroah-Hartmane55c8792006-09-14 07:30:59 -0700120 struct firmware_priv *fw_priv = dev_get_drvdata(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121 int loading = test_bit(FW_STATUS_LOADING, &fw_priv->status);
122 return sprintf(buf, "%d\n", loading);
123}
124
125/**
Randy Dunlapeb8e3172005-10-30 15:03:01 -0800126 * firmware_loading_store - set value in the 'loading' control file
Greg Kroah-Hartmane55c8792006-09-14 07:30:59 -0700127 * @dev: device pointer
Randy Dunlapaf9997e2006-12-22 01:06:52 -0800128 * @attr: device attribute pointer
Randy Dunlapeb8e3172005-10-30 15:03:01 -0800129 * @buf: buffer to scan for loading control value
130 * @count: number of bytes in @buf
131 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132 * The relevant values are:
133 *
134 * 1: Start a load, discarding any previous partial load.
Randy Dunlapeb8e3172005-10-30 15:03:01 -0800135 * 0: Conclude the load and hand the data to the driver code.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136 * -1: Conclude the load with an error and discard any written data.
137 **/
Greg Kroah-Hartmane55c8792006-09-14 07:30:59 -0700138static ssize_t firmware_loading_store(struct device *dev,
139 struct device_attribute *attr,
140 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141{
Greg Kroah-Hartmane55c8792006-09-14 07:30:59 -0700142 struct firmware_priv *fw_priv = dev_get_drvdata(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143 int loading = simple_strtol(buf, NULL, 10);
144
145 switch (loading) {
146 case 1:
Laura Garciacad1e552006-05-23 23:22:38 +0200147 mutex_lock(&fw_lock);
Stanislaw W. Gruszkab92eac02005-06-28 20:44:51 -0700148 if (!fw_priv->fw) {
Laura Garciacad1e552006-05-23 23:22:38 +0200149 mutex_unlock(&fw_lock);
Stanislaw W. Gruszkab92eac02005-06-28 20:44:51 -0700150 break;
151 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152 vfree(fw_priv->fw->data);
153 fw_priv->fw->data = NULL;
154 fw_priv->fw->size = 0;
155 fw_priv->alloc_size = 0;
156 set_bit(FW_STATUS_LOADING, &fw_priv->status);
Laura Garciacad1e552006-05-23 23:22:38 +0200157 mutex_unlock(&fw_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158 break;
159 case 0:
160 if (test_bit(FW_STATUS_LOADING, &fw_priv->status)) {
161 complete(&fw_priv->completion);
162 clear_bit(FW_STATUS_LOADING, &fw_priv->status);
163 break;
164 }
165 /* fallthrough */
166 default:
Harvey Harrison2b3a3022008-03-04 16:41:05 -0800167 printk(KERN_ERR "%s: unexpected value (%d)\n", __func__,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168 loading);
169 /* fallthrough */
170 case -1:
171 fw_load_abort(fw_priv);
172 break;
173 }
174
175 return count;
176}
177
Greg Kroah-Hartmane55c8792006-09-14 07:30:59 -0700178static DEVICE_ATTR(loading, 0644, firmware_loading_show, firmware_loading_store);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179
180static ssize_t
Zhang Rui91a69022007-06-09 13:57:22 +0800181firmware_data_read(struct kobject *kobj, struct bin_attribute *bin_attr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182 char *buffer, loff_t offset, size_t count)
183{
Greg Kroah-Hartmane55c8792006-09-14 07:30:59 -0700184 struct device *dev = to_dev(kobj);
185 struct firmware_priv *fw_priv = dev_get_drvdata(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186 struct firmware *fw;
187 ssize_t ret_count = count;
188
Laura Garciacad1e552006-05-23 23:22:38 +0200189 mutex_lock(&fw_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190 fw = fw_priv->fw;
Stanislaw W. Gruszkab92eac02005-06-28 20:44:51 -0700191 if (!fw || test_bit(FW_STATUS_DONE, &fw_priv->status)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192 ret_count = -ENODEV;
193 goto out;
194 }
195 if (offset > fw->size) {
196 ret_count = 0;
197 goto out;
198 }
199 if (offset + ret_count > fw->size)
200 ret_count = fw->size - offset;
201
202 memcpy(buffer, fw->data + offset, ret_count);
203out:
Laura Garciacad1e552006-05-23 23:22:38 +0200204 mutex_unlock(&fw_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205 return ret_count;
206}
Randy Dunlapeb8e3172005-10-30 15:03:01 -0800207
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208static int
209fw_realloc_buffer(struct firmware_priv *fw_priv, int min_size)
210{
211 u8 *new_data;
Jeff Moyer30560ba2006-02-13 14:52:38 -0800212 int new_size = fw_priv->alloc_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213
214 if (min_size <= fw_priv->alloc_size)
215 return 0;
216
Jeff Moyer30560ba2006-02-13 14:52:38 -0800217 new_size = ALIGN(min_size, PAGE_SIZE);
218 new_data = vmalloc(new_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219 if (!new_data) {
Harvey Harrison2b3a3022008-03-04 16:41:05 -0800220 printk(KERN_ERR "%s: unable to alloc buffer\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221 /* Make sure that we don't keep incomplete data */
222 fw_load_abort(fw_priv);
223 return -ENOMEM;
224 }
Jeff Moyer30560ba2006-02-13 14:52:38 -0800225 fw_priv->alloc_size = new_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226 if (fw_priv->fw->data) {
227 memcpy(new_data, fw_priv->fw->data, fw_priv->fw->size);
228 vfree(fw_priv->fw->data);
229 }
230 fw_priv->fw->data = new_data;
231 BUG_ON(min_size > fw_priv->alloc_size);
232 return 0;
233}
234
235/**
Randy Dunlapeb8e3172005-10-30 15:03:01 -0800236 * firmware_data_write - write method for firmware
Greg Kroah-Hartmane55c8792006-09-14 07:30:59 -0700237 * @kobj: kobject for the device
Randy Dunlap42e61f42007-07-23 21:42:11 -0700238 * @bin_attr: bin_attr structure
Randy Dunlapeb8e3172005-10-30 15:03:01 -0800239 * @buffer: buffer being written
240 * @offset: buffer offset for write in total data store area
241 * @count: buffer size
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242 *
Randy Dunlapeb8e3172005-10-30 15:03:01 -0800243 * Data written to the 'data' attribute will be later handed to
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244 * the driver as a firmware image.
245 **/
246static ssize_t
Zhang Rui91a69022007-06-09 13:57:22 +0800247firmware_data_write(struct kobject *kobj, struct bin_attribute *bin_attr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248 char *buffer, loff_t offset, size_t count)
249{
Greg Kroah-Hartmane55c8792006-09-14 07:30:59 -0700250 struct device *dev = to_dev(kobj);
251 struct firmware_priv *fw_priv = dev_get_drvdata(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252 struct firmware *fw;
253 ssize_t retval;
254
255 if (!capable(CAP_SYS_RAWIO))
256 return -EPERM;
Stanislaw W. Gruszkab92eac02005-06-28 20:44:51 -0700257
Laura Garciacad1e552006-05-23 23:22:38 +0200258 mutex_lock(&fw_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259 fw = fw_priv->fw;
Stanislaw W. Gruszkab92eac02005-06-28 20:44:51 -0700260 if (!fw || test_bit(FW_STATUS_DONE, &fw_priv->status)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261 retval = -ENODEV;
262 goto out;
263 }
264 retval = fw_realloc_buffer(fw_priv, offset + count);
265 if (retval)
266 goto out;
267
David Woodhouseb7a39bd2008-05-23 18:38:49 +0100268 memcpy((u8 *)fw->data + offset, buffer, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269
270 fw->size = max_t(size_t, offset + count, fw->size);
271 retval = count;
272out:
Laura Garciacad1e552006-05-23 23:22:38 +0200273 mutex_unlock(&fw_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274 return retval;
275}
Randy Dunlapeb8e3172005-10-30 15:03:01 -0800276
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277static struct bin_attribute firmware_attr_data_tmpl = {
Tejun Heo7b595752007-06-14 03:45:17 +0900278 .attr = {.name = "data", .mode = 0644},
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279 .size = 0,
280 .read = firmware_data_read,
281 .write = firmware_data_write,
282};
283
Greg Kroah-Hartmane55c8792006-09-14 07:30:59 -0700284static void fw_dev_release(struct device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285{
Greg Kroah-Hartmane55c8792006-09-14 07:30:59 -0700286 struct firmware_priv *fw_priv = dev_get_drvdata(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287
288 kfree(fw_priv);
Greg Kroah-Hartmane55c8792006-09-14 07:30:59 -0700289 kfree(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290
291 module_put(THIS_MODULE);
292}
293
294static void
295firmware_class_timeout(u_long data)
296{
297 struct firmware_priv *fw_priv = (struct firmware_priv *) data;
298 fw_load_abort(fw_priv);
299}
300
Greg Kroah-Hartmane55c8792006-09-14 07:30:59 -0700301static inline void fw_setup_device_id(struct device *f_dev, struct device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302{
Michael E Brown7d640c42008-01-29 15:35:01 -0600303 /* XXX warning we should watch out for name collisions */
304 strlcpy(f_dev->bus_id, dev->bus_id, BUS_ID_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305}
306
Greg Kroah-Hartmane55c8792006-09-14 07:30:59 -0700307static int fw_register_device(struct device **dev_p, const char *fw_name,
308 struct device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309{
310 int retval;
Jiri Slaby4aed0642005-09-13 01:25:01 -0700311 struct firmware_priv *fw_priv = kzalloc(sizeof(*fw_priv),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312 GFP_KERNEL);
Greg Kroah-Hartmane55c8792006-09-14 07:30:59 -0700313 struct device *f_dev = kzalloc(sizeof(*f_dev), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314
Greg Kroah-Hartmane55c8792006-09-14 07:30:59 -0700315 *dev_p = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316
Greg Kroah-Hartmane55c8792006-09-14 07:30:59 -0700317 if (!fw_priv || !f_dev) {
Harvey Harrison2b3a3022008-03-04 16:41:05 -0800318 printk(KERN_ERR "%s: kmalloc failed\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319 retval = -ENOMEM;
320 goto error_kfree;
321 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322
323 init_completion(&fw_priv->completion);
324 fw_priv->attr_data = firmware_attr_data_tmpl;
325 strlcpy(fw_priv->fw_id, fw_name, FIRMWARE_NAME_MAX);
326
327 fw_priv->timeout.function = firmware_class_timeout;
328 fw_priv->timeout.data = (u_long) fw_priv;
329 init_timer(&fw_priv->timeout);
330
Greg Kroah-Hartmane55c8792006-09-14 07:30:59 -0700331 fw_setup_device_id(f_dev, device);
332 f_dev->parent = device;
333 f_dev->class = &firmware_class;
334 dev_set_drvdata(f_dev, fw_priv);
Cornelia Huckbdc49602007-03-29 11:12:14 +0200335 f_dev->uevent_suppress = 1;
Greg Kroah-Hartmane55c8792006-09-14 07:30:59 -0700336 retval = device_register(f_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337 if (retval) {
Greg Kroah-Hartmane55c8792006-09-14 07:30:59 -0700338 printk(KERN_ERR "%s: device_register failed\n",
Harvey Harrison2b3a3022008-03-04 16:41:05 -0800339 __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340 goto error_kfree;
341 }
Greg Kroah-Hartmane55c8792006-09-14 07:30:59 -0700342 *dev_p = f_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343 return 0;
344
345error_kfree:
346 kfree(fw_priv);
Greg Kroah-Hartmane55c8792006-09-14 07:30:59 -0700347 kfree(f_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348 return retval;
349}
350
Greg Kroah-Hartmane55c8792006-09-14 07:30:59 -0700351static int fw_setup_device(struct firmware *fw, struct device **dev_p,
352 const char *fw_name, struct device *device,
353 int uevent)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354{
Greg Kroah-Hartmane55c8792006-09-14 07:30:59 -0700355 struct device *f_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356 struct firmware_priv *fw_priv;
357 int retval;
358
Greg Kroah-Hartmane55c8792006-09-14 07:30:59 -0700359 *dev_p = NULL;
360 retval = fw_register_device(&f_dev, fw_name, device);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361 if (retval)
362 goto out;
363
364 /* Need to pin this module until class device is destroyed */
365 __module_get(THIS_MODULE);
366
Greg Kroah-Hartmane55c8792006-09-14 07:30:59 -0700367 fw_priv = dev_get_drvdata(f_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368
369 fw_priv->fw = fw;
Greg Kroah-Hartmane55c8792006-09-14 07:30:59 -0700370 retval = sysfs_create_bin_file(&f_dev->kobj, &fw_priv->attr_data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371 if (retval) {
372 printk(KERN_ERR "%s: sysfs_create_bin_file failed\n",
Harvey Harrison2b3a3022008-03-04 16:41:05 -0800373 __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374 goto error_unreg;
375 }
376
Greg Kroah-Hartmane55c8792006-09-14 07:30:59 -0700377 retval = device_create_file(f_dev, &dev_attr_loading);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378 if (retval) {
Greg Kroah-Hartmane55c8792006-09-14 07:30:59 -0700379 printk(KERN_ERR "%s: device_create_file failed\n",
Harvey Harrison2b3a3022008-03-04 16:41:05 -0800380 __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381 goto error_unreg;
382 }
383
Kay Sievers312c0042005-11-16 09:00:00 +0100384 if (uevent)
Cornelia Huckbdc49602007-03-29 11:12:14 +0200385 f_dev->uevent_suppress = 0;
Greg Kroah-Hartmane55c8792006-09-14 07:30:59 -0700386 *dev_p = f_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387 goto out;
388
389error_unreg:
Greg Kroah-Hartmane55c8792006-09-14 07:30:59 -0700390 device_unregister(f_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391out:
392 return retval;
393}
394
Abhay Salunke6e3eaab2005-09-06 15:17:13 -0700395static int
396_request_firmware(const struct firmware **firmware_p, const char *name,
Kay Sievers312c0042005-11-16 09:00:00 +0100397 struct device *device, int uevent)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398{
Greg Kroah-Hartmane55c8792006-09-14 07:30:59 -0700399 struct device *f_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400 struct firmware_priv *fw_priv;
401 struct firmware *firmware;
David Woodhouse5658c762008-05-23 13:52:42 +0100402 struct builtin_fw *builtin;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403 int retval;
404
405 if (!firmware_p)
406 return -EINVAL;
407
Jiri Slaby4aed0642005-09-13 01:25:01 -0700408 *firmware_p = firmware = kzalloc(sizeof(*firmware), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409 if (!firmware) {
410 printk(KERN_ERR "%s: kmalloc(struct firmware) failed\n",
Harvey Harrison2b3a3022008-03-04 16:41:05 -0800411 __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412 retval = -ENOMEM;
413 goto out;
414 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415
David Woodhouse5658c762008-05-23 13:52:42 +0100416 for (builtin = __start_builtin_fw; builtin != __end_builtin_fw;
417 builtin++) {
418 if (strcmp(name, builtin->name))
419 continue;
420 printk(KERN_INFO "firmware: using built-in firmware %s\n",
421 name);
422 firmware->size = builtin->size;
423 firmware->data = builtin->data;
424 return 0;
425 }
426
427 if (uevent)
428 printk(KERN_INFO "firmware: requesting %s\n", name);
429
Greg Kroah-Hartmane55c8792006-09-14 07:30:59 -0700430 retval = fw_setup_device(firmware, &f_dev, name, device, uevent);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431 if (retval)
432 goto error_kfree_fw;
433
Greg Kroah-Hartmane55c8792006-09-14 07:30:59 -0700434 fw_priv = dev_get_drvdata(f_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435
Kay Sievers312c0042005-11-16 09:00:00 +0100436 if (uevent) {
Abhay Salunke6e3eaab2005-09-06 15:17:13 -0700437 if (loading_timeout > 0) {
438 fw_priv->timeout.expires = jiffies + loading_timeout * HZ;
439 add_timer(&fw_priv->timeout);
440 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441
Greg Kroah-Hartmane55c8792006-09-14 07:30:59 -0700442 kobject_uevent(&f_dev->kobj, KOBJ_ADD);
Abhay Salunke6e3eaab2005-09-06 15:17:13 -0700443 wait_for_completion(&fw_priv->completion);
444 set_bit(FW_STATUS_DONE, &fw_priv->status);
445 del_timer_sync(&fw_priv->timeout);
446 } else
447 wait_for_completion(&fw_priv->completion);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448
Laura Garciacad1e552006-05-23 23:22:38 +0200449 mutex_lock(&fw_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450 if (!fw_priv->fw->size || test_bit(FW_STATUS_ABORT, &fw_priv->status)) {
451 retval = -ENOENT;
452 release_firmware(fw_priv->fw);
453 *firmware_p = NULL;
454 }
455 fw_priv->fw = NULL;
Laura Garciacad1e552006-05-23 23:22:38 +0200456 mutex_unlock(&fw_lock);
Greg Kroah-Hartmane55c8792006-09-14 07:30:59 -0700457 device_unregister(f_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458 goto out;
459
460error_kfree_fw:
461 kfree(firmware);
462 *firmware_p = NULL;
463out:
464 return retval;
465}
466
467/**
Kay Sievers312c0042005-11-16 09:00:00 +0100468 * request_firmware: - send firmware request and wait for it
Randy Dunlapeb8e3172005-10-30 15:03:01 -0800469 * @firmware_p: pointer to firmware image
470 * @name: name of firmware file
471 * @device: device for which firmware is being loaded
472 *
473 * @firmware_p will be used to return a firmware image by the name
Abhay Salunke6e3eaab2005-09-06 15:17:13 -0700474 * of @name for device @device.
475 *
476 * Should be called from user context where sleeping is allowed.
477 *
Kay Sievers312c0042005-11-16 09:00:00 +0100478 * @name will be used as $FIRMWARE in the uevent environment and
Abhay Salunke6e3eaab2005-09-06 15:17:13 -0700479 * should be distinctive enough not to be confused with any other
480 * firmware image for this or any other device.
481 **/
482int
483request_firmware(const struct firmware **firmware_p, const char *name,
484 struct device *device)
485{
Kay Sievers312c0042005-11-16 09:00:00 +0100486 int uevent = 1;
487 return _request_firmware(firmware_p, name, device, uevent);
Abhay Salunke6e3eaab2005-09-06 15:17:13 -0700488}
489
490/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491 * release_firmware: - release the resource associated with a firmware image
Randy Dunlapeb8e3172005-10-30 15:03:01 -0800492 * @fw: firmware resource to release
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493 **/
494void
495release_firmware(const struct firmware *fw)
496{
David Woodhouse5658c762008-05-23 13:52:42 +0100497 struct builtin_fw *builtin;
498
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499 if (fw) {
David Woodhouse5658c762008-05-23 13:52:42 +0100500 for (builtin = __start_builtin_fw; builtin != __end_builtin_fw;
501 builtin++) {
502 if (fw->data == builtin->data)
503 goto free_fw;
504 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505 vfree(fw->data);
David Woodhouse5658c762008-05-23 13:52:42 +0100506 free_fw:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507 kfree(fw);
508 }
509}
510
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511/* Async support */
512struct firmware_work {
513 struct work_struct work;
514 struct module *module;
515 const char *name;
516 struct device *device;
517 void *context;
518 void (*cont)(const struct firmware *fw, void *context);
Kay Sievers312c0042005-11-16 09:00:00 +0100519 int uevent;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520};
521
522static int
523request_firmware_work_func(void *arg)
524{
525 struct firmware_work *fw_work = arg;
526 const struct firmware *fw;
matthieu castet113fab12005-11-13 16:07:39 -0800527 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528 if (!arg) {
529 WARN_ON(1);
530 return 0;
531 }
matthieu castet113fab12005-11-13 16:07:39 -0800532 ret = _request_firmware(&fw, fw_work->name, fw_work->device,
Kay Sievers312c0042005-11-16 09:00:00 +0100533 fw_work->uevent);
matthieu castet113fab12005-11-13 16:07:39 -0800534 if (ret < 0)
535 fw_work->cont(NULL, fw_work->context);
536 else {
537 fw_work->cont(fw, fw_work->context);
538 release_firmware(fw);
539 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540 module_put(fw_work->module);
541 kfree(fw_work);
matthieu castet113fab12005-11-13 16:07:39 -0800542 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543}
544
545/**
Randy Dunlapeb8e3172005-10-30 15:03:01 -0800546 * request_firmware_nowait: asynchronous version of request_firmware
547 * @module: module requesting the firmware
Kay Sievers312c0042005-11-16 09:00:00 +0100548 * @uevent: sends uevent to copy the firmware image if this flag
Randy Dunlapeb8e3172005-10-30 15:03:01 -0800549 * is non-zero else the firmware copy must be done manually.
550 * @name: name of firmware file
551 * @device: device for which firmware is being loaded
552 * @context: will be passed over to @cont, and
553 * @fw may be %NULL if firmware request fails.
554 * @cont: function will be called asynchronously when the firmware
555 * request is over.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557 * Asynchronous variant of request_firmware() for contexts where
558 * it is not possible to sleep.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559 **/
560int
561request_firmware_nowait(
Kay Sievers312c0042005-11-16 09:00:00 +0100562 struct module *module, int uevent,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563 const char *name, struct device *device, void *context,
564 void (*cont)(const struct firmware *fw, void *context))
565{
Sukadev Bhattiprolu563d0752006-09-29 01:59:31 -0700566 struct task_struct *task;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567 struct firmware_work *fw_work = kmalloc(sizeof (struct firmware_work),
568 GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569
570 if (!fw_work)
571 return -ENOMEM;
572 if (!try_module_get(module)) {
573 kfree(fw_work);
574 return -EFAULT;
575 }
576
577 *fw_work = (struct firmware_work) {
578 .module = module,
579 .name = name,
580 .device = device,
581 .context = context,
582 .cont = cont,
Kay Sievers312c0042005-11-16 09:00:00 +0100583 .uevent = uevent,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584 };
585
Sukadev Bhattiprolu563d0752006-09-29 01:59:31 -0700586 task = kthread_run(request_firmware_work_func, fw_work,
587 "firmware/%s", name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588
Sukadev Bhattiprolu563d0752006-09-29 01:59:31 -0700589 if (IS_ERR(task)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590 fw_work->cont(NULL, fw_work->context);
matthieu castet113fab12005-11-13 16:07:39 -0800591 module_put(fw_work->module);
592 kfree(fw_work);
Sukadev Bhattiprolu563d0752006-09-29 01:59:31 -0700593 return PTR_ERR(task);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594 }
595 return 0;
596}
597
598static int __init
599firmware_class_init(void)
600{
601 int error;
602 error = class_register(&firmware_class);
603 if (error) {
Harvey Harrison2b3a3022008-03-04 16:41:05 -0800604 printk(KERN_ERR "%s: class_register failed\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605 return error;
606 }
607 error = class_create_file(&firmware_class, &class_attr_timeout);
608 if (error) {
609 printk(KERN_ERR "%s: class_create_file failed\n",
Harvey Harrison2b3a3022008-03-04 16:41:05 -0800610 __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611 class_unregister(&firmware_class);
612 }
613 return error;
614
615}
616static void __exit
617firmware_class_exit(void)
618{
619 class_unregister(&firmware_class);
620}
621
Shaohua Lia30a6a22006-09-27 01:50:52 -0700622fs_initcall(firmware_class_init);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623module_exit(firmware_class_exit);
624
625EXPORT_SYMBOL(release_firmware);
626EXPORT_SYMBOL(request_firmware);
627EXPORT_SYMBOL(request_firmware_nowait);