blob: 3f093b0dd217bd529d67ba4b7984c3435aac8c01 [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 {
Linus Torvalds1da177e2005-04-16 15:20:36 -070089 struct completion completion;
90 struct bin_attribute attr_data;
91 struct firmware *fw;
92 unsigned long status;
David Woodhouse6e03a202009-04-09 22:04:07 -070093 struct page **pages;
94 int nr_pages;
95 int page_array_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -070096 struct timer_list timeout;
Johannes Berge9045f92010-03-29 17:57:20 +020097 bool nowait;
Dmitry Torokhove1771232010-03-13 23:49:23 -080098 char fw_id[];
Linus Torvalds1da177e2005-04-16 15:20:36 -070099};
100
Arjan van de Ven858119e2006-01-14 13:20:43 -0800101static void
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102fw_load_abort(struct firmware_priv *fw_priv)
103{
104 set_bit(FW_STATUS_ABORT, &fw_priv->status);
105 wmb();
106 complete(&fw_priv->completion);
107}
108
109static ssize_t
Andi Kleen28812fe2010-01-05 12:48:07 +0100110firmware_timeout_show(struct class *class,
111 struct class_attribute *attr,
112 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113{
114 return sprintf(buf, "%d\n", loading_timeout);
115}
116
117/**
Randy Dunlapeb8e3172005-10-30 15:03:01 -0800118 * firmware_timeout_store - set number of seconds to wait for firmware
119 * @class: device class pointer
Randy Dunlape59817b2010-03-10 11:47:58 -0800120 * @attr: device attribute pointer
Randy Dunlapeb8e3172005-10-30 15:03:01 -0800121 * @buf: buffer to scan for timeout value
122 * @count: number of bytes in @buf
123 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124 * Sets the number of seconds to wait for the firmware. Once
Randy Dunlapeb8e3172005-10-30 15:03:01 -0800125 * this expires an error will be returned to the driver and no
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126 * firmware will be provided.
127 *
Randy Dunlapeb8e3172005-10-30 15:03:01 -0800128 * Note: zero means 'wait forever'.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129 **/
130static ssize_t
Andi Kleen28812fe2010-01-05 12:48:07 +0100131firmware_timeout_store(struct class *class,
132 struct class_attribute *attr,
133 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134{
135 loading_timeout = simple_strtol(buf, NULL, 10);
Stanislaw W. Gruszkab92eac02005-06-28 20:44:51 -0700136 if (loading_timeout < 0)
137 loading_timeout = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138 return count;
139}
140
Dmitry Torokhov673fae92010-03-13 23:49:13 -0800141static struct class_attribute firmware_class_attrs[] = {
142 __ATTR(timeout, S_IWUSR | S_IRUGO,
143 firmware_timeout_show, firmware_timeout_store),
144 __ATTR_NULL
145};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146
Dmitry Torokhov673fae92010-03-13 23:49:13 -0800147static void fw_dev_release(struct device *dev)
148{
149 struct firmware_priv *fw_priv = dev_get_drvdata(dev);
150 int i;
151
152 for (i = 0; i < fw_priv->nr_pages; i++)
153 __free_page(fw_priv->pages[i]);
154 kfree(fw_priv->pages);
Dmitry Torokhov673fae92010-03-13 23:49:13 -0800155 kfree(fw_priv);
156 kfree(dev);
157
158 module_put(THIS_MODULE);
159}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160
Kay Sievers7eff2e72007-08-14 15:15:12 +0200161static int firmware_uevent(struct device *dev, struct kobj_uevent_env *env)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162{
Greg Kroah-Hartmane55c8792006-09-14 07:30:59 -0700163 struct firmware_priv *fw_priv = dev_get_drvdata(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164
Kay Sievers7eff2e72007-08-14 15:15:12 +0200165 if (add_uevent_var(env, "FIRMWARE=%s", fw_priv->fw_id))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166 return -ENOMEM;
Kay Sievers7eff2e72007-08-14 15:15:12 +0200167 if (add_uevent_var(env, "TIMEOUT=%i", loading_timeout))
kay.sievers@vrfy.org68970892005-04-18 21:57:31 -0700168 return -ENOMEM;
Johannes Berge9045f92010-03-29 17:57:20 +0200169 if (add_uevent_var(env, "ASYNC=%d", fw_priv->nowait))
170 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171
172 return 0;
173}
174
Adrian Bunk1b81d662006-05-20 15:00:16 -0700175static struct class firmware_class = {
176 .name = "firmware",
Dmitry Torokhov673fae92010-03-13 23:49:13 -0800177 .class_attrs = firmware_class_attrs,
Greg Kroah-Hartmane55c8792006-09-14 07:30:59 -0700178 .dev_uevent = firmware_uevent,
179 .dev_release = fw_dev_release,
Adrian Bunk1b81d662006-05-20 15:00:16 -0700180};
181
Greg Kroah-Hartmane55c8792006-09-14 07:30:59 -0700182static ssize_t firmware_loading_show(struct device *dev,
183 struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184{
Greg Kroah-Hartmane55c8792006-09-14 07:30:59 -0700185 struct firmware_priv *fw_priv = dev_get_drvdata(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186 int loading = test_bit(FW_STATUS_LOADING, &fw_priv->status);
187 return sprintf(buf, "%d\n", loading);
188}
189
David Woodhousedd336c52010-05-02 11:21:21 +0300190static void firmware_free_data(const struct firmware *fw)
191{
192 int i;
193 vunmap(fw->data);
194 if (fw->pages) {
195 for (i = 0; i < PFN_UP(fw->size); i++)
196 __free_page(fw->pages[i]);
197 kfree(fw->pages);
198 }
199}
200
David Woodhouse6e03a202009-04-09 22:04:07 -0700201/* Some architectures don't have PAGE_KERNEL_RO */
202#ifndef PAGE_KERNEL_RO
203#define PAGE_KERNEL_RO PAGE_KERNEL
204#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205/**
Randy Dunlapeb8e3172005-10-30 15:03:01 -0800206 * firmware_loading_store - set value in the 'loading' control file
Greg Kroah-Hartmane55c8792006-09-14 07:30:59 -0700207 * @dev: device pointer
Randy Dunlapaf9997e2006-12-22 01:06:52 -0800208 * @attr: device attribute pointer
Randy Dunlapeb8e3172005-10-30 15:03:01 -0800209 * @buf: buffer to scan for loading control value
210 * @count: number of bytes in @buf
211 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212 * The relevant values are:
213 *
214 * 1: Start a load, discarding any previous partial load.
Randy Dunlapeb8e3172005-10-30 15:03:01 -0800215 * 0: Conclude the load and hand the data to the driver code.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216 * -1: Conclude the load with an error and discard any written data.
217 **/
Greg Kroah-Hartmane55c8792006-09-14 07:30:59 -0700218static ssize_t firmware_loading_store(struct device *dev,
219 struct device_attribute *attr,
220 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221{
Greg Kroah-Hartmane55c8792006-09-14 07:30:59 -0700222 struct firmware_priv *fw_priv = dev_get_drvdata(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223 int loading = simple_strtol(buf, NULL, 10);
David Woodhouse6e03a202009-04-09 22:04:07 -0700224 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225
226 switch (loading) {
227 case 1:
Laura Garciacad1e552006-05-23 23:22:38 +0200228 mutex_lock(&fw_lock);
Stanislaw W. Gruszkab92eac02005-06-28 20:44:51 -0700229 if (!fw_priv->fw) {
Laura Garciacad1e552006-05-23 23:22:38 +0200230 mutex_unlock(&fw_lock);
Stanislaw W. Gruszkab92eac02005-06-28 20:44:51 -0700231 break;
232 }
David Woodhousedd336c52010-05-02 11:21:21 +0300233 firmware_free_data(fw_priv->fw);
234 memset(fw_priv->fw, 0, sizeof(struct firmware));
235 /* If the pages are not owned by 'struct firmware' */
David Woodhouse6e03a202009-04-09 22:04:07 -0700236 for (i = 0; i < fw_priv->nr_pages; i++)
237 __free_page(fw_priv->pages[i]);
238 kfree(fw_priv->pages);
239 fw_priv->pages = NULL;
240 fw_priv->page_array_size = 0;
241 fw_priv->nr_pages = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242 set_bit(FW_STATUS_LOADING, &fw_priv->status);
Laura Garciacad1e552006-05-23 23:22:38 +0200243 mutex_unlock(&fw_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244 break;
245 case 0:
246 if (test_bit(FW_STATUS_LOADING, &fw_priv->status)) {
David Woodhousedd336c52010-05-02 11:21:21 +0300247 vunmap(fw_priv->fw->data);
David Woodhouse6e03a202009-04-09 22:04:07 -0700248 fw_priv->fw->data = vmap(fw_priv->pages,
249 fw_priv->nr_pages,
250 0, PAGE_KERNEL_RO);
251 if (!fw_priv->fw->data) {
252 dev_err(dev, "%s: vmap() failed\n", __func__);
253 goto err;
254 }
David Woodhousedd336c52010-05-02 11:21:21 +0300255 /* Pages are now owned by 'struct firmware' */
256 fw_priv->fw->pages = fw_priv->pages;
257 fw_priv->pages = NULL;
258
David Woodhouse6e03a202009-04-09 22:04:07 -0700259 fw_priv->page_array_size = 0;
260 fw_priv->nr_pages = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261 complete(&fw_priv->completion);
262 clear_bit(FW_STATUS_LOADING, &fw_priv->status);
263 break;
264 }
265 /* fallthrough */
266 default:
Bjorn Helgaas266a8132008-10-15 22:04:20 -0700267 dev_err(dev, "%s: unexpected value (%d)\n", __func__, loading);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268 /* fallthrough */
269 case -1:
David Woodhouse6e03a202009-04-09 22:04:07 -0700270 err:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271 fw_load_abort(fw_priv);
272 break;
273 }
274
275 return count;
276}
277
Greg Kroah-Hartmane55c8792006-09-14 07:30:59 -0700278static DEVICE_ATTR(loading, 0644, firmware_loading_show, firmware_loading_store);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279
280static ssize_t
Chris Wright2c3c8be2010-05-12 18:28:57 -0700281firmware_data_read(struct file *filp, struct kobject *kobj,
282 struct bin_attribute *bin_attr, char *buffer, loff_t offset,
283 size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284{
Greg Kroah-Hartmane55c8792006-09-14 07:30:59 -0700285 struct device *dev = to_dev(kobj);
286 struct firmware_priv *fw_priv = dev_get_drvdata(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287 struct firmware *fw;
Akinobu Mitaf37e6612008-07-25 01:48:23 -0700288 ssize_t ret_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289
Laura Garciacad1e552006-05-23 23:22:38 +0200290 mutex_lock(&fw_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291 fw = fw_priv->fw;
Stanislaw W. Gruszkab92eac02005-06-28 20:44:51 -0700292 if (!fw || test_bit(FW_STATUS_DONE, &fw_priv->status)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293 ret_count = -ENODEV;
294 goto out;
295 }
Jiri Slaby308975f2009-06-21 23:57:31 +0200296 if (offset > fw->size) {
297 ret_count = 0;
298 goto out;
299 }
David Woodhouse6e03a202009-04-09 22:04:07 -0700300 if (count > fw->size - offset)
301 count = fw->size - offset;
302
303 ret_count = count;
304
305 while (count) {
306 void *page_data;
307 int page_nr = offset >> PAGE_SHIFT;
308 int page_ofs = offset & (PAGE_SIZE-1);
309 int page_cnt = min_t(size_t, PAGE_SIZE - page_ofs, count);
310
311 page_data = kmap(fw_priv->pages[page_nr]);
312
313 memcpy(buffer, page_data + page_ofs, page_cnt);
314
315 kunmap(fw_priv->pages[page_nr]);
316 buffer += page_cnt;
317 offset += page_cnt;
318 count -= page_cnt;
319 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320out:
Laura Garciacad1e552006-05-23 23:22:38 +0200321 mutex_unlock(&fw_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322 return ret_count;
323}
Randy Dunlapeb8e3172005-10-30 15:03:01 -0800324
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325static int
326fw_realloc_buffer(struct firmware_priv *fw_priv, int min_size)
327{
David Woodhouse6e03a202009-04-09 22:04:07 -0700328 int pages_needed = ALIGN(min_size, PAGE_SIZE) >> PAGE_SHIFT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329
David Woodhouse6e03a202009-04-09 22:04:07 -0700330 /* If the array of pages is too small, grow it... */
331 if (fw_priv->page_array_size < pages_needed) {
332 int new_array_size = max(pages_needed,
333 fw_priv->page_array_size * 2);
334 struct page **new_pages;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335
David Woodhouse6e03a202009-04-09 22:04:07 -0700336 new_pages = kmalloc(new_array_size * sizeof(void *),
337 GFP_KERNEL);
338 if (!new_pages) {
339 fw_load_abort(fw_priv);
340 return -ENOMEM;
341 }
342 memcpy(new_pages, fw_priv->pages,
343 fw_priv->page_array_size * sizeof(void *));
344 memset(&new_pages[fw_priv->page_array_size], 0, sizeof(void *) *
345 (new_array_size - fw_priv->page_array_size));
346 kfree(fw_priv->pages);
347 fw_priv->pages = new_pages;
348 fw_priv->page_array_size = new_array_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349 }
David Woodhouse6e03a202009-04-09 22:04:07 -0700350
351 while (fw_priv->nr_pages < pages_needed) {
352 fw_priv->pages[fw_priv->nr_pages] =
353 alloc_page(GFP_KERNEL | __GFP_HIGHMEM);
354
355 if (!fw_priv->pages[fw_priv->nr_pages]) {
356 fw_load_abort(fw_priv);
357 return -ENOMEM;
358 }
359 fw_priv->nr_pages++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361 return 0;
362}
363
364/**
Randy Dunlapeb8e3172005-10-30 15:03:01 -0800365 * firmware_data_write - write method for firmware
Chris Wright2c3c8be2010-05-12 18:28:57 -0700366 * @filp: open sysfs file
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
Chris Wright2c3c8be2010-05-12 18:28:57 -0700377firmware_data_write(struct file* filp, struct kobject *kobj,
378 struct bin_attribute *bin_attr, char *buffer,
379 loff_t offset, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380{
Greg Kroah-Hartmane55c8792006-09-14 07:30:59 -0700381 struct device *dev = to_dev(kobj);
382 struct firmware_priv *fw_priv = dev_get_drvdata(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383 struct firmware *fw;
384 ssize_t retval;
385
386 if (!capable(CAP_SYS_RAWIO))
387 return -EPERM;
Stanislaw W. Gruszkab92eac02005-06-28 20:44:51 -0700388
Laura Garciacad1e552006-05-23 23:22:38 +0200389 mutex_lock(&fw_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390 fw = fw_priv->fw;
Stanislaw W. Gruszkab92eac02005-06-28 20:44:51 -0700391 if (!fw || test_bit(FW_STATUS_DONE, &fw_priv->status)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392 retval = -ENODEV;
393 goto out;
394 }
395 retval = fw_realloc_buffer(fw_priv, offset + count);
396 if (retval)
397 goto out;
398
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399 retval = count;
David Woodhouse6e03a202009-04-09 22:04:07 -0700400
401 while (count) {
402 void *page_data;
403 int page_nr = offset >> PAGE_SHIFT;
404 int page_ofs = offset & (PAGE_SIZE - 1);
405 int page_cnt = min_t(size_t, PAGE_SIZE - page_ofs, count);
406
407 page_data = kmap(fw_priv->pages[page_nr]);
408
409 memcpy(page_data + page_ofs, buffer, page_cnt);
410
411 kunmap(fw_priv->pages[page_nr]);
412 buffer += page_cnt;
413 offset += page_cnt;
414 count -= page_cnt;
415 }
416
417 fw->size = max_t(size_t, offset, fw->size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418out:
Laura Garciacad1e552006-05-23 23:22:38 +0200419 mutex_unlock(&fw_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420 return retval;
421}
Randy Dunlapeb8e3172005-10-30 15:03:01 -0800422
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423static struct bin_attribute firmware_attr_data_tmpl = {
Tejun Heo7b595752007-06-14 03:45:17 +0900424 .attr = {.name = "data", .mode = 0644},
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425 .size = 0,
426 .read = firmware_data_read,
427 .write = firmware_data_write,
428};
429
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430static void
431firmware_class_timeout(u_long data)
432{
433 struct firmware_priv *fw_priv = (struct firmware_priv *) data;
434 fw_load_abort(fw_priv);
435}
436
Greg Kroah-Hartmane55c8792006-09-14 07:30:59 -0700437static int fw_register_device(struct device **dev_p, const char *fw_name,
438 struct device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439{
440 int retval;
Dmitry Torokhove1771232010-03-13 23:49:23 -0800441 struct firmware_priv *fw_priv =
442 kzalloc(sizeof(*fw_priv) + strlen(fw_name) + 1 , GFP_KERNEL);
Greg Kroah-Hartmane55c8792006-09-14 07:30:59 -0700443 struct device *f_dev = kzalloc(sizeof(*f_dev), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444
Greg Kroah-Hartmane55c8792006-09-14 07:30:59 -0700445 *dev_p = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446
Greg Kroah-Hartmane55c8792006-09-14 07:30:59 -0700447 if (!fw_priv || !f_dev) {
Bjorn Helgaas266a8132008-10-15 22:04:20 -0700448 dev_err(device, "%s: kmalloc failed\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449 retval = -ENOMEM;
450 goto error_kfree;
451 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452
Dmitry Torokhove1771232010-03-13 23:49:23 -0800453 strcpy(fw_priv->fw_id, fw_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454 init_completion(&fw_priv->completion);
455 fw_priv->attr_data = firmware_attr_data_tmpl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456 fw_priv->timeout.function = firmware_class_timeout;
457 fw_priv->timeout.data = (u_long) fw_priv;
458 init_timer(&fw_priv->timeout);
459
Greg Kroah-Hartmanacc0e902009-06-02 15:39:55 -0700460 dev_set_name(f_dev, "%s", dev_name(device));
Greg Kroah-Hartmane55c8792006-09-14 07:30:59 -0700461 f_dev->parent = device;
462 f_dev->class = &firmware_class;
463 dev_set_drvdata(f_dev, fw_priv);
Ming Leif67f1292009-03-01 21:10:49 +0800464 dev_set_uevent_suppress(f_dev, 1);
Greg Kroah-Hartmane55c8792006-09-14 07:30:59 -0700465 retval = device_register(f_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466 if (retval) {
Bjorn Helgaas266a8132008-10-15 22:04:20 -0700467 dev_err(device, "%s: device_register failed\n", __func__);
Ming Lei6acf70f2009-04-23 22:31:52 +0800468 put_device(f_dev);
Catalin Marinas0f2f2222009-07-08 11:17:40 +0100469 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470 }
Greg Kroah-Hartmane55c8792006-09-14 07:30:59 -0700471 *dev_p = f_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472 return 0;
473
474error_kfree:
Greg Kroah-Hartmane55c8792006-09-14 07:30:59 -0700475 kfree(f_dev);
Ming Lei6acf70f2009-04-23 22:31:52 +0800476 kfree(fw_priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477 return retval;
478}
479
Greg Kroah-Hartmane55c8792006-09-14 07:30:59 -0700480static int fw_setup_device(struct firmware *fw, struct device **dev_p,
481 const char *fw_name, struct device *device,
Johannes Berge9045f92010-03-29 17:57:20 +0200482 int uevent, bool nowait)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483{
Greg Kroah-Hartmane55c8792006-09-14 07:30:59 -0700484 struct device *f_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485 struct firmware_priv *fw_priv;
486 int retval;
487
Greg Kroah-Hartmane55c8792006-09-14 07:30:59 -0700488 *dev_p = NULL;
489 retval = fw_register_device(&f_dev, fw_name, device);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490 if (retval)
491 goto out;
492
493 /* Need to pin this module until class device is destroyed */
494 __module_get(THIS_MODULE);
495
Greg Kroah-Hartmane55c8792006-09-14 07:30:59 -0700496 fw_priv = dev_get_drvdata(f_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497
Johannes Berge9045f92010-03-29 17:57:20 +0200498 fw_priv->nowait = nowait;
499
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500 fw_priv->fw = fw;
Jiri Kosinae1955ca2010-03-09 19:30:28 +0100501 sysfs_bin_attr_init(&fw_priv->attr_data);
Greg Kroah-Hartmane55c8792006-09-14 07:30:59 -0700502 retval = sysfs_create_bin_file(&f_dev->kobj, &fw_priv->attr_data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503 if (retval) {
Bjorn Helgaas266a8132008-10-15 22:04:20 -0700504 dev_err(device, "%s: sysfs_create_bin_file failed\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505 goto error_unreg;
506 }
507
Greg Kroah-Hartmane55c8792006-09-14 07:30:59 -0700508 retval = device_create_file(f_dev, &dev_attr_loading);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509 if (retval) {
Bjorn Helgaas266a8132008-10-15 22:04:20 -0700510 dev_err(device, "%s: device_create_file failed\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511 goto error_unreg;
512 }
513
Kay Sievers312c0042005-11-16 09:00:00 +0100514 if (uevent)
Ming Leif67f1292009-03-01 21:10:49 +0800515 dev_set_uevent_suppress(f_dev, 0);
Greg Kroah-Hartmane55c8792006-09-14 07:30:59 -0700516 *dev_p = f_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517 goto out;
518
519error_unreg:
Greg Kroah-Hartmane55c8792006-09-14 07:30:59 -0700520 device_unregister(f_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521out:
522 return retval;
523}
524
Abhay Salunke6e3eaab2005-09-06 15:17:13 -0700525static int
526_request_firmware(const struct firmware **firmware_p, const char *name,
Johannes Berge9045f92010-03-29 17:57:20 +0200527 struct device *device, int uevent, bool nowait)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528{
Greg Kroah-Hartmane55c8792006-09-14 07:30:59 -0700529 struct device *f_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530 struct firmware_priv *fw_priv;
531 struct firmware *firmware;
532 int retval;
533
534 if (!firmware_p)
535 return -EINVAL;
536
Jiri Slaby4aed0642005-09-13 01:25:01 -0700537 *firmware_p = firmware = kzalloc(sizeof(*firmware), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538 if (!firmware) {
Bjorn Helgaas266a8132008-10-15 22:04:20 -0700539 dev_err(device, "%s: kmalloc(struct firmware) failed\n",
540 __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541 retval = -ENOMEM;
542 goto out;
543 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544
Dmitry Torokhovbcb9bd12010-03-13 23:49:18 -0800545 if (fw_get_builtin_firmware(firmware, name)) {
Rafael J. Wysocki6f18ff92010-02-27 21:43:22 +0100546 dev_dbg(device, "firmware: using built-in firmware %s\n", name);
David Woodhouse5658c762008-05-23 13:52:42 +0100547 return 0;
548 }
549
550 if (uevent)
Rafael J. Wysocki6f18ff92010-02-27 21:43:22 +0100551 dev_dbg(device, "firmware: requesting %s\n", name);
David Woodhouse5658c762008-05-23 13:52:42 +0100552
Johannes Berge9045f92010-03-29 17:57:20 +0200553 retval = fw_setup_device(firmware, &f_dev, name, device,
554 uevent, nowait);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555 if (retval)
556 goto error_kfree_fw;
557
Greg Kroah-Hartmane55c8792006-09-14 07:30:59 -0700558 fw_priv = dev_get_drvdata(f_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559
Kay Sievers312c0042005-11-16 09:00:00 +0100560 if (uevent) {
Abhay Salunke6e3eaab2005-09-06 15:17:13 -0700561 if (loading_timeout > 0) {
562 fw_priv->timeout.expires = jiffies + loading_timeout * HZ;
563 add_timer(&fw_priv->timeout);
564 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565
Greg Kroah-Hartmane55c8792006-09-14 07:30:59 -0700566 kobject_uevent(&f_dev->kobj, KOBJ_ADD);
Abhay Salunke6e3eaab2005-09-06 15:17:13 -0700567 wait_for_completion(&fw_priv->completion);
568 set_bit(FW_STATUS_DONE, &fw_priv->status);
569 del_timer_sync(&fw_priv->timeout);
570 } else
571 wait_for_completion(&fw_priv->completion);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572
Laura Garciacad1e552006-05-23 23:22:38 +0200573 mutex_lock(&fw_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574 if (!fw_priv->fw->size || test_bit(FW_STATUS_ABORT, &fw_priv->status)) {
575 retval = -ENOENT;
576 release_firmware(fw_priv->fw);
577 *firmware_p = NULL;
578 }
579 fw_priv->fw = NULL;
Laura Garciacad1e552006-05-23 23:22:38 +0200580 mutex_unlock(&fw_lock);
Greg Kroah-Hartmane55c8792006-09-14 07:30:59 -0700581 device_unregister(f_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582 goto out;
583
584error_kfree_fw:
585 kfree(firmware);
586 *firmware_p = NULL;
587out:
588 return retval;
589}
590
591/**
Kay Sievers312c0042005-11-16 09:00:00 +0100592 * request_firmware: - send firmware request and wait for it
Randy Dunlapeb8e3172005-10-30 15:03:01 -0800593 * @firmware_p: pointer to firmware image
594 * @name: name of firmware file
595 * @device: device for which firmware is being loaded
596 *
597 * @firmware_p will be used to return a firmware image by the name
Abhay Salunke6e3eaab2005-09-06 15:17:13 -0700598 * of @name for device @device.
599 *
600 * Should be called from user context where sleeping is allowed.
601 *
Kay Sievers312c0042005-11-16 09:00:00 +0100602 * @name will be used as $FIRMWARE in the uevent environment and
Abhay Salunke6e3eaab2005-09-06 15:17:13 -0700603 * should be distinctive enough not to be confused with any other
604 * firmware image for this or any other device.
605 **/
606int
607request_firmware(const struct firmware **firmware_p, const char *name,
608 struct device *device)
609{
Kay Sievers312c0042005-11-16 09:00:00 +0100610 int uevent = 1;
Johannes Berge9045f92010-03-29 17:57:20 +0200611 return _request_firmware(firmware_p, name, device, uevent, false);
Abhay Salunke6e3eaab2005-09-06 15:17:13 -0700612}
613
614/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615 * release_firmware: - release the resource associated with a firmware image
Randy Dunlapeb8e3172005-10-30 15:03:01 -0800616 * @fw: firmware resource to release
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617 **/
Dmitry Torokhovbcb9bd12010-03-13 23:49:18 -0800618void release_firmware(const struct firmware *fw)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619{
620 if (fw) {
Dmitry Torokhovbcb9bd12010-03-13 23:49:18 -0800621 if (!fw_is_builtin_firmware(fw))
622 firmware_free_data(fw);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623 kfree(fw);
624 }
625}
626
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627/* Async support */
628struct firmware_work {
629 struct work_struct work;
630 struct module *module;
631 const char *name;
632 struct device *device;
633 void *context;
634 void (*cont)(const struct firmware *fw, void *context);
Kay Sievers312c0042005-11-16 09:00:00 +0100635 int uevent;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636};
637
638static int
639request_firmware_work_func(void *arg)
640{
641 struct firmware_work *fw_work = arg;
642 const struct firmware *fw;
matthieu castet113fab12005-11-13 16:07:39 -0800643 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644 if (!arg) {
645 WARN_ON(1);
646 return 0;
647 }
matthieu castet113fab12005-11-13 16:07:39 -0800648 ret = _request_firmware(&fw, fw_work->name, fw_work->device,
Johannes Berge9045f92010-03-29 17:57:20 +0200649 fw_work->uevent, true);
Johannes Berg9ebfbd42009-10-29 12:36:02 +0100650
651 fw_work->cont(fw, fw_work->context);
652
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653 module_put(fw_work->module);
654 kfree(fw_work);
matthieu castet113fab12005-11-13 16:07:39 -0800655 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656}
657
658/**
Ben Hutchings3c31f072010-02-14 14:18:53 +0000659 * request_firmware_nowait - asynchronous version of request_firmware
Randy Dunlapeb8e3172005-10-30 15:03:01 -0800660 * @module: module requesting the firmware
Kay Sievers312c0042005-11-16 09:00:00 +0100661 * @uevent: sends uevent to copy the firmware image if this flag
Randy Dunlapeb8e3172005-10-30 15:03:01 -0800662 * is non-zero else the firmware copy must be done manually.
663 * @name: name of firmware file
664 * @device: device for which firmware is being loaded
Johannes Berg9ebfbd42009-10-29 12:36:02 +0100665 * @gfp: allocation flags
Randy Dunlapeb8e3172005-10-30 15:03:01 -0800666 * @context: will be passed over to @cont, and
667 * @fw may be %NULL if firmware request fails.
668 * @cont: function will be called asynchronously when the firmware
669 * request is over.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670 *
Ming Lei7fcab092009-05-29 11:33:19 +0800671 * Asynchronous variant of request_firmware() for user contexts where
672 * it is not possible to sleep for long time. It can't be called
673 * in atomic contexts.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674 **/
675int
676request_firmware_nowait(
Kay Sievers312c0042005-11-16 09:00:00 +0100677 struct module *module, int uevent,
Johannes Berg9ebfbd42009-10-29 12:36:02 +0100678 const char *name, struct device *device, gfp_t gfp, void *context,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679 void (*cont)(const struct firmware *fw, void *context))
680{
Sukadev Bhattiprolu563d0752006-09-29 01:59:31 -0700681 struct task_struct *task;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682 struct firmware_work *fw_work = kmalloc(sizeof (struct firmware_work),
Johannes Berg9ebfbd42009-10-29 12:36:02 +0100683 gfp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684
685 if (!fw_work)
686 return -ENOMEM;
687 if (!try_module_get(module)) {
688 kfree(fw_work);
689 return -EFAULT;
690 }
691
692 *fw_work = (struct firmware_work) {
693 .module = module,
694 .name = name,
695 .device = device,
696 .context = context,
697 .cont = cont,
Kay Sievers312c0042005-11-16 09:00:00 +0100698 .uevent = uevent,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699 };
700
Sukadev Bhattiprolu563d0752006-09-29 01:59:31 -0700701 task = kthread_run(request_firmware_work_func, fw_work,
702 "firmware/%s", name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703
Sukadev Bhattiprolu563d0752006-09-29 01:59:31 -0700704 if (IS_ERR(task)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705 fw_work->cont(NULL, fw_work->context);
matthieu castet113fab12005-11-13 16:07:39 -0800706 module_put(fw_work->module);
707 kfree(fw_work);
Sukadev Bhattiprolu563d0752006-09-29 01:59:31 -0700708 return PTR_ERR(task);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709 }
710 return 0;
711}
712
Dmitry Torokhov673fae92010-03-13 23:49:13 -0800713static int __init firmware_class_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714{
Dmitry Torokhov673fae92010-03-13 23:49:13 -0800715 return class_register(&firmware_class);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716}
Dmitry Torokhov673fae92010-03-13 23:49:13 -0800717
718static void __exit firmware_class_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719{
720 class_unregister(&firmware_class);
721}
722
Shaohua Lia30a6a22006-09-27 01:50:52 -0700723fs_initcall(firmware_class_init);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724module_exit(firmware_class_exit);
725
726EXPORT_SYMBOL(release_firmware);
727EXPORT_SYMBOL(request_firmware);
728EXPORT_SYMBOL(request_firmware_nowait);