blob: be5f7aae75fc66e386baa292e27ed07812f9529f [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>
Stephen Boyda36cf842012-03-28 23:31:00 +020019#include <linux/workqueue.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>
Stephen Boyda36cf842012-03-28 23:31:00 +020023#include <linux/sched.h>
Linus Torvaldsabb139e2012-10-03 15:58:32 -070024#include <linux/file.h>
Ming Lei1f2b7952012-08-04 12:01:21 +080025#include <linux/list.h>
Ming Lei37276a52012-08-04 12:01:27 +080026#include <linux/async.h>
27#include <linux/pm.h>
Ming Lei07646d92012-08-04 12:01:29 +080028#include <linux/suspend.h>
Ming Leiac39b3e2012-08-20 19:04:16 +080029#include <linux/syscore_ops.h>
Ming Lei37276a52012-08-04 12:01:27 +080030
Linus Torvaldsabb139e2012-10-03 15:58:32 -070031#include <generated/utsrelease.h>
32
Ming Lei37276a52012-08-04 12:01:27 +080033#include "base.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070034
Markus Rechberger87d37a42007-06-04 18:45:44 +020035MODULE_AUTHOR("Manuel Estrada Sainz");
Linus Torvalds1da177e2005-04-16 15:20:36 -070036MODULE_DESCRIPTION("Multi purpose firmware loading support");
37MODULE_LICENSE("GPL");
38
Dmitry Torokhovbcb9bd12010-03-13 23:49:18 -080039/* Builtin firmware support */
40
41#ifdef CONFIG_FW_LOADER
42
43extern struct builtin_fw __start_builtin_fw[];
44extern struct builtin_fw __end_builtin_fw[];
45
46static bool fw_get_builtin_firmware(struct firmware *fw, const char *name)
47{
48 struct builtin_fw *b_fw;
49
50 for (b_fw = __start_builtin_fw; b_fw != __end_builtin_fw; b_fw++) {
51 if (strcmp(name, b_fw->name) == 0) {
52 fw->size = b_fw->size;
53 fw->data = b_fw->data;
54 return true;
55 }
56 }
57
58 return false;
59}
60
61static bool fw_is_builtin_firmware(const struct firmware *fw)
62{
63 struct builtin_fw *b_fw;
64
65 for (b_fw = __start_builtin_fw; b_fw != __end_builtin_fw; b_fw++)
66 if (fw->data == b_fw->data)
67 return true;
68
69 return false;
70}
71
72#else /* Module case - no builtin firmware support */
73
74static inline bool fw_get_builtin_firmware(struct firmware *fw, const char *name)
75{
76 return false;
77}
78
79static inline bool fw_is_builtin_firmware(const struct firmware *fw)
80{
81 return false;
82}
83#endif
84
Linus Torvalds1da177e2005-04-16 15:20:36 -070085enum {
86 FW_STATUS_LOADING,
87 FW_STATUS_DONE,
88 FW_STATUS_ABORT,
Linus Torvalds1da177e2005-04-16 15:20:36 -070089};
90
Ming Lei746058f2012-10-09 12:01:03 +080091enum fw_buf_fmt {
92 VMALLOC_BUF, /* used in direct loading */
93 PAGE_BUF, /* used in loading via userspace */
94};
95
Dave Jones2f651682007-01-25 15:56:15 -050096static int loading_timeout = 60; /* In seconds */
Linus Torvalds1da177e2005-04-16 15:20:36 -070097
Rafael J. Wysocki9b78c1d2012-03-28 23:30:02 +020098static inline long firmware_loading_timeout(void)
99{
100 return loading_timeout > 0 ? loading_timeout * HZ : MAX_SCHEDULE_TIMEOUT;
101}
102
Ming Lei1f2b7952012-08-04 12:01:21 +0800103struct firmware_cache {
104 /* firmware_buf instance will be added into the below list */
105 spinlock_t lock;
106 struct list_head head;
Ming Leicfe016b2012-09-08 17:32:30 +0800107 int state;
Ming Lei37276a52012-08-04 12:01:27 +0800108
Ming Leicfe016b2012-09-08 17:32:30 +0800109#ifdef CONFIG_PM_SLEEP
Ming Lei37276a52012-08-04 12:01:27 +0800110 /*
111 * Names of firmware images which have been cached successfully
112 * will be added into the below list so that device uncache
113 * helper can trace which firmware images have been cached
114 * before.
115 */
116 spinlock_t name_lock;
117 struct list_head fw_names;
118
Ming Lei37276a52012-08-04 12:01:27 +0800119 struct delayed_work work;
Ming Lei07646d92012-08-04 12:01:29 +0800120
121 struct notifier_block pm_notify;
Ming Leicfe016b2012-09-08 17:32:30 +0800122#endif
Ming Lei1f2b7952012-08-04 12:01:21 +0800123};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124
Ming Lei12446912012-08-04 12:01:20 +0800125struct firmware_buf {
Ming Lei1f2b7952012-08-04 12:01:21 +0800126 struct kref ref;
127 struct list_head list;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128 struct completion completion;
Ming Lei1f2b7952012-08-04 12:01:21 +0800129 struct firmware_cache *fwc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130 unsigned long status;
Ming Lei746058f2012-10-09 12:01:03 +0800131 enum fw_buf_fmt fmt;
Ming Lei65710cb2012-08-04 12:01:16 +0800132 void *data;
133 size_t size;
David Woodhouse6e03a202009-04-09 22:04:07 -0700134 struct page **pages;
135 int nr_pages;
136 int page_array_size;
Dmitry Torokhove1771232010-03-13 23:49:23 -0800137 char fw_id[];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138};
139
Ming Lei37276a52012-08-04 12:01:27 +0800140struct fw_cache_entry {
141 struct list_head list;
142 char name[];
143};
144
Ming Lei12446912012-08-04 12:01:20 +0800145struct firmware_priv {
Chuansheng Liuce2fcbd2012-11-08 19:14:40 +0800146 struct delayed_work timeout_work;
Ming Lei12446912012-08-04 12:01:20 +0800147 bool nowait;
148 struct device dev;
149 struct firmware_buf *buf;
Ming Lei1f2b7952012-08-04 12:01:21 +0800150 struct firmware *fw;
Ming Lei12446912012-08-04 12:01:20 +0800151};
152
Ming Leif531f05a2012-08-04 12:01:25 +0800153struct fw_name_devm {
154 unsigned long magic;
155 char name[];
156};
157
Ming Lei1f2b7952012-08-04 12:01:21 +0800158#define to_fwbuf(d) container_of(d, struct firmware_buf, ref)
159
Ming Leiac39b3e2012-08-20 19:04:16 +0800160#define FW_LOADER_NO_CACHE 0
161#define FW_LOADER_START_CACHE 1
162
163static int fw_cache_piggyback_on_request(const char *name);
164
Ming Lei1f2b7952012-08-04 12:01:21 +0800165/* fw_lock could be moved to 'struct firmware_priv' but since it is just
166 * guarding for corner cases a global lock should be OK */
167static DEFINE_MUTEX(fw_lock);
168
169static struct firmware_cache fw_cache;
170
171static struct firmware_buf *__allocate_fw_buf(const char *fw_name,
172 struct firmware_cache *fwc)
173{
174 struct firmware_buf *buf;
175
176 buf = kzalloc(sizeof(*buf) + strlen(fw_name) + 1 , GFP_ATOMIC);
177
178 if (!buf)
179 return buf;
180
181 kref_init(&buf->ref);
182 strcpy(buf->fw_id, fw_name);
183 buf->fwc = fwc;
184 init_completion(&buf->completion);
Ming Lei746058f2012-10-09 12:01:03 +0800185 buf->fmt = VMALLOC_BUF;
Ming Lei1f2b7952012-08-04 12:01:21 +0800186
187 pr_debug("%s: fw-%s buf=%p\n", __func__, fw_name, buf);
188
189 return buf;
190}
191
Ming Lei2887b392012-08-04 12:01:22 +0800192static struct firmware_buf *__fw_lookup_buf(const char *fw_name)
193{
194 struct firmware_buf *tmp;
195 struct firmware_cache *fwc = &fw_cache;
196
197 list_for_each_entry(tmp, &fwc->head, list)
198 if (!strcmp(tmp->fw_id, fw_name))
199 return tmp;
200 return NULL;
201}
202
Ming Lei1f2b7952012-08-04 12:01:21 +0800203static int fw_lookup_and_allocate_buf(const char *fw_name,
204 struct firmware_cache *fwc,
205 struct firmware_buf **buf)
206{
207 struct firmware_buf *tmp;
208
209 spin_lock(&fwc->lock);
Ming Lei2887b392012-08-04 12:01:22 +0800210 tmp = __fw_lookup_buf(fw_name);
211 if (tmp) {
212 kref_get(&tmp->ref);
213 spin_unlock(&fwc->lock);
214 *buf = tmp;
215 return 1;
216 }
Ming Lei1f2b7952012-08-04 12:01:21 +0800217 tmp = __allocate_fw_buf(fw_name, fwc);
218 if (tmp)
219 list_add(&tmp->list, &fwc->head);
220 spin_unlock(&fwc->lock);
221
222 *buf = tmp;
223
224 return tmp ? 0 : -ENOMEM;
225}
226
Ming Lei2887b392012-08-04 12:01:22 +0800227static struct firmware_buf *fw_lookup_buf(const char *fw_name)
228{
229 struct firmware_buf *tmp;
230 struct firmware_cache *fwc = &fw_cache;
231
232 spin_lock(&fwc->lock);
233 tmp = __fw_lookup_buf(fw_name);
234 spin_unlock(&fwc->lock);
235
236 return tmp;
237}
238
Ming Lei1f2b7952012-08-04 12:01:21 +0800239static void __fw_free_buf(struct kref *ref)
240{
241 struct firmware_buf *buf = to_fwbuf(ref);
242 struct firmware_cache *fwc = buf->fwc;
243 int i;
244
245 pr_debug("%s: fw-%s buf=%p data=%p size=%u\n",
246 __func__, buf->fw_id, buf, buf->data,
247 (unsigned int)buf->size);
248
Ming Lei1f2b7952012-08-04 12:01:21 +0800249 list_del(&buf->list);
250 spin_unlock(&fwc->lock);
251
Ming Lei746058f2012-10-09 12:01:03 +0800252
253 if (buf->fmt == PAGE_BUF) {
254 vunmap(buf->data);
255 for (i = 0; i < buf->nr_pages; i++)
256 __free_page(buf->pages[i]);
257 kfree(buf->pages);
258 } else
259 vfree(buf->data);
Ming Lei1f2b7952012-08-04 12:01:21 +0800260 kfree(buf);
261}
262
263static void fw_free_buf(struct firmware_buf *buf)
264{
Chuansheng Liubd9eb7f2012-11-10 01:27:22 +0800265 struct firmware_cache *fwc = buf->fwc;
266 spin_lock(&fwc->lock);
267 if (!kref_put(&buf->ref, __fw_free_buf))
268 spin_unlock(&fwc->lock);
Ming Lei1f2b7952012-08-04 12:01:21 +0800269}
270
Ming Lei746058f2012-10-09 12:01:03 +0800271/* direct firmware loading support */
272static const char *fw_path[] = {
273 "/lib/firmware/updates/" UTS_RELEASE,
274 "/lib/firmware/updates",
275 "/lib/firmware/" UTS_RELEASE,
276 "/lib/firmware"
277};
278
279/* Don't inline this: 'struct kstat' is biggish */
280static noinline long fw_file_size(struct file *file)
281{
282 struct kstat st;
283 if (vfs_getattr(file->f_path.mnt, file->f_path.dentry, &st))
284 return -1;
285 if (!S_ISREG(st.mode))
286 return -1;
287 if (st.size != (long)st.size)
288 return -1;
289 return st.size;
290}
291
292static bool fw_read_file_contents(struct file *file, struct firmware_buf *fw_buf)
293{
294 long size;
295 char *buf;
296
297 size = fw_file_size(file);
298 if (size < 0)
299 return false;
300 buf = vmalloc(size);
301 if (!buf)
302 return false;
303 if (kernel_read(file, 0, buf, size) != size) {
304 vfree(buf);
305 return false;
306 }
307 fw_buf->data = buf;
308 fw_buf->size = size;
309 return true;
310}
311
312static bool fw_get_filesystem_firmware(struct firmware_buf *buf)
313{
314 int i;
315 bool success = false;
316 char *path = __getname();
317
318 for (i = 0; i < ARRAY_SIZE(fw_path); i++) {
319 struct file *file;
320 snprintf(path, PATH_MAX, "%s/%s", fw_path[i], buf->fw_id);
321
322 file = filp_open(path, O_RDONLY, 0);
323 if (IS_ERR(file))
324 continue;
325 success = fw_read_file_contents(file, buf);
326 fput(file);
327 if (success)
328 break;
329 }
330 __putname(path);
331 return success;
332}
333
Dmitry Torokhovf8a4bd32010-06-04 00:54:43 -0700334static struct firmware_priv *to_firmware_priv(struct device *dev)
335{
336 return container_of(dev, struct firmware_priv, dev);
337}
338
339static void fw_load_abort(struct firmware_priv *fw_priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340{
Ming Lei12446912012-08-04 12:01:20 +0800341 struct firmware_buf *buf = fw_priv->buf;
342
343 set_bit(FW_STATUS_ABORT, &buf->status);
Ming Lei1f2b7952012-08-04 12:01:21 +0800344 complete_all(&buf->completion);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345}
346
Dmitry Torokhovf8a4bd32010-06-04 00:54:43 -0700347static ssize_t firmware_timeout_show(struct class *class,
348 struct class_attribute *attr,
349 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350{
351 return sprintf(buf, "%d\n", loading_timeout);
352}
353
354/**
Randy Dunlapeb8e3172005-10-30 15:03:01 -0800355 * firmware_timeout_store - set number of seconds to wait for firmware
356 * @class: device class pointer
Randy Dunlape59817b2010-03-10 11:47:58 -0800357 * @attr: device attribute pointer
Randy Dunlapeb8e3172005-10-30 15:03:01 -0800358 * @buf: buffer to scan for timeout value
359 * @count: number of bytes in @buf
360 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361 * Sets the number of seconds to wait for the firmware. Once
Randy Dunlapeb8e3172005-10-30 15:03:01 -0800362 * this expires an error will be returned to the driver and no
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363 * firmware will be provided.
364 *
Randy Dunlapeb8e3172005-10-30 15:03:01 -0800365 * Note: zero means 'wait forever'.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366 **/
Dmitry Torokhovf8a4bd32010-06-04 00:54:43 -0700367static ssize_t firmware_timeout_store(struct class *class,
368 struct class_attribute *attr,
369 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370{
371 loading_timeout = simple_strtol(buf, NULL, 10);
Stanislaw W. Gruszkab92eac02005-06-28 20:44:51 -0700372 if (loading_timeout < 0)
373 loading_timeout = 0;
Dmitry Torokhovf8a4bd32010-06-04 00:54:43 -0700374
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375 return count;
376}
377
Dmitry Torokhov673fae92010-03-13 23:49:13 -0800378static struct class_attribute firmware_class_attrs[] = {
379 __ATTR(timeout, S_IWUSR | S_IRUGO,
380 firmware_timeout_show, firmware_timeout_store),
381 __ATTR_NULL
382};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383
Dmitry Torokhov673fae92010-03-13 23:49:13 -0800384static void fw_dev_release(struct device *dev)
385{
Dmitry Torokhovf8a4bd32010-06-04 00:54:43 -0700386 struct firmware_priv *fw_priv = to_firmware_priv(dev);
Ming Lei65710cb2012-08-04 12:01:16 +0800387
Dmitry Torokhov673fae92010-03-13 23:49:13 -0800388 kfree(fw_priv);
Dmitry Torokhov673fae92010-03-13 23:49:13 -0800389
390 module_put(THIS_MODULE);
391}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392
Kay Sievers7eff2e72007-08-14 15:15:12 +0200393static int firmware_uevent(struct device *dev, struct kobj_uevent_env *env)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394{
Dmitry Torokhovf8a4bd32010-06-04 00:54:43 -0700395 struct firmware_priv *fw_priv = to_firmware_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396
Ming Lei12446912012-08-04 12:01:20 +0800397 if (add_uevent_var(env, "FIRMWARE=%s", fw_priv->buf->fw_id))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398 return -ENOMEM;
Kay Sievers7eff2e72007-08-14 15:15:12 +0200399 if (add_uevent_var(env, "TIMEOUT=%i", loading_timeout))
kay.sievers@vrfy.org68970892005-04-18 21:57:31 -0700400 return -ENOMEM;
Johannes Berge9045f92010-03-29 17:57:20 +0200401 if (add_uevent_var(env, "ASYNC=%d", fw_priv->nowait))
402 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403
404 return 0;
405}
406
Adrian Bunk1b81d662006-05-20 15:00:16 -0700407static struct class firmware_class = {
408 .name = "firmware",
Dmitry Torokhov673fae92010-03-13 23:49:13 -0800409 .class_attrs = firmware_class_attrs,
Greg Kroah-Hartmane55c8792006-09-14 07:30:59 -0700410 .dev_uevent = firmware_uevent,
411 .dev_release = fw_dev_release,
Adrian Bunk1b81d662006-05-20 15:00:16 -0700412};
413
Greg Kroah-Hartmane55c8792006-09-14 07:30:59 -0700414static ssize_t firmware_loading_show(struct device *dev,
415 struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416{
Dmitry Torokhovf8a4bd32010-06-04 00:54:43 -0700417 struct firmware_priv *fw_priv = to_firmware_priv(dev);
Ming Lei12446912012-08-04 12:01:20 +0800418 int loading = test_bit(FW_STATUS_LOADING, &fw_priv->buf->status);
Dmitry Torokhovf8a4bd32010-06-04 00:54:43 -0700419
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420 return sprintf(buf, "%d\n", loading);
421}
422
Ming Lei65710cb2012-08-04 12:01:16 +0800423/* firmware holds the ownership of pages */
David Woodhousedd336c52010-05-02 11:21:21 +0300424static void firmware_free_data(const struct firmware *fw)
425{
Linus Torvaldsabb139e2012-10-03 15:58:32 -0700426 /* Loaded directly? */
427 if (!fw->priv) {
428 vfree(fw->data);
429 return;
430 }
Ming Lei1f2b7952012-08-04 12:01:21 +0800431 fw_free_buf(fw->priv);
David Woodhousedd336c52010-05-02 11:21:21 +0300432}
433
David Woodhouse6e03a202009-04-09 22:04:07 -0700434/* Some architectures don't have PAGE_KERNEL_RO */
435#ifndef PAGE_KERNEL_RO
436#define PAGE_KERNEL_RO PAGE_KERNEL
437#endif
Ming Lei253c9242012-10-09 12:01:02 +0800438
439/* one pages buffer should be mapped/unmapped only once */
440static int fw_map_pages_buf(struct firmware_buf *buf)
441{
Ming Lei746058f2012-10-09 12:01:03 +0800442 if (buf->fmt != PAGE_BUF)
443 return 0;
444
Ming Lei253c9242012-10-09 12:01:02 +0800445 if (buf->data)
446 vunmap(buf->data);
447 buf->data = vmap(buf->pages, buf->nr_pages, 0, PAGE_KERNEL_RO);
448 if (!buf->data)
449 return -ENOMEM;
450 return 0;
451}
452
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453/**
Randy Dunlapeb8e3172005-10-30 15:03:01 -0800454 * firmware_loading_store - set value in the 'loading' control file
Greg Kroah-Hartmane55c8792006-09-14 07:30:59 -0700455 * @dev: device pointer
Randy Dunlapaf9997e2006-12-22 01:06:52 -0800456 * @attr: device attribute pointer
Randy Dunlapeb8e3172005-10-30 15:03:01 -0800457 * @buf: buffer to scan for loading control value
458 * @count: number of bytes in @buf
459 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460 * The relevant values are:
461 *
462 * 1: Start a load, discarding any previous partial load.
Randy Dunlapeb8e3172005-10-30 15:03:01 -0800463 * 0: Conclude the load and hand the data to the driver code.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464 * -1: Conclude the load with an error and discard any written data.
465 **/
Greg Kroah-Hartmane55c8792006-09-14 07:30:59 -0700466static ssize_t firmware_loading_store(struct device *dev,
467 struct device_attribute *attr,
468 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469{
Dmitry Torokhovf8a4bd32010-06-04 00:54:43 -0700470 struct firmware_priv *fw_priv = to_firmware_priv(dev);
Ming Lei12446912012-08-04 12:01:20 +0800471 struct firmware_buf *fw_buf = fw_priv->buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472 int loading = simple_strtol(buf, NULL, 10);
David Woodhouse6e03a202009-04-09 22:04:07 -0700473 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474
Neil Hormaneea915b2012-01-02 15:31:23 -0500475 mutex_lock(&fw_lock);
476
Ming Lei12446912012-08-04 12:01:20 +0800477 if (!fw_buf)
Neil Hormaneea915b2012-01-02 15:31:23 -0500478 goto out;
479
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480 switch (loading) {
481 case 1:
Ming Lei65710cb2012-08-04 12:01:16 +0800482 /* discarding any previous partial load */
Ming Lei12446912012-08-04 12:01:20 +0800483 if (!test_bit(FW_STATUS_DONE, &fw_buf->status)) {
484 for (i = 0; i < fw_buf->nr_pages; i++)
485 __free_page(fw_buf->pages[i]);
486 kfree(fw_buf->pages);
487 fw_buf->pages = NULL;
488 fw_buf->page_array_size = 0;
489 fw_buf->nr_pages = 0;
490 set_bit(FW_STATUS_LOADING, &fw_buf->status);
Ming Lei28eefa72012-08-04 12:01:17 +0800491 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492 break;
493 case 0:
Ming Lei12446912012-08-04 12:01:20 +0800494 if (test_bit(FW_STATUS_LOADING, &fw_buf->status)) {
495 set_bit(FW_STATUS_DONE, &fw_buf->status);
496 clear_bit(FW_STATUS_LOADING, &fw_buf->status);
Ming Lei253c9242012-10-09 12:01:02 +0800497
498 /*
499 * Several loading requests may be pending on
500 * one same firmware buf, so let all requests
501 * see the mapped 'buf->data' once the loading
502 * is completed.
503 * */
504 fw_map_pages_buf(fw_buf);
Ming Lei1f2b7952012-08-04 12:01:21 +0800505 complete_all(&fw_buf->completion);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506 break;
507 }
508 /* fallthrough */
509 default:
Bjorn Helgaas266a8132008-10-15 22:04:20 -0700510 dev_err(dev, "%s: unexpected value (%d)\n", __func__, loading);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511 /* fallthrough */
512 case -1:
513 fw_load_abort(fw_priv);
514 break;
515 }
Neil Hormaneea915b2012-01-02 15:31:23 -0500516out:
517 mutex_unlock(&fw_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518 return count;
519}
520
Greg Kroah-Hartmane55c8792006-09-14 07:30:59 -0700521static DEVICE_ATTR(loading, 0644, firmware_loading_show, firmware_loading_store);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522
Dmitry Torokhovf8a4bd32010-06-04 00:54:43 -0700523static ssize_t firmware_data_read(struct file *filp, struct kobject *kobj,
524 struct bin_attribute *bin_attr,
525 char *buffer, loff_t offset, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526{
Lars-Peter Clausenb0d1f802012-07-03 18:49:36 +0200527 struct device *dev = kobj_to_dev(kobj);
Dmitry Torokhovf8a4bd32010-06-04 00:54:43 -0700528 struct firmware_priv *fw_priv = to_firmware_priv(dev);
Ming Lei12446912012-08-04 12:01:20 +0800529 struct firmware_buf *buf;
Akinobu Mitaf37e6612008-07-25 01:48:23 -0700530 ssize_t ret_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531
Laura Garciacad1e552006-05-23 23:22:38 +0200532 mutex_lock(&fw_lock);
Ming Lei12446912012-08-04 12:01:20 +0800533 buf = fw_priv->buf;
534 if (!buf || test_bit(FW_STATUS_DONE, &buf->status)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535 ret_count = -ENODEV;
536 goto out;
537 }
Ming Lei12446912012-08-04 12:01:20 +0800538 if (offset > buf->size) {
Jiri Slaby308975f2009-06-21 23:57:31 +0200539 ret_count = 0;
540 goto out;
541 }
Ming Lei12446912012-08-04 12:01:20 +0800542 if (count > buf->size - offset)
543 count = buf->size - offset;
David Woodhouse6e03a202009-04-09 22:04:07 -0700544
545 ret_count = count;
546
547 while (count) {
548 void *page_data;
549 int page_nr = offset >> PAGE_SHIFT;
550 int page_ofs = offset & (PAGE_SIZE-1);
551 int page_cnt = min_t(size_t, PAGE_SIZE - page_ofs, count);
552
Ming Lei12446912012-08-04 12:01:20 +0800553 page_data = kmap(buf->pages[page_nr]);
David Woodhouse6e03a202009-04-09 22:04:07 -0700554
555 memcpy(buffer, page_data + page_ofs, page_cnt);
556
Ming Lei12446912012-08-04 12:01:20 +0800557 kunmap(buf->pages[page_nr]);
David Woodhouse6e03a202009-04-09 22:04:07 -0700558 buffer += page_cnt;
559 offset += page_cnt;
560 count -= page_cnt;
561 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562out:
Laura Garciacad1e552006-05-23 23:22:38 +0200563 mutex_unlock(&fw_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564 return ret_count;
565}
Randy Dunlapeb8e3172005-10-30 15:03:01 -0800566
Dmitry Torokhovf8a4bd32010-06-04 00:54:43 -0700567static int fw_realloc_buffer(struct firmware_priv *fw_priv, int min_size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568{
Ming Lei12446912012-08-04 12:01:20 +0800569 struct firmware_buf *buf = fw_priv->buf;
David Woodhouse6e03a202009-04-09 22:04:07 -0700570 int pages_needed = ALIGN(min_size, PAGE_SIZE) >> PAGE_SHIFT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571
David Woodhouse6e03a202009-04-09 22:04:07 -0700572 /* If the array of pages is too small, grow it... */
Ming Lei12446912012-08-04 12:01:20 +0800573 if (buf->page_array_size < pages_needed) {
David Woodhouse6e03a202009-04-09 22:04:07 -0700574 int new_array_size = max(pages_needed,
Ming Lei12446912012-08-04 12:01:20 +0800575 buf->page_array_size * 2);
David Woodhouse6e03a202009-04-09 22:04:07 -0700576 struct page **new_pages;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577
David Woodhouse6e03a202009-04-09 22:04:07 -0700578 new_pages = kmalloc(new_array_size * sizeof(void *),
579 GFP_KERNEL);
580 if (!new_pages) {
581 fw_load_abort(fw_priv);
582 return -ENOMEM;
583 }
Ming Lei12446912012-08-04 12:01:20 +0800584 memcpy(new_pages, buf->pages,
585 buf->page_array_size * sizeof(void *));
586 memset(&new_pages[buf->page_array_size], 0, sizeof(void *) *
587 (new_array_size - buf->page_array_size));
588 kfree(buf->pages);
589 buf->pages = new_pages;
590 buf->page_array_size = new_array_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591 }
David Woodhouse6e03a202009-04-09 22:04:07 -0700592
Ming Lei12446912012-08-04 12:01:20 +0800593 while (buf->nr_pages < pages_needed) {
594 buf->pages[buf->nr_pages] =
David Woodhouse6e03a202009-04-09 22:04:07 -0700595 alloc_page(GFP_KERNEL | __GFP_HIGHMEM);
596
Ming Lei12446912012-08-04 12:01:20 +0800597 if (!buf->pages[buf->nr_pages]) {
David Woodhouse6e03a202009-04-09 22:04:07 -0700598 fw_load_abort(fw_priv);
599 return -ENOMEM;
600 }
Ming Lei12446912012-08-04 12:01:20 +0800601 buf->nr_pages++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603 return 0;
604}
605
606/**
Randy Dunlapeb8e3172005-10-30 15:03:01 -0800607 * firmware_data_write - write method for firmware
Chris Wright2c3c8be2010-05-12 18:28:57 -0700608 * @filp: open sysfs file
Greg Kroah-Hartmane55c8792006-09-14 07:30:59 -0700609 * @kobj: kobject for the device
Randy Dunlap42e61f4a2007-07-23 21:42:11 -0700610 * @bin_attr: bin_attr structure
Randy Dunlapeb8e3172005-10-30 15:03:01 -0800611 * @buffer: buffer being written
612 * @offset: buffer offset for write in total data store area
613 * @count: buffer size
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614 *
Randy Dunlapeb8e3172005-10-30 15:03:01 -0800615 * Data written to the 'data' attribute will be later handed to
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616 * the driver as a firmware image.
617 **/
Dmitry Torokhovf8a4bd32010-06-04 00:54:43 -0700618static ssize_t firmware_data_write(struct file *filp, struct kobject *kobj,
619 struct bin_attribute *bin_attr,
620 char *buffer, loff_t offset, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621{
Lars-Peter Clausenb0d1f802012-07-03 18:49:36 +0200622 struct device *dev = kobj_to_dev(kobj);
Dmitry Torokhovf8a4bd32010-06-04 00:54:43 -0700623 struct firmware_priv *fw_priv = to_firmware_priv(dev);
Ming Lei12446912012-08-04 12:01:20 +0800624 struct firmware_buf *buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625 ssize_t retval;
626
627 if (!capable(CAP_SYS_RAWIO))
628 return -EPERM;
Stanislaw W. Gruszkab92eac02005-06-28 20:44:51 -0700629
Laura Garciacad1e552006-05-23 23:22:38 +0200630 mutex_lock(&fw_lock);
Ming Lei12446912012-08-04 12:01:20 +0800631 buf = fw_priv->buf;
632 if (!buf || test_bit(FW_STATUS_DONE, &buf->status)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633 retval = -ENODEV;
634 goto out;
635 }
Ming Lei65710cb2012-08-04 12:01:16 +0800636
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637 retval = fw_realloc_buffer(fw_priv, offset + count);
638 if (retval)
639 goto out;
640
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641 retval = count;
David Woodhouse6e03a202009-04-09 22:04:07 -0700642
643 while (count) {
644 void *page_data;
645 int page_nr = offset >> PAGE_SHIFT;
646 int page_ofs = offset & (PAGE_SIZE - 1);
647 int page_cnt = min_t(size_t, PAGE_SIZE - page_ofs, count);
648
Ming Lei12446912012-08-04 12:01:20 +0800649 page_data = kmap(buf->pages[page_nr]);
David Woodhouse6e03a202009-04-09 22:04:07 -0700650
651 memcpy(page_data + page_ofs, buffer, page_cnt);
652
Ming Lei12446912012-08-04 12:01:20 +0800653 kunmap(buf->pages[page_nr]);
David Woodhouse6e03a202009-04-09 22:04:07 -0700654 buffer += page_cnt;
655 offset += page_cnt;
656 count -= page_cnt;
657 }
658
Ming Lei12446912012-08-04 12:01:20 +0800659 buf->size = max_t(size_t, offset, buf->size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660out:
Laura Garciacad1e552006-05-23 23:22:38 +0200661 mutex_unlock(&fw_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662 return retval;
663}
Randy Dunlapeb8e3172005-10-30 15:03:01 -0800664
Dmitry Torokhov0983ca22010-06-04 00:54:37 -0700665static struct bin_attribute firmware_attr_data = {
666 .attr = { .name = "data", .mode = 0644 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667 .size = 0,
668 .read = firmware_data_read,
669 .write = firmware_data_write,
670};
671
Chuansheng Liuce2fcbd2012-11-08 19:14:40 +0800672static void firmware_class_timeout_work(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673{
Chuansheng Liuce2fcbd2012-11-08 19:14:40 +0800674 struct firmware_priv *fw_priv = container_of(work,
675 struct firmware_priv, timeout_work.work);
Dmitry Torokhovf8a4bd32010-06-04 00:54:43 -0700676
Chuansheng Liuce2fcbd2012-11-08 19:14:40 +0800677 mutex_lock(&fw_lock);
678 if (test_bit(FW_STATUS_DONE, &(fw_priv->buf->status))) {
679 mutex_unlock(&fw_lock);
680 return;
681 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682 fw_load_abort(fw_priv);
Chuansheng Liuce2fcbd2012-11-08 19:14:40 +0800683 mutex_unlock(&fw_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684}
685
Dmitry Torokhovf8a4bd32010-06-04 00:54:43 -0700686static struct firmware_priv *
Stephen Boyddddb5542012-03-28 23:30:43 +0200687fw_create_instance(struct firmware *firmware, const char *fw_name,
Dmitry Torokhovf8a4bd32010-06-04 00:54:43 -0700688 struct device *device, bool uevent, bool nowait)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689{
Dmitry Torokhovf8a4bd32010-06-04 00:54:43 -0700690 struct firmware_priv *fw_priv;
691 struct device *f_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692
Ming Lei12446912012-08-04 12:01:20 +0800693 fw_priv = kzalloc(sizeof(*fw_priv), GFP_KERNEL);
Dmitry Torokhovf8a4bd32010-06-04 00:54:43 -0700694 if (!fw_priv) {
Bjorn Helgaas266a8132008-10-15 22:04:20 -0700695 dev_err(device, "%s: kmalloc failed\n", __func__);
Ming Lei12446912012-08-04 12:01:20 +0800696 fw_priv = ERR_PTR(-ENOMEM);
697 goto exit;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699
Dmitry Torokhovf8a4bd32010-06-04 00:54:43 -0700700 fw_priv->nowait = nowait;
Ming Lei1f2b7952012-08-04 12:01:21 +0800701 fw_priv->fw = firmware;
Chuansheng Liuce2fcbd2012-11-08 19:14:40 +0800702 INIT_DELAYED_WORK(&fw_priv->timeout_work,
703 firmware_class_timeout_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704
Dmitry Torokhovf8a4bd32010-06-04 00:54:43 -0700705 f_dev = &fw_priv->dev;
706
707 device_initialize(f_dev);
Ming Lei99c2aa72012-08-04 12:01:19 +0800708 dev_set_name(f_dev, "%s", fw_name);
Greg Kroah-Hartmane55c8792006-09-14 07:30:59 -0700709 f_dev->parent = device;
710 f_dev->class = &firmware_class;
Ming Lei12446912012-08-04 12:01:20 +0800711exit:
Dmitry Torokhovf8a4bd32010-06-04 00:54:43 -0700712 return fw_priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713}
714
Ming Lei1f2b7952012-08-04 12:01:21 +0800715/* store the pages buffer info firmware from buf */
716static void fw_set_page_data(struct firmware_buf *buf, struct firmware *fw)
717{
718 fw->priv = buf;
719 fw->pages = buf->pages;
720 fw->size = buf->size;
721 fw->data = buf->data;
722
723 pr_debug("%s: fw-%s buf=%p data=%p size=%u\n",
724 __func__, buf->fw_id, buf, buf->data,
725 (unsigned int)buf->size);
726}
727
Ming Leicfe016b2012-09-08 17:32:30 +0800728#ifdef CONFIG_PM_SLEEP
Ming Leif531f05a2012-08-04 12:01:25 +0800729static void fw_name_devm_release(struct device *dev, void *res)
730{
731 struct fw_name_devm *fwn = res;
732
733 if (fwn->magic == (unsigned long)&fw_cache)
734 pr_debug("%s: fw_name-%s devm-%p released\n",
735 __func__, fwn->name, res);
736}
737
738static int fw_devm_match(struct device *dev, void *res,
739 void *match_data)
740{
741 struct fw_name_devm *fwn = res;
742
743 return (fwn->magic == (unsigned long)&fw_cache) &&
744 !strcmp(fwn->name, match_data);
745}
746
747static struct fw_name_devm *fw_find_devm_name(struct device *dev,
748 const char *name)
749{
750 struct fw_name_devm *fwn;
751
752 fwn = devres_find(dev, fw_name_devm_release,
753 fw_devm_match, (void *)name);
754 return fwn;
755}
756
757/* add firmware name into devres list */
758static int fw_add_devm_name(struct device *dev, const char *name)
759{
760 struct fw_name_devm *fwn;
761
762 fwn = fw_find_devm_name(dev, name);
763 if (fwn)
764 return 1;
765
766 fwn = devres_alloc(fw_name_devm_release, sizeof(struct fw_name_devm) +
767 strlen(name) + 1, GFP_KERNEL);
768 if (!fwn)
769 return -ENOMEM;
770
771 fwn->magic = (unsigned long)&fw_cache;
772 strcpy(fwn->name, name);
773 devres_add(dev, fwn);
774
775 return 0;
776}
Ming Leicfe016b2012-09-08 17:32:30 +0800777#else
778static int fw_add_devm_name(struct device *dev, const char *name)
779{
780 return 0;
781}
782#endif
Ming Leif531f05a2012-08-04 12:01:25 +0800783
Ming Lei1f2b7952012-08-04 12:01:21 +0800784static void _request_firmware_cleanup(const struct firmware **firmware_p)
785{
786 release_firmware(*firmware_p);
787 *firmware_p = NULL;
788}
789
Stephen Boyddddb5542012-03-28 23:30:43 +0200790static struct firmware_priv *
791_request_firmware_prepare(const struct firmware **firmware_p, const char *name,
792 struct device *device, bool uevent, bool nowait)
Dmitry Torokhovf8a4bd32010-06-04 00:54:43 -0700793{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794 struct firmware *firmware;
Ming Lei1f2b7952012-08-04 12:01:21 +0800795 struct firmware_priv *fw_priv = NULL;
796 struct firmware_buf *buf;
797 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798
799 if (!firmware_p)
Stephen Boyddddb5542012-03-28 23:30:43 +0200800 return ERR_PTR(-EINVAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801
Jiri Slaby4aed0642005-09-13 01:25:01 -0700802 *firmware_p = firmware = kzalloc(sizeof(*firmware), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803 if (!firmware) {
Bjorn Helgaas266a8132008-10-15 22:04:20 -0700804 dev_err(device, "%s: kmalloc(struct firmware) failed\n",
805 __func__);
Stephen Boyddddb5542012-03-28 23:30:43 +0200806 return ERR_PTR(-ENOMEM);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808
Dmitry Torokhovbcb9bd12010-03-13 23:49:18 -0800809 if (fw_get_builtin_firmware(firmware, name)) {
Rafael J. Wysocki6f18ff92010-02-27 21:43:22 +0100810 dev_dbg(device, "firmware: using built-in firmware %s\n", name);
Stephen Boyddddb5542012-03-28 23:30:43 +0200811 return NULL;
David Woodhouse5658c762008-05-23 13:52:42 +0100812 }
813
Ming Lei1f2b7952012-08-04 12:01:21 +0800814 ret = fw_lookup_and_allocate_buf(name, &fw_cache, &buf);
815 if (!ret)
816 fw_priv = fw_create_instance(firmware, name, device,
817 uevent, nowait);
818
819 if (IS_ERR(fw_priv) || ret < 0) {
820 kfree(firmware);
Stephen Boyddddb5542012-03-28 23:30:43 +0200821 *firmware_p = NULL;
Ming Lei1f2b7952012-08-04 12:01:21 +0800822 return ERR_PTR(-ENOMEM);
823 } else if (fw_priv) {
824 fw_priv->buf = buf;
825
826 /*
827 * bind with 'buf' now to avoid warning in failure path
828 * of requesting firmware.
829 */
830 firmware->priv = buf;
831 return fw_priv;
Stephen Boyddddb5542012-03-28 23:30:43 +0200832 }
Ming Lei1f2b7952012-08-04 12:01:21 +0800833
834 /* share the cached buf, which is inprogessing or completed */
835 check_status:
836 mutex_lock(&fw_lock);
837 if (test_bit(FW_STATUS_ABORT, &buf->status)) {
838 fw_priv = ERR_PTR(-ENOENT);
Ming Leief40bb12012-08-20 19:04:15 +0800839 firmware->priv = buf;
Ming Lei1f2b7952012-08-04 12:01:21 +0800840 _request_firmware_cleanup(firmware_p);
841 goto exit;
842 } else if (test_bit(FW_STATUS_DONE, &buf->status)) {
843 fw_priv = NULL;
844 fw_set_page_data(buf, firmware);
845 goto exit;
846 }
847 mutex_unlock(&fw_lock);
848 wait_for_completion(&buf->completion);
849 goto check_status;
850
851exit:
852 mutex_unlock(&fw_lock);
Stephen Boyddddb5542012-03-28 23:30:43 +0200853 return fw_priv;
Rafael J. Wysocki811fa402012-03-28 23:29:55 +0200854}
855
Stephen Boyddddb5542012-03-28 23:30:43 +0200856static int _request_firmware_load(struct firmware_priv *fw_priv, bool uevent,
857 long timeout)
Rafael J. Wysocki811fa402012-03-28 23:29:55 +0200858{
Rafael J. Wysocki9b78c1d2012-03-28 23:30:02 +0200859 int retval = 0;
Stephen Boyddddb5542012-03-28 23:30:43 +0200860 struct device *f_dev = &fw_priv->dev;
Ming Lei12446912012-08-04 12:01:20 +0800861 struct firmware_buf *buf = fw_priv->buf;
Ming Leiac39b3e2012-08-20 19:04:16 +0800862 struct firmware_cache *fwc = &fw_cache;
Ming Lei746058f2012-10-09 12:01:03 +0800863 int direct_load = 0;
864
865 /* try direct loading from fs first */
866 if (fw_get_filesystem_firmware(buf)) {
867 dev_dbg(f_dev->parent, "firmware: direct-loading"
868 " firmware %s\n", buf->fw_id);
869
Chuansheng Liuce2fcbd2012-11-08 19:14:40 +0800870 mutex_lock(&fw_lock);
Ming Lei746058f2012-10-09 12:01:03 +0800871 set_bit(FW_STATUS_DONE, &buf->status);
Chuansheng Liuce2fcbd2012-11-08 19:14:40 +0800872 mutex_unlock(&fw_lock);
Ming Lei746058f2012-10-09 12:01:03 +0800873 complete_all(&buf->completion);
874 direct_load = 1;
875 goto handle_fw;
876 }
877
878 /* fall back on userspace loading */
879 buf->fmt = PAGE_BUF;
Linus Torvaldscaca9512011-08-24 15:55:30 -0700880
Stephen Boyddddb5542012-03-28 23:30:43 +0200881 dev_set_uevent_suppress(f_dev, true);
David Woodhouse5658c762008-05-23 13:52:42 +0100882
Stephen Boyddddb5542012-03-28 23:30:43 +0200883 /* Need to pin this module until class device is destroyed */
884 __module_get(THIS_MODULE);
885
886 retval = device_add(f_dev);
887 if (retval) {
888 dev_err(f_dev, "%s: device_register failed\n", __func__);
889 goto err_put_dev;
890 }
891
892 retval = device_create_bin_file(f_dev, &firmware_attr_data);
893 if (retval) {
894 dev_err(f_dev, "%s: sysfs_create_bin_file failed\n", __func__);
895 goto err_del_dev;
896 }
897
898 retval = device_create_file(f_dev, &dev_attr_loading);
899 if (retval) {
900 dev_err(f_dev, "%s: device_create_file failed\n", __func__);
901 goto err_del_bin_attr;
902 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700903
Kay Sievers312c0042005-11-16 09:00:00 +0100904 if (uevent) {
Stephen Boyddddb5542012-03-28 23:30:43 +0200905 dev_set_uevent_suppress(f_dev, false);
Ming Lei12446912012-08-04 12:01:20 +0800906 dev_dbg(f_dev, "firmware: requesting %s\n", buf->fw_id);
Rafael J. Wysocki9b78c1d2012-03-28 23:30:02 +0200907 if (timeout != MAX_SCHEDULE_TIMEOUT)
Chuansheng Liuce2fcbd2012-11-08 19:14:40 +0800908 schedule_delayed_work(&fw_priv->timeout_work, timeout);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700909
Dmitry Torokhovf8a4bd32010-06-04 00:54:43 -0700910 kobject_uevent(&fw_priv->dev.kobj, KOBJ_ADD);
911 }
912
Ming Lei12446912012-08-04 12:01:20 +0800913 wait_for_completion(&buf->completion);
Dmitry Torokhovf8a4bd32010-06-04 00:54:43 -0700914
Chuansheng Liuce2fcbd2012-11-08 19:14:40 +0800915 cancel_delayed_work_sync(&fw_priv->timeout_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700916
Ming Lei746058f2012-10-09 12:01:03 +0800917handle_fw:
Laura Garciacad1e552006-05-23 23:22:38 +0200918 mutex_lock(&fw_lock);
Ming Lei12446912012-08-04 12:01:20 +0800919 if (!buf->size || test_bit(FW_STATUS_ABORT, &buf->status))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700920 retval = -ENOENT;
Ming Lei65710cb2012-08-04 12:01:16 +0800921
Ming Leif531f05a2012-08-04 12:01:25 +0800922 /*
923 * add firmware name into devres list so that we can auto cache
924 * and uncache firmware for device.
925 *
926 * f_dev->parent may has been deleted already, but the problem
927 * should be fixed in devres or driver core.
928 */
929 if (!retval && f_dev->parent)
930 fw_add_devm_name(f_dev->parent, buf->fw_id);
931
Ming Leiac39b3e2012-08-20 19:04:16 +0800932 /*
933 * After caching firmware image is started, let it piggyback
934 * on request firmware.
935 */
936 if (!retval && fwc->state == FW_LOADER_START_CACHE) {
937 if (fw_cache_piggyback_on_request(buf->fw_id))
938 kref_get(&buf->ref);
939 }
940
Ming Lei1f2b7952012-08-04 12:01:21 +0800941 /* pass the pages buffer to driver at the last minute */
942 fw_set_page_data(buf, fw_priv->fw);
943
Ming Lei12446912012-08-04 12:01:20 +0800944 fw_priv->buf = NULL;
Laura Garciacad1e552006-05-23 23:22:38 +0200945 mutex_unlock(&fw_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700946
Ming Lei746058f2012-10-09 12:01:03 +0800947 if (direct_load)
948 goto err_put_dev;
949
Stephen Boyddddb5542012-03-28 23:30:43 +0200950 device_remove_file(f_dev, &dev_attr_loading);
951err_del_bin_attr:
952 device_remove_bin_file(f_dev, &firmware_attr_data);
953err_del_dev:
954 device_del(f_dev);
955err_put_dev:
956 put_device(f_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700957 return retval;
958}
959
960/**
Kay Sievers312c0042005-11-16 09:00:00 +0100961 * request_firmware: - send firmware request and wait for it
Randy Dunlapeb8e3172005-10-30 15:03:01 -0800962 * @firmware_p: pointer to firmware image
963 * @name: name of firmware file
964 * @device: device for which firmware is being loaded
965 *
966 * @firmware_p will be used to return a firmware image by the name
Abhay Salunke6e3eaab02005-09-06 15:17:13 -0700967 * of @name for device @device.
968 *
969 * Should be called from user context where sleeping is allowed.
970 *
Kay Sievers312c0042005-11-16 09:00:00 +0100971 * @name will be used as $FIRMWARE in the uevent environment and
Abhay Salunke6e3eaab02005-09-06 15:17:13 -0700972 * should be distinctive enough not to be confused with any other
973 * firmware image for this or any other device.
Ming Lei0cfc1e12012-08-04 12:01:23 +0800974 *
975 * Caller must hold the reference count of @device.
Abhay Salunke6e3eaab02005-09-06 15:17:13 -0700976 **/
977int
978request_firmware(const struct firmware **firmware_p, const char *name,
979 struct device *device)
980{
Stephen Boyddddb5542012-03-28 23:30:43 +0200981 struct firmware_priv *fw_priv;
Rafael J. Wysocki811fa402012-03-28 23:29:55 +0200982 int ret;
983
Stephen Boyddddb5542012-03-28 23:30:43 +0200984 fw_priv = _request_firmware_prepare(firmware_p, name, device, true,
985 false);
986 if (IS_ERR_OR_NULL(fw_priv))
987 return PTR_RET(fw_priv);
Rafael J. Wysocki811fa402012-03-28 23:29:55 +0200988
Rafael J. Wysocki9b78c1d2012-03-28 23:30:02 +0200989 ret = usermodehelper_read_trylock();
990 if (WARN_ON(ret)) {
991 dev_err(device, "firmware: %s will not be loaded\n", name);
992 } else {
Stephen Boyddddb5542012-03-28 23:30:43 +0200993 ret = _request_firmware_load(fw_priv, true,
Rafael J. Wysocki9b78c1d2012-03-28 23:30:02 +0200994 firmware_loading_timeout());
995 usermodehelper_read_unlock();
996 }
Rafael J. Wysocki811fa402012-03-28 23:29:55 +0200997 if (ret)
998 _request_firmware_cleanup(firmware_p);
999
1000 return ret;
Abhay Salunke6e3eaab02005-09-06 15:17:13 -07001001}
1002
1003/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07001004 * release_firmware: - release the resource associated with a firmware image
Randy Dunlapeb8e3172005-10-30 15:03:01 -08001005 * @fw: firmware resource to release
Linus Torvalds1da177e2005-04-16 15:20:36 -07001006 **/
Dmitry Torokhovbcb9bd12010-03-13 23:49:18 -08001007void release_firmware(const struct firmware *fw)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001008{
1009 if (fw) {
Dmitry Torokhovbcb9bd12010-03-13 23:49:18 -08001010 if (!fw_is_builtin_firmware(fw))
1011 firmware_free_data(fw);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001012 kfree(fw);
1013 }
1014}
1015
Linus Torvalds1da177e2005-04-16 15:20:36 -07001016/* Async support */
1017struct firmware_work {
1018 struct work_struct work;
1019 struct module *module;
1020 const char *name;
1021 struct device *device;
1022 void *context;
1023 void (*cont)(const struct firmware *fw, void *context);
Bob Liu072fc8f2011-01-26 18:33:32 +08001024 bool uevent;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001025};
1026
Stephen Boyda36cf842012-03-28 23:31:00 +02001027static void request_firmware_work_func(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001028{
Stephen Boyda36cf842012-03-28 23:31:00 +02001029 struct firmware_work *fw_work;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001030 const struct firmware *fw;
Stephen Boyddddb5542012-03-28 23:30:43 +02001031 struct firmware_priv *fw_priv;
Rafael J. Wysocki9b78c1d2012-03-28 23:30:02 +02001032 long timeout;
matthieu castet113fab12005-11-13 16:07:39 -08001033 int ret;
Dmitry Torokhovf8a4bd32010-06-04 00:54:43 -07001034
Stephen Boyda36cf842012-03-28 23:31:00 +02001035 fw_work = container_of(work, struct firmware_work, work);
Stephen Boyddddb5542012-03-28 23:30:43 +02001036 fw_priv = _request_firmware_prepare(&fw, fw_work->name, fw_work->device,
1037 fw_work->uevent, true);
1038 if (IS_ERR_OR_NULL(fw_priv)) {
1039 ret = PTR_RET(fw_priv);
Rafael J. Wysocki811fa402012-03-28 23:29:55 +02001040 goto out;
Stephen Boyddddb5542012-03-28 23:30:43 +02001041 }
Rafael J. Wysocki811fa402012-03-28 23:29:55 +02001042
Rafael J. Wysocki9b78c1d2012-03-28 23:30:02 +02001043 timeout = usermodehelper_read_lock_wait(firmware_loading_timeout());
1044 if (timeout) {
Stephen Boyddddb5542012-03-28 23:30:43 +02001045 ret = _request_firmware_load(fw_priv, fw_work->uevent, timeout);
Rafael J. Wysocki9b78c1d2012-03-28 23:30:02 +02001046 usermodehelper_read_unlock();
1047 } else {
1048 dev_dbg(fw_work->device, "firmware: %s loading timed out\n",
1049 fw_work->name);
1050 ret = -EAGAIN;
1051 }
Rafael J. Wysocki811fa402012-03-28 23:29:55 +02001052 if (ret)
1053 _request_firmware_cleanup(&fw);
1054
1055 out:
Johannes Berg9ebfbd42009-10-29 12:36:02 +01001056 fw_work->cont(fw, fw_work->context);
Ming Lei0cfc1e12012-08-04 12:01:23 +08001057 put_device(fw_work->device);
Johannes Berg9ebfbd42009-10-29 12:36:02 +01001058
Linus Torvalds1da177e2005-04-16 15:20:36 -07001059 module_put(fw_work->module);
1060 kfree(fw_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001061}
1062
1063/**
Ben Hutchings3c31f072010-02-14 14:18:53 +00001064 * request_firmware_nowait - asynchronous version of request_firmware
Randy Dunlapeb8e3172005-10-30 15:03:01 -08001065 * @module: module requesting the firmware
Kay Sievers312c0042005-11-16 09:00:00 +01001066 * @uevent: sends uevent to copy the firmware image if this flag
Randy Dunlapeb8e3172005-10-30 15:03:01 -08001067 * is non-zero else the firmware copy must be done manually.
1068 * @name: name of firmware file
1069 * @device: device for which firmware is being loaded
Johannes Berg9ebfbd42009-10-29 12:36:02 +01001070 * @gfp: allocation flags
Randy Dunlapeb8e3172005-10-30 15:03:01 -08001071 * @context: will be passed over to @cont, and
1072 * @fw may be %NULL if firmware request fails.
1073 * @cont: function will be called asynchronously when the firmware
1074 * request is over.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001075 *
Ming Lei0cfc1e12012-08-04 12:01:23 +08001076 * Caller must hold the reference count of @device.
1077 *
Ming Lei6f21a622012-08-04 12:01:24 +08001078 * Asynchronous variant of request_firmware() for user contexts:
1079 * - sleep for as small periods as possible since it may
1080 * increase kernel boot time of built-in device drivers
1081 * requesting firmware in their ->probe() methods, if
1082 * @gfp is GFP_KERNEL.
1083 *
1084 * - can't sleep at all if @gfp is GFP_ATOMIC.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001085 **/
1086int
1087request_firmware_nowait(
Bob Liu072fc8f2011-01-26 18:33:32 +08001088 struct module *module, bool uevent,
Johannes Berg9ebfbd42009-10-29 12:36:02 +01001089 const char *name, struct device *device, gfp_t gfp, void *context,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001090 void (*cont)(const struct firmware *fw, void *context))
1091{
Dmitry Torokhovf8a4bd32010-06-04 00:54:43 -07001092 struct firmware_work *fw_work;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001093
Dmitry Torokhovf8a4bd32010-06-04 00:54:43 -07001094 fw_work = kzalloc(sizeof (struct firmware_work), gfp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001095 if (!fw_work)
1096 return -ENOMEM;
Dmitry Torokhovf8a4bd32010-06-04 00:54:43 -07001097
1098 fw_work->module = module;
1099 fw_work->name = name;
1100 fw_work->device = device;
1101 fw_work->context = context;
1102 fw_work->cont = cont;
1103 fw_work->uevent = uevent;
1104
Linus Torvalds1da177e2005-04-16 15:20:36 -07001105 if (!try_module_get(module)) {
1106 kfree(fw_work);
1107 return -EFAULT;
1108 }
1109
Ming Lei0cfc1e12012-08-04 12:01:23 +08001110 get_device(fw_work->device);
Stephen Boyda36cf842012-03-28 23:31:00 +02001111 INIT_WORK(&fw_work->work, request_firmware_work_func);
1112 schedule_work(&fw_work->work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001113 return 0;
1114}
1115
Ming Lei2887b392012-08-04 12:01:22 +08001116/**
1117 * cache_firmware - cache one firmware image in kernel memory space
1118 * @fw_name: the firmware image name
1119 *
1120 * Cache firmware in kernel memory so that drivers can use it when
1121 * system isn't ready for them to request firmware image from userspace.
1122 * Once it returns successfully, driver can use request_firmware or its
1123 * nowait version to get the cached firmware without any interacting
1124 * with userspace
1125 *
1126 * Return 0 if the firmware image has been cached successfully
1127 * Return !0 otherwise
1128 *
1129 */
1130int cache_firmware(const char *fw_name)
1131{
1132 int ret;
1133 const struct firmware *fw;
1134
1135 pr_debug("%s: %s\n", __func__, fw_name);
1136
1137 ret = request_firmware(&fw, fw_name, NULL);
1138 if (!ret)
1139 kfree(fw);
1140
1141 pr_debug("%s: %s ret=%d\n", __func__, fw_name, ret);
1142
1143 return ret;
1144}
1145
1146/**
1147 * uncache_firmware - remove one cached firmware image
1148 * @fw_name: the firmware image name
1149 *
1150 * Uncache one firmware image which has been cached successfully
1151 * before.
1152 *
1153 * Return 0 if the firmware cache has been removed successfully
1154 * Return !0 otherwise
1155 *
1156 */
1157int uncache_firmware(const char *fw_name)
1158{
1159 struct firmware_buf *buf;
1160 struct firmware fw;
1161
1162 pr_debug("%s: %s\n", __func__, fw_name);
1163
1164 if (fw_get_builtin_firmware(&fw, fw_name))
1165 return 0;
1166
1167 buf = fw_lookup_buf(fw_name);
1168 if (buf) {
1169 fw_free_buf(buf);
1170 return 0;
1171 }
1172
1173 return -EINVAL;
1174}
1175
Ming Leicfe016b2012-09-08 17:32:30 +08001176#ifdef CONFIG_PM_SLEEP
Ming Leid28d3882012-10-09 12:01:04 +08001177static ASYNC_DOMAIN_EXCLUSIVE(fw_cache_domain);
1178
Ming Lei37276a52012-08-04 12:01:27 +08001179static struct fw_cache_entry *alloc_fw_cache_entry(const char *name)
1180{
1181 struct fw_cache_entry *fce;
1182
1183 fce = kzalloc(sizeof(*fce) + strlen(name) + 1, GFP_ATOMIC);
1184 if (!fce)
1185 goto exit;
1186
1187 strcpy(fce->name, name);
1188exit:
1189 return fce;
1190}
1191
Ming Lei373304f2012-10-09 12:01:01 +08001192static int __fw_entry_found(const char *name)
1193{
1194 struct firmware_cache *fwc = &fw_cache;
1195 struct fw_cache_entry *fce;
1196
1197 list_for_each_entry(fce, &fwc->fw_names, list) {
1198 if (!strcmp(fce->name, name))
1199 return 1;
1200 }
1201 return 0;
1202}
1203
Ming Leiac39b3e2012-08-20 19:04:16 +08001204static int fw_cache_piggyback_on_request(const char *name)
1205{
1206 struct firmware_cache *fwc = &fw_cache;
1207 struct fw_cache_entry *fce;
1208 int ret = 0;
1209
1210 spin_lock(&fwc->name_lock);
Ming Lei373304f2012-10-09 12:01:01 +08001211 if (__fw_entry_found(name))
1212 goto found;
Ming Leiac39b3e2012-08-20 19:04:16 +08001213
1214 fce = alloc_fw_cache_entry(name);
1215 if (fce) {
1216 ret = 1;
1217 list_add(&fce->list, &fwc->fw_names);
1218 pr_debug("%s: fw: %s\n", __func__, name);
1219 }
1220found:
1221 spin_unlock(&fwc->name_lock);
1222 return ret;
1223}
1224
Ming Lei37276a52012-08-04 12:01:27 +08001225static void free_fw_cache_entry(struct fw_cache_entry *fce)
1226{
1227 kfree(fce);
1228}
1229
1230static void __async_dev_cache_fw_image(void *fw_entry,
1231 async_cookie_t cookie)
1232{
1233 struct fw_cache_entry *fce = fw_entry;
1234 struct firmware_cache *fwc = &fw_cache;
1235 int ret;
1236
1237 ret = cache_firmware(fce->name);
Ming Leiac39b3e2012-08-20 19:04:16 +08001238 if (ret) {
1239 spin_lock(&fwc->name_lock);
1240 list_del(&fce->list);
1241 spin_unlock(&fwc->name_lock);
Ming Lei37276a52012-08-04 12:01:27 +08001242
Ming Leiac39b3e2012-08-20 19:04:16 +08001243 free_fw_cache_entry(fce);
1244 }
Ming Lei37276a52012-08-04 12:01:27 +08001245}
1246
1247/* called with dev->devres_lock held */
1248static void dev_create_fw_entry(struct device *dev, void *res,
1249 void *data)
1250{
1251 struct fw_name_devm *fwn = res;
1252 const char *fw_name = fwn->name;
1253 struct list_head *head = data;
1254 struct fw_cache_entry *fce;
1255
1256 fce = alloc_fw_cache_entry(fw_name);
1257 if (fce)
1258 list_add(&fce->list, head);
1259}
1260
1261static int devm_name_match(struct device *dev, void *res,
1262 void *match_data)
1263{
1264 struct fw_name_devm *fwn = res;
1265 return (fwn->magic == (unsigned long)match_data);
1266}
1267
Ming Leiab6dd8e2012-08-17 22:07:00 +08001268static void dev_cache_fw_image(struct device *dev, void *data)
Ming Lei37276a52012-08-04 12:01:27 +08001269{
1270 LIST_HEAD(todo);
1271 struct fw_cache_entry *fce;
1272 struct fw_cache_entry *fce_next;
1273 struct firmware_cache *fwc = &fw_cache;
1274
1275 devres_for_each_res(dev, fw_name_devm_release,
1276 devm_name_match, &fw_cache,
1277 dev_create_fw_entry, &todo);
1278
1279 list_for_each_entry_safe(fce, fce_next, &todo, list) {
1280 list_del(&fce->list);
1281
1282 spin_lock(&fwc->name_lock);
Ming Lei373304f2012-10-09 12:01:01 +08001283 /* only one cache entry for one firmware */
1284 if (!__fw_entry_found(fce->name)) {
Ming Lei373304f2012-10-09 12:01:01 +08001285 list_add(&fce->list, &fwc->fw_names);
1286 } else {
1287 free_fw_cache_entry(fce);
1288 fce = NULL;
1289 }
Ming Lei37276a52012-08-04 12:01:27 +08001290 spin_unlock(&fwc->name_lock);
1291
Ming Lei373304f2012-10-09 12:01:01 +08001292 if (fce)
Ming Leid28d3882012-10-09 12:01:04 +08001293 async_schedule_domain(__async_dev_cache_fw_image,
1294 (void *)fce,
1295 &fw_cache_domain);
Ming Lei37276a52012-08-04 12:01:27 +08001296 }
1297}
1298
1299static void __device_uncache_fw_images(void)
1300{
1301 struct firmware_cache *fwc = &fw_cache;
1302 struct fw_cache_entry *fce;
1303
1304 spin_lock(&fwc->name_lock);
1305 while (!list_empty(&fwc->fw_names)) {
1306 fce = list_entry(fwc->fw_names.next,
1307 struct fw_cache_entry, list);
1308 list_del(&fce->list);
1309 spin_unlock(&fwc->name_lock);
1310
1311 uncache_firmware(fce->name);
1312 free_fw_cache_entry(fce);
1313
1314 spin_lock(&fwc->name_lock);
1315 }
1316 spin_unlock(&fwc->name_lock);
1317}
1318
1319/**
1320 * device_cache_fw_images - cache devices' firmware
1321 *
1322 * If one device called request_firmware or its nowait version
1323 * successfully before, the firmware names are recored into the
1324 * device's devres link list, so device_cache_fw_images can call
1325 * cache_firmware() to cache these firmwares for the device,
1326 * then the device driver can load its firmwares easily at
1327 * time when system is not ready to complete loading firmware.
1328 */
1329static void device_cache_fw_images(void)
1330{
1331 struct firmware_cache *fwc = &fw_cache;
Ming Leiffe53f62012-08-04 12:01:28 +08001332 int old_timeout;
Ming Lei37276a52012-08-04 12:01:27 +08001333 DEFINE_WAIT(wait);
1334
1335 pr_debug("%s\n", __func__);
1336
Ming Lei373304f2012-10-09 12:01:01 +08001337 /* cancel uncache work */
1338 cancel_delayed_work_sync(&fwc->work);
1339
Ming Leiffe53f62012-08-04 12:01:28 +08001340 /*
1341 * use small loading timeout for caching devices' firmware
1342 * because all these firmware images have been loaded
1343 * successfully at lease once, also system is ready for
1344 * completing firmware loading now. The maximum size of
1345 * firmware in current distributions is about 2M bytes,
1346 * so 10 secs should be enough.
1347 */
1348 old_timeout = loading_timeout;
1349 loading_timeout = 10;
1350
Ming Leiac39b3e2012-08-20 19:04:16 +08001351 mutex_lock(&fw_lock);
1352 fwc->state = FW_LOADER_START_CACHE;
Ming Leiab6dd8e2012-08-17 22:07:00 +08001353 dpm_for_each_dev(NULL, dev_cache_fw_image);
Ming Leiac39b3e2012-08-20 19:04:16 +08001354 mutex_unlock(&fw_lock);
Ming Lei37276a52012-08-04 12:01:27 +08001355
1356 /* wait for completion of caching firmware for all devices */
Ming Leid28d3882012-10-09 12:01:04 +08001357 async_synchronize_full_domain(&fw_cache_domain);
Ming Leiffe53f62012-08-04 12:01:28 +08001358
1359 loading_timeout = old_timeout;
Ming Lei37276a52012-08-04 12:01:27 +08001360}
1361
1362/**
1363 * device_uncache_fw_images - uncache devices' firmware
1364 *
1365 * uncache all firmwares which have been cached successfully
1366 * by device_uncache_fw_images earlier
1367 */
1368static void device_uncache_fw_images(void)
1369{
1370 pr_debug("%s\n", __func__);
1371 __device_uncache_fw_images();
1372}
1373
1374static void device_uncache_fw_images_work(struct work_struct *work)
1375{
1376 device_uncache_fw_images();
1377}
1378
1379/**
1380 * device_uncache_fw_images_delay - uncache devices firmwares
1381 * @delay: number of milliseconds to delay uncache device firmwares
1382 *
1383 * uncache all devices's firmwares which has been cached successfully
1384 * by device_cache_fw_images after @delay milliseconds.
1385 */
1386static void device_uncache_fw_images_delay(unsigned long delay)
1387{
1388 schedule_delayed_work(&fw_cache.work,
1389 msecs_to_jiffies(delay));
1390}
1391
Ming Lei07646d92012-08-04 12:01:29 +08001392static int fw_pm_notify(struct notifier_block *notify_block,
1393 unsigned long mode, void *unused)
1394{
1395 switch (mode) {
1396 case PM_HIBERNATION_PREPARE:
1397 case PM_SUSPEND_PREPARE:
1398 device_cache_fw_images();
1399 break;
1400
1401 case PM_POST_SUSPEND:
1402 case PM_POST_HIBERNATION:
1403 case PM_POST_RESTORE:
Ming Leiac39b3e2012-08-20 19:04:16 +08001404 /*
1405 * In case that system sleep failed and syscore_suspend is
1406 * not called.
1407 */
1408 mutex_lock(&fw_lock);
1409 fw_cache.state = FW_LOADER_NO_CACHE;
1410 mutex_unlock(&fw_lock);
1411
Ming Lei07646d92012-08-04 12:01:29 +08001412 device_uncache_fw_images_delay(10 * MSEC_PER_SEC);
1413 break;
1414 }
1415
1416 return 0;
1417}
Ming Lei07646d92012-08-04 12:01:29 +08001418
Ming Leiac39b3e2012-08-20 19:04:16 +08001419/* stop caching firmware once syscore_suspend is reached */
1420static int fw_suspend(void)
1421{
1422 fw_cache.state = FW_LOADER_NO_CACHE;
1423 return 0;
1424}
1425
1426static struct syscore_ops fw_syscore_ops = {
1427 .suspend = fw_suspend,
1428};
Ming Leicfe016b2012-09-08 17:32:30 +08001429#else
1430static int fw_cache_piggyback_on_request(const char *name)
1431{
1432 return 0;
1433}
1434#endif
Ming Leiac39b3e2012-08-20 19:04:16 +08001435
Ming Lei37276a52012-08-04 12:01:27 +08001436static void __init fw_cache_init(void)
1437{
1438 spin_lock_init(&fw_cache.lock);
1439 INIT_LIST_HEAD(&fw_cache.head);
Ming Leicfe016b2012-09-08 17:32:30 +08001440 fw_cache.state = FW_LOADER_NO_CACHE;
Ming Lei37276a52012-08-04 12:01:27 +08001441
Ming Leicfe016b2012-09-08 17:32:30 +08001442#ifdef CONFIG_PM_SLEEP
Ming Lei37276a52012-08-04 12:01:27 +08001443 spin_lock_init(&fw_cache.name_lock);
1444 INIT_LIST_HEAD(&fw_cache.fw_names);
Ming Lei37276a52012-08-04 12:01:27 +08001445
Ming Lei37276a52012-08-04 12:01:27 +08001446 INIT_DELAYED_WORK(&fw_cache.work,
1447 device_uncache_fw_images_work);
Ming Lei07646d92012-08-04 12:01:29 +08001448
1449 fw_cache.pm_notify.notifier_call = fw_pm_notify;
1450 register_pm_notifier(&fw_cache.pm_notify);
Ming Leiac39b3e2012-08-20 19:04:16 +08001451
1452 register_syscore_ops(&fw_syscore_ops);
Ming Leicfe016b2012-09-08 17:32:30 +08001453#endif
Ming Lei37276a52012-08-04 12:01:27 +08001454}
1455
Dmitry Torokhov673fae92010-03-13 23:49:13 -08001456static int __init firmware_class_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001457{
Ming Lei1f2b7952012-08-04 12:01:21 +08001458 fw_cache_init();
Dmitry Torokhov673fae92010-03-13 23:49:13 -08001459 return class_register(&firmware_class);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001460}
Dmitry Torokhov673fae92010-03-13 23:49:13 -08001461
1462static void __exit firmware_class_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001463{
Ming Leicfe016b2012-09-08 17:32:30 +08001464#ifdef CONFIG_PM_SLEEP
Ming Leiac39b3e2012-08-20 19:04:16 +08001465 unregister_syscore_ops(&fw_syscore_ops);
Ming Lei07646d92012-08-04 12:01:29 +08001466 unregister_pm_notifier(&fw_cache.pm_notify);
Ming Leicfe016b2012-09-08 17:32:30 +08001467#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001468 class_unregister(&firmware_class);
1469}
1470
Shaohua Lia30a6a22006-09-27 01:50:52 -07001471fs_initcall(firmware_class_init);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001472module_exit(firmware_class_exit);
1473
1474EXPORT_SYMBOL(release_firmware);
1475EXPORT_SYMBOL(request_firmware);
1476EXPORT_SYMBOL(request_firmware_nowait);
Ming Lei2887b392012-08-04 12:01:22 +08001477EXPORT_SYMBOL_GPL(cache_firmware);
1478EXPORT_SYMBOL_GPL(uncache_firmware);