blob: c378a355bed4fccdd9e63c8c18219751704a3263 [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>
David Woodhouse6e03a202009-04-09 22:04:07 -070020#include <linux/highmem.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070021#include <linux/firmware.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090022#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070023
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
Dmitry Torokhovbcb9bd12010-03-13 23:49:18 -080030/* Builtin firmware support */
31
32#ifdef CONFIG_FW_LOADER
33
34extern struct builtin_fw __start_builtin_fw[];
35extern struct builtin_fw __end_builtin_fw[];
36
37static bool fw_get_builtin_firmware(struct firmware *fw, const char *name)
38{
39 struct builtin_fw *b_fw;
40
41 for (b_fw = __start_builtin_fw; b_fw != __end_builtin_fw; b_fw++) {
42 if (strcmp(name, b_fw->name) == 0) {
43 fw->size = b_fw->size;
44 fw->data = b_fw->data;
45 return true;
46 }
47 }
48
49 return false;
50}
51
52static bool fw_is_builtin_firmware(const struct firmware *fw)
53{
54 struct builtin_fw *b_fw;
55
56 for (b_fw = __start_builtin_fw; b_fw != __end_builtin_fw; b_fw++)
57 if (fw->data == b_fw->data)
58 return true;
59
60 return false;
61}
62
63#else /* Module case - no builtin firmware support */
64
65static inline bool fw_get_builtin_firmware(struct firmware *fw, const char *name)
66{
67 return false;
68}
69
70static inline bool fw_is_builtin_firmware(const struct firmware *fw)
71{
72 return false;
73}
74#endif
75
Linus Torvalds1da177e2005-04-16 15:20:36 -070076enum {
77 FW_STATUS_LOADING,
78 FW_STATUS_DONE,
79 FW_STATUS_ABORT,
Linus Torvalds1da177e2005-04-16 15:20:36 -070080};
81
Dave Jones2f651682007-01-25 15:56:15 -050082static int loading_timeout = 60; /* In seconds */
Linus Torvalds1da177e2005-04-16 15:20:36 -070083
84/* fw_lock could be moved to 'struct firmware_priv' but since it is just
85 * guarding for corner cases a global lock should be OK */
Laura Garciacad1e552006-05-23 23:22:38 +020086static DEFINE_MUTEX(fw_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070087
88struct firmware_priv {
Samuel Ortiz976821d2009-05-27 00:49:31 +020089 char *fw_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -070090 struct completion completion;
91 struct bin_attribute attr_data;
92 struct firmware *fw;
93 unsigned long status;
David Woodhouse6e03a202009-04-09 22:04:07 -070094 struct page **pages;
95 int nr_pages;
96 int page_array_size;
97 const char *vdata;
Linus Torvalds1da177e2005-04-16 15:20:36 -070098 struct timer_list timeout;
Johannes Berge9045f92010-03-29 17:57:20 +020099 bool nowait;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100};
101
Arjan van de Ven858119e2006-01-14 13:20:43 -0800102static void
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103fw_load_abort(struct firmware_priv *fw_priv)
104{
105 set_bit(FW_STATUS_ABORT, &fw_priv->status);
106 wmb();
107 complete(&fw_priv->completion);
108}
109
110static ssize_t
Andi Kleen28812fe2010-01-05 12:48:07 +0100111firmware_timeout_show(struct class *class,
112 struct class_attribute *attr,
113 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114{
115 return sprintf(buf, "%d\n", loading_timeout);
116}
117
118/**
Randy Dunlapeb8e3172005-10-30 15:03:01 -0800119 * firmware_timeout_store - set number of seconds to wait for firmware
120 * @class: device class pointer
Randy Dunlape59817b2010-03-10 11:47:58 -0800121 * @attr: device attribute pointer
Randy Dunlapeb8e3172005-10-30 15:03:01 -0800122 * @buf: buffer to scan for timeout value
123 * @count: number of bytes in @buf
124 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125 * Sets the number of seconds to wait for the firmware. Once
Randy Dunlapeb8e3172005-10-30 15:03:01 -0800126 * this expires an error will be returned to the driver and no
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127 * firmware will be provided.
128 *
Randy Dunlapeb8e3172005-10-30 15:03:01 -0800129 * Note: zero means 'wait forever'.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130 **/
131static ssize_t
Andi Kleen28812fe2010-01-05 12:48:07 +0100132firmware_timeout_store(struct class *class,
133 struct class_attribute *attr,
134 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135{
136 loading_timeout = simple_strtol(buf, NULL, 10);
Stanislaw W. Gruszkab92eac02005-06-28 20:44:51 -0700137 if (loading_timeout < 0)
138 loading_timeout = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139 return count;
140}
141
Dmitry Torokhov673fae92010-03-13 23:49:13 -0800142static struct class_attribute firmware_class_attrs[] = {
143 __ATTR(timeout, S_IWUSR | S_IRUGO,
144 firmware_timeout_show, firmware_timeout_store),
145 __ATTR_NULL
146};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147
Dmitry Torokhov673fae92010-03-13 23:49:13 -0800148static void fw_dev_release(struct device *dev)
149{
150 struct firmware_priv *fw_priv = dev_get_drvdata(dev);
151 int i;
152
153 for (i = 0; i < fw_priv->nr_pages; i++)
154 __free_page(fw_priv->pages[i]);
155 kfree(fw_priv->pages);
156 kfree(fw_priv->fw_id);
157 kfree(fw_priv);
158 kfree(dev);
159
160 module_put(THIS_MODULE);
161}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162
Kay Sievers7eff2e72007-08-14 15:15:12 +0200163static int firmware_uevent(struct device *dev, struct kobj_uevent_env *env)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164{
Greg Kroah-Hartmane55c8792006-09-14 07:30:59 -0700165 struct firmware_priv *fw_priv = dev_get_drvdata(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166
Kay Sievers7eff2e72007-08-14 15:15:12 +0200167 if (add_uevent_var(env, "FIRMWARE=%s", fw_priv->fw_id))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168 return -ENOMEM;
Kay Sievers7eff2e72007-08-14 15:15:12 +0200169 if (add_uevent_var(env, "TIMEOUT=%i", loading_timeout))
kay.sievers@vrfy.org68970892005-04-18 21:57:31 -0700170 return -ENOMEM;
Johannes Berge9045f92010-03-29 17:57:20 +0200171 if (add_uevent_var(env, "ASYNC=%d", fw_priv->nowait))
172 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173
174 return 0;
175}
176
Adrian Bunk1b81d662006-05-20 15:00:16 -0700177static struct class firmware_class = {
178 .name = "firmware",
Dmitry Torokhov673fae92010-03-13 23:49:13 -0800179 .class_attrs = firmware_class_attrs,
Greg Kroah-Hartmane55c8792006-09-14 07:30:59 -0700180 .dev_uevent = firmware_uevent,
181 .dev_release = fw_dev_release,
Adrian Bunk1b81d662006-05-20 15:00:16 -0700182};
183
Greg Kroah-Hartmane55c8792006-09-14 07:30:59 -0700184static ssize_t firmware_loading_show(struct device *dev,
185 struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186{
Greg Kroah-Hartmane55c8792006-09-14 07:30:59 -0700187 struct firmware_priv *fw_priv = dev_get_drvdata(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188 int loading = test_bit(FW_STATUS_LOADING, &fw_priv->status);
189 return sprintf(buf, "%d\n", loading);
190}
191
David Woodhousedd336c52010-05-02 11:21:21 +0300192static void firmware_free_data(const struct firmware *fw)
193{
194 int i;
195 vunmap(fw->data);
196 if (fw->pages) {
197 for (i = 0; i < PFN_UP(fw->size); i++)
198 __free_page(fw->pages[i]);
199 kfree(fw->pages);
200 }
201}
202
David Woodhouse6e03a202009-04-09 22:04:07 -0700203/* Some architectures don't have PAGE_KERNEL_RO */
204#ifndef PAGE_KERNEL_RO
205#define PAGE_KERNEL_RO PAGE_KERNEL
206#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207/**
Randy Dunlapeb8e3172005-10-30 15:03:01 -0800208 * firmware_loading_store - set value in the 'loading' control file
Greg Kroah-Hartmane55c8792006-09-14 07:30:59 -0700209 * @dev: device pointer
Randy Dunlapaf9997e2006-12-22 01:06:52 -0800210 * @attr: device attribute pointer
Randy Dunlapeb8e3172005-10-30 15:03:01 -0800211 * @buf: buffer to scan for loading control value
212 * @count: number of bytes in @buf
213 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214 * The relevant values are:
215 *
216 * 1: Start a load, discarding any previous partial load.
Randy Dunlapeb8e3172005-10-30 15:03:01 -0800217 * 0: Conclude the load and hand the data to the driver code.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218 * -1: Conclude the load with an error and discard any written data.
219 **/
Greg Kroah-Hartmane55c8792006-09-14 07:30:59 -0700220static ssize_t firmware_loading_store(struct device *dev,
221 struct device_attribute *attr,
222 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223{
Greg Kroah-Hartmane55c8792006-09-14 07:30:59 -0700224 struct firmware_priv *fw_priv = dev_get_drvdata(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225 int loading = simple_strtol(buf, NULL, 10);
David Woodhouse6e03a202009-04-09 22:04:07 -0700226 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227
228 switch (loading) {
229 case 1:
Laura Garciacad1e552006-05-23 23:22:38 +0200230 mutex_lock(&fw_lock);
Stanislaw W. Gruszkab92eac02005-06-28 20:44:51 -0700231 if (!fw_priv->fw) {
Laura Garciacad1e552006-05-23 23:22:38 +0200232 mutex_unlock(&fw_lock);
Stanislaw W. Gruszkab92eac02005-06-28 20:44:51 -0700233 break;
234 }
David Woodhousedd336c52010-05-02 11:21:21 +0300235 firmware_free_data(fw_priv->fw);
236 memset(fw_priv->fw, 0, sizeof(struct firmware));
237 /* If the pages are not owned by 'struct firmware' */
David Woodhouse6e03a202009-04-09 22:04:07 -0700238 for (i = 0; i < fw_priv->nr_pages; i++)
239 __free_page(fw_priv->pages[i]);
240 kfree(fw_priv->pages);
241 fw_priv->pages = NULL;
242 fw_priv->page_array_size = 0;
243 fw_priv->nr_pages = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244 set_bit(FW_STATUS_LOADING, &fw_priv->status);
Laura Garciacad1e552006-05-23 23:22:38 +0200245 mutex_unlock(&fw_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246 break;
247 case 0:
248 if (test_bit(FW_STATUS_LOADING, &fw_priv->status)) {
David Woodhousedd336c52010-05-02 11:21:21 +0300249 vunmap(fw_priv->fw->data);
David Woodhouse6e03a202009-04-09 22:04:07 -0700250 fw_priv->fw->data = vmap(fw_priv->pages,
251 fw_priv->nr_pages,
252 0, PAGE_KERNEL_RO);
253 if (!fw_priv->fw->data) {
254 dev_err(dev, "%s: vmap() failed\n", __func__);
255 goto err;
256 }
David Woodhousedd336c52010-05-02 11:21:21 +0300257 /* Pages are now owned by 'struct firmware' */
258 fw_priv->fw->pages = fw_priv->pages;
259 fw_priv->pages = NULL;
260
David Woodhouse6e03a202009-04-09 22:04:07 -0700261 fw_priv->page_array_size = 0;
262 fw_priv->nr_pages = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263 complete(&fw_priv->completion);
264 clear_bit(FW_STATUS_LOADING, &fw_priv->status);
265 break;
266 }
267 /* fallthrough */
268 default:
Bjorn Helgaas266a8132008-10-15 22:04:20 -0700269 dev_err(dev, "%s: unexpected value (%d)\n", __func__, loading);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270 /* fallthrough */
271 case -1:
David Woodhouse6e03a202009-04-09 22:04:07 -0700272 err:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273 fw_load_abort(fw_priv);
274 break;
275 }
276
277 return count;
278}
279
Greg Kroah-Hartmane55c8792006-09-14 07:30:59 -0700280static DEVICE_ATTR(loading, 0644, firmware_loading_show, firmware_loading_store);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281
282static ssize_t
Zhang Rui91a69022007-06-09 13:57:22 +0800283firmware_data_read(struct kobject *kobj, struct bin_attribute *bin_attr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284 char *buffer, loff_t offset, size_t count)
285{
Greg Kroah-Hartmane55c8792006-09-14 07:30:59 -0700286 struct device *dev = to_dev(kobj);
287 struct firmware_priv *fw_priv = dev_get_drvdata(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288 struct firmware *fw;
Akinobu Mitaf37e6612008-07-25 01:48:23 -0700289 ssize_t ret_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290
Laura Garciacad1e552006-05-23 23:22:38 +0200291 mutex_lock(&fw_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292 fw = fw_priv->fw;
Stanislaw W. Gruszkab92eac02005-06-28 20:44:51 -0700293 if (!fw || test_bit(FW_STATUS_DONE, &fw_priv->status)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294 ret_count = -ENODEV;
295 goto out;
296 }
Jiri Slaby308975f2009-06-21 23:57:31 +0200297 if (offset > fw->size) {
298 ret_count = 0;
299 goto out;
300 }
David Woodhouse6e03a202009-04-09 22:04:07 -0700301 if (count > fw->size - offset)
302 count = fw->size - offset;
303
304 ret_count = count;
305
306 while (count) {
307 void *page_data;
308 int page_nr = offset >> PAGE_SHIFT;
309 int page_ofs = offset & (PAGE_SIZE-1);
310 int page_cnt = min_t(size_t, PAGE_SIZE - page_ofs, count);
311
312 page_data = kmap(fw_priv->pages[page_nr]);
313
314 memcpy(buffer, page_data + page_ofs, page_cnt);
315
316 kunmap(fw_priv->pages[page_nr]);
317 buffer += page_cnt;
318 offset += page_cnt;
319 count -= page_cnt;
320 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321out:
Laura Garciacad1e552006-05-23 23:22:38 +0200322 mutex_unlock(&fw_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323 return ret_count;
324}
Randy Dunlapeb8e3172005-10-30 15:03:01 -0800325
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326static int
327fw_realloc_buffer(struct firmware_priv *fw_priv, int min_size)
328{
David Woodhouse6e03a202009-04-09 22:04:07 -0700329 int pages_needed = ALIGN(min_size, PAGE_SIZE) >> PAGE_SHIFT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330
David Woodhouse6e03a202009-04-09 22:04:07 -0700331 /* If the array of pages is too small, grow it... */
332 if (fw_priv->page_array_size < pages_needed) {
333 int new_array_size = max(pages_needed,
334 fw_priv->page_array_size * 2);
335 struct page **new_pages;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336
David Woodhouse6e03a202009-04-09 22:04:07 -0700337 new_pages = kmalloc(new_array_size * sizeof(void *),
338 GFP_KERNEL);
339 if (!new_pages) {
340 fw_load_abort(fw_priv);
341 return -ENOMEM;
342 }
343 memcpy(new_pages, fw_priv->pages,
344 fw_priv->page_array_size * sizeof(void *));
345 memset(&new_pages[fw_priv->page_array_size], 0, sizeof(void *) *
346 (new_array_size - fw_priv->page_array_size));
347 kfree(fw_priv->pages);
348 fw_priv->pages = new_pages;
349 fw_priv->page_array_size = new_array_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350 }
David Woodhouse6e03a202009-04-09 22:04:07 -0700351
352 while (fw_priv->nr_pages < pages_needed) {
353 fw_priv->pages[fw_priv->nr_pages] =
354 alloc_page(GFP_KERNEL | __GFP_HIGHMEM);
355
356 if (!fw_priv->pages[fw_priv->nr_pages]) {
357 fw_load_abort(fw_priv);
358 return -ENOMEM;
359 }
360 fw_priv->nr_pages++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362 return 0;
363}
364
365/**
Randy Dunlapeb8e3172005-10-30 15:03:01 -0800366 * firmware_data_write - write method for firmware
Greg Kroah-Hartmane55c8792006-09-14 07:30:59 -0700367 * @kobj: kobject for the device
Randy Dunlap42e61f42007-07-23 21:42:11 -0700368 * @bin_attr: bin_attr structure
Randy Dunlapeb8e3172005-10-30 15:03:01 -0800369 * @buffer: buffer being written
370 * @offset: buffer offset for write in total data store area
371 * @count: buffer size
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372 *
Randy Dunlapeb8e3172005-10-30 15:03:01 -0800373 * Data written to the 'data' attribute will be later handed to
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374 * the driver as a firmware image.
375 **/
376static ssize_t
Zhang Rui91a69022007-06-09 13:57:22 +0800377firmware_data_write(struct kobject *kobj, struct bin_attribute *bin_attr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378 char *buffer, loff_t offset, size_t count)
379{
Greg Kroah-Hartmane55c8792006-09-14 07:30:59 -0700380 struct device *dev = to_dev(kobj);
381 struct firmware_priv *fw_priv = dev_get_drvdata(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382 struct firmware *fw;
383 ssize_t retval;
384
385 if (!capable(CAP_SYS_RAWIO))
386 return -EPERM;
Stanislaw W. Gruszkab92eac02005-06-28 20:44:51 -0700387
Laura Garciacad1e552006-05-23 23:22:38 +0200388 mutex_lock(&fw_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389 fw = fw_priv->fw;
Stanislaw W. Gruszkab92eac02005-06-28 20:44:51 -0700390 if (!fw || test_bit(FW_STATUS_DONE, &fw_priv->status)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391 retval = -ENODEV;
392 goto out;
393 }
394 retval = fw_realloc_buffer(fw_priv, offset + count);
395 if (retval)
396 goto out;
397
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398 retval = count;
David Woodhouse6e03a202009-04-09 22:04:07 -0700399
400 while (count) {
401 void *page_data;
402 int page_nr = offset >> PAGE_SHIFT;
403 int page_ofs = offset & (PAGE_SIZE - 1);
404 int page_cnt = min_t(size_t, PAGE_SIZE - page_ofs, count);
405
406 page_data = kmap(fw_priv->pages[page_nr]);
407
408 memcpy(page_data + page_ofs, buffer, page_cnt);
409
410 kunmap(fw_priv->pages[page_nr]);
411 buffer += page_cnt;
412 offset += page_cnt;
413 count -= page_cnt;
414 }
415
416 fw->size = max_t(size_t, offset, fw->size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417out:
Laura Garciacad1e552006-05-23 23:22:38 +0200418 mutex_unlock(&fw_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419 return retval;
420}
Randy Dunlapeb8e3172005-10-30 15:03:01 -0800421
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422static struct bin_attribute firmware_attr_data_tmpl = {
Tejun Heo7b595752007-06-14 03:45:17 +0900423 .attr = {.name = "data", .mode = 0644},
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424 .size = 0,
425 .read = firmware_data_read,
426 .write = firmware_data_write,
427};
428
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429static void
430firmware_class_timeout(u_long data)
431{
432 struct firmware_priv *fw_priv = (struct firmware_priv *) data;
433 fw_load_abort(fw_priv);
434}
435
Greg Kroah-Hartmane55c8792006-09-14 07:30:59 -0700436static int fw_register_device(struct device **dev_p, const char *fw_name,
437 struct device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438{
439 int retval;
Jiri Slaby4aed0642005-09-13 01:25:01 -0700440 struct firmware_priv *fw_priv = kzalloc(sizeof(*fw_priv),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441 GFP_KERNEL);
Greg Kroah-Hartmane55c8792006-09-14 07:30:59 -0700442 struct device *f_dev = kzalloc(sizeof(*f_dev), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443
Greg Kroah-Hartmane55c8792006-09-14 07:30:59 -0700444 *dev_p = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445
Greg Kroah-Hartmane55c8792006-09-14 07:30:59 -0700446 if (!fw_priv || !f_dev) {
Bjorn Helgaas266a8132008-10-15 22:04:20 -0700447 dev_err(device, "%s: kmalloc failed\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448 retval = -ENOMEM;
449 goto error_kfree;
450 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451
452 init_completion(&fw_priv->completion);
453 fw_priv->attr_data = firmware_attr_data_tmpl;
Samuel Ortiz976821d2009-05-27 00:49:31 +0200454 fw_priv->fw_id = kstrdup(fw_name, GFP_KERNEL);
455 if (!fw_priv->fw_id) {
456 dev_err(device, "%s: Firmware name allocation failed\n",
457 __func__);
458 retval = -ENOMEM;
459 goto error_kfree;
460 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461
462 fw_priv->timeout.function = firmware_class_timeout;
463 fw_priv->timeout.data = (u_long) fw_priv;
464 init_timer(&fw_priv->timeout);
465
Greg Kroah-Hartmanacc0e902009-06-02 15:39:55 -0700466 dev_set_name(f_dev, "%s", dev_name(device));
Greg Kroah-Hartmane55c8792006-09-14 07:30:59 -0700467 f_dev->parent = device;
468 f_dev->class = &firmware_class;
469 dev_set_drvdata(f_dev, fw_priv);
Ming Leif67f1292009-03-01 21:10:49 +0800470 dev_set_uevent_suppress(f_dev, 1);
Greg Kroah-Hartmane55c8792006-09-14 07:30:59 -0700471 retval = device_register(f_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472 if (retval) {
Bjorn Helgaas266a8132008-10-15 22:04:20 -0700473 dev_err(device, "%s: device_register failed\n", __func__);
Ming Lei6acf70f2009-04-23 22:31:52 +0800474 put_device(f_dev);
Catalin Marinas0f2f2222009-07-08 11:17:40 +0100475 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476 }
Greg Kroah-Hartmane55c8792006-09-14 07:30:59 -0700477 *dev_p = f_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478 return 0;
479
480error_kfree:
Greg Kroah-Hartmane55c8792006-09-14 07:30:59 -0700481 kfree(f_dev);
Ming Lei6acf70f2009-04-23 22:31:52 +0800482 kfree(fw_priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483 return retval;
484}
485
Greg Kroah-Hartmane55c8792006-09-14 07:30:59 -0700486static int fw_setup_device(struct firmware *fw, struct device **dev_p,
487 const char *fw_name, struct device *device,
Johannes Berge9045f92010-03-29 17:57:20 +0200488 int uevent, bool nowait)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489{
Greg Kroah-Hartmane55c8792006-09-14 07:30:59 -0700490 struct device *f_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491 struct firmware_priv *fw_priv;
492 int retval;
493
Greg Kroah-Hartmane55c8792006-09-14 07:30:59 -0700494 *dev_p = NULL;
495 retval = fw_register_device(&f_dev, fw_name, device);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496 if (retval)
497 goto out;
498
499 /* Need to pin this module until class device is destroyed */
500 __module_get(THIS_MODULE);
501
Greg Kroah-Hartmane55c8792006-09-14 07:30:59 -0700502 fw_priv = dev_get_drvdata(f_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503
Johannes Berge9045f92010-03-29 17:57:20 +0200504 fw_priv->nowait = nowait;
505
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506 fw_priv->fw = fw;
Jiri Kosinae1955ca2010-03-09 19:30:28 +0100507 sysfs_bin_attr_init(&fw_priv->attr_data);
Greg Kroah-Hartmane55c8792006-09-14 07:30:59 -0700508 retval = sysfs_create_bin_file(&f_dev->kobj, &fw_priv->attr_data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509 if (retval) {
Bjorn Helgaas266a8132008-10-15 22:04:20 -0700510 dev_err(device, "%s: sysfs_create_bin_file failed\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511 goto error_unreg;
512 }
513
Greg Kroah-Hartmane55c8792006-09-14 07:30:59 -0700514 retval = device_create_file(f_dev, &dev_attr_loading);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515 if (retval) {
Bjorn Helgaas266a8132008-10-15 22:04:20 -0700516 dev_err(device, "%s: device_create_file failed\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517 goto error_unreg;
518 }
519
Kay Sievers312c0042005-11-16 09:00:00 +0100520 if (uevent)
Ming Leif67f1292009-03-01 21:10:49 +0800521 dev_set_uevent_suppress(f_dev, 0);
Greg Kroah-Hartmane55c8792006-09-14 07:30:59 -0700522 *dev_p = f_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523 goto out;
524
525error_unreg:
Greg Kroah-Hartmane55c8792006-09-14 07:30:59 -0700526 device_unregister(f_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527out:
528 return retval;
529}
530
Abhay Salunke6e3eaab2005-09-06 15:17:13 -0700531static int
532_request_firmware(const struct firmware **firmware_p, const char *name,
Johannes Berge9045f92010-03-29 17:57:20 +0200533 struct device *device, int uevent, bool nowait)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534{
Greg Kroah-Hartmane55c8792006-09-14 07:30:59 -0700535 struct device *f_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536 struct firmware_priv *fw_priv;
537 struct firmware *firmware;
538 int retval;
539
540 if (!firmware_p)
541 return -EINVAL;
542
Jiri Slaby4aed0642005-09-13 01:25:01 -0700543 *firmware_p = firmware = kzalloc(sizeof(*firmware), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544 if (!firmware) {
Bjorn Helgaas266a8132008-10-15 22:04:20 -0700545 dev_err(device, "%s: kmalloc(struct firmware) failed\n",
546 __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547 retval = -ENOMEM;
548 goto out;
549 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550
Dmitry Torokhovbcb9bd12010-03-13 23:49:18 -0800551 if (fw_get_builtin_firmware(firmware, name)) {
Rafael J. Wysocki6f18ff92010-02-27 21:43:22 +0100552 dev_dbg(device, "firmware: using built-in firmware %s\n", name);
David Woodhouse5658c762008-05-23 13:52:42 +0100553 return 0;
554 }
555
556 if (uevent)
Rafael J. Wysocki6f18ff92010-02-27 21:43:22 +0100557 dev_dbg(device, "firmware: requesting %s\n", name);
David Woodhouse5658c762008-05-23 13:52:42 +0100558
Johannes Berge9045f92010-03-29 17:57:20 +0200559 retval = fw_setup_device(firmware, &f_dev, name, device,
560 uevent, nowait);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561 if (retval)
562 goto error_kfree_fw;
563
Greg Kroah-Hartmane55c8792006-09-14 07:30:59 -0700564 fw_priv = dev_get_drvdata(f_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565
Kay Sievers312c0042005-11-16 09:00:00 +0100566 if (uevent) {
Abhay Salunke6e3eaab2005-09-06 15:17:13 -0700567 if (loading_timeout > 0) {
568 fw_priv->timeout.expires = jiffies + loading_timeout * HZ;
569 add_timer(&fw_priv->timeout);
570 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571
Greg Kroah-Hartmane55c8792006-09-14 07:30:59 -0700572 kobject_uevent(&f_dev->kobj, KOBJ_ADD);
Abhay Salunke6e3eaab2005-09-06 15:17:13 -0700573 wait_for_completion(&fw_priv->completion);
574 set_bit(FW_STATUS_DONE, &fw_priv->status);
575 del_timer_sync(&fw_priv->timeout);
576 } else
577 wait_for_completion(&fw_priv->completion);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578
Laura Garciacad1e552006-05-23 23:22:38 +0200579 mutex_lock(&fw_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580 if (!fw_priv->fw->size || test_bit(FW_STATUS_ABORT, &fw_priv->status)) {
581 retval = -ENOENT;
582 release_firmware(fw_priv->fw);
583 *firmware_p = NULL;
584 }
585 fw_priv->fw = NULL;
Laura Garciacad1e552006-05-23 23:22:38 +0200586 mutex_unlock(&fw_lock);
Greg Kroah-Hartmane55c8792006-09-14 07:30:59 -0700587 device_unregister(f_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588 goto out;
589
590error_kfree_fw:
591 kfree(firmware);
592 *firmware_p = NULL;
593out:
594 return retval;
595}
596
597/**
Kay Sievers312c0042005-11-16 09:00:00 +0100598 * request_firmware: - send firmware request and wait for it
Randy Dunlapeb8e3172005-10-30 15:03:01 -0800599 * @firmware_p: pointer to firmware image
600 * @name: name of firmware file
601 * @device: device for which firmware is being loaded
602 *
603 * @firmware_p will be used to return a firmware image by the name
Abhay Salunke6e3eaab2005-09-06 15:17:13 -0700604 * of @name for device @device.
605 *
606 * Should be called from user context where sleeping is allowed.
607 *
Kay Sievers312c0042005-11-16 09:00:00 +0100608 * @name will be used as $FIRMWARE in the uevent environment and
Abhay Salunke6e3eaab2005-09-06 15:17:13 -0700609 * should be distinctive enough not to be confused with any other
610 * firmware image for this or any other device.
611 **/
612int
613request_firmware(const struct firmware **firmware_p, const char *name,
614 struct device *device)
615{
Kay Sievers312c0042005-11-16 09:00:00 +0100616 int uevent = 1;
Johannes Berge9045f92010-03-29 17:57:20 +0200617 return _request_firmware(firmware_p, name, device, uevent, false);
Abhay Salunke6e3eaab2005-09-06 15:17:13 -0700618}
619
620/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621 * release_firmware: - release the resource associated with a firmware image
Randy Dunlapeb8e3172005-10-30 15:03:01 -0800622 * @fw: firmware resource to release
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623 **/
Dmitry Torokhovbcb9bd12010-03-13 23:49:18 -0800624void release_firmware(const struct firmware *fw)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625{
626 if (fw) {
Dmitry Torokhovbcb9bd12010-03-13 23:49:18 -0800627 if (!fw_is_builtin_firmware(fw))
628 firmware_free_data(fw);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629 kfree(fw);
630 }
631}
632
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633/* Async support */
634struct firmware_work {
635 struct work_struct work;
636 struct module *module;
637 const char *name;
638 struct device *device;
639 void *context;
640 void (*cont)(const struct firmware *fw, void *context);
Kay Sievers312c0042005-11-16 09:00:00 +0100641 int uevent;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642};
643
644static int
645request_firmware_work_func(void *arg)
646{
647 struct firmware_work *fw_work = arg;
648 const struct firmware *fw;
matthieu castet113fab12005-11-13 16:07:39 -0800649 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650 if (!arg) {
651 WARN_ON(1);
652 return 0;
653 }
matthieu castet113fab12005-11-13 16:07:39 -0800654 ret = _request_firmware(&fw, fw_work->name, fw_work->device,
Johannes Berge9045f92010-03-29 17:57:20 +0200655 fw_work->uevent, true);
Johannes Berg9ebfbd42009-10-29 12:36:02 +0100656
657 fw_work->cont(fw, fw_work->context);
658
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659 module_put(fw_work->module);
660 kfree(fw_work);
matthieu castet113fab12005-11-13 16:07:39 -0800661 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662}
663
664/**
Ben Hutchings3c31f072010-02-14 14:18:53 +0000665 * request_firmware_nowait - asynchronous version of request_firmware
Randy Dunlapeb8e3172005-10-30 15:03:01 -0800666 * @module: module requesting the firmware
Kay Sievers312c0042005-11-16 09:00:00 +0100667 * @uevent: sends uevent to copy the firmware image if this flag
Randy Dunlapeb8e3172005-10-30 15:03:01 -0800668 * is non-zero else the firmware copy must be done manually.
669 * @name: name of firmware file
670 * @device: device for which firmware is being loaded
Johannes Berg9ebfbd42009-10-29 12:36:02 +0100671 * @gfp: allocation flags
Randy Dunlapeb8e3172005-10-30 15:03:01 -0800672 * @context: will be passed over to @cont, and
673 * @fw may be %NULL if firmware request fails.
674 * @cont: function will be called asynchronously when the firmware
675 * request is over.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676 *
Ming Lei7fcab092009-05-29 11:33:19 +0800677 * Asynchronous variant of request_firmware() for user contexts where
678 * it is not possible to sleep for long time. It can't be called
679 * in atomic contexts.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680 **/
681int
682request_firmware_nowait(
Kay Sievers312c0042005-11-16 09:00:00 +0100683 struct module *module, int uevent,
Johannes Berg9ebfbd42009-10-29 12:36:02 +0100684 const char *name, struct device *device, gfp_t gfp, void *context,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685 void (*cont)(const struct firmware *fw, void *context))
686{
Sukadev Bhattiprolu563d0752006-09-29 01:59:31 -0700687 struct task_struct *task;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688 struct firmware_work *fw_work = kmalloc(sizeof (struct firmware_work),
Johannes Berg9ebfbd42009-10-29 12:36:02 +0100689 gfp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690
691 if (!fw_work)
692 return -ENOMEM;
693 if (!try_module_get(module)) {
694 kfree(fw_work);
695 return -EFAULT;
696 }
697
698 *fw_work = (struct firmware_work) {
699 .module = module,
700 .name = name,
701 .device = device,
702 .context = context,
703 .cont = cont,
Kay Sievers312c0042005-11-16 09:00:00 +0100704 .uevent = uevent,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705 };
706
Sukadev Bhattiprolu563d0752006-09-29 01:59:31 -0700707 task = kthread_run(request_firmware_work_func, fw_work,
708 "firmware/%s", name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709
Sukadev Bhattiprolu563d0752006-09-29 01:59:31 -0700710 if (IS_ERR(task)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711 fw_work->cont(NULL, fw_work->context);
matthieu castet113fab12005-11-13 16:07:39 -0800712 module_put(fw_work->module);
713 kfree(fw_work);
Sukadev Bhattiprolu563d0752006-09-29 01:59:31 -0700714 return PTR_ERR(task);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715 }
716 return 0;
717}
718
Dmitry Torokhov673fae92010-03-13 23:49:13 -0800719static int __init firmware_class_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720{
Dmitry Torokhov673fae92010-03-13 23:49:13 -0800721 return class_register(&firmware_class);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722}
Dmitry Torokhov673fae92010-03-13 23:49:13 -0800723
724static void __exit firmware_class_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725{
726 class_unregister(&firmware_class);
727}
728
Shaohua Lia30a6a22006-09-27 01:50:52 -0700729fs_initcall(firmware_class_init);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730module_exit(firmware_class_exit);
731
732EXPORT_SYMBOL(release_firmware);
733EXPORT_SYMBOL(request_firmware);
734EXPORT_SYMBOL(request_firmware_nowait);