blob: e5808eb63b67321de4b16e4a2e1b643e0e4f0d4b [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>
Takashi Iwaife304142013-05-22 18:28:38 +020030#include <linux/reboot.h>
Ming Lei37276a52012-08-04 12:01:27 +080031
Linus Torvaldsabb139e2012-10-03 15:58:32 -070032#include <generated/utsrelease.h>
33
Ming Lei37276a52012-08-04 12:01:27 +080034#include "base.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070035
Markus Rechberger87d37a42007-06-04 18:45:44 +020036MODULE_AUTHOR("Manuel Estrada Sainz");
Linus Torvalds1da177e2005-04-16 15:20:36 -070037MODULE_DESCRIPTION("Multi purpose firmware loading support");
38MODULE_LICENSE("GPL");
39
Dmitry Torokhovbcb9bd12010-03-13 23:49:18 -080040/* Builtin firmware support */
41
42#ifdef CONFIG_FW_LOADER
43
44extern struct builtin_fw __start_builtin_fw[];
45extern struct builtin_fw __end_builtin_fw[];
46
47static bool fw_get_builtin_firmware(struct firmware *fw, const char *name)
48{
49 struct builtin_fw *b_fw;
50
51 for (b_fw = __start_builtin_fw; b_fw != __end_builtin_fw; b_fw++) {
52 if (strcmp(name, b_fw->name) == 0) {
53 fw->size = b_fw->size;
54 fw->data = b_fw->data;
55 return true;
56 }
57 }
58
59 return false;
60}
61
62static bool fw_is_builtin_firmware(const struct firmware *fw)
63{
64 struct builtin_fw *b_fw;
65
66 for (b_fw = __start_builtin_fw; b_fw != __end_builtin_fw; b_fw++)
67 if (fw->data == b_fw->data)
68 return true;
69
70 return false;
71}
72
73#else /* Module case - no builtin firmware support */
74
75static inline bool fw_get_builtin_firmware(struct firmware *fw, const char *name)
76{
77 return false;
78}
79
80static inline bool fw_is_builtin_firmware(const struct firmware *fw)
81{
82 return false;
83}
84#endif
85
Linus Torvalds1da177e2005-04-16 15:20:36 -070086enum {
87 FW_STATUS_LOADING,
88 FW_STATUS_DONE,
89 FW_STATUS_ABORT,
Linus Torvalds1da177e2005-04-16 15:20:36 -070090};
91
Dave Jones2f651682007-01-25 15:56:15 -050092static int loading_timeout = 60; /* In seconds */
Linus Torvalds1da177e2005-04-16 15:20:36 -070093
Rafael J. Wysocki9b78c1d2012-03-28 23:30:02 +020094static inline long firmware_loading_timeout(void)
95{
96 return loading_timeout > 0 ? loading_timeout * HZ : MAX_SCHEDULE_TIMEOUT;
97}
98
Takashi Iwai14c4bae2013-12-02 15:38:18 +010099/* firmware behavior options */
100#define FW_OPT_UEVENT (1U << 0)
101#define FW_OPT_NOWAIT (1U << 1)
Takashi Iwai68aeeaa2013-12-02 15:38:19 +0100102#ifdef CONFIG_FW_LOADER_USER_HELPER
Takashi Iwai14c4bae2013-12-02 15:38:18 +0100103#define FW_OPT_FALLBACK (1U << 2)
Takashi Iwai68aeeaa2013-12-02 15:38:19 +0100104#else
105#define FW_OPT_FALLBACK 0
106#endif
Takashi Iwai14c4bae2013-12-02 15:38:18 +0100107
Ming Lei1f2b7952012-08-04 12:01:21 +0800108struct firmware_cache {
109 /* firmware_buf instance will be added into the below list */
110 spinlock_t lock;
111 struct list_head head;
Ming Leicfe016b2012-09-08 17:32:30 +0800112 int state;
Ming Lei37276a52012-08-04 12:01:27 +0800113
Ming Leicfe016b2012-09-08 17:32:30 +0800114#ifdef CONFIG_PM_SLEEP
Ming Lei37276a52012-08-04 12:01:27 +0800115 /*
116 * Names of firmware images which have been cached successfully
117 * will be added into the below list so that device uncache
118 * helper can trace which firmware images have been cached
119 * before.
120 */
121 spinlock_t name_lock;
122 struct list_head fw_names;
123
Ming Lei37276a52012-08-04 12:01:27 +0800124 struct delayed_work work;
Ming Lei07646d92012-08-04 12:01:29 +0800125
126 struct notifier_block pm_notify;
Ming Leicfe016b2012-09-08 17:32:30 +0800127#endif
Ming Lei1f2b7952012-08-04 12:01:21 +0800128};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129
Ming Lei12446912012-08-04 12:01:20 +0800130struct firmware_buf {
Ming Lei1f2b7952012-08-04 12:01:21 +0800131 struct kref ref;
132 struct list_head list;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133 struct completion completion;
Ming Lei1f2b7952012-08-04 12:01:21 +0800134 struct firmware_cache *fwc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135 unsigned long status;
Ming Lei65710cb2012-08-04 12:01:16 +0800136 void *data;
137 size_t size;
Takashi Iwai7b1269f2013-01-31 11:13:55 +0100138#ifdef CONFIG_FW_LOADER_USER_HELPER
Takashi Iwaicd7239f2013-01-31 11:13:56 +0100139 bool is_paged_buf;
Ming Leiaf5bc112013-05-27 18:30:04 +0800140 bool need_uevent;
David Woodhouse6e03a202009-04-09 22:04:07 -0700141 struct page **pages;
142 int nr_pages;
143 int page_array_size;
Takashi Iwaife304142013-05-22 18:28:38 +0200144 struct list_head pending_list;
Takashi Iwai7b1269f2013-01-31 11:13:55 +0100145#endif
Dmitry Torokhove1771232010-03-13 23:49:23 -0800146 char fw_id[];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147};
148
Ming Lei37276a52012-08-04 12:01:27 +0800149struct fw_cache_entry {
150 struct list_head list;
151 char name[];
152};
153
Ming Leif531f05a2012-08-04 12:01:25 +0800154struct fw_name_devm {
155 unsigned long magic;
156 char name[];
157};
158
Ming Lei1f2b7952012-08-04 12:01:21 +0800159#define to_fwbuf(d) container_of(d, struct firmware_buf, ref)
160
Ming Leiac39b3e2012-08-20 19:04:16 +0800161#define FW_LOADER_NO_CACHE 0
162#define FW_LOADER_START_CACHE 1
163
164static int fw_cache_piggyback_on_request(const char *name);
165
Ming Lei1f2b7952012-08-04 12:01:21 +0800166/* fw_lock could be moved to 'struct firmware_priv' but since it is just
167 * guarding for corner cases a global lock should be OK */
168static DEFINE_MUTEX(fw_lock);
169
170static struct firmware_cache fw_cache;
171
172static struct firmware_buf *__allocate_fw_buf(const char *fw_name,
173 struct firmware_cache *fwc)
174{
175 struct firmware_buf *buf;
176
177 buf = kzalloc(sizeof(*buf) + strlen(fw_name) + 1 , GFP_ATOMIC);
178
179 if (!buf)
180 return buf;
181
182 kref_init(&buf->ref);
183 strcpy(buf->fw_id, fw_name);
184 buf->fwc = fwc;
185 init_completion(&buf->completion);
Takashi Iwaife304142013-05-22 18:28:38 +0200186#ifdef CONFIG_FW_LOADER_USER_HELPER
187 INIT_LIST_HEAD(&buf->pending_list);
188#endif
Ming Lei1f2b7952012-08-04 12:01:21 +0800189
190 pr_debug("%s: fw-%s buf=%p\n", __func__, fw_name, buf);
191
192 return buf;
193}
194
Ming Lei2887b392012-08-04 12:01:22 +0800195static struct firmware_buf *__fw_lookup_buf(const char *fw_name)
196{
197 struct firmware_buf *tmp;
198 struct firmware_cache *fwc = &fw_cache;
199
200 list_for_each_entry(tmp, &fwc->head, list)
201 if (!strcmp(tmp->fw_id, fw_name))
202 return tmp;
203 return NULL;
204}
205
Ming Lei1f2b7952012-08-04 12:01:21 +0800206static int fw_lookup_and_allocate_buf(const char *fw_name,
207 struct firmware_cache *fwc,
208 struct firmware_buf **buf)
209{
210 struct firmware_buf *tmp;
211
212 spin_lock(&fwc->lock);
Ming Lei2887b392012-08-04 12:01:22 +0800213 tmp = __fw_lookup_buf(fw_name);
214 if (tmp) {
215 kref_get(&tmp->ref);
216 spin_unlock(&fwc->lock);
217 *buf = tmp;
218 return 1;
219 }
Ming Lei1f2b7952012-08-04 12:01:21 +0800220 tmp = __allocate_fw_buf(fw_name, fwc);
221 if (tmp)
222 list_add(&tmp->list, &fwc->head);
223 spin_unlock(&fwc->lock);
224
225 *buf = tmp;
226
227 return tmp ? 0 : -ENOMEM;
228}
229
230static void __fw_free_buf(struct kref *ref)
Bart Van Assche98233b22014-01-04 14:20:36 +0100231 __releases(&fwc->lock)
Ming Lei1f2b7952012-08-04 12:01:21 +0800232{
233 struct firmware_buf *buf = to_fwbuf(ref);
234 struct firmware_cache *fwc = buf->fwc;
Ming Lei1f2b7952012-08-04 12:01:21 +0800235
236 pr_debug("%s: fw-%s buf=%p data=%p size=%u\n",
237 __func__, buf->fw_id, buf, buf->data,
238 (unsigned int)buf->size);
239
Ming Lei1f2b7952012-08-04 12:01:21 +0800240 list_del(&buf->list);
241 spin_unlock(&fwc->lock);
242
Takashi Iwai7b1269f2013-01-31 11:13:55 +0100243#ifdef CONFIG_FW_LOADER_USER_HELPER
Takashi Iwaicd7239f2013-01-31 11:13:56 +0100244 if (buf->is_paged_buf) {
Takashi Iwai7b1269f2013-01-31 11:13:55 +0100245 int i;
Ming Lei746058f2012-10-09 12:01:03 +0800246 vunmap(buf->data);
247 for (i = 0; i < buf->nr_pages; i++)
248 __free_page(buf->pages[i]);
249 kfree(buf->pages);
250 } else
Takashi Iwai7b1269f2013-01-31 11:13:55 +0100251#endif
Ming Lei746058f2012-10-09 12:01:03 +0800252 vfree(buf->data);
Ming Lei1f2b7952012-08-04 12:01:21 +0800253 kfree(buf);
254}
255
256static void fw_free_buf(struct firmware_buf *buf)
257{
Chuansheng Liubd9eb7f2012-11-10 01:27:22 +0800258 struct firmware_cache *fwc = buf->fwc;
259 spin_lock(&fwc->lock);
260 if (!kref_put(&buf->ref, __fw_free_buf))
261 spin_unlock(&fwc->lock);
Ming Lei1f2b7952012-08-04 12:01:21 +0800262}
263
Ming Lei746058f2012-10-09 12:01:03 +0800264/* direct firmware loading support */
Ming Lei27602842012-11-03 17:47:58 +0800265static char fw_path_para[256];
266static const char * const fw_path[] = {
267 fw_path_para,
Ming Lei746058f2012-10-09 12:01:03 +0800268 "/lib/firmware/updates/" UTS_RELEASE,
269 "/lib/firmware/updates",
270 "/lib/firmware/" UTS_RELEASE,
271 "/lib/firmware"
272};
273
Ming Lei27602842012-11-03 17:47:58 +0800274/*
275 * Typical usage is that passing 'firmware_class.path=$CUSTOMIZED_PATH'
276 * from kernel command line because firmware_class is generally built in
277 * kernel instead of module.
278 */
279module_param_string(path, fw_path_para, sizeof(fw_path_para), 0644);
280MODULE_PARM_DESC(path, "customized firmware image search path with a higher priority than default path");
281
Ming Lei746058f2012-10-09 12:01:03 +0800282/* Don't inline this: 'struct kstat' is biggish */
Ben Hutchings08da2012013-12-28 16:53:59 +0100283static noinline_for_stack int fw_file_size(struct file *file)
Ming Lei746058f2012-10-09 12:01:03 +0800284{
285 struct kstat st;
Al Viro3dadecce2013-01-24 02:18:08 -0500286 if (vfs_getattr(&file->f_path, &st))
Ming Lei746058f2012-10-09 12:01:03 +0800287 return -1;
288 if (!S_ISREG(st.mode))
289 return -1;
Ben Hutchings08da2012013-12-28 16:53:59 +0100290 if (st.size != (int)st.size)
Ming Lei746058f2012-10-09 12:01:03 +0800291 return -1;
292 return st.size;
293}
294
Neil Horman3e358ac2013-09-06 15:36:08 -0400295static int fw_read_file_contents(struct file *file, struct firmware_buf *fw_buf)
Ming Lei746058f2012-10-09 12:01:03 +0800296{
Ben Hutchings08da2012013-12-28 16:53:59 +0100297 int size;
Ming Lei746058f2012-10-09 12:01:03 +0800298 char *buf;
Neil Horman3e358ac2013-09-06 15:36:08 -0400299 int rc;
Ming Lei746058f2012-10-09 12:01:03 +0800300
301 size = fw_file_size(file);
Luciano Coelho4adf07f2013-01-15 10:43:43 +0200302 if (size <= 0)
Neil Horman3e358ac2013-09-06 15:36:08 -0400303 return -EINVAL;
Ming Lei746058f2012-10-09 12:01:03 +0800304 buf = vmalloc(size);
305 if (!buf)
Neil Horman3e358ac2013-09-06 15:36:08 -0400306 return -ENOMEM;
307 rc = kernel_read(file, 0, buf, size);
308 if (rc != size) {
309 if (rc > 0)
310 rc = -EIO;
Ming Lei746058f2012-10-09 12:01:03 +0800311 vfree(buf);
Neil Horman3e358ac2013-09-06 15:36:08 -0400312 return rc;
Ming Lei746058f2012-10-09 12:01:03 +0800313 }
314 fw_buf->data = buf;
315 fw_buf->size = size;
Neil Horman3e358ac2013-09-06 15:36:08 -0400316 return 0;
Ming Lei746058f2012-10-09 12:01:03 +0800317}
318
Neil Horman3e358ac2013-09-06 15:36:08 -0400319static int fw_get_filesystem_firmware(struct device *device,
Takashi Iwai4e0c92d2013-01-31 11:13:54 +0100320 struct firmware_buf *buf)
Ming Lei746058f2012-10-09 12:01:03 +0800321{
322 int i;
Neil Horman3e358ac2013-09-06 15:36:08 -0400323 int rc = -ENOENT;
Ming Lei746058f2012-10-09 12:01:03 +0800324 char *path = __getname();
325
326 for (i = 0; i < ARRAY_SIZE(fw_path); i++) {
327 struct file *file;
Ming Lei27602842012-11-03 17:47:58 +0800328
329 /* skip the unset customized path */
330 if (!fw_path[i][0])
331 continue;
332
Ming Lei746058f2012-10-09 12:01:03 +0800333 snprintf(path, PATH_MAX, "%s/%s", fw_path[i], buf->fw_id);
334
335 file = filp_open(path, O_RDONLY, 0);
336 if (IS_ERR(file))
337 continue;
Neil Horman3e358ac2013-09-06 15:36:08 -0400338 rc = fw_read_file_contents(file, buf);
Ming Lei746058f2012-10-09 12:01:03 +0800339 fput(file);
Neil Horman3e358ac2013-09-06 15:36:08 -0400340 if (rc)
341 dev_warn(device, "firmware, attempted to load %s, but failed with error %d\n",
342 path, rc);
343 else
Ming Lei746058f2012-10-09 12:01:03 +0800344 break;
345 }
346 __putname(path);
Takashi Iwai4e0c92d2013-01-31 11:13:54 +0100347
Neil Horman3e358ac2013-09-06 15:36:08 -0400348 if (!rc) {
Takashi Iwai4e0c92d2013-01-31 11:13:54 +0100349 dev_dbg(device, "firmware: direct-loading firmware %s\n",
350 buf->fw_id);
351 mutex_lock(&fw_lock);
352 set_bit(FW_STATUS_DONE, &buf->status);
353 complete_all(&buf->completion);
354 mutex_unlock(&fw_lock);
355 }
356
Neil Horman3e358ac2013-09-06 15:36:08 -0400357 return rc;
Ming Lei746058f2012-10-09 12:01:03 +0800358}
359
Takashi Iwai7b1269f2013-01-31 11:13:55 +0100360/* firmware holds the ownership of pages */
361static void firmware_free_data(const struct firmware *fw)
362{
363 /* Loaded directly? */
364 if (!fw->priv) {
365 vfree(fw->data);
366 return;
367 }
368 fw_free_buf(fw->priv);
369}
370
Takashi Iwaicd7239f2013-01-31 11:13:56 +0100371/* store the pages buffer info firmware from buf */
372static void fw_set_page_data(struct firmware_buf *buf, struct firmware *fw)
373{
374 fw->priv = buf;
Takashi Iwai7b1269f2013-01-31 11:13:55 +0100375#ifdef CONFIG_FW_LOADER_USER_HELPER
Takashi Iwaicd7239f2013-01-31 11:13:56 +0100376 fw->pages = buf->pages;
377#endif
378 fw->size = buf->size;
379 fw->data = buf->data;
380
381 pr_debug("%s: fw-%s buf=%p data=%p size=%u\n",
382 __func__, buf->fw_id, buf, buf->data,
383 (unsigned int)buf->size);
384}
385
386#ifdef CONFIG_PM_SLEEP
387static void fw_name_devm_release(struct device *dev, void *res)
388{
389 struct fw_name_devm *fwn = res;
390
391 if (fwn->magic == (unsigned long)&fw_cache)
392 pr_debug("%s: fw_name-%s devm-%p released\n",
393 __func__, fwn->name, res);
394}
395
396static int fw_devm_match(struct device *dev, void *res,
397 void *match_data)
398{
399 struct fw_name_devm *fwn = res;
400
401 return (fwn->magic == (unsigned long)&fw_cache) &&
402 !strcmp(fwn->name, match_data);
403}
404
405static struct fw_name_devm *fw_find_devm_name(struct device *dev,
406 const char *name)
407{
408 struct fw_name_devm *fwn;
409
410 fwn = devres_find(dev, fw_name_devm_release,
411 fw_devm_match, (void *)name);
412 return fwn;
413}
414
415/* add firmware name into devres list */
416static int fw_add_devm_name(struct device *dev, const char *name)
417{
418 struct fw_name_devm *fwn;
419
420 fwn = fw_find_devm_name(dev, name);
421 if (fwn)
422 return 1;
423
424 fwn = devres_alloc(fw_name_devm_release, sizeof(struct fw_name_devm) +
425 strlen(name) + 1, GFP_KERNEL);
426 if (!fwn)
427 return -ENOMEM;
428
429 fwn->magic = (unsigned long)&fw_cache;
430 strcpy(fwn->name, name);
431 devres_add(dev, fwn);
432
433 return 0;
434}
435#else
436static int fw_add_devm_name(struct device *dev, const char *name)
437{
438 return 0;
439}
440#endif
441
442
443/*
444 * user-mode helper code
445 */
446#ifdef CONFIG_FW_LOADER_USER_HELPER
447struct firmware_priv {
448 struct delayed_work timeout_work;
449 bool nowait;
450 struct device dev;
451 struct firmware_buf *buf;
452 struct firmware *fw;
453};
Takashi Iwai7b1269f2013-01-31 11:13:55 +0100454
Dmitry Torokhovf8a4bd32010-06-04 00:54:43 -0700455static struct firmware_priv *to_firmware_priv(struct device *dev)
456{
457 return container_of(dev, struct firmware_priv, dev);
458}
459
Greg Kroah-Hartman7068cb02013-06-19 20:26:43 -0700460static void __fw_load_abort(struct firmware_buf *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461{
Ming Lei87597932013-06-15 16:36:38 +0800462 /*
463 * There is a small window in which user can write to 'loading'
464 * between loading done and disappearance of 'loading'
465 */
466 if (test_bit(FW_STATUS_DONE, &buf->status))
467 return;
468
Takashi Iwaife304142013-05-22 18:28:38 +0200469 list_del_init(&buf->pending_list);
Ming Lei12446912012-08-04 12:01:20 +0800470 set_bit(FW_STATUS_ABORT, &buf->status);
Ming Lei1f2b7952012-08-04 12:01:21 +0800471 complete_all(&buf->completion);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472}
473
Greg Kroah-Hartman7068cb02013-06-19 20:26:43 -0700474static void fw_load_abort(struct firmware_priv *fw_priv)
475{
476 struct firmware_buf *buf = fw_priv->buf;
477
478 __fw_load_abort(buf);
Ming Lei87597932013-06-15 16:36:38 +0800479
480 /* avoid user action after loading abort */
481 fw_priv->buf = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482}
483
Takashi Iwai807be032013-01-31 11:13:57 +0100484#define is_fw_load_aborted(buf) \
485 test_bit(FW_STATUS_ABORT, &(buf)->status)
486
Takashi Iwaife304142013-05-22 18:28:38 +0200487static LIST_HEAD(pending_fw_head);
488
489/* reboot notifier for avoid deadlock with usermode_lock */
490static int fw_shutdown_notify(struct notifier_block *unused1,
491 unsigned long unused2, void *unused3)
492{
493 mutex_lock(&fw_lock);
494 while (!list_empty(&pending_fw_head))
Greg Kroah-Hartman7068cb02013-06-19 20:26:43 -0700495 __fw_load_abort(list_first_entry(&pending_fw_head,
Takashi Iwaife304142013-05-22 18:28:38 +0200496 struct firmware_buf,
497 pending_list));
498 mutex_unlock(&fw_lock);
499 return NOTIFY_DONE;
500}
501
502static struct notifier_block fw_shutdown_nb = {
503 .notifier_call = fw_shutdown_notify,
504};
505
Greg Kroah-Hartman14adbe52013-08-23 17:08:48 -0700506static ssize_t timeout_show(struct class *class, struct class_attribute *attr,
507 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508{
509 return sprintf(buf, "%d\n", loading_timeout);
510}
511
512/**
Randy Dunlapeb8e3172005-10-30 15:03:01 -0800513 * firmware_timeout_store - set number of seconds to wait for firmware
514 * @class: device class pointer
Randy Dunlape59817b2010-03-10 11:47:58 -0800515 * @attr: device attribute pointer
Randy Dunlapeb8e3172005-10-30 15:03:01 -0800516 * @buf: buffer to scan for timeout value
517 * @count: number of bytes in @buf
518 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519 * Sets the number of seconds to wait for the firmware. Once
Randy Dunlapeb8e3172005-10-30 15:03:01 -0800520 * this expires an error will be returned to the driver and no
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521 * firmware will be provided.
522 *
Randy Dunlapeb8e3172005-10-30 15:03:01 -0800523 * Note: zero means 'wait forever'.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524 **/
Greg Kroah-Hartman14adbe52013-08-23 17:08:48 -0700525static ssize_t timeout_store(struct class *class, struct class_attribute *attr,
526 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527{
528 loading_timeout = simple_strtol(buf, NULL, 10);
Stanislaw W. Gruszkab92eac02005-06-28 20:44:51 -0700529 if (loading_timeout < 0)
530 loading_timeout = 0;
Dmitry Torokhovf8a4bd32010-06-04 00:54:43 -0700531
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532 return count;
533}
534
Dmitry Torokhov673fae92010-03-13 23:49:13 -0800535static struct class_attribute firmware_class_attrs[] = {
Greg Kroah-Hartman14adbe52013-08-23 17:08:48 -0700536 __ATTR_RW(timeout),
Dmitry Torokhov673fae92010-03-13 23:49:13 -0800537 __ATTR_NULL
538};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539
Dmitry Torokhov673fae92010-03-13 23:49:13 -0800540static void fw_dev_release(struct device *dev)
541{
Dmitry Torokhovf8a4bd32010-06-04 00:54:43 -0700542 struct firmware_priv *fw_priv = to_firmware_priv(dev);
Ming Lei65710cb2012-08-04 12:01:16 +0800543
Dmitry Torokhov673fae92010-03-13 23:49:13 -0800544 kfree(fw_priv);
Dmitry Torokhov673fae92010-03-13 23:49:13 -0800545}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546
Kay Sievers7eff2e72007-08-14 15:15:12 +0200547static int firmware_uevent(struct device *dev, struct kobj_uevent_env *env)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548{
Dmitry Torokhovf8a4bd32010-06-04 00:54:43 -0700549 struct firmware_priv *fw_priv = to_firmware_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550
Ming Lei12446912012-08-04 12:01:20 +0800551 if (add_uevent_var(env, "FIRMWARE=%s", fw_priv->buf->fw_id))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552 return -ENOMEM;
Kay Sievers7eff2e72007-08-14 15:15:12 +0200553 if (add_uevent_var(env, "TIMEOUT=%i", loading_timeout))
kay.sievers@vrfy.org68970892005-04-18 21:57:31 -0700554 return -ENOMEM;
Johannes Berge9045f92010-03-29 17:57:20 +0200555 if (add_uevent_var(env, "ASYNC=%d", fw_priv->nowait))
556 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557
558 return 0;
559}
560
Adrian Bunk1b81d662006-05-20 15:00:16 -0700561static struct class firmware_class = {
562 .name = "firmware",
Dmitry Torokhov673fae92010-03-13 23:49:13 -0800563 .class_attrs = firmware_class_attrs,
Greg Kroah-Hartmane55c8792006-09-14 07:30:59 -0700564 .dev_uevent = firmware_uevent,
565 .dev_release = fw_dev_release,
Adrian Bunk1b81d662006-05-20 15:00:16 -0700566};
567
Greg Kroah-Hartmane55c8792006-09-14 07:30:59 -0700568static ssize_t firmware_loading_show(struct device *dev,
569 struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570{
Dmitry Torokhovf8a4bd32010-06-04 00:54:43 -0700571 struct firmware_priv *fw_priv = to_firmware_priv(dev);
Ming Lei87597932013-06-15 16:36:38 +0800572 int loading = 0;
573
574 mutex_lock(&fw_lock);
575 if (fw_priv->buf)
576 loading = test_bit(FW_STATUS_LOADING, &fw_priv->buf->status);
577 mutex_unlock(&fw_lock);
Dmitry Torokhovf8a4bd32010-06-04 00:54:43 -0700578
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579 return sprintf(buf, "%d\n", loading);
580}
581
David Woodhouse6e03a202009-04-09 22:04:07 -0700582/* Some architectures don't have PAGE_KERNEL_RO */
583#ifndef PAGE_KERNEL_RO
584#define PAGE_KERNEL_RO PAGE_KERNEL
585#endif
Ming Lei253c9242012-10-09 12:01:02 +0800586
587/* one pages buffer should be mapped/unmapped only once */
588static int fw_map_pages_buf(struct firmware_buf *buf)
589{
Takashi Iwaicd7239f2013-01-31 11:13:56 +0100590 if (!buf->is_paged_buf)
Ming Lei746058f2012-10-09 12:01:03 +0800591 return 0;
592
Ming Lei253c9242012-10-09 12:01:02 +0800593 if (buf->data)
594 vunmap(buf->data);
595 buf->data = vmap(buf->pages, buf->nr_pages, 0, PAGE_KERNEL_RO);
596 if (!buf->data)
597 return -ENOMEM;
598 return 0;
599}
600
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601/**
Randy Dunlapeb8e3172005-10-30 15:03:01 -0800602 * firmware_loading_store - set value in the 'loading' control file
Greg Kroah-Hartmane55c8792006-09-14 07:30:59 -0700603 * @dev: device pointer
Randy Dunlapaf9997e2006-12-22 01:06:52 -0800604 * @attr: device attribute pointer
Randy Dunlapeb8e3172005-10-30 15:03:01 -0800605 * @buf: buffer to scan for loading control value
606 * @count: number of bytes in @buf
607 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608 * The relevant values are:
609 *
610 * 1: Start a load, discarding any previous partial load.
Randy Dunlapeb8e3172005-10-30 15:03:01 -0800611 * 0: Conclude the load and hand the data to the driver code.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612 * -1: Conclude the load with an error and discard any written data.
613 **/
Greg Kroah-Hartmane55c8792006-09-14 07:30:59 -0700614static ssize_t firmware_loading_store(struct device *dev,
615 struct device_attribute *attr,
616 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617{
Dmitry Torokhovf8a4bd32010-06-04 00:54:43 -0700618 struct firmware_priv *fw_priv = to_firmware_priv(dev);
Ming Lei87597932013-06-15 16:36:38 +0800619 struct firmware_buf *fw_buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620 int loading = simple_strtol(buf, NULL, 10);
David Woodhouse6e03a202009-04-09 22:04:07 -0700621 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622
Neil Hormaneea915b2012-01-02 15:31:23 -0500623 mutex_lock(&fw_lock);
Ming Lei87597932013-06-15 16:36:38 +0800624 fw_buf = fw_priv->buf;
Ming Lei12446912012-08-04 12:01:20 +0800625 if (!fw_buf)
Neil Hormaneea915b2012-01-02 15:31:23 -0500626 goto out;
627
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628 switch (loading) {
629 case 1:
Ming Lei65710cb2012-08-04 12:01:16 +0800630 /* discarding any previous partial load */
Ming Lei12446912012-08-04 12:01:20 +0800631 if (!test_bit(FW_STATUS_DONE, &fw_buf->status)) {
632 for (i = 0; i < fw_buf->nr_pages; i++)
633 __free_page(fw_buf->pages[i]);
634 kfree(fw_buf->pages);
635 fw_buf->pages = NULL;
636 fw_buf->page_array_size = 0;
637 fw_buf->nr_pages = 0;
638 set_bit(FW_STATUS_LOADING, &fw_buf->status);
Ming Lei28eefa72012-08-04 12:01:17 +0800639 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640 break;
641 case 0:
Ming Lei12446912012-08-04 12:01:20 +0800642 if (test_bit(FW_STATUS_LOADING, &fw_buf->status)) {
643 set_bit(FW_STATUS_DONE, &fw_buf->status);
644 clear_bit(FW_STATUS_LOADING, &fw_buf->status);
Ming Lei253c9242012-10-09 12:01:02 +0800645
646 /*
647 * Several loading requests may be pending on
648 * one same firmware buf, so let all requests
649 * see the mapped 'buf->data' once the loading
650 * is completed.
651 * */
zhang jun2b1278c2014-02-13 15:18:47 +0800652 if (fw_map_pages_buf(fw_buf))
653 dev_err(dev, "%s: map pages failed\n",
654 __func__);
Takashi Iwaife304142013-05-22 18:28:38 +0200655 list_del_init(&fw_buf->pending_list);
Ming Lei1f2b7952012-08-04 12:01:21 +0800656 complete_all(&fw_buf->completion);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657 break;
658 }
659 /* fallthrough */
660 default:
Bjorn Helgaas266a8132008-10-15 22:04:20 -0700661 dev_err(dev, "%s: unexpected value (%d)\n", __func__, loading);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662 /* fallthrough */
663 case -1:
664 fw_load_abort(fw_priv);
665 break;
666 }
Neil Hormaneea915b2012-01-02 15:31:23 -0500667out:
668 mutex_unlock(&fw_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669 return count;
670}
671
Greg Kroah-Hartmane55c8792006-09-14 07:30:59 -0700672static DEVICE_ATTR(loading, 0644, firmware_loading_show, firmware_loading_store);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673
Dmitry Torokhovf8a4bd32010-06-04 00:54:43 -0700674static ssize_t firmware_data_read(struct file *filp, struct kobject *kobj,
675 struct bin_attribute *bin_attr,
676 char *buffer, loff_t offset, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677{
Lars-Peter Clausenb0d1f802012-07-03 18:49:36 +0200678 struct device *dev = kobj_to_dev(kobj);
Dmitry Torokhovf8a4bd32010-06-04 00:54:43 -0700679 struct firmware_priv *fw_priv = to_firmware_priv(dev);
Ming Lei12446912012-08-04 12:01:20 +0800680 struct firmware_buf *buf;
Akinobu Mitaf37e6612008-07-25 01:48:23 -0700681 ssize_t ret_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682
Laura Garciacad1e552006-05-23 23:22:38 +0200683 mutex_lock(&fw_lock);
Ming Lei12446912012-08-04 12:01:20 +0800684 buf = fw_priv->buf;
685 if (!buf || test_bit(FW_STATUS_DONE, &buf->status)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686 ret_count = -ENODEV;
687 goto out;
688 }
Ming Lei12446912012-08-04 12:01:20 +0800689 if (offset > buf->size) {
Jiri Slaby308975f2009-06-21 23:57:31 +0200690 ret_count = 0;
691 goto out;
692 }
Ming Lei12446912012-08-04 12:01:20 +0800693 if (count > buf->size - offset)
694 count = buf->size - offset;
David Woodhouse6e03a202009-04-09 22:04:07 -0700695
696 ret_count = count;
697
698 while (count) {
699 void *page_data;
700 int page_nr = offset >> PAGE_SHIFT;
701 int page_ofs = offset & (PAGE_SIZE-1);
702 int page_cnt = min_t(size_t, PAGE_SIZE - page_ofs, count);
703
Ming Lei12446912012-08-04 12:01:20 +0800704 page_data = kmap(buf->pages[page_nr]);
David Woodhouse6e03a202009-04-09 22:04:07 -0700705
706 memcpy(buffer, page_data + page_ofs, page_cnt);
707
Ming Lei12446912012-08-04 12:01:20 +0800708 kunmap(buf->pages[page_nr]);
David Woodhouse6e03a202009-04-09 22:04:07 -0700709 buffer += page_cnt;
710 offset += page_cnt;
711 count -= page_cnt;
712 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713out:
Laura Garciacad1e552006-05-23 23:22:38 +0200714 mutex_unlock(&fw_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715 return ret_count;
716}
Randy Dunlapeb8e3172005-10-30 15:03:01 -0800717
Dmitry Torokhovf8a4bd32010-06-04 00:54:43 -0700718static int fw_realloc_buffer(struct firmware_priv *fw_priv, int min_size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719{
Ming Lei12446912012-08-04 12:01:20 +0800720 struct firmware_buf *buf = fw_priv->buf;
David Woodhouse6e03a202009-04-09 22:04:07 -0700721 int pages_needed = ALIGN(min_size, PAGE_SIZE) >> PAGE_SHIFT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722
David Woodhouse6e03a202009-04-09 22:04:07 -0700723 /* If the array of pages is too small, grow it... */
Ming Lei12446912012-08-04 12:01:20 +0800724 if (buf->page_array_size < pages_needed) {
David Woodhouse6e03a202009-04-09 22:04:07 -0700725 int new_array_size = max(pages_needed,
Ming Lei12446912012-08-04 12:01:20 +0800726 buf->page_array_size * 2);
David Woodhouse6e03a202009-04-09 22:04:07 -0700727 struct page **new_pages;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728
David Woodhouse6e03a202009-04-09 22:04:07 -0700729 new_pages = kmalloc(new_array_size * sizeof(void *),
730 GFP_KERNEL);
731 if (!new_pages) {
732 fw_load_abort(fw_priv);
733 return -ENOMEM;
734 }
Ming Lei12446912012-08-04 12:01:20 +0800735 memcpy(new_pages, buf->pages,
736 buf->page_array_size * sizeof(void *));
737 memset(&new_pages[buf->page_array_size], 0, sizeof(void *) *
738 (new_array_size - buf->page_array_size));
739 kfree(buf->pages);
740 buf->pages = new_pages;
741 buf->page_array_size = new_array_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742 }
David Woodhouse6e03a202009-04-09 22:04:07 -0700743
Ming Lei12446912012-08-04 12:01:20 +0800744 while (buf->nr_pages < pages_needed) {
745 buf->pages[buf->nr_pages] =
David Woodhouse6e03a202009-04-09 22:04:07 -0700746 alloc_page(GFP_KERNEL | __GFP_HIGHMEM);
747
Ming Lei12446912012-08-04 12:01:20 +0800748 if (!buf->pages[buf->nr_pages]) {
David Woodhouse6e03a202009-04-09 22:04:07 -0700749 fw_load_abort(fw_priv);
750 return -ENOMEM;
751 }
Ming Lei12446912012-08-04 12:01:20 +0800752 buf->nr_pages++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754 return 0;
755}
756
757/**
Randy Dunlapeb8e3172005-10-30 15:03:01 -0800758 * firmware_data_write - write method for firmware
Chris Wright2c3c8be2010-05-12 18:28:57 -0700759 * @filp: open sysfs file
Greg Kroah-Hartmane55c8792006-09-14 07:30:59 -0700760 * @kobj: kobject for the device
Randy Dunlap42e61f42007-07-23 21:42:11 -0700761 * @bin_attr: bin_attr structure
Randy Dunlapeb8e3172005-10-30 15:03:01 -0800762 * @buffer: buffer being written
763 * @offset: buffer offset for write in total data store area
764 * @count: buffer size
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765 *
Randy Dunlapeb8e3172005-10-30 15:03:01 -0800766 * Data written to the 'data' attribute will be later handed to
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767 * the driver as a firmware image.
768 **/
Dmitry Torokhovf8a4bd32010-06-04 00:54:43 -0700769static ssize_t firmware_data_write(struct file *filp, struct kobject *kobj,
770 struct bin_attribute *bin_attr,
771 char *buffer, loff_t offset, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772{
Lars-Peter Clausenb0d1f802012-07-03 18:49:36 +0200773 struct device *dev = kobj_to_dev(kobj);
Dmitry Torokhovf8a4bd32010-06-04 00:54:43 -0700774 struct firmware_priv *fw_priv = to_firmware_priv(dev);
Ming Lei12446912012-08-04 12:01:20 +0800775 struct firmware_buf *buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776 ssize_t retval;
777
778 if (!capable(CAP_SYS_RAWIO))
779 return -EPERM;
Stanislaw W. Gruszkab92eac02005-06-28 20:44:51 -0700780
Laura Garciacad1e552006-05-23 23:22:38 +0200781 mutex_lock(&fw_lock);
Ming Lei12446912012-08-04 12:01:20 +0800782 buf = fw_priv->buf;
783 if (!buf || test_bit(FW_STATUS_DONE, &buf->status)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784 retval = -ENODEV;
785 goto out;
786 }
Ming Lei65710cb2012-08-04 12:01:16 +0800787
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788 retval = fw_realloc_buffer(fw_priv, offset + count);
789 if (retval)
790 goto out;
791
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792 retval = count;
David Woodhouse6e03a202009-04-09 22:04:07 -0700793
794 while (count) {
795 void *page_data;
796 int page_nr = offset >> PAGE_SHIFT;
797 int page_ofs = offset & (PAGE_SIZE - 1);
798 int page_cnt = min_t(size_t, PAGE_SIZE - page_ofs, count);
799
Ming Lei12446912012-08-04 12:01:20 +0800800 page_data = kmap(buf->pages[page_nr]);
David Woodhouse6e03a202009-04-09 22:04:07 -0700801
802 memcpy(page_data + page_ofs, buffer, page_cnt);
803
Ming Lei12446912012-08-04 12:01:20 +0800804 kunmap(buf->pages[page_nr]);
David Woodhouse6e03a202009-04-09 22:04:07 -0700805 buffer += page_cnt;
806 offset += page_cnt;
807 count -= page_cnt;
808 }
809
Ming Lei12446912012-08-04 12:01:20 +0800810 buf->size = max_t(size_t, offset, buf->size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811out:
Laura Garciacad1e552006-05-23 23:22:38 +0200812 mutex_unlock(&fw_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813 return retval;
814}
Randy Dunlapeb8e3172005-10-30 15:03:01 -0800815
Dmitry Torokhov0983ca22010-06-04 00:54:37 -0700816static struct bin_attribute firmware_attr_data = {
817 .attr = { .name = "data", .mode = 0644 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818 .size = 0,
819 .read = firmware_data_read,
820 .write = firmware_data_write,
821};
822
Chuansheng Liuce2fcbd2012-11-08 19:14:40 +0800823static void firmware_class_timeout_work(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824{
Chuansheng Liuce2fcbd2012-11-08 19:14:40 +0800825 struct firmware_priv *fw_priv = container_of(work,
826 struct firmware_priv, timeout_work.work);
Dmitry Torokhovf8a4bd32010-06-04 00:54:43 -0700827
Chuansheng Liuce2fcbd2012-11-08 19:14:40 +0800828 mutex_lock(&fw_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829 fw_load_abort(fw_priv);
Chuansheng Liuce2fcbd2012-11-08 19:14:40 +0800830 mutex_unlock(&fw_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831}
832
Dmitry Torokhovf8a4bd32010-06-04 00:54:43 -0700833static struct firmware_priv *
Stephen Boyddddb5542012-03-28 23:30:43 +0200834fw_create_instance(struct firmware *firmware, const char *fw_name,
Takashi Iwai14c4bae2013-12-02 15:38:18 +0100835 struct device *device, unsigned int opt_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836{
Dmitry Torokhovf8a4bd32010-06-04 00:54:43 -0700837 struct firmware_priv *fw_priv;
838 struct device *f_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839
Ming Lei12446912012-08-04 12:01:20 +0800840 fw_priv = kzalloc(sizeof(*fw_priv), GFP_KERNEL);
Dmitry Torokhovf8a4bd32010-06-04 00:54:43 -0700841 if (!fw_priv) {
Bjorn Helgaas266a8132008-10-15 22:04:20 -0700842 dev_err(device, "%s: kmalloc failed\n", __func__);
Ming Lei12446912012-08-04 12:01:20 +0800843 fw_priv = ERR_PTR(-ENOMEM);
844 goto exit;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846
Takashi Iwai14c4bae2013-12-02 15:38:18 +0100847 fw_priv->nowait = !!(opt_flags & FW_OPT_NOWAIT);
Ming Lei1f2b7952012-08-04 12:01:21 +0800848 fw_priv->fw = firmware;
Chuansheng Liuce2fcbd2012-11-08 19:14:40 +0800849 INIT_DELAYED_WORK(&fw_priv->timeout_work,
850 firmware_class_timeout_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700851
Dmitry Torokhovf8a4bd32010-06-04 00:54:43 -0700852 f_dev = &fw_priv->dev;
853
854 device_initialize(f_dev);
Ming Lei99c2aa72012-08-04 12:01:19 +0800855 dev_set_name(f_dev, "%s", fw_name);
Greg Kroah-Hartmane55c8792006-09-14 07:30:59 -0700856 f_dev->parent = device;
857 f_dev->class = &firmware_class;
Ming Lei12446912012-08-04 12:01:20 +0800858exit:
Dmitry Torokhovf8a4bd32010-06-04 00:54:43 -0700859 return fw_priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860}
Takashi Iwaicd7239f2013-01-31 11:13:56 +0100861
862/* load a firmware via user helper */
Takashi Iwai14c4bae2013-12-02 15:38:18 +0100863static int _request_firmware_load(struct firmware_priv *fw_priv,
864 unsigned int opt_flags, long timeout)
Takashi Iwaicd7239f2013-01-31 11:13:56 +0100865{
866 int retval = 0;
867 struct device *f_dev = &fw_priv->dev;
868 struct firmware_buf *buf = fw_priv->buf;
869
870 /* fall back on userspace loading */
871 buf->is_paged_buf = true;
872
873 dev_set_uevent_suppress(f_dev, true);
874
Takashi Iwaicd7239f2013-01-31 11:13:56 +0100875 retval = device_add(f_dev);
876 if (retval) {
877 dev_err(f_dev, "%s: device_register failed\n", __func__);
878 goto err_put_dev;
879 }
880
881 retval = device_create_bin_file(f_dev, &firmware_attr_data);
882 if (retval) {
883 dev_err(f_dev, "%s: sysfs_create_bin_file failed\n", __func__);
884 goto err_del_dev;
885 }
886
Maxime Bizon1eeeef12013-08-29 20:28:13 +0200887 mutex_lock(&fw_lock);
888 list_add(&buf->pending_list, &pending_fw_head);
889 mutex_unlock(&fw_lock);
890
Takashi Iwaicd7239f2013-01-31 11:13:56 +0100891 retval = device_create_file(f_dev, &dev_attr_loading);
892 if (retval) {
Maxime Bizon1eeeef12013-08-29 20:28:13 +0200893 mutex_lock(&fw_lock);
894 list_del_init(&buf->pending_list);
895 mutex_unlock(&fw_lock);
Takashi Iwaicd7239f2013-01-31 11:13:56 +0100896 dev_err(f_dev, "%s: device_create_file failed\n", __func__);
897 goto err_del_bin_attr;
898 }
899
Takashi Iwai14c4bae2013-12-02 15:38:18 +0100900 if (opt_flags & FW_OPT_UEVENT) {
Ming Leiaf5bc112013-05-27 18:30:04 +0800901 buf->need_uevent = true;
Takashi Iwaicd7239f2013-01-31 11:13:56 +0100902 dev_set_uevent_suppress(f_dev, false);
903 dev_dbg(f_dev, "firmware: requesting %s\n", buf->fw_id);
904 if (timeout != MAX_SCHEDULE_TIMEOUT)
905 schedule_delayed_work(&fw_priv->timeout_work, timeout);
906
907 kobject_uevent(&fw_priv->dev.kobj, KOBJ_ADD);
908 }
909
910 wait_for_completion(&buf->completion);
911
912 cancel_delayed_work_sync(&fw_priv->timeout_work);
zhang jun2b1278c2014-02-13 15:18:47 +0800913 if (!buf->data)
914 retval = -ENOMEM;
Takashi Iwaicd7239f2013-01-31 11:13:56 +0100915
Takashi Iwaicd7239f2013-01-31 11:13:56 +0100916 device_remove_file(f_dev, &dev_attr_loading);
917err_del_bin_attr:
918 device_remove_bin_file(f_dev, &firmware_attr_data);
919err_del_dev:
920 device_del(f_dev);
921err_put_dev:
922 put_device(f_dev);
923 return retval;
924}
925
926static int fw_load_from_user_helper(struct firmware *firmware,
927 const char *name, struct device *device,
Takashi Iwai14c4bae2013-12-02 15:38:18 +0100928 unsigned int opt_flags, long timeout)
Takashi Iwaicd7239f2013-01-31 11:13:56 +0100929{
930 struct firmware_priv *fw_priv;
931
Takashi Iwai14c4bae2013-12-02 15:38:18 +0100932 fw_priv = fw_create_instance(firmware, name, device, opt_flags);
Takashi Iwaicd7239f2013-01-31 11:13:56 +0100933 if (IS_ERR(fw_priv))
934 return PTR_ERR(fw_priv);
935
936 fw_priv->buf = firmware->priv;
Takashi Iwai14c4bae2013-12-02 15:38:18 +0100937 return _request_firmware_load(fw_priv, opt_flags, timeout);
Takashi Iwaicd7239f2013-01-31 11:13:56 +0100938}
Ming Leiddf1f062013-06-04 10:01:13 +0800939
Ming Lei5b7cb7a2013-06-06 19:52:54 +0800940#ifdef CONFIG_PM_SLEEP
Ming Leiddf1f062013-06-04 10:01:13 +0800941/* kill pending requests without uevent to avoid blocking suspend */
942static void kill_requests_without_uevent(void)
943{
944 struct firmware_buf *buf;
945 struct firmware_buf *next;
946
947 mutex_lock(&fw_lock);
948 list_for_each_entry_safe(buf, next, &pending_fw_head, pending_list) {
949 if (!buf->need_uevent)
Greg Kroah-Hartman7068cb02013-06-19 20:26:43 -0700950 __fw_load_abort(buf);
Ming Leiddf1f062013-06-04 10:01:13 +0800951 }
952 mutex_unlock(&fw_lock);
953}
Ming Lei5b7cb7a2013-06-06 19:52:54 +0800954#endif
Ming Leiddf1f062013-06-04 10:01:13 +0800955
Takashi Iwaicd7239f2013-01-31 11:13:56 +0100956#else /* CONFIG_FW_LOADER_USER_HELPER */
957static inline int
958fw_load_from_user_helper(struct firmware *firmware, const char *name,
Takashi Iwai14c4bae2013-12-02 15:38:18 +0100959 struct device *device, unsigned int opt_flags,
Takashi Iwaicd7239f2013-01-31 11:13:56 +0100960 long timeout)
961{
962 return -ENOENT;
963}
Takashi Iwai807be032013-01-31 11:13:57 +0100964
965/* No abort during direct loading */
966#define is_fw_load_aborted(buf) false
967
Ming Lei5b7cb7a2013-06-06 19:52:54 +0800968#ifdef CONFIG_PM_SLEEP
Ming Leiddf1f062013-06-04 10:01:13 +0800969static inline void kill_requests_without_uevent(void) { }
Ming Lei5b7cb7a2013-06-06 19:52:54 +0800970#endif
Ming Leiddf1f062013-06-04 10:01:13 +0800971
Takashi Iwai7b1269f2013-01-31 11:13:55 +0100972#endif /* CONFIG_FW_LOADER_USER_HELPER */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700973
Ming Leif531f05a2012-08-04 12:01:25 +0800974
Takashi Iwai4e0c92d2013-01-31 11:13:54 +0100975/* wait until the shared firmware_buf becomes ready (or error) */
976static int sync_cached_firmware_buf(struct firmware_buf *buf)
Ming Lei1f2b7952012-08-04 12:01:21 +0800977{
Takashi Iwai4e0c92d2013-01-31 11:13:54 +0100978 int ret = 0;
979
980 mutex_lock(&fw_lock);
981 while (!test_bit(FW_STATUS_DONE, &buf->status)) {
Takashi Iwai807be032013-01-31 11:13:57 +0100982 if (is_fw_load_aborted(buf)) {
Takashi Iwai4e0c92d2013-01-31 11:13:54 +0100983 ret = -ENOENT;
984 break;
985 }
986 mutex_unlock(&fw_lock);
987 wait_for_completion(&buf->completion);
988 mutex_lock(&fw_lock);
989 }
990 mutex_unlock(&fw_lock);
991 return ret;
Ming Lei1f2b7952012-08-04 12:01:21 +0800992}
993
Takashi Iwai4e0c92d2013-01-31 11:13:54 +0100994/* prepare firmware and firmware_buf structs;
995 * return 0 if a firmware is already assigned, 1 if need to load one,
996 * or a negative error code
997 */
998static int
999_request_firmware_prepare(struct firmware **firmware_p, const char *name,
1000 struct device *device)
Dmitry Torokhovf8a4bd32010-06-04 00:54:43 -07001001{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001002 struct firmware *firmware;
Ming Lei1f2b7952012-08-04 12:01:21 +08001003 struct firmware_buf *buf;
1004 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001005
Jiri Slaby4aed0642005-09-13 01:25:01 -07001006 *firmware_p = firmware = kzalloc(sizeof(*firmware), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001007 if (!firmware) {
Bjorn Helgaas266a8132008-10-15 22:04:20 -07001008 dev_err(device, "%s: kmalloc(struct firmware) failed\n",
1009 __func__);
Takashi Iwai4e0c92d2013-01-31 11:13:54 +01001010 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001011 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001012
Dmitry Torokhovbcb9bd12010-03-13 23:49:18 -08001013 if (fw_get_builtin_firmware(firmware, name)) {
Rafael J. Wysocki6f18ff92010-02-27 21:43:22 +01001014 dev_dbg(device, "firmware: using built-in firmware %s\n", name);
Takashi Iwai4e0c92d2013-01-31 11:13:54 +01001015 return 0; /* assigned */
David Woodhouse5658c762008-05-23 13:52:42 +01001016 }
1017
Ming Lei1f2b7952012-08-04 12:01:21 +08001018 ret = fw_lookup_and_allocate_buf(name, &fw_cache, &buf);
Ming Lei1f2b7952012-08-04 12:01:21 +08001019
Takashi Iwai4e0c92d2013-01-31 11:13:54 +01001020 /*
1021 * bind with 'buf' now to avoid warning in failure path
1022 * of requesting firmware.
1023 */
1024 firmware->priv = buf;
Ming Lei1f2b7952012-08-04 12:01:21 +08001025
Takashi Iwai4e0c92d2013-01-31 11:13:54 +01001026 if (ret > 0) {
1027 ret = sync_cached_firmware_buf(buf);
1028 if (!ret) {
1029 fw_set_page_data(buf, firmware);
1030 return 0; /* assigned */
1031 }
Stephen Boyddddb5542012-03-28 23:30:43 +02001032 }
Ming Lei1f2b7952012-08-04 12:01:21 +08001033
Takashi Iwai4e0c92d2013-01-31 11:13:54 +01001034 if (ret < 0)
1035 return ret;
1036 return 1; /* need to load */
Rafael J. Wysocki811fa402012-03-28 23:29:55 +02001037}
1038
Ming Leie771d1a2013-05-27 18:30:03 +08001039static int assign_firmware_buf(struct firmware *fw, struct device *device,
Takashi Iwai14c4bae2013-12-02 15:38:18 +01001040 unsigned int opt_flags)
Takashi Iwai4e0c92d2013-01-31 11:13:54 +01001041{
1042 struct firmware_buf *buf = fw->priv;
1043
1044 mutex_lock(&fw_lock);
Takashi Iwai807be032013-01-31 11:13:57 +01001045 if (!buf->size || is_fw_load_aborted(buf)) {
Takashi Iwai4e0c92d2013-01-31 11:13:54 +01001046 mutex_unlock(&fw_lock);
1047 return -ENOENT;
1048 }
1049
1050 /*
1051 * add firmware name into devres list so that we can auto cache
1052 * and uncache firmware for device.
1053 *
1054 * device may has been deleted already, but the problem
1055 * should be fixed in devres or driver core.
1056 */
Takashi Iwai14c4bae2013-12-02 15:38:18 +01001057 /* don't cache firmware handled without uevent */
1058 if (device && (opt_flags & FW_OPT_UEVENT))
Takashi Iwai4e0c92d2013-01-31 11:13:54 +01001059 fw_add_devm_name(device, buf->fw_id);
1060
1061 /*
1062 * After caching firmware image is started, let it piggyback
1063 * on request firmware.
1064 */
1065 if (buf->fwc->state == FW_LOADER_START_CACHE) {
1066 if (fw_cache_piggyback_on_request(buf->fw_id))
1067 kref_get(&buf->ref);
1068 }
1069
1070 /* pass the pages buffer to driver at the last minute */
1071 fw_set_page_data(buf, fw);
1072 mutex_unlock(&fw_lock);
1073 return 0;
1074}
1075
Takashi Iwai4e0c92d2013-01-31 11:13:54 +01001076/* called from request_firmware() and request_firmware_work_func() */
1077static int
1078_request_firmware(const struct firmware **firmware_p, const char *name,
Takashi Iwai14c4bae2013-12-02 15:38:18 +01001079 struct device *device, unsigned int opt_flags)
Takashi Iwai4e0c92d2013-01-31 11:13:54 +01001080{
1081 struct firmware *fw;
1082 long timeout;
1083 int ret;
1084
1085 if (!firmware_p)
1086 return -EINVAL;
1087
1088 ret = _request_firmware_prepare(&fw, name, device);
1089 if (ret <= 0) /* error or already assigned */
1090 goto out;
1091
1092 ret = 0;
1093 timeout = firmware_loading_timeout();
Takashi Iwai14c4bae2013-12-02 15:38:18 +01001094 if (opt_flags & FW_OPT_NOWAIT) {
Takashi Iwai4e0c92d2013-01-31 11:13:54 +01001095 timeout = usermodehelper_read_lock_wait(timeout);
1096 if (!timeout) {
1097 dev_dbg(device, "firmware: %s loading timed out\n",
1098 name);
1099 ret = -EBUSY;
1100 goto out;
1101 }
1102 } else {
1103 ret = usermodehelper_read_trylock();
1104 if (WARN_ON(ret)) {
1105 dev_err(device, "firmware: %s will not be loaded\n",
1106 name);
1107 goto out;
1108 }
1109 }
1110
Neil Horman3e358ac2013-09-06 15:36:08 -04001111 ret = fw_get_filesystem_firmware(device, fw->priv);
1112 if (ret) {
Takashi Iwai14c4bae2013-12-02 15:38:18 +01001113 if (opt_flags & FW_OPT_FALLBACK) {
Takashi Iwaibba3a872013-12-02 15:38:16 +01001114 dev_warn(device,
1115 "Direct firmware load failed with error %d\n",
1116 ret);
1117 dev_warn(device, "Falling back to user helper\n");
1118 ret = fw_load_from_user_helper(fw, name, device,
Takashi Iwai14c4bae2013-12-02 15:38:18 +01001119 opt_flags, timeout);
Takashi Iwaibba3a872013-12-02 15:38:16 +01001120 }
Neil Horman3e358ac2013-09-06 15:36:08 -04001121 }
Ming Leie771d1a2013-05-27 18:30:03 +08001122
Takashi Iwai4e0c92d2013-01-31 11:13:54 +01001123 if (!ret)
Takashi Iwai14c4bae2013-12-02 15:38:18 +01001124 ret = assign_firmware_buf(fw, device, opt_flags);
Takashi Iwai4e0c92d2013-01-31 11:13:54 +01001125
1126 usermodehelper_read_unlock();
1127
1128 out:
1129 if (ret < 0) {
1130 release_firmware(fw);
1131 fw = NULL;
1132 }
1133
1134 *firmware_p = fw;
1135 return ret;
1136}
1137
Linus Torvalds1da177e2005-04-16 15:20:36 -07001138/**
Kay Sievers312c0042005-11-16 09:00:00 +01001139 * request_firmware: - send firmware request and wait for it
Randy Dunlapeb8e3172005-10-30 15:03:01 -08001140 * @firmware_p: pointer to firmware image
1141 * @name: name of firmware file
1142 * @device: device for which firmware is being loaded
1143 *
1144 * @firmware_p will be used to return a firmware image by the name
Abhay Salunke6e3eaab2005-09-06 15:17:13 -07001145 * of @name for device @device.
1146 *
1147 * Should be called from user context where sleeping is allowed.
1148 *
Kay Sievers312c0042005-11-16 09:00:00 +01001149 * @name will be used as $FIRMWARE in the uevent environment and
Abhay Salunke6e3eaab2005-09-06 15:17:13 -07001150 * should be distinctive enough not to be confused with any other
1151 * firmware image for this or any other device.
Ming Lei0cfc1e12012-08-04 12:01:23 +08001152 *
1153 * Caller must hold the reference count of @device.
Ming Lei6a927852012-11-03 17:48:16 +08001154 *
1155 * The function can be called safely inside device's suspend and
1156 * resume callback.
Abhay Salunke6e3eaab2005-09-06 15:17:13 -07001157 **/
1158int
1159request_firmware(const struct firmware **firmware_p, const char *name,
1160 struct device *device)
1161{
Ming Leid6c8aa32013-06-06 20:01:48 +08001162 int ret;
1163
1164 /* Need to pin this module until return */
1165 __module_get(THIS_MODULE);
Takashi Iwai14c4bae2013-12-02 15:38:18 +01001166 ret = _request_firmware(firmware_p, name, device,
1167 FW_OPT_UEVENT | FW_OPT_FALLBACK);
Ming Leid6c8aa32013-06-06 20:01:48 +08001168 module_put(THIS_MODULE);
1169 return ret;
Abhay Salunke6e3eaab2005-09-06 15:17:13 -07001170}
Daniel Mackf4945132013-05-23 22:17:18 +02001171EXPORT_SYMBOL(request_firmware);
Abhay Salunke6e3eaab2005-09-06 15:17:13 -07001172
Takashi Iwaibba3a872013-12-02 15:38:16 +01001173#ifdef CONFIG_FW_LOADER_USER_HELPER
1174/**
1175 * request_firmware: - load firmware directly without usermode helper
1176 * @firmware_p: pointer to firmware image
1177 * @name: name of firmware file
1178 * @device: device for which firmware is being loaded
1179 *
1180 * This function works pretty much like request_firmware(), but this doesn't
1181 * fall back to usermode helper even if the firmware couldn't be loaded
1182 * directly from fs. Hence it's useful for loading optional firmwares, which
1183 * aren't always present, without extra long timeouts of udev.
1184 **/
1185int request_firmware_direct(const struct firmware **firmware_p,
1186 const char *name, struct device *device)
1187{
1188 int ret;
1189 __module_get(THIS_MODULE);
Takashi Iwai14c4bae2013-12-02 15:38:18 +01001190 ret = _request_firmware(firmware_p, name, device, FW_OPT_UEVENT);
Takashi Iwaibba3a872013-12-02 15:38:16 +01001191 module_put(THIS_MODULE);
1192 return ret;
1193}
1194EXPORT_SYMBOL_GPL(request_firmware_direct);
1195#endif
1196
Abhay Salunke6e3eaab2005-09-06 15:17:13 -07001197/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07001198 * release_firmware: - release the resource associated with a firmware image
Randy Dunlapeb8e3172005-10-30 15:03:01 -08001199 * @fw: firmware resource to release
Linus Torvalds1da177e2005-04-16 15:20:36 -07001200 **/
Dmitry Torokhovbcb9bd12010-03-13 23:49:18 -08001201void release_firmware(const struct firmware *fw)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001202{
1203 if (fw) {
Dmitry Torokhovbcb9bd12010-03-13 23:49:18 -08001204 if (!fw_is_builtin_firmware(fw))
1205 firmware_free_data(fw);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001206 kfree(fw);
1207 }
1208}
Daniel Mackf4945132013-05-23 22:17:18 +02001209EXPORT_SYMBOL(release_firmware);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001210
Linus Torvalds1da177e2005-04-16 15:20:36 -07001211/* Async support */
1212struct firmware_work {
1213 struct work_struct work;
1214 struct module *module;
1215 const char *name;
1216 struct device *device;
1217 void *context;
1218 void (*cont)(const struct firmware *fw, void *context);
Takashi Iwai14c4bae2013-12-02 15:38:18 +01001219 unsigned int opt_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001220};
1221
Stephen Boyda36cf842012-03-28 23:31:00 +02001222static void request_firmware_work_func(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001223{
Stephen Boyda36cf842012-03-28 23:31:00 +02001224 struct firmware_work *fw_work;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001225 const struct firmware *fw;
Dmitry Torokhovf8a4bd32010-06-04 00:54:43 -07001226
Stephen Boyda36cf842012-03-28 23:31:00 +02001227 fw_work = container_of(work, struct firmware_work, work);
Rafael J. Wysocki811fa402012-03-28 23:29:55 +02001228
Takashi Iwai4e0c92d2013-01-31 11:13:54 +01001229 _request_firmware(&fw, fw_work->name, fw_work->device,
Takashi Iwai14c4bae2013-12-02 15:38:18 +01001230 fw_work->opt_flags);
Johannes Berg9ebfbd42009-10-29 12:36:02 +01001231 fw_work->cont(fw, fw_work->context);
Takashi Iwai4e0c92d2013-01-31 11:13:54 +01001232 put_device(fw_work->device); /* taken in request_firmware_nowait() */
Johannes Berg9ebfbd42009-10-29 12:36:02 +01001233
Linus Torvalds1da177e2005-04-16 15:20:36 -07001234 module_put(fw_work->module);
1235 kfree(fw_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001236}
1237
1238/**
Ben Hutchings3c31f072010-02-14 14:18:53 +00001239 * request_firmware_nowait - asynchronous version of request_firmware
Randy Dunlapeb8e3172005-10-30 15:03:01 -08001240 * @module: module requesting the firmware
Kay Sievers312c0042005-11-16 09:00:00 +01001241 * @uevent: sends uevent to copy the firmware image if this flag
Randy Dunlapeb8e3172005-10-30 15:03:01 -08001242 * is non-zero else the firmware copy must be done manually.
1243 * @name: name of firmware file
1244 * @device: device for which firmware is being loaded
Johannes Berg9ebfbd42009-10-29 12:36:02 +01001245 * @gfp: allocation flags
Randy Dunlapeb8e3172005-10-30 15:03:01 -08001246 * @context: will be passed over to @cont, and
1247 * @fw may be %NULL if firmware request fails.
1248 * @cont: function will be called asynchronously when the firmware
1249 * request is over.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001250 *
Ming Lei0cfc1e12012-08-04 12:01:23 +08001251 * Caller must hold the reference count of @device.
1252 *
Ming Lei6f21a622012-08-04 12:01:24 +08001253 * Asynchronous variant of request_firmware() for user contexts:
1254 * - sleep for as small periods as possible since it may
1255 * increase kernel boot time of built-in device drivers
1256 * requesting firmware in their ->probe() methods, if
1257 * @gfp is GFP_KERNEL.
1258 *
1259 * - can't sleep at all if @gfp is GFP_ATOMIC.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001260 **/
1261int
1262request_firmware_nowait(
Bob Liu072fc8f2011-01-26 18:33:32 +08001263 struct module *module, bool uevent,
Johannes Berg9ebfbd42009-10-29 12:36:02 +01001264 const char *name, struct device *device, gfp_t gfp, void *context,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001265 void (*cont)(const struct firmware *fw, void *context))
1266{
Dmitry Torokhovf8a4bd32010-06-04 00:54:43 -07001267 struct firmware_work *fw_work;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001268
Dmitry Torokhovf8a4bd32010-06-04 00:54:43 -07001269 fw_work = kzalloc(sizeof (struct firmware_work), gfp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001270 if (!fw_work)
1271 return -ENOMEM;
Dmitry Torokhovf8a4bd32010-06-04 00:54:43 -07001272
1273 fw_work->module = module;
1274 fw_work->name = name;
1275 fw_work->device = device;
1276 fw_work->context = context;
1277 fw_work->cont = cont;
Takashi Iwai14c4bae2013-12-02 15:38:18 +01001278 fw_work->opt_flags = FW_OPT_NOWAIT | FW_OPT_FALLBACK |
1279 (uevent ? FW_OPT_UEVENT : 0);
Dmitry Torokhovf8a4bd32010-06-04 00:54:43 -07001280
Linus Torvalds1da177e2005-04-16 15:20:36 -07001281 if (!try_module_get(module)) {
1282 kfree(fw_work);
1283 return -EFAULT;
1284 }
1285
Ming Lei0cfc1e12012-08-04 12:01:23 +08001286 get_device(fw_work->device);
Stephen Boyda36cf842012-03-28 23:31:00 +02001287 INIT_WORK(&fw_work->work, request_firmware_work_func);
1288 schedule_work(&fw_work->work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001289 return 0;
1290}
Daniel Mackf4945132013-05-23 22:17:18 +02001291EXPORT_SYMBOL(request_firmware_nowait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001292
Ming Lei90f890812013-06-20 12:30:16 +08001293#ifdef CONFIG_PM_SLEEP
1294static ASYNC_DOMAIN_EXCLUSIVE(fw_cache_domain);
1295
Ming Lei2887b392012-08-04 12:01:22 +08001296/**
1297 * cache_firmware - cache one firmware image in kernel memory space
1298 * @fw_name: the firmware image name
1299 *
1300 * Cache firmware in kernel memory so that drivers can use it when
1301 * system isn't ready for them to request firmware image from userspace.
1302 * Once it returns successfully, driver can use request_firmware or its
1303 * nowait version to get the cached firmware without any interacting
1304 * with userspace
1305 *
1306 * Return 0 if the firmware image has been cached successfully
1307 * Return !0 otherwise
1308 *
1309 */
Ming Lei93232e42013-06-06 20:01:47 +08001310static int cache_firmware(const char *fw_name)
Ming Lei2887b392012-08-04 12:01:22 +08001311{
1312 int ret;
1313 const struct firmware *fw;
1314
1315 pr_debug("%s: %s\n", __func__, fw_name);
1316
1317 ret = request_firmware(&fw, fw_name, NULL);
1318 if (!ret)
1319 kfree(fw);
1320
1321 pr_debug("%s: %s ret=%d\n", __func__, fw_name, ret);
1322
1323 return ret;
1324}
1325
Ming Lei6a2c1232013-06-26 09:28:17 +08001326static struct firmware_buf *fw_lookup_buf(const char *fw_name)
1327{
1328 struct firmware_buf *tmp;
1329 struct firmware_cache *fwc = &fw_cache;
1330
1331 spin_lock(&fwc->lock);
1332 tmp = __fw_lookup_buf(fw_name);
1333 spin_unlock(&fwc->lock);
1334
1335 return tmp;
1336}
1337
Ming Lei2887b392012-08-04 12:01:22 +08001338/**
1339 * uncache_firmware - remove one cached firmware image
1340 * @fw_name: the firmware image name
1341 *
1342 * Uncache one firmware image which has been cached successfully
1343 * before.
1344 *
1345 * Return 0 if the firmware cache has been removed successfully
1346 * Return !0 otherwise
1347 *
1348 */
Ming Lei93232e42013-06-06 20:01:47 +08001349static int uncache_firmware(const char *fw_name)
Ming Lei2887b392012-08-04 12:01:22 +08001350{
1351 struct firmware_buf *buf;
1352 struct firmware fw;
1353
1354 pr_debug("%s: %s\n", __func__, fw_name);
1355
1356 if (fw_get_builtin_firmware(&fw, fw_name))
1357 return 0;
1358
1359 buf = fw_lookup_buf(fw_name);
1360 if (buf) {
1361 fw_free_buf(buf);
1362 return 0;
1363 }
1364
1365 return -EINVAL;
1366}
1367
Ming Lei37276a52012-08-04 12:01:27 +08001368static struct fw_cache_entry *alloc_fw_cache_entry(const char *name)
1369{
1370 struct fw_cache_entry *fce;
1371
1372 fce = kzalloc(sizeof(*fce) + strlen(name) + 1, GFP_ATOMIC);
1373 if (!fce)
1374 goto exit;
1375
1376 strcpy(fce->name, name);
1377exit:
1378 return fce;
1379}
1380
Ming Lei373304f2012-10-09 12:01:01 +08001381static int __fw_entry_found(const char *name)
1382{
1383 struct firmware_cache *fwc = &fw_cache;
1384 struct fw_cache_entry *fce;
1385
1386 list_for_each_entry(fce, &fwc->fw_names, list) {
1387 if (!strcmp(fce->name, name))
1388 return 1;
1389 }
1390 return 0;
1391}
1392
Ming Leiac39b3e2012-08-20 19:04:16 +08001393static int fw_cache_piggyback_on_request(const char *name)
1394{
1395 struct firmware_cache *fwc = &fw_cache;
1396 struct fw_cache_entry *fce;
1397 int ret = 0;
1398
1399 spin_lock(&fwc->name_lock);
Ming Lei373304f2012-10-09 12:01:01 +08001400 if (__fw_entry_found(name))
1401 goto found;
Ming Leiac39b3e2012-08-20 19:04:16 +08001402
1403 fce = alloc_fw_cache_entry(name);
1404 if (fce) {
1405 ret = 1;
1406 list_add(&fce->list, &fwc->fw_names);
1407 pr_debug("%s: fw: %s\n", __func__, name);
1408 }
1409found:
1410 spin_unlock(&fwc->name_lock);
1411 return ret;
1412}
1413
Ming Lei37276a52012-08-04 12:01:27 +08001414static void free_fw_cache_entry(struct fw_cache_entry *fce)
1415{
1416 kfree(fce);
1417}
1418
1419static void __async_dev_cache_fw_image(void *fw_entry,
1420 async_cookie_t cookie)
1421{
1422 struct fw_cache_entry *fce = fw_entry;
1423 struct firmware_cache *fwc = &fw_cache;
1424 int ret;
1425
1426 ret = cache_firmware(fce->name);
Ming Leiac39b3e2012-08-20 19:04:16 +08001427 if (ret) {
1428 spin_lock(&fwc->name_lock);
1429 list_del(&fce->list);
1430 spin_unlock(&fwc->name_lock);
Ming Lei37276a52012-08-04 12:01:27 +08001431
Ming Leiac39b3e2012-08-20 19:04:16 +08001432 free_fw_cache_entry(fce);
1433 }
Ming Lei37276a52012-08-04 12:01:27 +08001434}
1435
1436/* called with dev->devres_lock held */
1437static void dev_create_fw_entry(struct device *dev, void *res,
1438 void *data)
1439{
1440 struct fw_name_devm *fwn = res;
1441 const char *fw_name = fwn->name;
1442 struct list_head *head = data;
1443 struct fw_cache_entry *fce;
1444
1445 fce = alloc_fw_cache_entry(fw_name);
1446 if (fce)
1447 list_add(&fce->list, head);
1448}
1449
1450static int devm_name_match(struct device *dev, void *res,
1451 void *match_data)
1452{
1453 struct fw_name_devm *fwn = res;
1454 return (fwn->magic == (unsigned long)match_data);
1455}
1456
Ming Leiab6dd8e2012-08-17 22:07:00 +08001457static void dev_cache_fw_image(struct device *dev, void *data)
Ming Lei37276a52012-08-04 12:01:27 +08001458{
1459 LIST_HEAD(todo);
1460 struct fw_cache_entry *fce;
1461 struct fw_cache_entry *fce_next;
1462 struct firmware_cache *fwc = &fw_cache;
1463
1464 devres_for_each_res(dev, fw_name_devm_release,
1465 devm_name_match, &fw_cache,
1466 dev_create_fw_entry, &todo);
1467
1468 list_for_each_entry_safe(fce, fce_next, &todo, list) {
1469 list_del(&fce->list);
1470
1471 spin_lock(&fwc->name_lock);
Ming Lei373304f2012-10-09 12:01:01 +08001472 /* only one cache entry for one firmware */
1473 if (!__fw_entry_found(fce->name)) {
Ming Lei373304f2012-10-09 12:01:01 +08001474 list_add(&fce->list, &fwc->fw_names);
1475 } else {
1476 free_fw_cache_entry(fce);
1477 fce = NULL;
1478 }
Ming Lei37276a52012-08-04 12:01:27 +08001479 spin_unlock(&fwc->name_lock);
1480
Ming Lei373304f2012-10-09 12:01:01 +08001481 if (fce)
Ming Leid28d3882012-10-09 12:01:04 +08001482 async_schedule_domain(__async_dev_cache_fw_image,
1483 (void *)fce,
1484 &fw_cache_domain);
Ming Lei37276a52012-08-04 12:01:27 +08001485 }
1486}
1487
1488static void __device_uncache_fw_images(void)
1489{
1490 struct firmware_cache *fwc = &fw_cache;
1491 struct fw_cache_entry *fce;
1492
1493 spin_lock(&fwc->name_lock);
1494 while (!list_empty(&fwc->fw_names)) {
1495 fce = list_entry(fwc->fw_names.next,
1496 struct fw_cache_entry, list);
1497 list_del(&fce->list);
1498 spin_unlock(&fwc->name_lock);
1499
1500 uncache_firmware(fce->name);
1501 free_fw_cache_entry(fce);
1502
1503 spin_lock(&fwc->name_lock);
1504 }
1505 spin_unlock(&fwc->name_lock);
1506}
1507
1508/**
1509 * device_cache_fw_images - cache devices' firmware
1510 *
1511 * If one device called request_firmware or its nowait version
1512 * successfully before, the firmware names are recored into the
1513 * device's devres link list, so device_cache_fw_images can call
1514 * cache_firmware() to cache these firmwares for the device,
1515 * then the device driver can load its firmwares easily at
1516 * time when system is not ready to complete loading firmware.
1517 */
1518static void device_cache_fw_images(void)
1519{
1520 struct firmware_cache *fwc = &fw_cache;
Ming Leiffe53f62012-08-04 12:01:28 +08001521 int old_timeout;
Ming Lei37276a52012-08-04 12:01:27 +08001522 DEFINE_WAIT(wait);
1523
1524 pr_debug("%s\n", __func__);
1525
Ming Lei373304f2012-10-09 12:01:01 +08001526 /* cancel uncache work */
1527 cancel_delayed_work_sync(&fwc->work);
1528
Ming Leiffe53f62012-08-04 12:01:28 +08001529 /*
1530 * use small loading timeout for caching devices' firmware
1531 * because all these firmware images have been loaded
1532 * successfully at lease once, also system is ready for
1533 * completing firmware loading now. The maximum size of
1534 * firmware in current distributions is about 2M bytes,
1535 * so 10 secs should be enough.
1536 */
1537 old_timeout = loading_timeout;
1538 loading_timeout = 10;
1539
Ming Leiac39b3e2012-08-20 19:04:16 +08001540 mutex_lock(&fw_lock);
1541 fwc->state = FW_LOADER_START_CACHE;
Ming Leiab6dd8e2012-08-17 22:07:00 +08001542 dpm_for_each_dev(NULL, dev_cache_fw_image);
Ming Leiac39b3e2012-08-20 19:04:16 +08001543 mutex_unlock(&fw_lock);
Ming Lei37276a52012-08-04 12:01:27 +08001544
1545 /* wait for completion of caching firmware for all devices */
Ming Leid28d3882012-10-09 12:01:04 +08001546 async_synchronize_full_domain(&fw_cache_domain);
Ming Leiffe53f62012-08-04 12:01:28 +08001547
1548 loading_timeout = old_timeout;
Ming Lei37276a52012-08-04 12:01:27 +08001549}
1550
1551/**
1552 * device_uncache_fw_images - uncache devices' firmware
1553 *
1554 * uncache all firmwares which have been cached successfully
1555 * by device_uncache_fw_images earlier
1556 */
1557static void device_uncache_fw_images(void)
1558{
1559 pr_debug("%s\n", __func__);
1560 __device_uncache_fw_images();
1561}
1562
1563static void device_uncache_fw_images_work(struct work_struct *work)
1564{
1565 device_uncache_fw_images();
1566}
1567
1568/**
1569 * device_uncache_fw_images_delay - uncache devices firmwares
1570 * @delay: number of milliseconds to delay uncache device firmwares
1571 *
1572 * uncache all devices's firmwares which has been cached successfully
1573 * by device_cache_fw_images after @delay milliseconds.
1574 */
1575static void device_uncache_fw_images_delay(unsigned long delay)
1576{
1577 schedule_delayed_work(&fw_cache.work,
1578 msecs_to_jiffies(delay));
1579}
1580
Ming Lei07646d92012-08-04 12:01:29 +08001581static int fw_pm_notify(struct notifier_block *notify_block,
1582 unsigned long mode, void *unused)
1583{
1584 switch (mode) {
1585 case PM_HIBERNATION_PREPARE:
1586 case PM_SUSPEND_PREPARE:
Ming Leiaf5bc112013-05-27 18:30:04 +08001587 kill_requests_without_uevent();
Ming Lei07646d92012-08-04 12:01:29 +08001588 device_cache_fw_images();
1589 break;
1590
1591 case PM_POST_SUSPEND:
1592 case PM_POST_HIBERNATION:
1593 case PM_POST_RESTORE:
Ming Leiac39b3e2012-08-20 19:04:16 +08001594 /*
1595 * In case that system sleep failed and syscore_suspend is
1596 * not called.
1597 */
1598 mutex_lock(&fw_lock);
1599 fw_cache.state = FW_LOADER_NO_CACHE;
1600 mutex_unlock(&fw_lock);
1601
Ming Lei07646d92012-08-04 12:01:29 +08001602 device_uncache_fw_images_delay(10 * MSEC_PER_SEC);
1603 break;
1604 }
1605
1606 return 0;
1607}
Ming Lei07646d92012-08-04 12:01:29 +08001608
Ming Leiac39b3e2012-08-20 19:04:16 +08001609/* stop caching firmware once syscore_suspend is reached */
1610static int fw_suspend(void)
1611{
1612 fw_cache.state = FW_LOADER_NO_CACHE;
1613 return 0;
1614}
1615
1616static struct syscore_ops fw_syscore_ops = {
1617 .suspend = fw_suspend,
1618};
Ming Leicfe016b2012-09-08 17:32:30 +08001619#else
1620static int fw_cache_piggyback_on_request(const char *name)
1621{
1622 return 0;
1623}
1624#endif
Ming Leiac39b3e2012-08-20 19:04:16 +08001625
Ming Lei37276a52012-08-04 12:01:27 +08001626static void __init fw_cache_init(void)
1627{
1628 spin_lock_init(&fw_cache.lock);
1629 INIT_LIST_HEAD(&fw_cache.head);
Ming Leicfe016b2012-09-08 17:32:30 +08001630 fw_cache.state = FW_LOADER_NO_CACHE;
Ming Lei37276a52012-08-04 12:01:27 +08001631
Ming Leicfe016b2012-09-08 17:32:30 +08001632#ifdef CONFIG_PM_SLEEP
Ming Lei37276a52012-08-04 12:01:27 +08001633 spin_lock_init(&fw_cache.name_lock);
1634 INIT_LIST_HEAD(&fw_cache.fw_names);
Ming Lei37276a52012-08-04 12:01:27 +08001635
Ming Lei37276a52012-08-04 12:01:27 +08001636 INIT_DELAYED_WORK(&fw_cache.work,
1637 device_uncache_fw_images_work);
Ming Lei07646d92012-08-04 12:01:29 +08001638
1639 fw_cache.pm_notify.notifier_call = fw_pm_notify;
1640 register_pm_notifier(&fw_cache.pm_notify);
Ming Leiac39b3e2012-08-20 19:04:16 +08001641
1642 register_syscore_ops(&fw_syscore_ops);
Ming Leicfe016b2012-09-08 17:32:30 +08001643#endif
Ming Lei37276a52012-08-04 12:01:27 +08001644}
1645
Dmitry Torokhov673fae92010-03-13 23:49:13 -08001646static int __init firmware_class_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001647{
Ming Lei1f2b7952012-08-04 12:01:21 +08001648 fw_cache_init();
Takashi Iwai7b1269f2013-01-31 11:13:55 +01001649#ifdef CONFIG_FW_LOADER_USER_HELPER
Takashi Iwaife304142013-05-22 18:28:38 +02001650 register_reboot_notifier(&fw_shutdown_nb);
Dmitry Torokhov673fae92010-03-13 23:49:13 -08001651 return class_register(&firmware_class);
Takashi Iwai7b1269f2013-01-31 11:13:55 +01001652#else
1653 return 0;
1654#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001655}
Dmitry Torokhov673fae92010-03-13 23:49:13 -08001656
1657static void __exit firmware_class_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001658{
Ming Leicfe016b2012-09-08 17:32:30 +08001659#ifdef CONFIG_PM_SLEEP
Ming Leiac39b3e2012-08-20 19:04:16 +08001660 unregister_syscore_ops(&fw_syscore_ops);
Ming Lei07646d92012-08-04 12:01:29 +08001661 unregister_pm_notifier(&fw_cache.pm_notify);
Ming Leicfe016b2012-09-08 17:32:30 +08001662#endif
Takashi Iwai7b1269f2013-01-31 11:13:55 +01001663#ifdef CONFIG_FW_LOADER_USER_HELPER
Takashi Iwaife304142013-05-22 18:28:38 +02001664 unregister_reboot_notifier(&fw_shutdown_nb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001665 class_unregister(&firmware_class);
Takashi Iwai7b1269f2013-01-31 11:13:55 +01001666#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001667}
1668
Shaohua Lia30a6a22006-09-27 01:50:52 -07001669fs_initcall(firmware_class_init);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001670module_exit(firmware_class_exit);