2 * firmware_class.c - Multi purpose firmware loading support
4 * Copyright (c) 2003 Manuel Estrada Sainz <ranty@debian.org>
6 * Please see Documentation/firmware_class/ for more information.
10 #include <linux/capability.h>
11 #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>
18 #include <linux/mutex.h>
19 #include <linux/kthread.h>
21 #include <linux/firmware.h>
24 #define to_dev(obj) container_of(obj, struct device, kobj)
26 MODULE_AUTHOR("Manuel Estrada Sainz <ranty@debian.org>");
27 MODULE_DESCRIPTION("Multi purpose firmware loading support");
28 MODULE_LICENSE("GPL");
35 FW_STATUS_READY_NOHOTPLUG
,
38 static int loading_timeout
= 10; /* In seconds */
40 /* fw_lock could be moved to 'struct firmware_priv' but since it is just
41 * guarding for corner cases a global lock should be OK */
42 static DEFINE_MUTEX(fw_lock
);
44 struct firmware_priv
{
45 char fw_id
[FIRMWARE_NAME_MAX
];
46 struct completion completion
;
47 struct bin_attribute attr_data
;
51 struct timer_list timeout
;
55 fw_load_abort(struct firmware_priv
*fw_priv
)
57 set_bit(FW_STATUS_ABORT
, &fw_priv
->status
);
59 complete(&fw_priv
->completion
);
63 firmware_timeout_show(struct class *class, char *buf
)
65 return sprintf(buf
, "%d\n", loading_timeout
);
69 * firmware_timeout_store - set number of seconds to wait for firmware
70 * @class: device class pointer
71 * @buf: buffer to scan for timeout value
72 * @count: number of bytes in @buf
74 * Sets the number of seconds to wait for the firmware. Once
75 * this expires an error will be returned to the driver and no
76 * firmware will be provided.
78 * Note: zero means 'wait forever'.
81 firmware_timeout_store(struct class *class, const char *buf
, size_t count
)
83 loading_timeout
= simple_strtol(buf
, NULL
, 10);
84 if (loading_timeout
< 0)
89 static CLASS_ATTR(timeout
, 0644, firmware_timeout_show
, firmware_timeout_store
);
91 static void fw_dev_release(struct device
*dev
);
93 static int firmware_uevent(struct device
*dev
, char **envp
, int num_envp
,
94 char *buffer
, int buffer_size
)
96 struct firmware_priv
*fw_priv
= dev_get_drvdata(dev
);
99 if (!test_bit(FW_STATUS_READY
, &fw_priv
->status
))
102 if (add_uevent_var(envp
, num_envp
, &i
, buffer
, buffer_size
, &len
,
103 "FIRMWARE=%s", fw_priv
->fw_id
))
105 if (add_uevent_var(envp
, num_envp
, &i
, buffer
, buffer_size
, &len
,
106 "TIMEOUT=%i", loading_timeout
))
113 static struct class firmware_class
= {
115 .dev_uevent
= firmware_uevent
,
116 .dev_release
= fw_dev_release
,
119 static ssize_t
firmware_loading_show(struct device
*dev
,
120 struct device_attribute
*attr
, char *buf
)
122 struct firmware_priv
*fw_priv
= dev_get_drvdata(dev
);
123 int loading
= test_bit(FW_STATUS_LOADING
, &fw_priv
->status
);
124 return sprintf(buf
, "%d\n", loading
);
128 * firmware_loading_store - set value in the 'loading' control file
129 * @dev: device pointer
130 * @buf: buffer to scan for loading control value
131 * @count: number of bytes in @buf
133 * The relevant values are:
135 * 1: Start a load, discarding any previous partial load.
136 * 0: Conclude the load and hand the data to the driver code.
137 * -1: Conclude the load with an error and discard any written data.
139 static ssize_t
firmware_loading_store(struct device
*dev
,
140 struct device_attribute
*attr
,
141 const char *buf
, size_t count
)
143 struct firmware_priv
*fw_priv
= dev_get_drvdata(dev
);
144 int loading
= simple_strtol(buf
, NULL
, 10);
148 mutex_lock(&fw_lock
);
150 mutex_unlock(&fw_lock
);
153 vfree(fw_priv
->fw
->data
);
154 fw_priv
->fw
->data
= NULL
;
155 fw_priv
->fw
->size
= 0;
156 fw_priv
->alloc_size
= 0;
157 set_bit(FW_STATUS_LOADING
, &fw_priv
->status
);
158 mutex_unlock(&fw_lock
);
161 if (test_bit(FW_STATUS_LOADING
, &fw_priv
->status
)) {
162 complete(&fw_priv
->completion
);
163 clear_bit(FW_STATUS_LOADING
, &fw_priv
->status
);
168 printk(KERN_ERR
"%s: unexpected value (%d)\n", __FUNCTION__
,
172 fw_load_abort(fw_priv
);
179 static DEVICE_ATTR(loading
, 0644, firmware_loading_show
, firmware_loading_store
);
182 firmware_data_read(struct kobject
*kobj
,
183 char *buffer
, loff_t offset
, size_t count
)
185 struct device
*dev
= to_dev(kobj
);
186 struct firmware_priv
*fw_priv
= dev_get_drvdata(dev
);
188 ssize_t ret_count
= count
;
190 mutex_lock(&fw_lock
);
192 if (!fw
|| test_bit(FW_STATUS_DONE
, &fw_priv
->status
)) {
196 if (offset
> fw
->size
) {
200 if (offset
+ ret_count
> fw
->size
)
201 ret_count
= fw
->size
- offset
;
203 memcpy(buffer
, fw
->data
+ offset
, ret_count
);
205 mutex_unlock(&fw_lock
);
210 fw_realloc_buffer(struct firmware_priv
*fw_priv
, int min_size
)
213 int new_size
= fw_priv
->alloc_size
;
215 if (min_size
<= fw_priv
->alloc_size
)
218 new_size
= ALIGN(min_size
, PAGE_SIZE
);
219 new_data
= vmalloc(new_size
);
221 printk(KERN_ERR
"%s: unable to alloc buffer\n", __FUNCTION__
);
222 /* Make sure that we don't keep incomplete data */
223 fw_load_abort(fw_priv
);
226 fw_priv
->alloc_size
= new_size
;
227 if (fw_priv
->fw
->data
) {
228 memcpy(new_data
, fw_priv
->fw
->data
, fw_priv
->fw
->size
);
229 vfree(fw_priv
->fw
->data
);
231 fw_priv
->fw
->data
= new_data
;
232 BUG_ON(min_size
> fw_priv
->alloc_size
);
237 * firmware_data_write - write method for firmware
238 * @kobj: kobject for the device
239 * @buffer: buffer being written
240 * @offset: buffer offset for write in total data store area
241 * @count: buffer size
243 * Data written to the 'data' attribute will be later handed to
244 * the driver as a firmware image.
247 firmware_data_write(struct kobject
*kobj
,
248 char *buffer
, loff_t offset
, size_t count
)
250 struct device
*dev
= to_dev(kobj
);
251 struct firmware_priv
*fw_priv
= dev_get_drvdata(dev
);
255 if (!capable(CAP_SYS_RAWIO
))
258 mutex_lock(&fw_lock
);
260 if (!fw
|| test_bit(FW_STATUS_DONE
, &fw_priv
->status
)) {
264 retval
= fw_realloc_buffer(fw_priv
, offset
+ count
);
268 memcpy(fw
->data
+ offset
, buffer
, count
);
270 fw
->size
= max_t(size_t, offset
+ count
, fw
->size
);
273 mutex_unlock(&fw_lock
);
277 static struct bin_attribute firmware_attr_data_tmpl
= {
278 .attr
= {.name
= "data", .mode
= 0644, .owner
= THIS_MODULE
},
280 .read
= firmware_data_read
,
281 .write
= firmware_data_write
,
284 static void fw_dev_release(struct device
*dev
)
286 struct firmware_priv
*fw_priv
= dev_get_drvdata(dev
);
291 module_put(THIS_MODULE
);
295 firmware_class_timeout(u_long data
)
297 struct firmware_priv
*fw_priv
= (struct firmware_priv
*) data
;
298 fw_load_abort(fw_priv
);
301 static inline void fw_setup_device_id(struct device
*f_dev
, struct device
*dev
)
303 /* XXX warning we should watch out for name collisions */
304 strlcpy(f_dev
->bus_id
, dev
->bus_id
, BUS_ID_SIZE
);
307 static int fw_register_device(struct device
**dev_p
, const char *fw_name
,
308 struct device
*device
)
311 struct firmware_priv
*fw_priv
= kzalloc(sizeof(*fw_priv
),
313 struct device
*f_dev
= kzalloc(sizeof(*f_dev
), GFP_KERNEL
);
317 if (!fw_priv
|| !f_dev
) {
318 printk(KERN_ERR
"%s: kmalloc failed\n", __FUNCTION__
);
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
);
327 fw_priv
->timeout
.function
= firmware_class_timeout
;
328 fw_priv
->timeout
.data
= (u_long
) fw_priv
;
329 init_timer(&fw_priv
->timeout
);
331 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
);
335 retval
= device_register(f_dev
);
337 printk(KERN_ERR
"%s: device_register failed\n",
350 static int fw_setup_device(struct firmware
*fw
, struct device
**dev_p
,
351 const char *fw_name
, struct device
*device
,
354 struct device
*f_dev
;
355 struct firmware_priv
*fw_priv
;
359 retval
= fw_register_device(&f_dev
, fw_name
, device
);
363 /* Need to pin this module until class device is destroyed */
364 __module_get(THIS_MODULE
);
366 fw_priv
= dev_get_drvdata(f_dev
);
369 retval
= sysfs_create_bin_file(&f_dev
->kobj
, &fw_priv
->attr_data
);
371 printk(KERN_ERR
"%s: sysfs_create_bin_file failed\n",
376 retval
= device_create_file(f_dev
, &dev_attr_loading
);
378 printk(KERN_ERR
"%s: device_create_file failed\n",
384 set_bit(FW_STATUS_READY
, &fw_priv
->status
);
386 set_bit(FW_STATUS_READY_NOHOTPLUG
, &fw_priv
->status
);
391 device_unregister(f_dev
);
397 _request_firmware(const struct firmware
**firmware_p
, const char *name
,
398 struct device
*device
, int uevent
)
400 struct device
*f_dev
;
401 struct firmware_priv
*fw_priv
;
402 struct firmware
*firmware
;
408 *firmware_p
= firmware
= kzalloc(sizeof(*firmware
), GFP_KERNEL
);
410 printk(KERN_ERR
"%s: kmalloc(struct firmware) failed\n",
416 retval
= fw_setup_device(firmware
, &f_dev
, name
, device
, uevent
);
420 fw_priv
= dev_get_drvdata(f_dev
);
423 if (loading_timeout
> 0) {
424 fw_priv
->timeout
.expires
= jiffies
+ loading_timeout
* HZ
;
425 add_timer(&fw_priv
->timeout
);
428 kobject_uevent(&f_dev
->kobj
, KOBJ_ADD
);
429 wait_for_completion(&fw_priv
->completion
);
430 set_bit(FW_STATUS_DONE
, &fw_priv
->status
);
431 del_timer_sync(&fw_priv
->timeout
);
433 wait_for_completion(&fw_priv
->completion
);
435 mutex_lock(&fw_lock
);
436 if (!fw_priv
->fw
->size
|| test_bit(FW_STATUS_ABORT
, &fw_priv
->status
)) {
438 release_firmware(fw_priv
->fw
);
442 mutex_unlock(&fw_lock
);
443 device_unregister(f_dev
);
454 * request_firmware: - send firmware request and wait for it
455 * @firmware_p: pointer to firmware image
456 * @name: name of firmware file
457 * @device: device for which firmware is being loaded
459 * @firmware_p will be used to return a firmware image by the name
460 * of @name for device @device.
462 * Should be called from user context where sleeping is allowed.
464 * @name will be used as $FIRMWARE in the uevent environment and
465 * should be distinctive enough not to be confused with any other
466 * firmware image for this or any other device.
469 request_firmware(const struct firmware
**firmware_p
, const char *name
,
470 struct device
*device
)
473 return _request_firmware(firmware_p
, name
, device
, uevent
);
477 * release_firmware: - release the resource associated with a firmware image
478 * @fw: firmware resource to release
481 release_firmware(const struct firmware
*fw
)
490 struct firmware_work
{
491 struct work_struct work
;
492 struct module
*module
;
494 struct device
*device
;
496 void (*cont
)(const struct firmware
*fw
, void *context
);
501 request_firmware_work_func(void *arg
)
503 struct firmware_work
*fw_work
= arg
;
504 const struct firmware
*fw
;
510 ret
= _request_firmware(&fw
, fw_work
->name
, fw_work
->device
,
513 fw_work
->cont(NULL
, fw_work
->context
);
515 fw_work
->cont(fw
, fw_work
->context
);
516 release_firmware(fw
);
518 module_put(fw_work
->module
);
524 * request_firmware_nowait: asynchronous version of request_firmware
525 * @module: module requesting the firmware
526 * @uevent: sends uevent to copy the firmware image if this flag
527 * is non-zero else the firmware copy must be done manually.
528 * @name: name of firmware file
529 * @device: device for which firmware is being loaded
530 * @context: will be passed over to @cont, and
531 * @fw may be %NULL if firmware request fails.
532 * @cont: function will be called asynchronously when the firmware
535 * Asynchronous variant of request_firmware() for contexts where
536 * it is not possible to sleep.
539 request_firmware_nowait(
540 struct module
*module
, int uevent
,
541 const char *name
, struct device
*device
, void *context
,
542 void (*cont
)(const struct firmware
*fw
, void *context
))
544 struct task_struct
*task
;
545 struct firmware_work
*fw_work
= kmalloc(sizeof (struct firmware_work
),
550 if (!try_module_get(module
)) {
555 *fw_work
= (struct firmware_work
) {
564 task
= kthread_run(request_firmware_work_func
, fw_work
,
565 "firmware/%s", name
);
568 fw_work
->cont(NULL
, fw_work
->context
);
569 module_put(fw_work
->module
);
571 return PTR_ERR(task
);
577 firmware_class_init(void)
580 error
= class_register(&firmware_class
);
582 printk(KERN_ERR
"%s: class_register failed\n", __FUNCTION__
);
585 error
= class_create_file(&firmware_class
, &class_attr_timeout
);
587 printk(KERN_ERR
"%s: class_create_file failed\n",
589 class_unregister(&firmware_class
);
595 firmware_class_exit(void)
597 class_unregister(&firmware_class
);
600 fs_initcall(firmware_class_init
);
601 module_exit(firmware_class_exit
);
603 EXPORT_SYMBOL(release_firmware
);
604 EXPORT_SYMBOL(request_firmware
);
605 EXPORT_SYMBOL(request_firmware_nowait
);