blob: 5870ec35efe6d9df196606771d24c5a224cbe9d9 [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>
Kees Cook6593d922014-02-25 13:06:00 -080031#include <linux/security.h>
Ming Lei37276a52012-08-04 12:01:27 +080032
Linus Torvaldsabb139e2012-10-03 15:58:32 -070033#include <generated/utsrelease.h>
34
Ming Lei37276a52012-08-04 12:01:27 +080035#include "base.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070036
Markus Rechberger87d37a42007-06-04 18:45:44 +020037MODULE_AUTHOR("Manuel Estrada Sainz");
Linus Torvalds1da177e2005-04-16 15:20:36 -070038MODULE_DESCRIPTION("Multi purpose firmware loading support");
39MODULE_LICENSE("GPL");
40
Dmitry Torokhovbcb9bd12010-03-13 23:49:18 -080041/* Builtin firmware support */
42
43#ifdef CONFIG_FW_LOADER
44
45extern struct builtin_fw __start_builtin_fw[];
46extern struct builtin_fw __end_builtin_fw[];
47
48static bool fw_get_builtin_firmware(struct firmware *fw, const char *name)
49{
50 struct builtin_fw *b_fw;
51
52 for (b_fw = __start_builtin_fw; b_fw != __end_builtin_fw; b_fw++) {
53 if (strcmp(name, b_fw->name) == 0) {
54 fw->size = b_fw->size;
55 fw->data = b_fw->data;
56 return true;
57 }
58 }
59
60 return false;
61}
62
63static bool fw_is_builtin_firmware(const struct firmware *fw)
64{
65 struct builtin_fw *b_fw;
66
67 for (b_fw = __start_builtin_fw; b_fw != __end_builtin_fw; b_fw++)
68 if (fw->data == b_fw->data)
69 return true;
70
71 return false;
72}
73
74#else /* Module case - no builtin firmware support */
75
76static inline bool fw_get_builtin_firmware(struct firmware *fw, const char *name)
77{
78 return false;
79}
80
81static inline bool fw_is_builtin_firmware(const struct firmware *fw)
82{
83 return false;
84}
85#endif
86
Linus Torvalds1da177e2005-04-16 15:20:36 -070087enum {
88 FW_STATUS_LOADING,
89 FW_STATUS_DONE,
90 FW_STATUS_ABORT,
Linus Torvalds1da177e2005-04-16 15:20:36 -070091};
92
Dave Jones2f651682007-01-25 15:56:15 -050093static int loading_timeout = 60; /* In seconds */
Linus Torvalds1da177e2005-04-16 15:20:36 -070094
Rafael J. Wysocki9b78c1d2012-03-28 23:30:02 +020095static inline long firmware_loading_timeout(void)
96{
97 return loading_timeout > 0 ? loading_timeout * HZ : MAX_SCHEDULE_TIMEOUT;
98}
99
Takashi Iwai14c4bae2013-12-02 15:38:18 +0100100/* firmware behavior options */
101#define FW_OPT_UEVENT (1U << 0)
102#define FW_OPT_NOWAIT (1U << 1)
Takashi Iwai68aeeaa2013-12-02 15:38:19 +0100103#ifdef CONFIG_FW_LOADER_USER_HELPER
Takashi Iwai5a1379e2014-06-04 17:48:15 +0200104#define FW_OPT_USERHELPER (1U << 2)
Takashi Iwai68aeeaa2013-12-02 15:38:19 +0100105#else
Takashi Iwai5a1379e2014-06-04 17:48:15 +0200106#define FW_OPT_USERHELPER 0
107#endif
108#ifdef CONFIG_FW_LOADER_USER_HELPER_FALLBACK
109#define FW_OPT_FALLBACK FW_OPT_USERHELPER
110#else
111#define FW_OPT_FALLBACK 0
Takashi Iwai68aeeaa2013-12-02 15:38:19 +0100112#endif
Luis R. Rodriguezc868edf2014-07-02 09:55:05 -0700113#define FW_OPT_NO_WARN (1U << 3)
Takashi Iwai14c4bae2013-12-02 15:38:18 +0100114
Ming Lei1f2b7952012-08-04 12:01:21 +0800115struct firmware_cache {
116 /* firmware_buf instance will be added into the below list */
117 spinlock_t lock;
118 struct list_head head;
Ming Leicfe016b2012-09-08 17:32:30 +0800119 int state;
Ming Lei37276a52012-08-04 12:01:27 +0800120
Ming Leicfe016b2012-09-08 17:32:30 +0800121#ifdef CONFIG_PM_SLEEP
Ming Lei37276a52012-08-04 12:01:27 +0800122 /*
123 * Names of firmware images which have been cached successfully
124 * will be added into the below list so that device uncache
125 * helper can trace which firmware images have been cached
126 * before.
127 */
128 spinlock_t name_lock;
129 struct list_head fw_names;
130
Ming Lei37276a52012-08-04 12:01:27 +0800131 struct delayed_work work;
Ming Lei07646d92012-08-04 12:01:29 +0800132
133 struct notifier_block pm_notify;
Ming Leicfe016b2012-09-08 17:32:30 +0800134#endif
Ming Lei1f2b7952012-08-04 12:01:21 +0800135};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136
Ming Lei12446912012-08-04 12:01:20 +0800137struct firmware_buf {
Ming Lei1f2b7952012-08-04 12:01:21 +0800138 struct kref ref;
139 struct list_head list;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140 struct completion completion;
Ming Lei1f2b7952012-08-04 12:01:21 +0800141 struct firmware_cache *fwc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142 unsigned long status;
Ming Lei65710cb2012-08-04 12:01:16 +0800143 void *data;
144 size_t size;
Takashi Iwai7b1269f2013-01-31 11:13:55 +0100145#ifdef CONFIG_FW_LOADER_USER_HELPER
Takashi Iwaicd7239f2013-01-31 11:13:56 +0100146 bool is_paged_buf;
Ming Leiaf5bc112013-05-27 18:30:04 +0800147 bool need_uevent;
David Woodhouse6e03a202009-04-09 22:04:07 -0700148 struct page **pages;
149 int nr_pages;
150 int page_array_size;
Takashi Iwaife304142013-05-22 18:28:38 +0200151 struct list_head pending_list;
Takashi Iwai7b1269f2013-01-31 11:13:55 +0100152#endif
Dmitry Torokhove1771232010-03-13 23:49:23 -0800153 char fw_id[];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154};
155
Ming Lei37276a52012-08-04 12:01:27 +0800156struct fw_cache_entry {
157 struct list_head list;
158 char name[];
159};
160
Ming Leif531f05a2012-08-04 12:01:25 +0800161struct fw_name_devm {
162 unsigned long magic;
163 char name[];
164};
165
Ming Lei1f2b7952012-08-04 12:01:21 +0800166#define to_fwbuf(d) container_of(d, struct firmware_buf, ref)
167
Ming Leiac39b3e2012-08-20 19:04:16 +0800168#define FW_LOADER_NO_CACHE 0
169#define FW_LOADER_START_CACHE 1
170
171static int fw_cache_piggyback_on_request(const char *name);
172
Ming Lei1f2b7952012-08-04 12:01:21 +0800173/* fw_lock could be moved to 'struct firmware_priv' but since it is just
174 * guarding for corner cases a global lock should be OK */
175static DEFINE_MUTEX(fw_lock);
176
177static struct firmware_cache fw_cache;
178
179static struct firmware_buf *__allocate_fw_buf(const char *fw_name,
180 struct firmware_cache *fwc)
181{
182 struct firmware_buf *buf;
183
184 buf = kzalloc(sizeof(*buf) + strlen(fw_name) + 1 , GFP_ATOMIC);
185
186 if (!buf)
187 return buf;
188
189 kref_init(&buf->ref);
190 strcpy(buf->fw_id, fw_name);
191 buf->fwc = fwc;
192 init_completion(&buf->completion);
Takashi Iwaife304142013-05-22 18:28:38 +0200193#ifdef CONFIG_FW_LOADER_USER_HELPER
194 INIT_LIST_HEAD(&buf->pending_list);
195#endif
Ming Lei1f2b7952012-08-04 12:01:21 +0800196
197 pr_debug("%s: fw-%s buf=%p\n", __func__, fw_name, buf);
198
199 return buf;
200}
201
Ming Lei2887b392012-08-04 12:01:22 +0800202static struct firmware_buf *__fw_lookup_buf(const char *fw_name)
203{
204 struct firmware_buf *tmp;
205 struct firmware_cache *fwc = &fw_cache;
206
207 list_for_each_entry(tmp, &fwc->head, list)
208 if (!strcmp(tmp->fw_id, fw_name))
209 return tmp;
210 return NULL;
211}
212
Ming Lei1f2b7952012-08-04 12:01:21 +0800213static int fw_lookup_and_allocate_buf(const char *fw_name,
214 struct firmware_cache *fwc,
215 struct firmware_buf **buf)
216{
217 struct firmware_buf *tmp;
218
219 spin_lock(&fwc->lock);
Ming Lei2887b392012-08-04 12:01:22 +0800220 tmp = __fw_lookup_buf(fw_name);
221 if (tmp) {
222 kref_get(&tmp->ref);
223 spin_unlock(&fwc->lock);
224 *buf = tmp;
225 return 1;
226 }
Ming Lei1f2b7952012-08-04 12:01:21 +0800227 tmp = __allocate_fw_buf(fw_name, fwc);
228 if (tmp)
229 list_add(&tmp->list, &fwc->head);
230 spin_unlock(&fwc->lock);
231
232 *buf = tmp;
233
234 return tmp ? 0 : -ENOMEM;
235}
236
237static void __fw_free_buf(struct kref *ref)
Bart Van Assche98233b22014-01-04 14:20:36 +0100238 __releases(&fwc->lock)
Ming Lei1f2b7952012-08-04 12:01:21 +0800239{
240 struct firmware_buf *buf = to_fwbuf(ref);
241 struct firmware_cache *fwc = buf->fwc;
Ming Lei1f2b7952012-08-04 12:01:21 +0800242
243 pr_debug("%s: fw-%s buf=%p data=%p size=%u\n",
244 __func__, buf->fw_id, buf, buf->data,
245 (unsigned int)buf->size);
246
Ming Lei1f2b7952012-08-04 12:01:21 +0800247 list_del(&buf->list);
248 spin_unlock(&fwc->lock);
249
Takashi Iwai7b1269f2013-01-31 11:13:55 +0100250#ifdef CONFIG_FW_LOADER_USER_HELPER
Takashi Iwaicd7239f2013-01-31 11:13:56 +0100251 if (buf->is_paged_buf) {
Takashi Iwai7b1269f2013-01-31 11:13:55 +0100252 int i;
Ming Lei746058f2012-10-09 12:01:03 +0800253 vunmap(buf->data);
254 for (i = 0; i < buf->nr_pages; i++)
255 __free_page(buf->pages[i]);
256 kfree(buf->pages);
257 } else
Takashi Iwai7b1269f2013-01-31 11:13:55 +0100258#endif
Ming Lei746058f2012-10-09 12:01:03 +0800259 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 */
Ming Lei27602842012-11-03 17:47:58 +0800272static char fw_path_para[256];
273static const char * const fw_path[] = {
274 fw_path_para,
Ming Lei746058f2012-10-09 12:01:03 +0800275 "/lib/firmware/updates/" UTS_RELEASE,
276 "/lib/firmware/updates",
277 "/lib/firmware/" UTS_RELEASE,
278 "/lib/firmware"
279};
280
Ming Lei27602842012-11-03 17:47:58 +0800281/*
282 * Typical usage is that passing 'firmware_class.path=$CUSTOMIZED_PATH'
283 * from kernel command line because firmware_class is generally built in
284 * kernel instead of module.
285 */
286module_param_string(path, fw_path_para, sizeof(fw_path_para), 0644);
287MODULE_PARM_DESC(path, "customized firmware image search path with a higher priority than default path");
288
Neil Horman3e358ac2013-09-06 15:36:08 -0400289static int fw_read_file_contents(struct file *file, struct firmware_buf *fw_buf)
Ming Lei746058f2012-10-09 12:01:03 +0800290{
Ben Hutchings08da2012013-12-28 16:53:59 +0100291 int size;
Ming Lei746058f2012-10-09 12:01:03 +0800292 char *buf;
Neil Horman3e358ac2013-09-06 15:36:08 -0400293 int rc;
Ming Lei746058f2012-10-09 12:01:03 +0800294
Dmitry Kasatkin6af6b162014-06-13 18:09:54 +0300295 if (!S_ISREG(file_inode(file)->i_mode))
296 return -EINVAL;
297 size = i_size_read(file_inode(file));
Luciano Coelho4adf07f2013-01-15 10:43:43 +0200298 if (size <= 0)
Neil Horman3e358ac2013-09-06 15:36:08 -0400299 return -EINVAL;
Ming Lei746058f2012-10-09 12:01:03 +0800300 buf = vmalloc(size);
301 if (!buf)
Neil Horman3e358ac2013-09-06 15:36:08 -0400302 return -ENOMEM;
303 rc = kernel_read(file, 0, buf, size);
304 if (rc != size) {
305 if (rc > 0)
306 rc = -EIO;
Kees Cook6593d922014-02-25 13:06:00 -0800307 goto fail;
Ming Lei746058f2012-10-09 12:01:03 +0800308 }
Kees Cook6593d922014-02-25 13:06:00 -0800309 rc = security_kernel_fw_from_file(file, buf, size);
310 if (rc)
311 goto fail;
Ming Lei746058f2012-10-09 12:01:03 +0800312 fw_buf->data = buf;
313 fw_buf->size = size;
Neil Horman3e358ac2013-09-06 15:36:08 -0400314 return 0;
Kees Cook6593d922014-02-25 13:06:00 -0800315fail:
316 vfree(buf);
317 return rc;
Ming Lei746058f2012-10-09 12:01:03 +0800318}
319
Neil Horman3e358ac2013-09-06 15:36:08 -0400320static int fw_get_filesystem_firmware(struct device *device,
Takashi Iwai4e0c92d2013-01-31 11:13:54 +0100321 struct firmware_buf *buf)
Ming Lei746058f2012-10-09 12:01:03 +0800322{
323 int i;
Neil Horman3e358ac2013-09-06 15:36:08 -0400324 int rc = -ENOENT;
Ming Lei746058f2012-10-09 12:01:03 +0800325 char *path = __getname();
326
327 for (i = 0; i < ARRAY_SIZE(fw_path); i++) {
328 struct file *file;
Ming Lei27602842012-11-03 17:47:58 +0800329
330 /* skip the unset customized path */
331 if (!fw_path[i][0])
332 continue;
333
Ming Lei746058f2012-10-09 12:01:03 +0800334 snprintf(path, PATH_MAX, "%s/%s", fw_path[i], buf->fw_id);
335
336 file = filp_open(path, O_RDONLY, 0);
337 if (IS_ERR(file))
338 continue;
Neil Horman3e358ac2013-09-06 15:36:08 -0400339 rc = fw_read_file_contents(file, buf);
Ming Lei746058f2012-10-09 12:01:03 +0800340 fput(file);
Neil Horman3e358ac2013-09-06 15:36:08 -0400341 if (rc)
342 dev_warn(device, "firmware, attempted to load %s, but failed with error %d\n",
343 path, rc);
344 else
Ming Lei746058f2012-10-09 12:01:03 +0800345 break;
346 }
347 __putname(path);
Takashi Iwai4e0c92d2013-01-31 11:13:54 +0100348
Neil Horman3e358ac2013-09-06 15:36:08 -0400349 if (!rc) {
Takashi Iwai4e0c92d2013-01-31 11:13:54 +0100350 dev_dbg(device, "firmware: direct-loading firmware %s\n",
351 buf->fw_id);
352 mutex_lock(&fw_lock);
353 set_bit(FW_STATUS_DONE, &buf->status);
354 complete_all(&buf->completion);
355 mutex_unlock(&fw_lock);
356 }
357
Neil Horman3e358ac2013-09-06 15:36:08 -0400358 return rc;
Ming Lei746058f2012-10-09 12:01:03 +0800359}
360
Takashi Iwai7b1269f2013-01-31 11:13:55 +0100361/* firmware holds the ownership of pages */
362static void firmware_free_data(const struct firmware *fw)
363{
364 /* Loaded directly? */
365 if (!fw->priv) {
366 vfree(fw->data);
367 return;
368 }
369 fw_free_buf(fw->priv);
370}
371
Takashi Iwaicd7239f2013-01-31 11:13:56 +0100372/* store the pages buffer info firmware from buf */
373static void fw_set_page_data(struct firmware_buf *buf, struct firmware *fw)
374{
375 fw->priv = buf;
Takashi Iwai7b1269f2013-01-31 11:13:55 +0100376#ifdef CONFIG_FW_LOADER_USER_HELPER
Takashi Iwaicd7239f2013-01-31 11:13:56 +0100377 fw->pages = buf->pages;
378#endif
379 fw->size = buf->size;
380 fw->data = buf->data;
381
382 pr_debug("%s: fw-%s buf=%p data=%p size=%u\n",
383 __func__, buf->fw_id, buf, buf->data,
384 (unsigned int)buf->size);
385}
386
387#ifdef CONFIG_PM_SLEEP
388static void fw_name_devm_release(struct device *dev, void *res)
389{
390 struct fw_name_devm *fwn = res;
391
392 if (fwn->magic == (unsigned long)&fw_cache)
393 pr_debug("%s: fw_name-%s devm-%p released\n",
394 __func__, fwn->name, res);
395}
396
397static int fw_devm_match(struct device *dev, void *res,
398 void *match_data)
399{
400 struct fw_name_devm *fwn = res;
401
402 return (fwn->magic == (unsigned long)&fw_cache) &&
403 !strcmp(fwn->name, match_data);
404}
405
406static struct fw_name_devm *fw_find_devm_name(struct device *dev,
407 const char *name)
408{
409 struct fw_name_devm *fwn;
410
411 fwn = devres_find(dev, fw_name_devm_release,
412 fw_devm_match, (void *)name);
413 return fwn;
414}
415
416/* add firmware name into devres list */
417static int fw_add_devm_name(struct device *dev, const char *name)
418{
419 struct fw_name_devm *fwn;
420
421 fwn = fw_find_devm_name(dev, name);
422 if (fwn)
423 return 1;
424
425 fwn = devres_alloc(fw_name_devm_release, sizeof(struct fw_name_devm) +
426 strlen(name) + 1, GFP_KERNEL);
427 if (!fwn)
428 return -ENOMEM;
429
430 fwn->magic = (unsigned long)&fw_cache;
431 strcpy(fwn->name, name);
432 devres_add(dev, fwn);
433
434 return 0;
435}
436#else
437static int fw_add_devm_name(struct device *dev, const char *name)
438{
439 return 0;
440}
441#endif
442
443
444/*
445 * user-mode helper code
446 */
447#ifdef CONFIG_FW_LOADER_USER_HELPER
448struct firmware_priv {
449 struct delayed_work timeout_work;
450 bool nowait;
451 struct device dev;
452 struct firmware_buf *buf;
453 struct firmware *fw;
454};
Takashi Iwai7b1269f2013-01-31 11:13:55 +0100455
Dmitry Torokhovf8a4bd32010-06-04 00:54:43 -0700456static struct firmware_priv *to_firmware_priv(struct device *dev)
457{
458 return container_of(dev, struct firmware_priv, dev);
459}
460
Greg Kroah-Hartman7068cb02013-06-19 20:26:43 -0700461static void __fw_load_abort(struct firmware_buf *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462{
Ming Lei87597932013-06-15 16:36:38 +0800463 /*
464 * There is a small window in which user can write to 'loading'
465 * between loading done and disappearance of 'loading'
466 */
467 if (test_bit(FW_STATUS_DONE, &buf->status))
468 return;
469
Takashi Iwaife304142013-05-22 18:28:38 +0200470 list_del_init(&buf->pending_list);
Ming Lei12446912012-08-04 12:01:20 +0800471 set_bit(FW_STATUS_ABORT, &buf->status);
Ming Lei1f2b7952012-08-04 12:01:21 +0800472 complete_all(&buf->completion);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473}
474
Greg Kroah-Hartman7068cb02013-06-19 20:26:43 -0700475static void fw_load_abort(struct firmware_priv *fw_priv)
476{
477 struct firmware_buf *buf = fw_priv->buf;
478
479 __fw_load_abort(buf);
Ming Lei87597932013-06-15 16:36:38 +0800480
481 /* avoid user action after loading abort */
482 fw_priv->buf = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483}
484
Takashi Iwai807be032013-01-31 11:13:57 +0100485#define is_fw_load_aborted(buf) \
486 test_bit(FW_STATUS_ABORT, &(buf)->status)
487
Takashi Iwaife304142013-05-22 18:28:38 +0200488static LIST_HEAD(pending_fw_head);
489
490/* reboot notifier for avoid deadlock with usermode_lock */
491static int fw_shutdown_notify(struct notifier_block *unused1,
492 unsigned long unused2, void *unused3)
493{
494 mutex_lock(&fw_lock);
495 while (!list_empty(&pending_fw_head))
Greg Kroah-Hartman7068cb02013-06-19 20:26:43 -0700496 __fw_load_abort(list_first_entry(&pending_fw_head,
Takashi Iwaife304142013-05-22 18:28:38 +0200497 struct firmware_buf,
498 pending_list));
499 mutex_unlock(&fw_lock);
500 return NOTIFY_DONE;
501}
502
503static struct notifier_block fw_shutdown_nb = {
504 .notifier_call = fw_shutdown_notify,
505};
506
Greg Kroah-Hartman14adbe52013-08-23 17:08:48 -0700507static ssize_t timeout_show(struct class *class, struct class_attribute *attr,
508 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509{
510 return sprintf(buf, "%d\n", loading_timeout);
511}
512
513/**
Randy Dunlapeb8e3172005-10-30 15:03:01 -0800514 * firmware_timeout_store - set number of seconds to wait for firmware
515 * @class: device class pointer
Randy Dunlape59817b2010-03-10 11:47:58 -0800516 * @attr: device attribute pointer
Randy Dunlapeb8e3172005-10-30 15:03:01 -0800517 * @buf: buffer to scan for timeout value
518 * @count: number of bytes in @buf
519 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520 * Sets the number of seconds to wait for the firmware. Once
Randy Dunlapeb8e3172005-10-30 15:03:01 -0800521 * this expires an error will be returned to the driver and no
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522 * firmware will be provided.
523 *
Randy Dunlapeb8e3172005-10-30 15:03:01 -0800524 * Note: zero means 'wait forever'.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525 **/
Greg Kroah-Hartman14adbe52013-08-23 17:08:48 -0700526static ssize_t timeout_store(struct class *class, struct class_attribute *attr,
527 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528{
529 loading_timeout = simple_strtol(buf, NULL, 10);
Stanislaw W. Gruszkab92eac02005-06-28 20:44:51 -0700530 if (loading_timeout < 0)
531 loading_timeout = 0;
Dmitry Torokhovf8a4bd32010-06-04 00:54:43 -0700532
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533 return count;
534}
535
Dmitry Torokhov673fae92010-03-13 23:49:13 -0800536static struct class_attribute firmware_class_attrs[] = {
Greg Kroah-Hartman14adbe52013-08-23 17:08:48 -0700537 __ATTR_RW(timeout),
Dmitry Torokhov673fae92010-03-13 23:49:13 -0800538 __ATTR_NULL
539};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540
Dmitry Torokhov673fae92010-03-13 23:49:13 -0800541static void fw_dev_release(struct device *dev)
542{
Dmitry Torokhovf8a4bd32010-06-04 00:54:43 -0700543 struct firmware_priv *fw_priv = to_firmware_priv(dev);
Ming Lei65710cb2012-08-04 12:01:16 +0800544
Dmitry Torokhov673fae92010-03-13 23:49:13 -0800545 kfree(fw_priv);
Dmitry Torokhov673fae92010-03-13 23:49:13 -0800546}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547
Kay Sievers7eff2e72007-08-14 15:15:12 +0200548static int firmware_uevent(struct device *dev, struct kobj_uevent_env *env)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549{
Dmitry Torokhovf8a4bd32010-06-04 00:54:43 -0700550 struct firmware_priv *fw_priv = to_firmware_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551
Ming Lei12446912012-08-04 12:01:20 +0800552 if (add_uevent_var(env, "FIRMWARE=%s", fw_priv->buf->fw_id))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553 return -ENOMEM;
Kay Sievers7eff2e72007-08-14 15:15:12 +0200554 if (add_uevent_var(env, "TIMEOUT=%i", loading_timeout))
kay.sievers@vrfy.org68970892005-04-18 21:57:31 -0700555 return -ENOMEM;
Johannes Berge9045f92010-03-29 17:57:20 +0200556 if (add_uevent_var(env, "ASYNC=%d", fw_priv->nowait))
557 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558
559 return 0;
560}
561
Adrian Bunk1b81d662006-05-20 15:00:16 -0700562static struct class firmware_class = {
563 .name = "firmware",
Dmitry Torokhov673fae92010-03-13 23:49:13 -0800564 .class_attrs = firmware_class_attrs,
Greg Kroah-Hartmane55c8792006-09-14 07:30:59 -0700565 .dev_uevent = firmware_uevent,
566 .dev_release = fw_dev_release,
Adrian Bunk1b81d662006-05-20 15:00:16 -0700567};
568
Greg Kroah-Hartmane55c8792006-09-14 07:30:59 -0700569static ssize_t firmware_loading_show(struct device *dev,
570 struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571{
Dmitry Torokhovf8a4bd32010-06-04 00:54:43 -0700572 struct firmware_priv *fw_priv = to_firmware_priv(dev);
Ming Lei87597932013-06-15 16:36:38 +0800573 int loading = 0;
574
575 mutex_lock(&fw_lock);
576 if (fw_priv->buf)
577 loading = test_bit(FW_STATUS_LOADING, &fw_priv->buf->status);
578 mutex_unlock(&fw_lock);
Dmitry Torokhovf8a4bd32010-06-04 00:54:43 -0700579
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580 return sprintf(buf, "%d\n", loading);
581}
582
David Woodhouse6e03a202009-04-09 22:04:07 -0700583/* Some architectures don't have PAGE_KERNEL_RO */
584#ifndef PAGE_KERNEL_RO
585#define PAGE_KERNEL_RO PAGE_KERNEL
586#endif
Ming Lei253c9242012-10-09 12:01:02 +0800587
588/* one pages buffer should be mapped/unmapped only once */
589static int fw_map_pages_buf(struct firmware_buf *buf)
590{
Takashi Iwaicd7239f2013-01-31 11:13:56 +0100591 if (!buf->is_paged_buf)
Ming Lei746058f2012-10-09 12:01:03 +0800592 return 0;
593
Markus Elfringdaa3d672014-11-19 11:38:38 +0100594 vunmap(buf->data);
Ming Lei253c9242012-10-09 12:01:02 +0800595 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;
Kees Cook6593d922014-02-25 13:06:00 -0800620 ssize_t written = count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621 int loading = simple_strtol(buf, NULL, 10);
David Woodhouse6e03a202009-04-09 22:04:07 -0700622 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623
Neil Hormaneea915b2012-01-02 15:31:23 -0500624 mutex_lock(&fw_lock);
Ming Lei87597932013-06-15 16:36:38 +0800625 fw_buf = fw_priv->buf;
Ming Lei12446912012-08-04 12:01:20 +0800626 if (!fw_buf)
Neil Hormaneea915b2012-01-02 15:31:23 -0500627 goto out;
628
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629 switch (loading) {
630 case 1:
Ming Lei65710cb2012-08-04 12:01:16 +0800631 /* discarding any previous partial load */
Ming Lei12446912012-08-04 12:01:20 +0800632 if (!test_bit(FW_STATUS_DONE, &fw_buf->status)) {
633 for (i = 0; i < fw_buf->nr_pages; i++)
634 __free_page(fw_buf->pages[i]);
635 kfree(fw_buf->pages);
636 fw_buf->pages = NULL;
637 fw_buf->page_array_size = 0;
638 fw_buf->nr_pages = 0;
639 set_bit(FW_STATUS_LOADING, &fw_buf->status);
Ming Lei28eefa72012-08-04 12:01:17 +0800640 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641 break;
642 case 0:
Ming Lei12446912012-08-04 12:01:20 +0800643 if (test_bit(FW_STATUS_LOADING, &fw_buf->status)) {
Kees Cook6593d922014-02-25 13:06:00 -0800644 int rc;
645
Ming Lei12446912012-08-04 12:01:20 +0800646 set_bit(FW_STATUS_DONE, &fw_buf->status);
647 clear_bit(FW_STATUS_LOADING, &fw_buf->status);
Ming Lei253c9242012-10-09 12:01:02 +0800648
649 /*
650 * Several loading requests may be pending on
651 * one same firmware buf, so let all requests
652 * see the mapped 'buf->data' once the loading
653 * is completed.
654 * */
Kees Cook6593d922014-02-25 13:06:00 -0800655 rc = fw_map_pages_buf(fw_buf);
656 if (rc)
zhang jun2b1278c2014-02-13 15:18:47 +0800657 dev_err(dev, "%s: map pages failed\n",
658 __func__);
Kees Cook6593d922014-02-25 13:06:00 -0800659 else
660 rc = security_kernel_fw_from_file(NULL,
661 fw_buf->data, fw_buf->size);
662
663 /*
664 * Same logic as fw_load_abort, only the DONE bit
665 * is ignored and we set ABORT only on failure.
666 */
Takashi Iwaife304142013-05-22 18:28:38 +0200667 list_del_init(&fw_buf->pending_list);
Kees Cook6593d922014-02-25 13:06:00 -0800668 if (rc) {
669 set_bit(FW_STATUS_ABORT, &fw_buf->status);
670 written = rc;
671 }
Ming Lei1f2b7952012-08-04 12:01:21 +0800672 complete_all(&fw_buf->completion);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673 break;
674 }
675 /* fallthrough */
676 default:
Bjorn Helgaas266a8132008-10-15 22:04:20 -0700677 dev_err(dev, "%s: unexpected value (%d)\n", __func__, loading);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678 /* fallthrough */
679 case -1:
680 fw_load_abort(fw_priv);
681 break;
682 }
Neil Hormaneea915b2012-01-02 15:31:23 -0500683out:
684 mutex_unlock(&fw_lock);
Kees Cook6593d922014-02-25 13:06:00 -0800685 return written;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686}
687
Greg Kroah-Hartmane55c8792006-09-14 07:30:59 -0700688static DEVICE_ATTR(loading, 0644, firmware_loading_show, firmware_loading_store);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689
Dmitry Torokhovf8a4bd32010-06-04 00:54:43 -0700690static ssize_t firmware_data_read(struct file *filp, struct kobject *kobj,
691 struct bin_attribute *bin_attr,
692 char *buffer, loff_t offset, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693{
Lars-Peter Clausenb0d1f802012-07-03 18:49:36 +0200694 struct device *dev = kobj_to_dev(kobj);
Dmitry Torokhovf8a4bd32010-06-04 00:54:43 -0700695 struct firmware_priv *fw_priv = to_firmware_priv(dev);
Ming Lei12446912012-08-04 12:01:20 +0800696 struct firmware_buf *buf;
Akinobu Mitaf37e6612008-07-25 01:48:23 -0700697 ssize_t ret_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698
Laura Garciacad1e552006-05-23 23:22:38 +0200699 mutex_lock(&fw_lock);
Ming Lei12446912012-08-04 12:01:20 +0800700 buf = fw_priv->buf;
701 if (!buf || test_bit(FW_STATUS_DONE, &buf->status)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702 ret_count = -ENODEV;
703 goto out;
704 }
Ming Lei12446912012-08-04 12:01:20 +0800705 if (offset > buf->size) {
Jiri Slaby308975f2009-06-21 23:57:31 +0200706 ret_count = 0;
707 goto out;
708 }
Ming Lei12446912012-08-04 12:01:20 +0800709 if (count > buf->size - offset)
710 count = buf->size - offset;
David Woodhouse6e03a202009-04-09 22:04:07 -0700711
712 ret_count = count;
713
714 while (count) {
715 void *page_data;
716 int page_nr = offset >> PAGE_SHIFT;
717 int page_ofs = offset & (PAGE_SIZE-1);
718 int page_cnt = min_t(size_t, PAGE_SIZE - page_ofs, count);
719
Ming Lei12446912012-08-04 12:01:20 +0800720 page_data = kmap(buf->pages[page_nr]);
David Woodhouse6e03a202009-04-09 22:04:07 -0700721
722 memcpy(buffer, page_data + page_ofs, page_cnt);
723
Ming Lei12446912012-08-04 12:01:20 +0800724 kunmap(buf->pages[page_nr]);
David Woodhouse6e03a202009-04-09 22:04:07 -0700725 buffer += page_cnt;
726 offset += page_cnt;
727 count -= page_cnt;
728 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729out:
Laura Garciacad1e552006-05-23 23:22:38 +0200730 mutex_unlock(&fw_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731 return ret_count;
732}
Randy Dunlapeb8e3172005-10-30 15:03:01 -0800733
Dmitry Torokhovf8a4bd32010-06-04 00:54:43 -0700734static int fw_realloc_buffer(struct firmware_priv *fw_priv, int min_size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735{
Ming Lei12446912012-08-04 12:01:20 +0800736 struct firmware_buf *buf = fw_priv->buf;
Fabian Fredericka76040d2014-07-01 21:13:30 +0200737 int pages_needed = PAGE_ALIGN(min_size) >> PAGE_SHIFT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738
David Woodhouse6e03a202009-04-09 22:04:07 -0700739 /* If the array of pages is too small, grow it... */
Ming Lei12446912012-08-04 12:01:20 +0800740 if (buf->page_array_size < pages_needed) {
David Woodhouse6e03a202009-04-09 22:04:07 -0700741 int new_array_size = max(pages_needed,
Ming Lei12446912012-08-04 12:01:20 +0800742 buf->page_array_size * 2);
David Woodhouse6e03a202009-04-09 22:04:07 -0700743 struct page **new_pages;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700744
David Woodhouse6e03a202009-04-09 22:04:07 -0700745 new_pages = kmalloc(new_array_size * sizeof(void *),
746 GFP_KERNEL);
747 if (!new_pages) {
748 fw_load_abort(fw_priv);
749 return -ENOMEM;
750 }
Ming Lei12446912012-08-04 12:01:20 +0800751 memcpy(new_pages, buf->pages,
752 buf->page_array_size * sizeof(void *));
753 memset(&new_pages[buf->page_array_size], 0, sizeof(void *) *
754 (new_array_size - buf->page_array_size));
755 kfree(buf->pages);
756 buf->pages = new_pages;
757 buf->page_array_size = new_array_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700758 }
David Woodhouse6e03a202009-04-09 22:04:07 -0700759
Ming Lei12446912012-08-04 12:01:20 +0800760 while (buf->nr_pages < pages_needed) {
761 buf->pages[buf->nr_pages] =
David Woodhouse6e03a202009-04-09 22:04:07 -0700762 alloc_page(GFP_KERNEL | __GFP_HIGHMEM);
763
Ming Lei12446912012-08-04 12:01:20 +0800764 if (!buf->pages[buf->nr_pages]) {
David Woodhouse6e03a202009-04-09 22:04:07 -0700765 fw_load_abort(fw_priv);
766 return -ENOMEM;
767 }
Ming Lei12446912012-08-04 12:01:20 +0800768 buf->nr_pages++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770 return 0;
771}
772
773/**
Randy Dunlapeb8e3172005-10-30 15:03:01 -0800774 * firmware_data_write - write method for firmware
Chris Wright2c3c8be2010-05-12 18:28:57 -0700775 * @filp: open sysfs file
Greg Kroah-Hartmane55c8792006-09-14 07:30:59 -0700776 * @kobj: kobject for the device
Randy Dunlap42e61f42007-07-23 21:42:11 -0700777 * @bin_attr: bin_attr structure
Randy Dunlapeb8e3172005-10-30 15:03:01 -0800778 * @buffer: buffer being written
779 * @offset: buffer offset for write in total data store area
780 * @count: buffer size
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781 *
Randy Dunlapeb8e3172005-10-30 15:03:01 -0800782 * Data written to the 'data' attribute will be later handed to
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783 * the driver as a firmware image.
784 **/
Dmitry Torokhovf8a4bd32010-06-04 00:54:43 -0700785static ssize_t firmware_data_write(struct file *filp, struct kobject *kobj,
786 struct bin_attribute *bin_attr,
787 char *buffer, loff_t offset, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788{
Lars-Peter Clausenb0d1f802012-07-03 18:49:36 +0200789 struct device *dev = kobj_to_dev(kobj);
Dmitry Torokhovf8a4bd32010-06-04 00:54:43 -0700790 struct firmware_priv *fw_priv = to_firmware_priv(dev);
Ming Lei12446912012-08-04 12:01:20 +0800791 struct firmware_buf *buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792 ssize_t retval;
793
794 if (!capable(CAP_SYS_RAWIO))
795 return -EPERM;
Stanislaw W. Gruszkab92eac02005-06-28 20:44:51 -0700796
Laura Garciacad1e552006-05-23 23:22:38 +0200797 mutex_lock(&fw_lock);
Ming Lei12446912012-08-04 12:01:20 +0800798 buf = fw_priv->buf;
799 if (!buf || test_bit(FW_STATUS_DONE, &buf->status)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800 retval = -ENODEV;
801 goto out;
802 }
Ming Lei65710cb2012-08-04 12:01:16 +0800803
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804 retval = fw_realloc_buffer(fw_priv, offset + count);
805 if (retval)
806 goto out;
807
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808 retval = count;
David Woodhouse6e03a202009-04-09 22:04:07 -0700809
810 while (count) {
811 void *page_data;
812 int page_nr = offset >> PAGE_SHIFT;
813 int page_ofs = offset & (PAGE_SIZE - 1);
814 int page_cnt = min_t(size_t, PAGE_SIZE - page_ofs, count);
815
Ming Lei12446912012-08-04 12:01:20 +0800816 page_data = kmap(buf->pages[page_nr]);
David Woodhouse6e03a202009-04-09 22:04:07 -0700817
818 memcpy(page_data + page_ofs, buffer, page_cnt);
819
Ming Lei12446912012-08-04 12:01:20 +0800820 kunmap(buf->pages[page_nr]);
David Woodhouse6e03a202009-04-09 22:04:07 -0700821 buffer += page_cnt;
822 offset += page_cnt;
823 count -= page_cnt;
824 }
825
Ming Lei12446912012-08-04 12:01:20 +0800826 buf->size = max_t(size_t, offset, buf->size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700827out:
Laura Garciacad1e552006-05-23 23:22:38 +0200828 mutex_unlock(&fw_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829 return retval;
830}
Randy Dunlapeb8e3172005-10-30 15:03:01 -0800831
Dmitry Torokhov0983ca22010-06-04 00:54:37 -0700832static struct bin_attribute firmware_attr_data = {
833 .attr = { .name = "data", .mode = 0644 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834 .size = 0,
835 .read = firmware_data_read,
836 .write = firmware_data_write,
837};
838
Chuansheng Liuce2fcbd2012-11-08 19:14:40 +0800839static void firmware_class_timeout_work(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700840{
Chuansheng Liuce2fcbd2012-11-08 19:14:40 +0800841 struct firmware_priv *fw_priv = container_of(work,
842 struct firmware_priv, timeout_work.work);
Dmitry Torokhovf8a4bd32010-06-04 00:54:43 -0700843
Chuansheng Liuce2fcbd2012-11-08 19:14:40 +0800844 mutex_lock(&fw_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845 fw_load_abort(fw_priv);
Chuansheng Liuce2fcbd2012-11-08 19:14:40 +0800846 mutex_unlock(&fw_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847}
848
Dmitry Torokhovf8a4bd32010-06-04 00:54:43 -0700849static struct firmware_priv *
Stephen Boyddddb5542012-03-28 23:30:43 +0200850fw_create_instance(struct firmware *firmware, const char *fw_name,
Takashi Iwai14c4bae2013-12-02 15:38:18 +0100851 struct device *device, unsigned int opt_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852{
Dmitry Torokhovf8a4bd32010-06-04 00:54:43 -0700853 struct firmware_priv *fw_priv;
854 struct device *f_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855
Ming Lei12446912012-08-04 12:01:20 +0800856 fw_priv = kzalloc(sizeof(*fw_priv), GFP_KERNEL);
Dmitry Torokhovf8a4bd32010-06-04 00:54:43 -0700857 if (!fw_priv) {
Bjorn Helgaas266a8132008-10-15 22:04:20 -0700858 dev_err(device, "%s: kmalloc failed\n", __func__);
Ming Lei12446912012-08-04 12:01:20 +0800859 fw_priv = ERR_PTR(-ENOMEM);
860 goto exit;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700861 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862
Takashi Iwai14c4bae2013-12-02 15:38:18 +0100863 fw_priv->nowait = !!(opt_flags & FW_OPT_NOWAIT);
Ming Lei1f2b7952012-08-04 12:01:21 +0800864 fw_priv->fw = firmware;
Chuansheng Liuce2fcbd2012-11-08 19:14:40 +0800865 INIT_DELAYED_WORK(&fw_priv->timeout_work,
866 firmware_class_timeout_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867
Dmitry Torokhovf8a4bd32010-06-04 00:54:43 -0700868 f_dev = &fw_priv->dev;
869
870 device_initialize(f_dev);
Ming Lei99c2aa72012-08-04 12:01:19 +0800871 dev_set_name(f_dev, "%s", fw_name);
Greg Kroah-Hartmane55c8792006-09-14 07:30:59 -0700872 f_dev->parent = device;
873 f_dev->class = &firmware_class;
Ming Lei12446912012-08-04 12:01:20 +0800874exit:
Dmitry Torokhovf8a4bd32010-06-04 00:54:43 -0700875 return fw_priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700876}
Takashi Iwaicd7239f2013-01-31 11:13:56 +0100877
878/* load a firmware via user helper */
Takashi Iwai14c4bae2013-12-02 15:38:18 +0100879static int _request_firmware_load(struct firmware_priv *fw_priv,
880 unsigned int opt_flags, long timeout)
Takashi Iwaicd7239f2013-01-31 11:13:56 +0100881{
882 int retval = 0;
883 struct device *f_dev = &fw_priv->dev;
884 struct firmware_buf *buf = fw_priv->buf;
885
886 /* fall back on userspace loading */
887 buf->is_paged_buf = true;
888
889 dev_set_uevent_suppress(f_dev, true);
890
Takashi Iwaicd7239f2013-01-31 11:13:56 +0100891 retval = device_add(f_dev);
892 if (retval) {
893 dev_err(f_dev, "%s: device_register failed\n", __func__);
894 goto err_put_dev;
895 }
896
897 retval = device_create_bin_file(f_dev, &firmware_attr_data);
898 if (retval) {
899 dev_err(f_dev, "%s: sysfs_create_bin_file failed\n", __func__);
900 goto err_del_dev;
901 }
902
Maxime Bizon1eeeef12013-08-29 20:28:13 +0200903 mutex_lock(&fw_lock);
904 list_add(&buf->pending_list, &pending_fw_head);
905 mutex_unlock(&fw_lock);
906
Takashi Iwaicd7239f2013-01-31 11:13:56 +0100907 retval = device_create_file(f_dev, &dev_attr_loading);
908 if (retval) {
Maxime Bizon1eeeef12013-08-29 20:28:13 +0200909 mutex_lock(&fw_lock);
910 list_del_init(&buf->pending_list);
911 mutex_unlock(&fw_lock);
Takashi Iwaicd7239f2013-01-31 11:13:56 +0100912 dev_err(f_dev, "%s: device_create_file failed\n", __func__);
913 goto err_del_bin_attr;
914 }
915
Takashi Iwai14c4bae2013-12-02 15:38:18 +0100916 if (opt_flags & FW_OPT_UEVENT) {
Ming Leiaf5bc112013-05-27 18:30:04 +0800917 buf->need_uevent = true;
Takashi Iwaicd7239f2013-01-31 11:13:56 +0100918 dev_set_uevent_suppress(f_dev, false);
919 dev_dbg(f_dev, "firmware: requesting %s\n", buf->fw_id);
920 if (timeout != MAX_SCHEDULE_TIMEOUT)
Shaibal Duttabce66182014-01-31 15:44:58 -0800921 queue_delayed_work(system_power_efficient_wq,
922 &fw_priv->timeout_work, timeout);
Takashi Iwaicd7239f2013-01-31 11:13:56 +0100923
924 kobject_uevent(&fw_priv->dev.kobj, KOBJ_ADD);
925 }
926
Kweh, Hock Leong000deba2014-11-18 10:56:59 +0800927 retval = wait_for_completion_interruptible(&buf->completion);
Takashi Iwaicd7239f2013-01-31 11:13:56 +0100928
929 cancel_delayed_work_sync(&fw_priv->timeout_work);
Ming Lei0cb64242015-01-13 00:01:35 +0800930
931 if (retval == -ERESTARTSYS) {
932 mutex_lock(&fw_lock);
933 fw_load_abort(fw_priv);
934 mutex_unlock(&fw_lock);
935 }
936
Shuah Khan0542ad82014-07-22 18:10:38 -0600937 if (is_fw_load_aborted(buf))
938 retval = -EAGAIN;
939 else if (!buf->data)
zhang jun2b1278c2014-02-13 15:18:47 +0800940 retval = -ENOMEM;
Takashi Iwaicd7239f2013-01-31 11:13:56 +0100941
Takashi Iwaicd7239f2013-01-31 11:13:56 +0100942 device_remove_file(f_dev, &dev_attr_loading);
943err_del_bin_attr:
944 device_remove_bin_file(f_dev, &firmware_attr_data);
945err_del_dev:
946 device_del(f_dev);
947err_put_dev:
948 put_device(f_dev);
949 return retval;
950}
951
952static int fw_load_from_user_helper(struct firmware *firmware,
953 const char *name, struct device *device,
Takashi Iwai14c4bae2013-12-02 15:38:18 +0100954 unsigned int opt_flags, long timeout)
Takashi Iwaicd7239f2013-01-31 11:13:56 +0100955{
956 struct firmware_priv *fw_priv;
957
Takashi Iwai14c4bae2013-12-02 15:38:18 +0100958 fw_priv = fw_create_instance(firmware, name, device, opt_flags);
Takashi Iwaicd7239f2013-01-31 11:13:56 +0100959 if (IS_ERR(fw_priv))
960 return PTR_ERR(fw_priv);
961
962 fw_priv->buf = firmware->priv;
Takashi Iwai14c4bae2013-12-02 15:38:18 +0100963 return _request_firmware_load(fw_priv, opt_flags, timeout);
Takashi Iwaicd7239f2013-01-31 11:13:56 +0100964}
Ming Leiddf1f062013-06-04 10:01:13 +0800965
Ming Lei5b7cb7a2013-06-06 19:52:54 +0800966#ifdef CONFIG_PM_SLEEP
Ming Leiddf1f062013-06-04 10:01:13 +0800967/* kill pending requests without uevent to avoid blocking suspend */
968static void kill_requests_without_uevent(void)
969{
970 struct firmware_buf *buf;
971 struct firmware_buf *next;
972
973 mutex_lock(&fw_lock);
974 list_for_each_entry_safe(buf, next, &pending_fw_head, pending_list) {
975 if (!buf->need_uevent)
Greg Kroah-Hartman7068cb02013-06-19 20:26:43 -0700976 __fw_load_abort(buf);
Ming Leiddf1f062013-06-04 10:01:13 +0800977 }
978 mutex_unlock(&fw_lock);
979}
Ming Lei5b7cb7a2013-06-06 19:52:54 +0800980#endif
Ming Leiddf1f062013-06-04 10:01:13 +0800981
Takashi Iwaicd7239f2013-01-31 11:13:56 +0100982#else /* CONFIG_FW_LOADER_USER_HELPER */
983static inline int
984fw_load_from_user_helper(struct firmware *firmware, const char *name,
Takashi Iwai14c4bae2013-12-02 15:38:18 +0100985 struct device *device, unsigned int opt_flags,
Takashi Iwaicd7239f2013-01-31 11:13:56 +0100986 long timeout)
987{
988 return -ENOENT;
989}
Takashi Iwai807be032013-01-31 11:13:57 +0100990
991/* No abort during direct loading */
992#define is_fw_load_aborted(buf) false
993
Ming Lei5b7cb7a2013-06-06 19:52:54 +0800994#ifdef CONFIG_PM_SLEEP
Ming Leiddf1f062013-06-04 10:01:13 +0800995static inline void kill_requests_without_uevent(void) { }
Ming Lei5b7cb7a2013-06-06 19:52:54 +0800996#endif
Ming Leiddf1f062013-06-04 10:01:13 +0800997
Takashi Iwai7b1269f2013-01-31 11:13:55 +0100998#endif /* CONFIG_FW_LOADER_USER_HELPER */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700999
Ming Leif531f05a2012-08-04 12:01:25 +08001000
Takashi Iwai4e0c92d2013-01-31 11:13:54 +01001001/* wait until the shared firmware_buf becomes ready (or error) */
1002static int sync_cached_firmware_buf(struct firmware_buf *buf)
Ming Lei1f2b7952012-08-04 12:01:21 +08001003{
Takashi Iwai4e0c92d2013-01-31 11:13:54 +01001004 int ret = 0;
1005
1006 mutex_lock(&fw_lock);
1007 while (!test_bit(FW_STATUS_DONE, &buf->status)) {
Takashi Iwai807be032013-01-31 11:13:57 +01001008 if (is_fw_load_aborted(buf)) {
Takashi Iwai4e0c92d2013-01-31 11:13:54 +01001009 ret = -ENOENT;
1010 break;
1011 }
1012 mutex_unlock(&fw_lock);
Kweh, Hock Leong000deba2014-11-18 10:56:59 +08001013 ret = wait_for_completion_interruptible(&buf->completion);
Takashi Iwai4e0c92d2013-01-31 11:13:54 +01001014 mutex_lock(&fw_lock);
1015 }
1016 mutex_unlock(&fw_lock);
1017 return ret;
Ming Lei1f2b7952012-08-04 12:01:21 +08001018}
1019
Takashi Iwai4e0c92d2013-01-31 11:13:54 +01001020/* prepare firmware and firmware_buf structs;
1021 * return 0 if a firmware is already assigned, 1 if need to load one,
1022 * or a negative error code
1023 */
1024static int
1025_request_firmware_prepare(struct firmware **firmware_p, const char *name,
1026 struct device *device)
Dmitry Torokhovf8a4bd32010-06-04 00:54:43 -07001027{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001028 struct firmware *firmware;
Ming Lei1f2b7952012-08-04 12:01:21 +08001029 struct firmware_buf *buf;
1030 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001031
Jiri Slaby4aed0642005-09-13 01:25:01 -07001032 *firmware_p = firmware = kzalloc(sizeof(*firmware), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001033 if (!firmware) {
Bjorn Helgaas266a8132008-10-15 22:04:20 -07001034 dev_err(device, "%s: kmalloc(struct firmware) failed\n",
1035 __func__);
Takashi Iwai4e0c92d2013-01-31 11:13:54 +01001036 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001037 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001038
Dmitry Torokhovbcb9bd12010-03-13 23:49:18 -08001039 if (fw_get_builtin_firmware(firmware, name)) {
Rafael J. Wysocki6f18ff92010-02-27 21:43:22 +01001040 dev_dbg(device, "firmware: using built-in firmware %s\n", name);
Takashi Iwai4e0c92d2013-01-31 11:13:54 +01001041 return 0; /* assigned */
David Woodhouse5658c762008-05-23 13:52:42 +01001042 }
1043
Ming Lei1f2b7952012-08-04 12:01:21 +08001044 ret = fw_lookup_and_allocate_buf(name, &fw_cache, &buf);
Ming Lei1f2b7952012-08-04 12:01:21 +08001045
Takashi Iwai4e0c92d2013-01-31 11:13:54 +01001046 /*
1047 * bind with 'buf' now to avoid warning in failure path
1048 * of requesting firmware.
1049 */
1050 firmware->priv = buf;
Ming Lei1f2b7952012-08-04 12:01:21 +08001051
Takashi Iwai4e0c92d2013-01-31 11:13:54 +01001052 if (ret > 0) {
1053 ret = sync_cached_firmware_buf(buf);
1054 if (!ret) {
1055 fw_set_page_data(buf, firmware);
1056 return 0; /* assigned */
1057 }
Stephen Boyddddb5542012-03-28 23:30:43 +02001058 }
Ming Lei1f2b7952012-08-04 12:01:21 +08001059
Takashi Iwai4e0c92d2013-01-31 11:13:54 +01001060 if (ret < 0)
1061 return ret;
1062 return 1; /* need to load */
Rafael J. Wysocki811fa402012-03-28 23:29:55 +02001063}
1064
Ming Leie771d1a2013-05-27 18:30:03 +08001065static int assign_firmware_buf(struct firmware *fw, struct device *device,
Takashi Iwai14c4bae2013-12-02 15:38:18 +01001066 unsigned int opt_flags)
Takashi Iwai4e0c92d2013-01-31 11:13:54 +01001067{
1068 struct firmware_buf *buf = fw->priv;
1069
1070 mutex_lock(&fw_lock);
Takashi Iwai807be032013-01-31 11:13:57 +01001071 if (!buf->size || is_fw_load_aborted(buf)) {
Takashi Iwai4e0c92d2013-01-31 11:13:54 +01001072 mutex_unlock(&fw_lock);
1073 return -ENOENT;
1074 }
1075
1076 /*
1077 * add firmware name into devres list so that we can auto cache
1078 * and uncache firmware for device.
1079 *
1080 * device may has been deleted already, but the problem
1081 * should be fixed in devres or driver core.
1082 */
Takashi Iwai14c4bae2013-12-02 15:38:18 +01001083 /* don't cache firmware handled without uevent */
1084 if (device && (opt_flags & FW_OPT_UEVENT))
Takashi Iwai4e0c92d2013-01-31 11:13:54 +01001085 fw_add_devm_name(device, buf->fw_id);
1086
1087 /*
1088 * After caching firmware image is started, let it piggyback
1089 * on request firmware.
1090 */
1091 if (buf->fwc->state == FW_LOADER_START_CACHE) {
1092 if (fw_cache_piggyback_on_request(buf->fw_id))
1093 kref_get(&buf->ref);
1094 }
1095
1096 /* pass the pages buffer to driver at the last minute */
1097 fw_set_page_data(buf, fw);
1098 mutex_unlock(&fw_lock);
1099 return 0;
1100}
1101
Takashi Iwai4e0c92d2013-01-31 11:13:54 +01001102/* called from request_firmware() and request_firmware_work_func() */
1103static int
1104_request_firmware(const struct firmware **firmware_p, const char *name,
Takashi Iwai14c4bae2013-12-02 15:38:18 +01001105 struct device *device, unsigned int opt_flags)
Takashi Iwai4e0c92d2013-01-31 11:13:54 +01001106{
1107 struct firmware *fw;
1108 long timeout;
1109 int ret;
1110
1111 if (!firmware_p)
1112 return -EINVAL;
1113
Kees Cook471b0952014-09-18 11:25:37 -07001114 if (!name || name[0] == '\0')
1115 return -EINVAL;
1116
Takashi Iwai4e0c92d2013-01-31 11:13:54 +01001117 ret = _request_firmware_prepare(&fw, name, device);
1118 if (ret <= 0) /* error or already assigned */
1119 goto out;
1120
1121 ret = 0;
1122 timeout = firmware_loading_timeout();
Takashi Iwai14c4bae2013-12-02 15:38:18 +01001123 if (opt_flags & FW_OPT_NOWAIT) {
Takashi Iwai4e0c92d2013-01-31 11:13:54 +01001124 timeout = usermodehelper_read_lock_wait(timeout);
1125 if (!timeout) {
1126 dev_dbg(device, "firmware: %s loading timed out\n",
1127 name);
1128 ret = -EBUSY;
1129 goto out;
1130 }
1131 } else {
1132 ret = usermodehelper_read_trylock();
1133 if (WARN_ON(ret)) {
1134 dev_err(device, "firmware: %s will not be loaded\n",
1135 name);
1136 goto out;
1137 }
1138 }
1139
Neil Horman3e358ac2013-09-06 15:36:08 -04001140 ret = fw_get_filesystem_firmware(device, fw->priv);
1141 if (ret) {
Luis R. Rodriguezc868edf2014-07-02 09:55:05 -07001142 if (!(opt_flags & FW_OPT_NO_WARN))
Takashi Iwaibba3a872013-12-02 15:38:16 +01001143 dev_warn(device,
Luis R. Rodriguezc868edf2014-07-02 09:55:05 -07001144 "Direct firmware load for %s failed with error %d\n",
1145 name, ret);
1146 if (opt_flags & FW_OPT_USERHELPER) {
Takashi Iwaibba3a872013-12-02 15:38:16 +01001147 dev_warn(device, "Falling back to user helper\n");
1148 ret = fw_load_from_user_helper(fw, name, device,
Takashi Iwai14c4bae2013-12-02 15:38:18 +01001149 opt_flags, timeout);
Takashi Iwaibba3a872013-12-02 15:38:16 +01001150 }
Neil Horman3e358ac2013-09-06 15:36:08 -04001151 }
Ming Leie771d1a2013-05-27 18:30:03 +08001152
Takashi Iwai4e0c92d2013-01-31 11:13:54 +01001153 if (!ret)
Takashi Iwai14c4bae2013-12-02 15:38:18 +01001154 ret = assign_firmware_buf(fw, device, opt_flags);
Takashi Iwai4e0c92d2013-01-31 11:13:54 +01001155
1156 usermodehelper_read_unlock();
1157
1158 out:
1159 if (ret < 0) {
1160 release_firmware(fw);
1161 fw = NULL;
1162 }
1163
1164 *firmware_p = fw;
1165 return ret;
1166}
1167
Linus Torvalds1da177e2005-04-16 15:20:36 -07001168/**
Kay Sievers312c0042005-11-16 09:00:00 +01001169 * request_firmware: - send firmware request and wait for it
Randy Dunlapeb8e3172005-10-30 15:03:01 -08001170 * @firmware_p: pointer to firmware image
1171 * @name: name of firmware file
1172 * @device: device for which firmware is being loaded
1173 *
1174 * @firmware_p will be used to return a firmware image by the name
Abhay Salunke6e3eaab2005-09-06 15:17:13 -07001175 * of @name for device @device.
1176 *
1177 * Should be called from user context where sleeping is allowed.
1178 *
Kay Sievers312c0042005-11-16 09:00:00 +01001179 * @name will be used as $FIRMWARE in the uevent environment and
Abhay Salunke6e3eaab2005-09-06 15:17:13 -07001180 * should be distinctive enough not to be confused with any other
1181 * firmware image for this or any other device.
Ming Lei0cfc1e12012-08-04 12:01:23 +08001182 *
1183 * Caller must hold the reference count of @device.
Ming Lei6a927852012-11-03 17:48:16 +08001184 *
1185 * The function can be called safely inside device's suspend and
1186 * resume callback.
Abhay Salunke6e3eaab2005-09-06 15:17:13 -07001187 **/
1188int
1189request_firmware(const struct firmware **firmware_p, const char *name,
1190 struct device *device)
1191{
Ming Leid6c8aa32013-06-06 20:01:48 +08001192 int ret;
1193
1194 /* Need to pin this module until return */
1195 __module_get(THIS_MODULE);
Takashi Iwai14c4bae2013-12-02 15:38:18 +01001196 ret = _request_firmware(firmware_p, name, device,
1197 FW_OPT_UEVENT | FW_OPT_FALLBACK);
Ming Leid6c8aa32013-06-06 20:01:48 +08001198 module_put(THIS_MODULE);
1199 return ret;
Abhay Salunke6e3eaab2005-09-06 15:17:13 -07001200}
Daniel Mackf4945132013-05-23 22:17:18 +02001201EXPORT_SYMBOL(request_firmware);
Abhay Salunke6e3eaab2005-09-06 15:17:13 -07001202
Takashi Iwaibba3a872013-12-02 15:38:16 +01001203/**
Borislav Petkov3c1556b2014-12-03 22:46:37 +01001204 * request_firmware_direct: - load firmware directly without usermode helper
Takashi Iwaibba3a872013-12-02 15:38:16 +01001205 * @firmware_p: pointer to firmware image
1206 * @name: name of firmware file
1207 * @device: device for which firmware is being loaded
1208 *
1209 * This function works pretty much like request_firmware(), but this doesn't
1210 * fall back to usermode helper even if the firmware couldn't be loaded
1211 * directly from fs. Hence it's useful for loading optional firmwares, which
1212 * aren't always present, without extra long timeouts of udev.
1213 **/
1214int request_firmware_direct(const struct firmware **firmware_p,
1215 const char *name, struct device *device)
1216{
1217 int ret;
1218 __module_get(THIS_MODULE);
Luis R. Rodriguezc868edf2014-07-02 09:55:05 -07001219 ret = _request_firmware(firmware_p, name, device,
1220 FW_OPT_UEVENT | FW_OPT_NO_WARN);
Takashi Iwaibba3a872013-12-02 15:38:16 +01001221 module_put(THIS_MODULE);
1222 return ret;
1223}
1224EXPORT_SYMBOL_GPL(request_firmware_direct);
Takashi Iwaibba3a872013-12-02 15:38:16 +01001225
Abhay Salunke6e3eaab2005-09-06 15:17:13 -07001226/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07001227 * release_firmware: - release the resource associated with a firmware image
Randy Dunlapeb8e3172005-10-30 15:03:01 -08001228 * @fw: firmware resource to release
Linus Torvalds1da177e2005-04-16 15:20:36 -07001229 **/
Dmitry Torokhovbcb9bd12010-03-13 23:49:18 -08001230void release_firmware(const struct firmware *fw)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001231{
1232 if (fw) {
Dmitry Torokhovbcb9bd12010-03-13 23:49:18 -08001233 if (!fw_is_builtin_firmware(fw))
1234 firmware_free_data(fw);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001235 kfree(fw);
1236 }
1237}
Daniel Mackf4945132013-05-23 22:17:18 +02001238EXPORT_SYMBOL(release_firmware);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001239
Linus Torvalds1da177e2005-04-16 15:20:36 -07001240/* Async support */
1241struct firmware_work {
1242 struct work_struct work;
1243 struct module *module;
1244 const char *name;
1245 struct device *device;
1246 void *context;
1247 void (*cont)(const struct firmware *fw, void *context);
Takashi Iwai14c4bae2013-12-02 15:38:18 +01001248 unsigned int opt_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001249};
1250
Stephen Boyda36cf842012-03-28 23:31:00 +02001251static void request_firmware_work_func(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001252{
Stephen Boyda36cf842012-03-28 23:31:00 +02001253 struct firmware_work *fw_work;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001254 const struct firmware *fw;
Dmitry Torokhovf8a4bd32010-06-04 00:54:43 -07001255
Stephen Boyda36cf842012-03-28 23:31:00 +02001256 fw_work = container_of(work, struct firmware_work, work);
Rafael J. Wysocki811fa402012-03-28 23:29:55 +02001257
Takashi Iwai4e0c92d2013-01-31 11:13:54 +01001258 _request_firmware(&fw, fw_work->name, fw_work->device,
Takashi Iwai14c4bae2013-12-02 15:38:18 +01001259 fw_work->opt_flags);
Johannes Berg9ebfbd42009-10-29 12:36:02 +01001260 fw_work->cont(fw, fw_work->context);
Takashi Iwai4e0c92d2013-01-31 11:13:54 +01001261 put_device(fw_work->device); /* taken in request_firmware_nowait() */
Johannes Berg9ebfbd42009-10-29 12:36:02 +01001262
Linus Torvalds1da177e2005-04-16 15:20:36 -07001263 module_put(fw_work->module);
1264 kfree(fw_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001265}
1266
1267/**
Ben Hutchings3c31f072010-02-14 14:18:53 +00001268 * request_firmware_nowait - asynchronous version of request_firmware
Randy Dunlapeb8e3172005-10-30 15:03:01 -08001269 * @module: module requesting the firmware
Kay Sievers312c0042005-11-16 09:00:00 +01001270 * @uevent: sends uevent to copy the firmware image if this flag
Randy Dunlapeb8e3172005-10-30 15:03:01 -08001271 * is non-zero else the firmware copy must be done manually.
1272 * @name: name of firmware file
1273 * @device: device for which firmware is being loaded
Johannes Berg9ebfbd42009-10-29 12:36:02 +01001274 * @gfp: allocation flags
Randy Dunlapeb8e3172005-10-30 15:03:01 -08001275 * @context: will be passed over to @cont, and
1276 * @fw may be %NULL if firmware request fails.
1277 * @cont: function will be called asynchronously when the firmware
1278 * request is over.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001279 *
Ming Lei0cfc1e12012-08-04 12:01:23 +08001280 * Caller must hold the reference count of @device.
1281 *
Ming Lei6f21a622012-08-04 12:01:24 +08001282 * Asynchronous variant of request_firmware() for user contexts:
1283 * - sleep for as small periods as possible since it may
1284 * increase kernel boot time of built-in device drivers
1285 * requesting firmware in their ->probe() methods, if
1286 * @gfp is GFP_KERNEL.
1287 *
1288 * - can't sleep at all if @gfp is GFP_ATOMIC.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001289 **/
1290int
1291request_firmware_nowait(
Bob Liu072fc8f2011-01-26 18:33:32 +08001292 struct module *module, bool uevent,
Johannes Berg9ebfbd42009-10-29 12:36:02 +01001293 const char *name, struct device *device, gfp_t gfp, void *context,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001294 void (*cont)(const struct firmware *fw, void *context))
1295{
Dmitry Torokhovf8a4bd32010-06-04 00:54:43 -07001296 struct firmware_work *fw_work;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001297
Dmitry Torokhovf8a4bd32010-06-04 00:54:43 -07001298 fw_work = kzalloc(sizeof (struct firmware_work), gfp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001299 if (!fw_work)
1300 return -ENOMEM;
Dmitry Torokhovf8a4bd32010-06-04 00:54:43 -07001301
1302 fw_work->module = module;
1303 fw_work->name = name;
1304 fw_work->device = device;
1305 fw_work->context = context;
1306 fw_work->cont = cont;
Takashi Iwai14c4bae2013-12-02 15:38:18 +01001307 fw_work->opt_flags = FW_OPT_NOWAIT | FW_OPT_FALLBACK |
Takashi Iwai5a1379e2014-06-04 17:48:15 +02001308 (uevent ? FW_OPT_UEVENT : FW_OPT_USERHELPER);
Dmitry Torokhovf8a4bd32010-06-04 00:54:43 -07001309
Linus Torvalds1da177e2005-04-16 15:20:36 -07001310 if (!try_module_get(module)) {
1311 kfree(fw_work);
1312 return -EFAULT;
1313 }
1314
Ming Lei0cfc1e12012-08-04 12:01:23 +08001315 get_device(fw_work->device);
Stephen Boyda36cf842012-03-28 23:31:00 +02001316 INIT_WORK(&fw_work->work, request_firmware_work_func);
1317 schedule_work(&fw_work->work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001318 return 0;
1319}
Daniel Mackf4945132013-05-23 22:17:18 +02001320EXPORT_SYMBOL(request_firmware_nowait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001321
Ming Lei90f890812013-06-20 12:30:16 +08001322#ifdef CONFIG_PM_SLEEP
1323static ASYNC_DOMAIN_EXCLUSIVE(fw_cache_domain);
1324
Ming Lei2887b392012-08-04 12:01:22 +08001325/**
1326 * cache_firmware - cache one firmware image in kernel memory space
1327 * @fw_name: the firmware image name
1328 *
1329 * Cache firmware in kernel memory so that drivers can use it when
1330 * system isn't ready for them to request firmware image from userspace.
1331 * Once it returns successfully, driver can use request_firmware or its
1332 * nowait version to get the cached firmware without any interacting
1333 * with userspace
1334 *
1335 * Return 0 if the firmware image has been cached successfully
1336 * Return !0 otherwise
1337 *
1338 */
Ming Lei93232e42013-06-06 20:01:47 +08001339static int cache_firmware(const char *fw_name)
Ming Lei2887b392012-08-04 12:01:22 +08001340{
1341 int ret;
1342 const struct firmware *fw;
1343
1344 pr_debug("%s: %s\n", __func__, fw_name);
1345
1346 ret = request_firmware(&fw, fw_name, NULL);
1347 if (!ret)
1348 kfree(fw);
1349
1350 pr_debug("%s: %s ret=%d\n", __func__, fw_name, ret);
1351
1352 return ret;
1353}
1354
Ming Lei6a2c1232013-06-26 09:28:17 +08001355static struct firmware_buf *fw_lookup_buf(const char *fw_name)
1356{
1357 struct firmware_buf *tmp;
1358 struct firmware_cache *fwc = &fw_cache;
1359
1360 spin_lock(&fwc->lock);
1361 tmp = __fw_lookup_buf(fw_name);
1362 spin_unlock(&fwc->lock);
1363
1364 return tmp;
1365}
1366
Ming Lei2887b392012-08-04 12:01:22 +08001367/**
1368 * uncache_firmware - remove one cached firmware image
1369 * @fw_name: the firmware image name
1370 *
1371 * Uncache one firmware image which has been cached successfully
1372 * before.
1373 *
1374 * Return 0 if the firmware cache has been removed successfully
1375 * Return !0 otherwise
1376 *
1377 */
Ming Lei93232e42013-06-06 20:01:47 +08001378static int uncache_firmware(const char *fw_name)
Ming Lei2887b392012-08-04 12:01:22 +08001379{
1380 struct firmware_buf *buf;
1381 struct firmware fw;
1382
1383 pr_debug("%s: %s\n", __func__, fw_name);
1384
1385 if (fw_get_builtin_firmware(&fw, fw_name))
1386 return 0;
1387
1388 buf = fw_lookup_buf(fw_name);
1389 if (buf) {
1390 fw_free_buf(buf);
1391 return 0;
1392 }
1393
1394 return -EINVAL;
1395}
1396
Ming Lei37276a52012-08-04 12:01:27 +08001397static struct fw_cache_entry *alloc_fw_cache_entry(const char *name)
1398{
1399 struct fw_cache_entry *fce;
1400
1401 fce = kzalloc(sizeof(*fce) + strlen(name) + 1, GFP_ATOMIC);
1402 if (!fce)
1403 goto exit;
1404
1405 strcpy(fce->name, name);
1406exit:
1407 return fce;
1408}
1409
Ming Lei373304f2012-10-09 12:01:01 +08001410static int __fw_entry_found(const char *name)
1411{
1412 struct firmware_cache *fwc = &fw_cache;
1413 struct fw_cache_entry *fce;
1414
1415 list_for_each_entry(fce, &fwc->fw_names, list) {
1416 if (!strcmp(fce->name, name))
1417 return 1;
1418 }
1419 return 0;
1420}
1421
Ming Leiac39b3e2012-08-20 19:04:16 +08001422static int fw_cache_piggyback_on_request(const char *name)
1423{
1424 struct firmware_cache *fwc = &fw_cache;
1425 struct fw_cache_entry *fce;
1426 int ret = 0;
1427
1428 spin_lock(&fwc->name_lock);
Ming Lei373304f2012-10-09 12:01:01 +08001429 if (__fw_entry_found(name))
1430 goto found;
Ming Leiac39b3e2012-08-20 19:04:16 +08001431
1432 fce = alloc_fw_cache_entry(name);
1433 if (fce) {
1434 ret = 1;
1435 list_add(&fce->list, &fwc->fw_names);
1436 pr_debug("%s: fw: %s\n", __func__, name);
1437 }
1438found:
1439 spin_unlock(&fwc->name_lock);
1440 return ret;
1441}
1442
Ming Lei37276a52012-08-04 12:01:27 +08001443static void free_fw_cache_entry(struct fw_cache_entry *fce)
1444{
1445 kfree(fce);
1446}
1447
1448static void __async_dev_cache_fw_image(void *fw_entry,
1449 async_cookie_t cookie)
1450{
1451 struct fw_cache_entry *fce = fw_entry;
1452 struct firmware_cache *fwc = &fw_cache;
1453 int ret;
1454
1455 ret = cache_firmware(fce->name);
Ming Leiac39b3e2012-08-20 19:04:16 +08001456 if (ret) {
1457 spin_lock(&fwc->name_lock);
1458 list_del(&fce->list);
1459 spin_unlock(&fwc->name_lock);
Ming Lei37276a52012-08-04 12:01:27 +08001460
Ming Leiac39b3e2012-08-20 19:04:16 +08001461 free_fw_cache_entry(fce);
1462 }
Ming Lei37276a52012-08-04 12:01:27 +08001463}
1464
1465/* called with dev->devres_lock held */
1466static void dev_create_fw_entry(struct device *dev, void *res,
1467 void *data)
1468{
1469 struct fw_name_devm *fwn = res;
1470 const char *fw_name = fwn->name;
1471 struct list_head *head = data;
1472 struct fw_cache_entry *fce;
1473
1474 fce = alloc_fw_cache_entry(fw_name);
1475 if (fce)
1476 list_add(&fce->list, head);
1477}
1478
1479static int devm_name_match(struct device *dev, void *res,
1480 void *match_data)
1481{
1482 struct fw_name_devm *fwn = res;
1483 return (fwn->magic == (unsigned long)match_data);
1484}
1485
Ming Leiab6dd8e2012-08-17 22:07:00 +08001486static void dev_cache_fw_image(struct device *dev, void *data)
Ming Lei37276a52012-08-04 12:01:27 +08001487{
1488 LIST_HEAD(todo);
1489 struct fw_cache_entry *fce;
1490 struct fw_cache_entry *fce_next;
1491 struct firmware_cache *fwc = &fw_cache;
1492
1493 devres_for_each_res(dev, fw_name_devm_release,
1494 devm_name_match, &fw_cache,
1495 dev_create_fw_entry, &todo);
1496
1497 list_for_each_entry_safe(fce, fce_next, &todo, list) {
1498 list_del(&fce->list);
1499
1500 spin_lock(&fwc->name_lock);
Ming Lei373304f2012-10-09 12:01:01 +08001501 /* only one cache entry for one firmware */
1502 if (!__fw_entry_found(fce->name)) {
Ming Lei373304f2012-10-09 12:01:01 +08001503 list_add(&fce->list, &fwc->fw_names);
1504 } else {
1505 free_fw_cache_entry(fce);
1506 fce = NULL;
1507 }
Ming Lei37276a52012-08-04 12:01:27 +08001508 spin_unlock(&fwc->name_lock);
1509
Ming Lei373304f2012-10-09 12:01:01 +08001510 if (fce)
Ming Leid28d3882012-10-09 12:01:04 +08001511 async_schedule_domain(__async_dev_cache_fw_image,
1512 (void *)fce,
1513 &fw_cache_domain);
Ming Lei37276a52012-08-04 12:01:27 +08001514 }
1515}
1516
1517static void __device_uncache_fw_images(void)
1518{
1519 struct firmware_cache *fwc = &fw_cache;
1520 struct fw_cache_entry *fce;
1521
1522 spin_lock(&fwc->name_lock);
1523 while (!list_empty(&fwc->fw_names)) {
1524 fce = list_entry(fwc->fw_names.next,
1525 struct fw_cache_entry, list);
1526 list_del(&fce->list);
1527 spin_unlock(&fwc->name_lock);
1528
1529 uncache_firmware(fce->name);
1530 free_fw_cache_entry(fce);
1531
1532 spin_lock(&fwc->name_lock);
1533 }
1534 spin_unlock(&fwc->name_lock);
1535}
1536
1537/**
1538 * device_cache_fw_images - cache devices' firmware
1539 *
1540 * If one device called request_firmware or its nowait version
1541 * successfully before, the firmware names are recored into the
1542 * device's devres link list, so device_cache_fw_images can call
1543 * cache_firmware() to cache these firmwares for the device,
1544 * then the device driver can load its firmwares easily at
1545 * time when system is not ready to complete loading firmware.
1546 */
1547static void device_cache_fw_images(void)
1548{
1549 struct firmware_cache *fwc = &fw_cache;
Ming Leiffe53f62012-08-04 12:01:28 +08001550 int old_timeout;
Ming Lei37276a52012-08-04 12:01:27 +08001551 DEFINE_WAIT(wait);
1552
1553 pr_debug("%s\n", __func__);
1554
Ming Lei373304f2012-10-09 12:01:01 +08001555 /* cancel uncache work */
1556 cancel_delayed_work_sync(&fwc->work);
1557
Ming Leiffe53f62012-08-04 12:01:28 +08001558 /*
1559 * use small loading timeout for caching devices' firmware
1560 * because all these firmware images have been loaded
1561 * successfully at lease once, also system is ready for
1562 * completing firmware loading now. The maximum size of
1563 * firmware in current distributions is about 2M bytes,
1564 * so 10 secs should be enough.
1565 */
1566 old_timeout = loading_timeout;
1567 loading_timeout = 10;
1568
Ming Leiac39b3e2012-08-20 19:04:16 +08001569 mutex_lock(&fw_lock);
1570 fwc->state = FW_LOADER_START_CACHE;
Ming Leiab6dd8e2012-08-17 22:07:00 +08001571 dpm_for_each_dev(NULL, dev_cache_fw_image);
Ming Leiac39b3e2012-08-20 19:04:16 +08001572 mutex_unlock(&fw_lock);
Ming Lei37276a52012-08-04 12:01:27 +08001573
1574 /* wait for completion of caching firmware for all devices */
Ming Leid28d3882012-10-09 12:01:04 +08001575 async_synchronize_full_domain(&fw_cache_domain);
Ming Leiffe53f62012-08-04 12:01:28 +08001576
1577 loading_timeout = old_timeout;
Ming Lei37276a52012-08-04 12:01:27 +08001578}
1579
1580/**
1581 * device_uncache_fw_images - uncache devices' firmware
1582 *
1583 * uncache all firmwares which have been cached successfully
1584 * by device_uncache_fw_images earlier
1585 */
1586static void device_uncache_fw_images(void)
1587{
1588 pr_debug("%s\n", __func__);
1589 __device_uncache_fw_images();
1590}
1591
1592static void device_uncache_fw_images_work(struct work_struct *work)
1593{
1594 device_uncache_fw_images();
1595}
1596
1597/**
1598 * device_uncache_fw_images_delay - uncache devices firmwares
1599 * @delay: number of milliseconds to delay uncache device firmwares
1600 *
1601 * uncache all devices's firmwares which has been cached successfully
1602 * by device_cache_fw_images after @delay milliseconds.
1603 */
1604static void device_uncache_fw_images_delay(unsigned long delay)
1605{
Shaibal Duttabce66182014-01-31 15:44:58 -08001606 queue_delayed_work(system_power_efficient_wq, &fw_cache.work,
1607 msecs_to_jiffies(delay));
Ming Lei37276a52012-08-04 12:01:27 +08001608}
1609
Ming Lei07646d92012-08-04 12:01:29 +08001610static int fw_pm_notify(struct notifier_block *notify_block,
1611 unsigned long mode, void *unused)
1612{
1613 switch (mode) {
1614 case PM_HIBERNATION_PREPARE:
1615 case PM_SUSPEND_PREPARE:
Sebastian Capellaf8d5b9e2014-02-18 17:52:08 -08001616 case PM_RESTORE_PREPARE:
Ming Leiaf5bc112013-05-27 18:30:04 +08001617 kill_requests_without_uevent();
Ming Lei07646d92012-08-04 12:01:29 +08001618 device_cache_fw_images();
1619 break;
1620
1621 case PM_POST_SUSPEND:
1622 case PM_POST_HIBERNATION:
1623 case PM_POST_RESTORE:
Ming Leiac39b3e2012-08-20 19:04:16 +08001624 /*
1625 * In case that system sleep failed and syscore_suspend is
1626 * not called.
1627 */
1628 mutex_lock(&fw_lock);
1629 fw_cache.state = FW_LOADER_NO_CACHE;
1630 mutex_unlock(&fw_lock);
1631
Ming Lei07646d92012-08-04 12:01:29 +08001632 device_uncache_fw_images_delay(10 * MSEC_PER_SEC);
1633 break;
1634 }
1635
1636 return 0;
1637}
Ming Lei07646d92012-08-04 12:01:29 +08001638
Ming Leiac39b3e2012-08-20 19:04:16 +08001639/* stop caching firmware once syscore_suspend is reached */
1640static int fw_suspend(void)
1641{
1642 fw_cache.state = FW_LOADER_NO_CACHE;
1643 return 0;
1644}
1645
1646static struct syscore_ops fw_syscore_ops = {
1647 .suspend = fw_suspend,
1648};
Ming Leicfe016b2012-09-08 17:32:30 +08001649#else
1650static int fw_cache_piggyback_on_request(const char *name)
1651{
1652 return 0;
1653}
1654#endif
Ming Leiac39b3e2012-08-20 19:04:16 +08001655
Ming Lei37276a52012-08-04 12:01:27 +08001656static void __init fw_cache_init(void)
1657{
1658 spin_lock_init(&fw_cache.lock);
1659 INIT_LIST_HEAD(&fw_cache.head);
Ming Leicfe016b2012-09-08 17:32:30 +08001660 fw_cache.state = FW_LOADER_NO_CACHE;
Ming Lei37276a52012-08-04 12:01:27 +08001661
Ming Leicfe016b2012-09-08 17:32:30 +08001662#ifdef CONFIG_PM_SLEEP
Ming Lei37276a52012-08-04 12:01:27 +08001663 spin_lock_init(&fw_cache.name_lock);
1664 INIT_LIST_HEAD(&fw_cache.fw_names);
Ming Lei37276a52012-08-04 12:01:27 +08001665
Ming Lei37276a52012-08-04 12:01:27 +08001666 INIT_DELAYED_WORK(&fw_cache.work,
1667 device_uncache_fw_images_work);
Ming Lei07646d92012-08-04 12:01:29 +08001668
1669 fw_cache.pm_notify.notifier_call = fw_pm_notify;
1670 register_pm_notifier(&fw_cache.pm_notify);
Ming Leiac39b3e2012-08-20 19:04:16 +08001671
1672 register_syscore_ops(&fw_syscore_ops);
Ming Leicfe016b2012-09-08 17:32:30 +08001673#endif
Ming Lei37276a52012-08-04 12:01:27 +08001674}
1675
Dmitry Torokhov673fae92010-03-13 23:49:13 -08001676static int __init firmware_class_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001677{
Ming Lei1f2b7952012-08-04 12:01:21 +08001678 fw_cache_init();
Takashi Iwai7b1269f2013-01-31 11:13:55 +01001679#ifdef CONFIG_FW_LOADER_USER_HELPER
Takashi Iwaife304142013-05-22 18:28:38 +02001680 register_reboot_notifier(&fw_shutdown_nb);
Dmitry Torokhov673fae92010-03-13 23:49:13 -08001681 return class_register(&firmware_class);
Takashi Iwai7b1269f2013-01-31 11:13:55 +01001682#else
1683 return 0;
1684#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001685}
Dmitry Torokhov673fae92010-03-13 23:49:13 -08001686
1687static void __exit firmware_class_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001688{
Ming Leicfe016b2012-09-08 17:32:30 +08001689#ifdef CONFIG_PM_SLEEP
Ming Leiac39b3e2012-08-20 19:04:16 +08001690 unregister_syscore_ops(&fw_syscore_ops);
Ming Lei07646d92012-08-04 12:01:29 +08001691 unregister_pm_notifier(&fw_cache.pm_notify);
Ming Leicfe016b2012-09-08 17:32:30 +08001692#endif
Takashi Iwai7b1269f2013-01-31 11:13:55 +01001693#ifdef CONFIG_FW_LOADER_USER_HELPER
Takashi Iwaife304142013-05-22 18:28:38 +02001694 unregister_reboot_notifier(&fw_shutdown_nb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001695 class_unregister(&firmware_class);
Takashi Iwai7b1269f2013-01-31 11:13:55 +01001696#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001697}
1698
Shaohua Lia30a6a22006-09-27 01:50:52 -07001699fs_initcall(firmware_class_init);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001700module_exit(firmware_class_exit);