blob: 49139a1ee25e6963bd532e8ef2376ed3e5675a11 [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{
Ming Lei68ff2a02015-01-13 00:02:01 +080097 return loading_timeout > 0 ? loading_timeout * HZ : MAX_JIFFY_OFFSET;
Rafael J. Wysocki9b78c1d2012-03-28 23:30:02 +020098}
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
Andrei Opreaea310032015-03-08 12:41:15 +0200184 buf = kzalloc(sizeof(*buf) + strlen(fw_name) + 1, GFP_ATOMIC);
Ming Lei1f2b7952012-08-04 12:01:21 +0800185
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;
Luis R. Rodriguezf5727b02015-05-12 14:49:40 -0700325 char *path;
326
327 path = __getname();
328 if (!path)
329 return -ENOMEM;
Ming Lei746058f2012-10-09 12:01:03 +0800330
331 for (i = 0; i < ARRAY_SIZE(fw_path); i++) {
332 struct file *file;
Ming Lei27602842012-11-03 17:47:58 +0800333
334 /* skip the unset customized path */
335 if (!fw_path[i][0])
336 continue;
337
Ming Lei746058f2012-10-09 12:01:03 +0800338 snprintf(path, PATH_MAX, "%s/%s", fw_path[i], buf->fw_id);
339
340 file = filp_open(path, O_RDONLY, 0);
341 if (IS_ERR(file))
342 continue;
Neil Horman3e358ac2013-09-06 15:36:08 -0400343 rc = fw_read_file_contents(file, buf);
Ming Lei746058f2012-10-09 12:01:03 +0800344 fput(file);
Neil Horman3e358ac2013-09-06 15:36:08 -0400345 if (rc)
346 dev_warn(device, "firmware, attempted to load %s, but failed with error %d\n",
347 path, rc);
348 else
Ming Lei746058f2012-10-09 12:01:03 +0800349 break;
350 }
351 __putname(path);
Takashi Iwai4e0c92d2013-01-31 11:13:54 +0100352
Neil Horman3e358ac2013-09-06 15:36:08 -0400353 if (!rc) {
Takashi Iwai4e0c92d2013-01-31 11:13:54 +0100354 dev_dbg(device, "firmware: direct-loading firmware %s\n",
355 buf->fw_id);
356 mutex_lock(&fw_lock);
357 set_bit(FW_STATUS_DONE, &buf->status);
358 complete_all(&buf->completion);
359 mutex_unlock(&fw_lock);
360 }
361
Neil Horman3e358ac2013-09-06 15:36:08 -0400362 return rc;
Ming Lei746058f2012-10-09 12:01:03 +0800363}
364
Takashi Iwai7b1269f2013-01-31 11:13:55 +0100365/* firmware holds the ownership of pages */
366static void firmware_free_data(const struct firmware *fw)
367{
368 /* Loaded directly? */
369 if (!fw->priv) {
370 vfree(fw->data);
371 return;
372 }
373 fw_free_buf(fw->priv);
374}
375
Takashi Iwaicd7239f2013-01-31 11:13:56 +0100376/* store the pages buffer info firmware from buf */
377static void fw_set_page_data(struct firmware_buf *buf, struct firmware *fw)
378{
379 fw->priv = buf;
Takashi Iwai7b1269f2013-01-31 11:13:55 +0100380#ifdef CONFIG_FW_LOADER_USER_HELPER
Takashi Iwaicd7239f2013-01-31 11:13:56 +0100381 fw->pages = buf->pages;
382#endif
383 fw->size = buf->size;
384 fw->data = buf->data;
385
386 pr_debug("%s: fw-%s buf=%p data=%p size=%u\n",
387 __func__, buf->fw_id, buf, buf->data,
388 (unsigned int)buf->size);
389}
390
391#ifdef CONFIG_PM_SLEEP
392static void fw_name_devm_release(struct device *dev, void *res)
393{
394 struct fw_name_devm *fwn = res;
395
396 if (fwn->magic == (unsigned long)&fw_cache)
397 pr_debug("%s: fw_name-%s devm-%p released\n",
398 __func__, fwn->name, res);
399}
400
401static int fw_devm_match(struct device *dev, void *res,
402 void *match_data)
403{
404 struct fw_name_devm *fwn = res;
405
406 return (fwn->magic == (unsigned long)&fw_cache) &&
407 !strcmp(fwn->name, match_data);
408}
409
410static struct fw_name_devm *fw_find_devm_name(struct device *dev,
411 const char *name)
412{
413 struct fw_name_devm *fwn;
414
415 fwn = devres_find(dev, fw_name_devm_release,
416 fw_devm_match, (void *)name);
417 return fwn;
418}
419
420/* add firmware name into devres list */
421static int fw_add_devm_name(struct device *dev, const char *name)
422{
423 struct fw_name_devm *fwn;
424
425 fwn = fw_find_devm_name(dev, name);
426 if (fwn)
427 return 1;
428
429 fwn = devres_alloc(fw_name_devm_release, sizeof(struct fw_name_devm) +
430 strlen(name) + 1, GFP_KERNEL);
431 if (!fwn)
432 return -ENOMEM;
433
434 fwn->magic = (unsigned long)&fw_cache;
435 strcpy(fwn->name, name);
436 devres_add(dev, fwn);
437
438 return 0;
439}
440#else
441static int fw_add_devm_name(struct device *dev, const char *name)
442{
443 return 0;
444}
445#endif
446
447
448/*
449 * user-mode helper code
450 */
451#ifdef CONFIG_FW_LOADER_USER_HELPER
452struct firmware_priv {
Takashi Iwaicd7239f2013-01-31 11:13:56 +0100453 bool nowait;
454 struct device dev;
455 struct firmware_buf *buf;
456 struct firmware *fw;
457};
Takashi Iwai7b1269f2013-01-31 11:13:55 +0100458
Dmitry Torokhovf8a4bd32010-06-04 00:54:43 -0700459static struct firmware_priv *to_firmware_priv(struct device *dev)
460{
461 return container_of(dev, struct firmware_priv, dev);
462}
463
Greg Kroah-Hartman7068cb02013-06-19 20:26:43 -0700464static void __fw_load_abort(struct firmware_buf *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465{
Ming Lei87597932013-06-15 16:36:38 +0800466 /*
467 * There is a small window in which user can write to 'loading'
468 * between loading done and disappearance of 'loading'
469 */
470 if (test_bit(FW_STATUS_DONE, &buf->status))
471 return;
472
Takashi Iwaife304142013-05-22 18:28:38 +0200473 list_del_init(&buf->pending_list);
Ming Lei12446912012-08-04 12:01:20 +0800474 set_bit(FW_STATUS_ABORT, &buf->status);
Ming Lei1f2b7952012-08-04 12:01:21 +0800475 complete_all(&buf->completion);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476}
477
Greg Kroah-Hartman7068cb02013-06-19 20:26:43 -0700478static void fw_load_abort(struct firmware_priv *fw_priv)
479{
480 struct firmware_buf *buf = fw_priv->buf;
481
482 __fw_load_abort(buf);
Ming Lei87597932013-06-15 16:36:38 +0800483
484 /* avoid user action after loading abort */
485 fw_priv->buf = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486}
487
Takashi Iwai807be032013-01-31 11:13:57 +0100488#define is_fw_load_aborted(buf) \
489 test_bit(FW_STATUS_ABORT, &(buf)->status)
490
Takashi Iwaife304142013-05-22 18:28:38 +0200491static LIST_HEAD(pending_fw_head);
492
493/* reboot notifier for avoid deadlock with usermode_lock */
494static int fw_shutdown_notify(struct notifier_block *unused1,
495 unsigned long unused2, void *unused3)
496{
497 mutex_lock(&fw_lock);
498 while (!list_empty(&pending_fw_head))
Greg Kroah-Hartman7068cb02013-06-19 20:26:43 -0700499 __fw_load_abort(list_first_entry(&pending_fw_head,
Takashi Iwaife304142013-05-22 18:28:38 +0200500 struct firmware_buf,
501 pending_list));
502 mutex_unlock(&fw_lock);
503 return NOTIFY_DONE;
504}
505
506static struct notifier_block fw_shutdown_nb = {
507 .notifier_call = fw_shutdown_notify,
508};
509
Greg Kroah-Hartman14adbe52013-08-23 17:08:48 -0700510static ssize_t timeout_show(struct class *class, struct class_attribute *attr,
511 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512{
513 return sprintf(buf, "%d\n", loading_timeout);
514}
515
516/**
Randy Dunlapeb8e3172005-10-30 15:03:01 -0800517 * firmware_timeout_store - set number of seconds to wait for firmware
518 * @class: device class pointer
Randy Dunlape59817b2010-03-10 11:47:58 -0800519 * @attr: device attribute pointer
Randy Dunlapeb8e3172005-10-30 15:03:01 -0800520 * @buf: buffer to scan for timeout value
521 * @count: number of bytes in @buf
522 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523 * Sets the number of seconds to wait for the firmware. Once
Randy Dunlapeb8e3172005-10-30 15:03:01 -0800524 * this expires an error will be returned to the driver and no
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525 * firmware will be provided.
526 *
Randy Dunlapeb8e3172005-10-30 15:03:01 -0800527 * Note: zero means 'wait forever'.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528 **/
Greg Kroah-Hartman14adbe52013-08-23 17:08:48 -0700529static ssize_t timeout_store(struct class *class, struct class_attribute *attr,
530 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531{
532 loading_timeout = simple_strtol(buf, NULL, 10);
Stanislaw W. Gruszkab92eac02005-06-28 20:44:51 -0700533 if (loading_timeout < 0)
534 loading_timeout = 0;
Dmitry Torokhovf8a4bd32010-06-04 00:54:43 -0700535
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536 return count;
537}
538
Dmitry Torokhov673fae92010-03-13 23:49:13 -0800539static struct class_attribute firmware_class_attrs[] = {
Greg Kroah-Hartman14adbe52013-08-23 17:08:48 -0700540 __ATTR_RW(timeout),
Dmitry Torokhov673fae92010-03-13 23:49:13 -0800541 __ATTR_NULL
542};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543
Dmitry Torokhov673fae92010-03-13 23:49:13 -0800544static void fw_dev_release(struct device *dev)
545{
Dmitry Torokhovf8a4bd32010-06-04 00:54:43 -0700546 struct firmware_priv *fw_priv = to_firmware_priv(dev);
Ming Lei65710cb2012-08-04 12:01:16 +0800547
Dmitry Torokhov673fae92010-03-13 23:49:13 -0800548 kfree(fw_priv);
Dmitry Torokhov673fae92010-03-13 23:49:13 -0800549}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550
Kay Sievers7eff2e72007-08-14 15:15:12 +0200551static int firmware_uevent(struct device *dev, struct kobj_uevent_env *env)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552{
Dmitry Torokhovf8a4bd32010-06-04 00:54:43 -0700553 struct firmware_priv *fw_priv = to_firmware_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554
Ming Lei12446912012-08-04 12:01:20 +0800555 if (add_uevent_var(env, "FIRMWARE=%s", fw_priv->buf->fw_id))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556 return -ENOMEM;
Kay Sievers7eff2e72007-08-14 15:15:12 +0200557 if (add_uevent_var(env, "TIMEOUT=%i", loading_timeout))
kay.sievers@vrfy.org68970892005-04-18 21:57:31 -0700558 return -ENOMEM;
Johannes Berge9045f92010-03-29 17:57:20 +0200559 if (add_uevent_var(env, "ASYNC=%d", fw_priv->nowait))
560 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561
562 return 0;
563}
564
Adrian Bunk1b81d662006-05-20 15:00:16 -0700565static struct class firmware_class = {
566 .name = "firmware",
Dmitry Torokhov673fae92010-03-13 23:49:13 -0800567 .class_attrs = firmware_class_attrs,
Greg Kroah-Hartmane55c8792006-09-14 07:30:59 -0700568 .dev_uevent = firmware_uevent,
569 .dev_release = fw_dev_release,
Adrian Bunk1b81d662006-05-20 15:00:16 -0700570};
571
Greg Kroah-Hartmane55c8792006-09-14 07:30:59 -0700572static ssize_t firmware_loading_show(struct device *dev,
573 struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574{
Dmitry Torokhovf8a4bd32010-06-04 00:54:43 -0700575 struct firmware_priv *fw_priv = to_firmware_priv(dev);
Ming Lei87597932013-06-15 16:36:38 +0800576 int loading = 0;
577
578 mutex_lock(&fw_lock);
579 if (fw_priv->buf)
580 loading = test_bit(FW_STATUS_LOADING, &fw_priv->buf->status);
581 mutex_unlock(&fw_lock);
Dmitry Torokhovf8a4bd32010-06-04 00:54:43 -0700582
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583 return sprintf(buf, "%d\n", loading);
584}
585
David Woodhouse6e03a202009-04-09 22:04:07 -0700586/* Some architectures don't have PAGE_KERNEL_RO */
587#ifndef PAGE_KERNEL_RO
588#define PAGE_KERNEL_RO PAGE_KERNEL
589#endif
Ming Lei253c9242012-10-09 12:01:02 +0800590
591/* one pages buffer should be mapped/unmapped only once */
592static int fw_map_pages_buf(struct firmware_buf *buf)
593{
Takashi Iwaicd7239f2013-01-31 11:13:56 +0100594 if (!buf->is_paged_buf)
Ming Lei746058f2012-10-09 12:01:03 +0800595 return 0;
596
Markus Elfringdaa3d672014-11-19 11:38:38 +0100597 vunmap(buf->data);
Ming Lei253c9242012-10-09 12:01:02 +0800598 buf->data = vmap(buf->pages, buf->nr_pages, 0, PAGE_KERNEL_RO);
599 if (!buf->data)
600 return -ENOMEM;
601 return 0;
602}
603
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604/**
Randy Dunlapeb8e3172005-10-30 15:03:01 -0800605 * firmware_loading_store - set value in the 'loading' control file
Greg Kroah-Hartmane55c8792006-09-14 07:30:59 -0700606 * @dev: device pointer
Randy Dunlapaf9997e2006-12-22 01:06:52 -0800607 * @attr: device attribute pointer
Randy Dunlapeb8e3172005-10-30 15:03:01 -0800608 * @buf: buffer to scan for loading control value
609 * @count: number of bytes in @buf
610 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611 * The relevant values are:
612 *
613 * 1: Start a load, discarding any previous partial load.
Randy Dunlapeb8e3172005-10-30 15:03:01 -0800614 * 0: Conclude the load and hand the data to the driver code.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615 * -1: Conclude the load with an error and discard any written data.
616 **/
Greg Kroah-Hartmane55c8792006-09-14 07:30:59 -0700617static ssize_t firmware_loading_store(struct device *dev,
618 struct device_attribute *attr,
619 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620{
Dmitry Torokhovf8a4bd32010-06-04 00:54:43 -0700621 struct firmware_priv *fw_priv = to_firmware_priv(dev);
Ming Lei87597932013-06-15 16:36:38 +0800622 struct firmware_buf *fw_buf;
Kees Cook6593d922014-02-25 13:06:00 -0800623 ssize_t written = count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624 int loading = simple_strtol(buf, NULL, 10);
David Woodhouse6e03a202009-04-09 22:04:07 -0700625 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626
Neil Hormaneea915b2012-01-02 15:31:23 -0500627 mutex_lock(&fw_lock);
Ming Lei87597932013-06-15 16:36:38 +0800628 fw_buf = fw_priv->buf;
Ming Lei12446912012-08-04 12:01:20 +0800629 if (!fw_buf)
Neil Hormaneea915b2012-01-02 15:31:23 -0500630 goto out;
631
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632 switch (loading) {
633 case 1:
Ming Lei65710cb2012-08-04 12:01:16 +0800634 /* discarding any previous partial load */
Ming Lei12446912012-08-04 12:01:20 +0800635 if (!test_bit(FW_STATUS_DONE, &fw_buf->status)) {
636 for (i = 0; i < fw_buf->nr_pages; i++)
637 __free_page(fw_buf->pages[i]);
638 kfree(fw_buf->pages);
639 fw_buf->pages = NULL;
640 fw_buf->page_array_size = 0;
641 fw_buf->nr_pages = 0;
642 set_bit(FW_STATUS_LOADING, &fw_buf->status);
Ming Lei28eefa72012-08-04 12:01:17 +0800643 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644 break;
645 case 0:
Ming Lei12446912012-08-04 12:01:20 +0800646 if (test_bit(FW_STATUS_LOADING, &fw_buf->status)) {
Kees Cook6593d922014-02-25 13:06:00 -0800647 int rc;
648
Ming Lei12446912012-08-04 12:01:20 +0800649 set_bit(FW_STATUS_DONE, &fw_buf->status);
650 clear_bit(FW_STATUS_LOADING, &fw_buf->status);
Ming Lei253c9242012-10-09 12:01:02 +0800651
652 /*
653 * Several loading requests may be pending on
654 * one same firmware buf, so let all requests
655 * see the mapped 'buf->data' once the loading
656 * is completed.
657 * */
Kees Cook6593d922014-02-25 13:06:00 -0800658 rc = fw_map_pages_buf(fw_buf);
659 if (rc)
zhang jun2b1278c2014-02-13 15:18:47 +0800660 dev_err(dev, "%s: map pages failed\n",
661 __func__);
Kees Cook6593d922014-02-25 13:06:00 -0800662 else
663 rc = security_kernel_fw_from_file(NULL,
664 fw_buf->data, fw_buf->size);
665
666 /*
667 * Same logic as fw_load_abort, only the DONE bit
668 * is ignored and we set ABORT only on failure.
669 */
Takashi Iwaife304142013-05-22 18:28:38 +0200670 list_del_init(&fw_buf->pending_list);
Kees Cook6593d922014-02-25 13:06:00 -0800671 if (rc) {
672 set_bit(FW_STATUS_ABORT, &fw_buf->status);
673 written = rc;
674 }
Ming Lei1f2b7952012-08-04 12:01:21 +0800675 complete_all(&fw_buf->completion);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676 break;
677 }
678 /* fallthrough */
679 default:
Bjorn Helgaas266a8132008-10-15 22:04:20 -0700680 dev_err(dev, "%s: unexpected value (%d)\n", __func__, loading);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681 /* fallthrough */
682 case -1:
683 fw_load_abort(fw_priv);
684 break;
685 }
Neil Hormaneea915b2012-01-02 15:31:23 -0500686out:
687 mutex_unlock(&fw_lock);
Kees Cook6593d922014-02-25 13:06:00 -0800688 return written;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689}
690
Greg Kroah-Hartmane55c8792006-09-14 07:30:59 -0700691static DEVICE_ATTR(loading, 0644, firmware_loading_show, firmware_loading_store);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692
Dmitry Torokhovf8a4bd32010-06-04 00:54:43 -0700693static ssize_t firmware_data_read(struct file *filp, struct kobject *kobj,
694 struct bin_attribute *bin_attr,
695 char *buffer, loff_t offset, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696{
Lars-Peter Clausenb0d1f802012-07-03 18:49:36 +0200697 struct device *dev = kobj_to_dev(kobj);
Dmitry Torokhovf8a4bd32010-06-04 00:54:43 -0700698 struct firmware_priv *fw_priv = to_firmware_priv(dev);
Ming Lei12446912012-08-04 12:01:20 +0800699 struct firmware_buf *buf;
Akinobu Mitaf37e6612008-07-25 01:48:23 -0700700 ssize_t ret_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701
Laura Garciacad1e552006-05-23 23:22:38 +0200702 mutex_lock(&fw_lock);
Ming Lei12446912012-08-04 12:01:20 +0800703 buf = fw_priv->buf;
704 if (!buf || test_bit(FW_STATUS_DONE, &buf->status)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705 ret_count = -ENODEV;
706 goto out;
707 }
Ming Lei12446912012-08-04 12:01:20 +0800708 if (offset > buf->size) {
Jiri Slaby308975f2009-06-21 23:57:31 +0200709 ret_count = 0;
710 goto out;
711 }
Ming Lei12446912012-08-04 12:01:20 +0800712 if (count > buf->size - offset)
713 count = buf->size - offset;
David Woodhouse6e03a202009-04-09 22:04:07 -0700714
715 ret_count = count;
716
717 while (count) {
718 void *page_data;
719 int page_nr = offset >> PAGE_SHIFT;
720 int page_ofs = offset & (PAGE_SIZE-1);
721 int page_cnt = min_t(size_t, PAGE_SIZE - page_ofs, count);
722
Ming Lei12446912012-08-04 12:01:20 +0800723 page_data = kmap(buf->pages[page_nr]);
David Woodhouse6e03a202009-04-09 22:04:07 -0700724
725 memcpy(buffer, page_data + page_ofs, page_cnt);
726
Ming Lei12446912012-08-04 12:01:20 +0800727 kunmap(buf->pages[page_nr]);
David Woodhouse6e03a202009-04-09 22:04:07 -0700728 buffer += page_cnt;
729 offset += page_cnt;
730 count -= page_cnt;
731 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732out:
Laura Garciacad1e552006-05-23 23:22:38 +0200733 mutex_unlock(&fw_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734 return ret_count;
735}
Randy Dunlapeb8e3172005-10-30 15:03:01 -0800736
Dmitry Torokhovf8a4bd32010-06-04 00:54:43 -0700737static int fw_realloc_buffer(struct firmware_priv *fw_priv, int min_size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738{
Ming Lei12446912012-08-04 12:01:20 +0800739 struct firmware_buf *buf = fw_priv->buf;
Fabian Fredericka76040d2014-07-01 21:13:30 +0200740 int pages_needed = PAGE_ALIGN(min_size) >> PAGE_SHIFT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741
David Woodhouse6e03a202009-04-09 22:04:07 -0700742 /* If the array of pages is too small, grow it... */
Ming Lei12446912012-08-04 12:01:20 +0800743 if (buf->page_array_size < pages_needed) {
David Woodhouse6e03a202009-04-09 22:04:07 -0700744 int new_array_size = max(pages_needed,
Ming Lei12446912012-08-04 12:01:20 +0800745 buf->page_array_size * 2);
David Woodhouse6e03a202009-04-09 22:04:07 -0700746 struct page **new_pages;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747
David Woodhouse6e03a202009-04-09 22:04:07 -0700748 new_pages = kmalloc(new_array_size * sizeof(void *),
749 GFP_KERNEL);
750 if (!new_pages) {
751 fw_load_abort(fw_priv);
752 return -ENOMEM;
753 }
Ming Lei12446912012-08-04 12:01:20 +0800754 memcpy(new_pages, buf->pages,
755 buf->page_array_size * sizeof(void *));
756 memset(&new_pages[buf->page_array_size], 0, sizeof(void *) *
757 (new_array_size - buf->page_array_size));
758 kfree(buf->pages);
759 buf->pages = new_pages;
760 buf->page_array_size = new_array_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761 }
David Woodhouse6e03a202009-04-09 22:04:07 -0700762
Ming Lei12446912012-08-04 12:01:20 +0800763 while (buf->nr_pages < pages_needed) {
764 buf->pages[buf->nr_pages] =
David Woodhouse6e03a202009-04-09 22:04:07 -0700765 alloc_page(GFP_KERNEL | __GFP_HIGHMEM);
766
Ming Lei12446912012-08-04 12:01:20 +0800767 if (!buf->pages[buf->nr_pages]) {
David Woodhouse6e03a202009-04-09 22:04:07 -0700768 fw_load_abort(fw_priv);
769 return -ENOMEM;
770 }
Ming Lei12446912012-08-04 12:01:20 +0800771 buf->nr_pages++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773 return 0;
774}
775
776/**
Randy Dunlapeb8e3172005-10-30 15:03:01 -0800777 * firmware_data_write - write method for firmware
Chris Wright2c3c8be2010-05-12 18:28:57 -0700778 * @filp: open sysfs file
Greg Kroah-Hartmane55c8792006-09-14 07:30:59 -0700779 * @kobj: kobject for the device
Randy Dunlap42e61f42007-07-23 21:42:11 -0700780 * @bin_attr: bin_attr structure
Randy Dunlapeb8e3172005-10-30 15:03:01 -0800781 * @buffer: buffer being written
782 * @offset: buffer offset for write in total data store area
783 * @count: buffer size
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784 *
Randy Dunlapeb8e3172005-10-30 15:03:01 -0800785 * Data written to the 'data' attribute will be later handed to
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786 * the driver as a firmware image.
787 **/
Dmitry Torokhovf8a4bd32010-06-04 00:54:43 -0700788static ssize_t firmware_data_write(struct file *filp, struct kobject *kobj,
789 struct bin_attribute *bin_attr,
790 char *buffer, loff_t offset, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791{
Lars-Peter Clausenb0d1f802012-07-03 18:49:36 +0200792 struct device *dev = kobj_to_dev(kobj);
Dmitry Torokhovf8a4bd32010-06-04 00:54:43 -0700793 struct firmware_priv *fw_priv = to_firmware_priv(dev);
Ming Lei12446912012-08-04 12:01:20 +0800794 struct firmware_buf *buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795 ssize_t retval;
796
797 if (!capable(CAP_SYS_RAWIO))
798 return -EPERM;
Stanislaw W. Gruszkab92eac02005-06-28 20:44:51 -0700799
Laura Garciacad1e552006-05-23 23:22:38 +0200800 mutex_lock(&fw_lock);
Ming Lei12446912012-08-04 12:01:20 +0800801 buf = fw_priv->buf;
802 if (!buf || test_bit(FW_STATUS_DONE, &buf->status)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803 retval = -ENODEV;
804 goto out;
805 }
Ming Lei65710cb2012-08-04 12:01:16 +0800806
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807 retval = fw_realloc_buffer(fw_priv, offset + count);
808 if (retval)
809 goto out;
810
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811 retval = count;
David Woodhouse6e03a202009-04-09 22:04:07 -0700812
813 while (count) {
814 void *page_data;
815 int page_nr = offset >> PAGE_SHIFT;
816 int page_ofs = offset & (PAGE_SIZE - 1);
817 int page_cnt = min_t(size_t, PAGE_SIZE - page_ofs, count);
818
Ming Lei12446912012-08-04 12:01:20 +0800819 page_data = kmap(buf->pages[page_nr]);
David Woodhouse6e03a202009-04-09 22:04:07 -0700820
821 memcpy(page_data + page_ofs, buffer, page_cnt);
822
Ming Lei12446912012-08-04 12:01:20 +0800823 kunmap(buf->pages[page_nr]);
David Woodhouse6e03a202009-04-09 22:04:07 -0700824 buffer += page_cnt;
825 offset += page_cnt;
826 count -= page_cnt;
827 }
828
Ming Lei12446912012-08-04 12:01:20 +0800829 buf->size = max_t(size_t, offset, buf->size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700830out:
Laura Garciacad1e552006-05-23 23:22:38 +0200831 mutex_unlock(&fw_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832 return retval;
833}
Randy Dunlapeb8e3172005-10-30 15:03:01 -0800834
Dmitry Torokhov0983ca22010-06-04 00:54:37 -0700835static struct bin_attribute firmware_attr_data = {
836 .attr = { .name = "data", .mode = 0644 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837 .size = 0,
838 .read = firmware_data_read,
839 .write = firmware_data_write,
840};
841
Takashi Iwai46239902015-02-04 15:18:07 +0100842static struct attribute *fw_dev_attrs[] = {
843 &dev_attr_loading.attr,
844 NULL
845};
846
847static struct bin_attribute *fw_dev_bin_attrs[] = {
848 &firmware_attr_data,
849 NULL
850};
851
852static const struct attribute_group fw_dev_attr_group = {
853 .attrs = fw_dev_attrs,
854 .bin_attrs = fw_dev_bin_attrs,
855};
856
857static const struct attribute_group *fw_dev_attr_groups[] = {
858 &fw_dev_attr_group,
859 NULL
860};
861
Dmitry Torokhovf8a4bd32010-06-04 00:54:43 -0700862static struct firmware_priv *
Stephen Boyddddb5542012-03-28 23:30:43 +0200863fw_create_instance(struct firmware *firmware, const char *fw_name,
Takashi Iwai14c4bae2013-12-02 15:38:18 +0100864 struct device *device, unsigned int opt_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865{
Dmitry Torokhovf8a4bd32010-06-04 00:54:43 -0700866 struct firmware_priv *fw_priv;
867 struct device *f_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868
Ming Lei12446912012-08-04 12:01:20 +0800869 fw_priv = kzalloc(sizeof(*fw_priv), GFP_KERNEL);
Dmitry Torokhovf8a4bd32010-06-04 00:54:43 -0700870 if (!fw_priv) {
Ming Lei12446912012-08-04 12:01:20 +0800871 fw_priv = ERR_PTR(-ENOMEM);
872 goto exit;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700873 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700874
Takashi Iwai14c4bae2013-12-02 15:38:18 +0100875 fw_priv->nowait = !!(opt_flags & FW_OPT_NOWAIT);
Ming Lei1f2b7952012-08-04 12:01:21 +0800876 fw_priv->fw = firmware;
Dmitry Torokhovf8a4bd32010-06-04 00:54:43 -0700877 f_dev = &fw_priv->dev;
878
879 device_initialize(f_dev);
Ming Lei99c2aa72012-08-04 12:01:19 +0800880 dev_set_name(f_dev, "%s", fw_name);
Greg Kroah-Hartmane55c8792006-09-14 07:30:59 -0700881 f_dev->parent = device;
882 f_dev->class = &firmware_class;
Takashi Iwai46239902015-02-04 15:18:07 +0100883 f_dev->groups = fw_dev_attr_groups;
Ming Lei12446912012-08-04 12:01:20 +0800884exit:
Dmitry Torokhovf8a4bd32010-06-04 00:54:43 -0700885 return fw_priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886}
Takashi Iwaicd7239f2013-01-31 11:13:56 +0100887
888/* load a firmware via user helper */
Takashi Iwai14c4bae2013-12-02 15:38:18 +0100889static int _request_firmware_load(struct firmware_priv *fw_priv,
890 unsigned int opt_flags, long timeout)
Takashi Iwaicd7239f2013-01-31 11:13:56 +0100891{
892 int retval = 0;
893 struct device *f_dev = &fw_priv->dev;
894 struct firmware_buf *buf = fw_priv->buf;
895
896 /* fall back on userspace loading */
897 buf->is_paged_buf = true;
898
899 dev_set_uevent_suppress(f_dev, true);
900
Takashi Iwaicd7239f2013-01-31 11:13:56 +0100901 retval = device_add(f_dev);
902 if (retval) {
903 dev_err(f_dev, "%s: device_register failed\n", __func__);
904 goto err_put_dev;
905 }
906
Maxime Bizon1eeeef12013-08-29 20:28:13 +0200907 mutex_lock(&fw_lock);
908 list_add(&buf->pending_list, &pending_fw_head);
909 mutex_unlock(&fw_lock);
910
Takashi Iwai14c4bae2013-12-02 15:38:18 +0100911 if (opt_flags & FW_OPT_UEVENT) {
Ming Leiaf5bc112013-05-27 18:30:04 +0800912 buf->need_uevent = true;
Takashi Iwaicd7239f2013-01-31 11:13:56 +0100913 dev_set_uevent_suppress(f_dev, false);
914 dev_dbg(f_dev, "firmware: requesting %s\n", buf->fw_id);
Takashi Iwaicd7239f2013-01-31 11:13:56 +0100915 kobject_uevent(&fw_priv->dev.kobj, KOBJ_ADD);
Ming Lei68ff2a02015-01-13 00:02:01 +0800916 } else {
917 timeout = MAX_JIFFY_OFFSET;
Takashi Iwaicd7239f2013-01-31 11:13:56 +0100918 }
919
Ming Lei68ff2a02015-01-13 00:02:01 +0800920 retval = wait_for_completion_interruptible_timeout(&buf->completion,
921 timeout);
922 if (retval == -ERESTARTSYS || !retval) {
Ming Lei0cb64242015-01-13 00:01:35 +0800923 mutex_lock(&fw_lock);
924 fw_load_abort(fw_priv);
925 mutex_unlock(&fw_lock);
Zahari Doychevef518cc2015-03-10 10:45:40 +0100926 } else if (retval > 0) {
927 retval = 0;
Ming Lei0cb64242015-01-13 00:01:35 +0800928 }
Takashi Iwaicd7239f2013-01-31 11:13:56 +0100929
Shuah Khan0542ad82014-07-22 18:10:38 -0600930 if (is_fw_load_aborted(buf))
931 retval = -EAGAIN;
932 else if (!buf->data)
zhang jun2b1278c2014-02-13 15:18:47 +0800933 retval = -ENOMEM;
Takashi Iwaicd7239f2013-01-31 11:13:56 +0100934
Takashi Iwaicd7239f2013-01-31 11:13:56 +0100935 device_del(f_dev);
936err_put_dev:
937 put_device(f_dev);
938 return retval;
939}
940
941static int fw_load_from_user_helper(struct firmware *firmware,
942 const char *name, struct device *device,
Takashi Iwai14c4bae2013-12-02 15:38:18 +0100943 unsigned int opt_flags, long timeout)
Takashi Iwaicd7239f2013-01-31 11:13:56 +0100944{
945 struct firmware_priv *fw_priv;
946
Takashi Iwai14c4bae2013-12-02 15:38:18 +0100947 fw_priv = fw_create_instance(firmware, name, device, opt_flags);
Takashi Iwaicd7239f2013-01-31 11:13:56 +0100948 if (IS_ERR(fw_priv))
949 return PTR_ERR(fw_priv);
950
951 fw_priv->buf = firmware->priv;
Takashi Iwai14c4bae2013-12-02 15:38:18 +0100952 return _request_firmware_load(fw_priv, opt_flags, timeout);
Takashi Iwaicd7239f2013-01-31 11:13:56 +0100953}
Ming Leiddf1f062013-06-04 10:01:13 +0800954
Ming Lei5b7cb7a2013-06-06 19:52:54 +0800955#ifdef CONFIG_PM_SLEEP
Ming Leiddf1f062013-06-04 10:01:13 +0800956/* kill pending requests without uevent to avoid blocking suspend */
957static void kill_requests_without_uevent(void)
958{
959 struct firmware_buf *buf;
960 struct firmware_buf *next;
961
962 mutex_lock(&fw_lock);
963 list_for_each_entry_safe(buf, next, &pending_fw_head, pending_list) {
964 if (!buf->need_uevent)
Greg Kroah-Hartman7068cb02013-06-19 20:26:43 -0700965 __fw_load_abort(buf);
Ming Leiddf1f062013-06-04 10:01:13 +0800966 }
967 mutex_unlock(&fw_lock);
968}
Ming Lei5b7cb7a2013-06-06 19:52:54 +0800969#endif
Ming Leiddf1f062013-06-04 10:01:13 +0800970
Takashi Iwaicd7239f2013-01-31 11:13:56 +0100971#else /* CONFIG_FW_LOADER_USER_HELPER */
972static inline int
973fw_load_from_user_helper(struct firmware *firmware, const char *name,
Takashi Iwai14c4bae2013-12-02 15:38:18 +0100974 struct device *device, unsigned int opt_flags,
Takashi Iwaicd7239f2013-01-31 11:13:56 +0100975 long timeout)
976{
977 return -ENOENT;
978}
Takashi Iwai807be032013-01-31 11:13:57 +0100979
980/* No abort during direct loading */
981#define is_fw_load_aborted(buf) false
982
Ming Lei5b7cb7a2013-06-06 19:52:54 +0800983#ifdef CONFIG_PM_SLEEP
Ming Leiddf1f062013-06-04 10:01:13 +0800984static inline void kill_requests_without_uevent(void) { }
Ming Lei5b7cb7a2013-06-06 19:52:54 +0800985#endif
Ming Leiddf1f062013-06-04 10:01:13 +0800986
Takashi Iwai7b1269f2013-01-31 11:13:55 +0100987#endif /* CONFIG_FW_LOADER_USER_HELPER */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700988
Ming Leif531f05a2012-08-04 12:01:25 +0800989
Takashi Iwai4e0c92d2013-01-31 11:13:54 +0100990/* wait until the shared firmware_buf becomes ready (or error) */
991static int sync_cached_firmware_buf(struct firmware_buf *buf)
Ming Lei1f2b7952012-08-04 12:01:21 +0800992{
Takashi Iwai4e0c92d2013-01-31 11:13:54 +0100993 int ret = 0;
994
995 mutex_lock(&fw_lock);
996 while (!test_bit(FW_STATUS_DONE, &buf->status)) {
Takashi Iwai807be032013-01-31 11:13:57 +0100997 if (is_fw_load_aborted(buf)) {
Takashi Iwai4e0c92d2013-01-31 11:13:54 +0100998 ret = -ENOENT;
999 break;
1000 }
1001 mutex_unlock(&fw_lock);
Kweh, Hock Leong000deba2014-11-18 10:56:59 +08001002 ret = wait_for_completion_interruptible(&buf->completion);
Takashi Iwai4e0c92d2013-01-31 11:13:54 +01001003 mutex_lock(&fw_lock);
1004 }
1005 mutex_unlock(&fw_lock);
1006 return ret;
Ming Lei1f2b7952012-08-04 12:01:21 +08001007}
1008
Takashi Iwai4e0c92d2013-01-31 11:13:54 +01001009/* prepare firmware and firmware_buf structs;
1010 * return 0 if a firmware is already assigned, 1 if need to load one,
1011 * or a negative error code
1012 */
1013static int
1014_request_firmware_prepare(struct firmware **firmware_p, const char *name,
1015 struct device *device)
Dmitry Torokhovf8a4bd32010-06-04 00:54:43 -07001016{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001017 struct firmware *firmware;
Ming Lei1f2b7952012-08-04 12:01:21 +08001018 struct firmware_buf *buf;
1019 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001020
Jiri Slaby4aed0642005-09-13 01:25:01 -07001021 *firmware_p = firmware = kzalloc(sizeof(*firmware), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001022 if (!firmware) {
Bjorn Helgaas266a8132008-10-15 22:04:20 -07001023 dev_err(device, "%s: kmalloc(struct firmware) failed\n",
1024 __func__);
Takashi Iwai4e0c92d2013-01-31 11:13:54 +01001025 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001026 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001027
Dmitry Torokhovbcb9bd12010-03-13 23:49:18 -08001028 if (fw_get_builtin_firmware(firmware, name)) {
Rafael J. Wysocki6f18ff92010-02-27 21:43:22 +01001029 dev_dbg(device, "firmware: using built-in firmware %s\n", name);
Takashi Iwai4e0c92d2013-01-31 11:13:54 +01001030 return 0; /* assigned */
David Woodhouse5658c762008-05-23 13:52:42 +01001031 }
1032
Ming Lei1f2b7952012-08-04 12:01:21 +08001033 ret = fw_lookup_and_allocate_buf(name, &fw_cache, &buf);
Ming Lei1f2b7952012-08-04 12:01:21 +08001034
Takashi Iwai4e0c92d2013-01-31 11:13:54 +01001035 /*
1036 * bind with 'buf' now to avoid warning in failure path
1037 * of requesting firmware.
1038 */
1039 firmware->priv = buf;
Ming Lei1f2b7952012-08-04 12:01:21 +08001040
Takashi Iwai4e0c92d2013-01-31 11:13:54 +01001041 if (ret > 0) {
1042 ret = sync_cached_firmware_buf(buf);
1043 if (!ret) {
1044 fw_set_page_data(buf, firmware);
1045 return 0; /* assigned */
1046 }
Stephen Boyddddb5542012-03-28 23:30:43 +02001047 }
Ming Lei1f2b7952012-08-04 12:01:21 +08001048
Takashi Iwai4e0c92d2013-01-31 11:13:54 +01001049 if (ret < 0)
1050 return ret;
1051 return 1; /* need to load */
Rafael J. Wysocki811fa402012-03-28 23:29:55 +02001052}
1053
Ming Leie771d1a2013-05-27 18:30:03 +08001054static int assign_firmware_buf(struct firmware *fw, struct device *device,
Takashi Iwai14c4bae2013-12-02 15:38:18 +01001055 unsigned int opt_flags)
Takashi Iwai4e0c92d2013-01-31 11:13:54 +01001056{
1057 struct firmware_buf *buf = fw->priv;
1058
1059 mutex_lock(&fw_lock);
Takashi Iwai807be032013-01-31 11:13:57 +01001060 if (!buf->size || is_fw_load_aborted(buf)) {
Takashi Iwai4e0c92d2013-01-31 11:13:54 +01001061 mutex_unlock(&fw_lock);
1062 return -ENOENT;
1063 }
1064
1065 /*
1066 * add firmware name into devres list so that we can auto cache
1067 * and uncache firmware for device.
1068 *
1069 * device may has been deleted already, but the problem
1070 * should be fixed in devres or driver core.
1071 */
Takashi Iwai14c4bae2013-12-02 15:38:18 +01001072 /* don't cache firmware handled without uevent */
1073 if (device && (opt_flags & FW_OPT_UEVENT))
Takashi Iwai4e0c92d2013-01-31 11:13:54 +01001074 fw_add_devm_name(device, buf->fw_id);
1075
1076 /*
1077 * After caching firmware image is started, let it piggyback
1078 * on request firmware.
1079 */
1080 if (buf->fwc->state == FW_LOADER_START_CACHE) {
1081 if (fw_cache_piggyback_on_request(buf->fw_id))
1082 kref_get(&buf->ref);
1083 }
1084
1085 /* pass the pages buffer to driver at the last minute */
1086 fw_set_page_data(buf, fw);
1087 mutex_unlock(&fw_lock);
1088 return 0;
1089}
1090
Takashi Iwai4e0c92d2013-01-31 11:13:54 +01001091/* called from request_firmware() and request_firmware_work_func() */
1092static int
1093_request_firmware(const struct firmware **firmware_p, const char *name,
Takashi Iwai14c4bae2013-12-02 15:38:18 +01001094 struct device *device, unsigned int opt_flags)
Takashi Iwai4e0c92d2013-01-31 11:13:54 +01001095{
1096 struct firmware *fw;
1097 long timeout;
1098 int ret;
1099
1100 if (!firmware_p)
1101 return -EINVAL;
1102
Kees Cook471b0952014-09-18 11:25:37 -07001103 if (!name || name[0] == '\0')
1104 return -EINVAL;
1105
Takashi Iwai4e0c92d2013-01-31 11:13:54 +01001106 ret = _request_firmware_prepare(&fw, name, device);
1107 if (ret <= 0) /* error or already assigned */
1108 goto out;
1109
1110 ret = 0;
1111 timeout = firmware_loading_timeout();
Takashi Iwai14c4bae2013-12-02 15:38:18 +01001112 if (opt_flags & FW_OPT_NOWAIT) {
Takashi Iwai4e0c92d2013-01-31 11:13:54 +01001113 timeout = usermodehelper_read_lock_wait(timeout);
1114 if (!timeout) {
1115 dev_dbg(device, "firmware: %s loading timed out\n",
1116 name);
1117 ret = -EBUSY;
1118 goto out;
1119 }
1120 } else {
1121 ret = usermodehelper_read_trylock();
1122 if (WARN_ON(ret)) {
1123 dev_err(device, "firmware: %s will not be loaded\n",
1124 name);
1125 goto out;
1126 }
1127 }
1128
Neil Horman3e358ac2013-09-06 15:36:08 -04001129 ret = fw_get_filesystem_firmware(device, fw->priv);
1130 if (ret) {
Luis R. Rodriguezc868edf2014-07-02 09:55:05 -07001131 if (!(opt_flags & FW_OPT_NO_WARN))
Takashi Iwaibba3a872013-12-02 15:38:16 +01001132 dev_warn(device,
Luis R. Rodriguezc868edf2014-07-02 09:55:05 -07001133 "Direct firmware load for %s failed with error %d\n",
1134 name, ret);
1135 if (opt_flags & FW_OPT_USERHELPER) {
Takashi Iwaibba3a872013-12-02 15:38:16 +01001136 dev_warn(device, "Falling back to user helper\n");
1137 ret = fw_load_from_user_helper(fw, name, device,
Takashi Iwai14c4bae2013-12-02 15:38:18 +01001138 opt_flags, timeout);
Takashi Iwaibba3a872013-12-02 15:38:16 +01001139 }
Neil Horman3e358ac2013-09-06 15:36:08 -04001140 }
Ming Leie771d1a2013-05-27 18:30:03 +08001141
Takashi Iwai4e0c92d2013-01-31 11:13:54 +01001142 if (!ret)
Takashi Iwai14c4bae2013-12-02 15:38:18 +01001143 ret = assign_firmware_buf(fw, device, opt_flags);
Takashi Iwai4e0c92d2013-01-31 11:13:54 +01001144
1145 usermodehelper_read_unlock();
1146
1147 out:
1148 if (ret < 0) {
1149 release_firmware(fw);
1150 fw = NULL;
1151 }
1152
1153 *firmware_p = fw;
1154 return ret;
1155}
1156
Linus Torvalds1da177e2005-04-16 15:20:36 -07001157/**
Kay Sievers312c0042005-11-16 09:00:00 +01001158 * request_firmware: - send firmware request and wait for it
Randy Dunlapeb8e3172005-10-30 15:03:01 -08001159 * @firmware_p: pointer to firmware image
1160 * @name: name of firmware file
1161 * @device: device for which firmware is being loaded
1162 *
1163 * @firmware_p will be used to return a firmware image by the name
Abhay Salunke6e3eaab2005-09-06 15:17:13 -07001164 * of @name for device @device.
1165 *
1166 * Should be called from user context where sleeping is allowed.
1167 *
Kay Sievers312c0042005-11-16 09:00:00 +01001168 * @name will be used as $FIRMWARE in the uevent environment and
Abhay Salunke6e3eaab2005-09-06 15:17:13 -07001169 * should be distinctive enough not to be confused with any other
1170 * firmware image for this or any other device.
Ming Lei0cfc1e12012-08-04 12:01:23 +08001171 *
1172 * Caller must hold the reference count of @device.
Ming Lei6a927852012-11-03 17:48:16 +08001173 *
1174 * The function can be called safely inside device's suspend and
1175 * resume callback.
Abhay Salunke6e3eaab2005-09-06 15:17:13 -07001176 **/
1177int
1178request_firmware(const struct firmware **firmware_p, const char *name,
Andrei Opreaea310032015-03-08 12:41:15 +02001179 struct device *device)
Abhay Salunke6e3eaab2005-09-06 15:17:13 -07001180{
Ming Leid6c8aa32013-06-06 20:01:48 +08001181 int ret;
1182
1183 /* Need to pin this module until return */
1184 __module_get(THIS_MODULE);
Takashi Iwai14c4bae2013-12-02 15:38:18 +01001185 ret = _request_firmware(firmware_p, name, device,
1186 FW_OPT_UEVENT | FW_OPT_FALLBACK);
Ming Leid6c8aa32013-06-06 20:01:48 +08001187 module_put(THIS_MODULE);
1188 return ret;
Abhay Salunke6e3eaab2005-09-06 15:17:13 -07001189}
Daniel Mackf4945132013-05-23 22:17:18 +02001190EXPORT_SYMBOL(request_firmware);
Abhay Salunke6e3eaab2005-09-06 15:17:13 -07001191
Takashi Iwaibba3a872013-12-02 15:38:16 +01001192/**
Borislav Petkov3c1556b2014-12-03 22:46:37 +01001193 * request_firmware_direct: - load firmware directly without usermode helper
Takashi Iwaibba3a872013-12-02 15:38:16 +01001194 * @firmware_p: pointer to firmware image
1195 * @name: name of firmware file
1196 * @device: device for which firmware is being loaded
1197 *
1198 * This function works pretty much like request_firmware(), but this doesn't
1199 * fall back to usermode helper even if the firmware couldn't be loaded
1200 * directly from fs. Hence it's useful for loading optional firmwares, which
1201 * aren't always present, without extra long timeouts of udev.
1202 **/
1203int request_firmware_direct(const struct firmware **firmware_p,
1204 const char *name, struct device *device)
1205{
1206 int ret;
Andrei Opreaea310032015-03-08 12:41:15 +02001207
Takashi Iwaibba3a872013-12-02 15:38:16 +01001208 __module_get(THIS_MODULE);
Luis R. Rodriguezc868edf2014-07-02 09:55:05 -07001209 ret = _request_firmware(firmware_p, name, device,
1210 FW_OPT_UEVENT | FW_OPT_NO_WARN);
Takashi Iwaibba3a872013-12-02 15:38:16 +01001211 module_put(THIS_MODULE);
1212 return ret;
1213}
1214EXPORT_SYMBOL_GPL(request_firmware_direct);
Takashi Iwaibba3a872013-12-02 15:38:16 +01001215
Abhay Salunke6e3eaab2005-09-06 15:17:13 -07001216/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07001217 * release_firmware: - release the resource associated with a firmware image
Randy Dunlapeb8e3172005-10-30 15:03:01 -08001218 * @fw: firmware resource to release
Linus Torvalds1da177e2005-04-16 15:20:36 -07001219 **/
Dmitry Torokhovbcb9bd12010-03-13 23:49:18 -08001220void release_firmware(const struct firmware *fw)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001221{
1222 if (fw) {
Dmitry Torokhovbcb9bd12010-03-13 23:49:18 -08001223 if (!fw_is_builtin_firmware(fw))
1224 firmware_free_data(fw);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001225 kfree(fw);
1226 }
1227}
Daniel Mackf4945132013-05-23 22:17:18 +02001228EXPORT_SYMBOL(release_firmware);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001229
Linus Torvalds1da177e2005-04-16 15:20:36 -07001230/* Async support */
1231struct firmware_work {
1232 struct work_struct work;
1233 struct module *module;
1234 const char *name;
1235 struct device *device;
1236 void *context;
1237 void (*cont)(const struct firmware *fw, void *context);
Takashi Iwai14c4bae2013-12-02 15:38:18 +01001238 unsigned int opt_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001239};
1240
Stephen Boyda36cf842012-03-28 23:31:00 +02001241static void request_firmware_work_func(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001242{
Stephen Boyda36cf842012-03-28 23:31:00 +02001243 struct firmware_work *fw_work;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001244 const struct firmware *fw;
Dmitry Torokhovf8a4bd32010-06-04 00:54:43 -07001245
Stephen Boyda36cf842012-03-28 23:31:00 +02001246 fw_work = container_of(work, struct firmware_work, work);
Rafael J. Wysocki811fa402012-03-28 23:29:55 +02001247
Takashi Iwai4e0c92d2013-01-31 11:13:54 +01001248 _request_firmware(&fw, fw_work->name, fw_work->device,
Takashi Iwai14c4bae2013-12-02 15:38:18 +01001249 fw_work->opt_flags);
Johannes Berg9ebfbd42009-10-29 12:36:02 +01001250 fw_work->cont(fw, fw_work->context);
Takashi Iwai4e0c92d2013-01-31 11:13:54 +01001251 put_device(fw_work->device); /* taken in request_firmware_nowait() */
Johannes Berg9ebfbd42009-10-29 12:36:02 +01001252
Linus Torvalds1da177e2005-04-16 15:20:36 -07001253 module_put(fw_work->module);
1254 kfree(fw_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001255}
1256
1257/**
Ben Hutchings3c31f072010-02-14 14:18:53 +00001258 * request_firmware_nowait - asynchronous version of request_firmware
Randy Dunlapeb8e3172005-10-30 15:03:01 -08001259 * @module: module requesting the firmware
Kay Sievers312c0042005-11-16 09:00:00 +01001260 * @uevent: sends uevent to copy the firmware image if this flag
Randy Dunlapeb8e3172005-10-30 15:03:01 -08001261 * is non-zero else the firmware copy must be done manually.
1262 * @name: name of firmware file
1263 * @device: device for which firmware is being loaded
Johannes Berg9ebfbd42009-10-29 12:36:02 +01001264 * @gfp: allocation flags
Randy Dunlapeb8e3172005-10-30 15:03:01 -08001265 * @context: will be passed over to @cont, and
1266 * @fw may be %NULL if firmware request fails.
1267 * @cont: function will be called asynchronously when the firmware
1268 * request is over.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001269 *
Ming Lei0cfc1e12012-08-04 12:01:23 +08001270 * Caller must hold the reference count of @device.
1271 *
Ming Lei6f21a622012-08-04 12:01:24 +08001272 * Asynchronous variant of request_firmware() for user contexts:
1273 * - sleep for as small periods as possible since it may
1274 * increase kernel boot time of built-in device drivers
1275 * requesting firmware in their ->probe() methods, if
1276 * @gfp is GFP_KERNEL.
1277 *
1278 * - can't sleep at all if @gfp is GFP_ATOMIC.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001279 **/
1280int
1281request_firmware_nowait(
Bob Liu072fc8f2011-01-26 18:33:32 +08001282 struct module *module, bool uevent,
Johannes Berg9ebfbd42009-10-29 12:36:02 +01001283 const char *name, struct device *device, gfp_t gfp, void *context,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001284 void (*cont)(const struct firmware *fw, void *context))
1285{
Dmitry Torokhovf8a4bd32010-06-04 00:54:43 -07001286 struct firmware_work *fw_work;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001287
Andrei Opreaea310032015-03-08 12:41:15 +02001288 fw_work = kzalloc(sizeof(struct firmware_work), gfp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001289 if (!fw_work)
1290 return -ENOMEM;
Dmitry Torokhovf8a4bd32010-06-04 00:54:43 -07001291
1292 fw_work->module = module;
1293 fw_work->name = name;
1294 fw_work->device = device;
1295 fw_work->context = context;
1296 fw_work->cont = cont;
Takashi Iwai14c4bae2013-12-02 15:38:18 +01001297 fw_work->opt_flags = FW_OPT_NOWAIT | FW_OPT_FALLBACK |
Takashi Iwai5a1379e2014-06-04 17:48:15 +02001298 (uevent ? FW_OPT_UEVENT : FW_OPT_USERHELPER);
Dmitry Torokhovf8a4bd32010-06-04 00:54:43 -07001299
Linus Torvalds1da177e2005-04-16 15:20:36 -07001300 if (!try_module_get(module)) {
1301 kfree(fw_work);
1302 return -EFAULT;
1303 }
1304
Ming Lei0cfc1e12012-08-04 12:01:23 +08001305 get_device(fw_work->device);
Stephen Boyda36cf842012-03-28 23:31:00 +02001306 INIT_WORK(&fw_work->work, request_firmware_work_func);
1307 schedule_work(&fw_work->work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001308 return 0;
1309}
Daniel Mackf4945132013-05-23 22:17:18 +02001310EXPORT_SYMBOL(request_firmware_nowait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001311
Ming Lei90f890812013-06-20 12:30:16 +08001312#ifdef CONFIG_PM_SLEEP
1313static ASYNC_DOMAIN_EXCLUSIVE(fw_cache_domain);
1314
Ming Lei2887b392012-08-04 12:01:22 +08001315/**
1316 * cache_firmware - cache one firmware image in kernel memory space
1317 * @fw_name: the firmware image name
1318 *
1319 * Cache firmware in kernel memory so that drivers can use it when
1320 * system isn't ready for them to request firmware image from userspace.
1321 * Once it returns successfully, driver can use request_firmware or its
1322 * nowait version to get the cached firmware without any interacting
1323 * with userspace
1324 *
1325 * Return 0 if the firmware image has been cached successfully
1326 * Return !0 otherwise
1327 *
1328 */
Ming Lei93232e42013-06-06 20:01:47 +08001329static int cache_firmware(const char *fw_name)
Ming Lei2887b392012-08-04 12:01:22 +08001330{
1331 int ret;
1332 const struct firmware *fw;
1333
1334 pr_debug("%s: %s\n", __func__, fw_name);
1335
1336 ret = request_firmware(&fw, fw_name, NULL);
1337 if (!ret)
1338 kfree(fw);
1339
1340 pr_debug("%s: %s ret=%d\n", __func__, fw_name, ret);
1341
1342 return ret;
1343}
1344
Ming Lei6a2c1232013-06-26 09:28:17 +08001345static struct firmware_buf *fw_lookup_buf(const char *fw_name)
1346{
1347 struct firmware_buf *tmp;
1348 struct firmware_cache *fwc = &fw_cache;
1349
1350 spin_lock(&fwc->lock);
1351 tmp = __fw_lookup_buf(fw_name);
1352 spin_unlock(&fwc->lock);
1353
1354 return tmp;
1355}
1356
Ming Lei2887b392012-08-04 12:01:22 +08001357/**
1358 * uncache_firmware - remove one cached firmware image
1359 * @fw_name: the firmware image name
1360 *
1361 * Uncache one firmware image which has been cached successfully
1362 * before.
1363 *
1364 * Return 0 if the firmware cache has been removed successfully
1365 * Return !0 otherwise
1366 *
1367 */
Ming Lei93232e42013-06-06 20:01:47 +08001368static int uncache_firmware(const char *fw_name)
Ming Lei2887b392012-08-04 12:01:22 +08001369{
1370 struct firmware_buf *buf;
1371 struct firmware fw;
1372
1373 pr_debug("%s: %s\n", __func__, fw_name);
1374
1375 if (fw_get_builtin_firmware(&fw, fw_name))
1376 return 0;
1377
1378 buf = fw_lookup_buf(fw_name);
1379 if (buf) {
1380 fw_free_buf(buf);
1381 return 0;
1382 }
1383
1384 return -EINVAL;
1385}
1386
Ming Lei37276a52012-08-04 12:01:27 +08001387static struct fw_cache_entry *alloc_fw_cache_entry(const char *name)
1388{
1389 struct fw_cache_entry *fce;
1390
1391 fce = kzalloc(sizeof(*fce) + strlen(name) + 1, GFP_ATOMIC);
1392 if (!fce)
1393 goto exit;
1394
1395 strcpy(fce->name, name);
1396exit:
1397 return fce;
1398}
1399
Ming Lei373304f2012-10-09 12:01:01 +08001400static int __fw_entry_found(const char *name)
1401{
1402 struct firmware_cache *fwc = &fw_cache;
1403 struct fw_cache_entry *fce;
1404
1405 list_for_each_entry(fce, &fwc->fw_names, list) {
1406 if (!strcmp(fce->name, name))
1407 return 1;
1408 }
1409 return 0;
1410}
1411
Ming Leiac39b3e2012-08-20 19:04:16 +08001412static int fw_cache_piggyback_on_request(const char *name)
1413{
1414 struct firmware_cache *fwc = &fw_cache;
1415 struct fw_cache_entry *fce;
1416 int ret = 0;
1417
1418 spin_lock(&fwc->name_lock);
Ming Lei373304f2012-10-09 12:01:01 +08001419 if (__fw_entry_found(name))
1420 goto found;
Ming Leiac39b3e2012-08-20 19:04:16 +08001421
1422 fce = alloc_fw_cache_entry(name);
1423 if (fce) {
1424 ret = 1;
1425 list_add(&fce->list, &fwc->fw_names);
1426 pr_debug("%s: fw: %s\n", __func__, name);
1427 }
1428found:
1429 spin_unlock(&fwc->name_lock);
1430 return ret;
1431}
1432
Ming Lei37276a52012-08-04 12:01:27 +08001433static void free_fw_cache_entry(struct fw_cache_entry *fce)
1434{
1435 kfree(fce);
1436}
1437
1438static void __async_dev_cache_fw_image(void *fw_entry,
1439 async_cookie_t cookie)
1440{
1441 struct fw_cache_entry *fce = fw_entry;
1442 struct firmware_cache *fwc = &fw_cache;
1443 int ret;
1444
1445 ret = cache_firmware(fce->name);
Ming Leiac39b3e2012-08-20 19:04:16 +08001446 if (ret) {
1447 spin_lock(&fwc->name_lock);
1448 list_del(&fce->list);
1449 spin_unlock(&fwc->name_lock);
Ming Lei37276a52012-08-04 12:01:27 +08001450
Ming Leiac39b3e2012-08-20 19:04:16 +08001451 free_fw_cache_entry(fce);
1452 }
Ming Lei37276a52012-08-04 12:01:27 +08001453}
1454
1455/* called with dev->devres_lock held */
1456static void dev_create_fw_entry(struct device *dev, void *res,
1457 void *data)
1458{
1459 struct fw_name_devm *fwn = res;
1460 const char *fw_name = fwn->name;
1461 struct list_head *head = data;
1462 struct fw_cache_entry *fce;
1463
1464 fce = alloc_fw_cache_entry(fw_name);
1465 if (fce)
1466 list_add(&fce->list, head);
1467}
1468
1469static int devm_name_match(struct device *dev, void *res,
1470 void *match_data)
1471{
1472 struct fw_name_devm *fwn = res;
1473 return (fwn->magic == (unsigned long)match_data);
1474}
1475
Ming Leiab6dd8e2012-08-17 22:07:00 +08001476static void dev_cache_fw_image(struct device *dev, void *data)
Ming Lei37276a52012-08-04 12:01:27 +08001477{
1478 LIST_HEAD(todo);
1479 struct fw_cache_entry *fce;
1480 struct fw_cache_entry *fce_next;
1481 struct firmware_cache *fwc = &fw_cache;
1482
1483 devres_for_each_res(dev, fw_name_devm_release,
1484 devm_name_match, &fw_cache,
1485 dev_create_fw_entry, &todo);
1486
1487 list_for_each_entry_safe(fce, fce_next, &todo, list) {
1488 list_del(&fce->list);
1489
1490 spin_lock(&fwc->name_lock);
Ming Lei373304f2012-10-09 12:01:01 +08001491 /* only one cache entry for one firmware */
1492 if (!__fw_entry_found(fce->name)) {
Ming Lei373304f2012-10-09 12:01:01 +08001493 list_add(&fce->list, &fwc->fw_names);
1494 } else {
1495 free_fw_cache_entry(fce);
1496 fce = NULL;
1497 }
Ming Lei37276a52012-08-04 12:01:27 +08001498 spin_unlock(&fwc->name_lock);
1499
Ming Lei373304f2012-10-09 12:01:01 +08001500 if (fce)
Ming Leid28d3882012-10-09 12:01:04 +08001501 async_schedule_domain(__async_dev_cache_fw_image,
1502 (void *)fce,
1503 &fw_cache_domain);
Ming Lei37276a52012-08-04 12:01:27 +08001504 }
1505}
1506
1507static void __device_uncache_fw_images(void)
1508{
1509 struct firmware_cache *fwc = &fw_cache;
1510 struct fw_cache_entry *fce;
1511
1512 spin_lock(&fwc->name_lock);
1513 while (!list_empty(&fwc->fw_names)) {
1514 fce = list_entry(fwc->fw_names.next,
1515 struct fw_cache_entry, list);
1516 list_del(&fce->list);
1517 spin_unlock(&fwc->name_lock);
1518
1519 uncache_firmware(fce->name);
1520 free_fw_cache_entry(fce);
1521
1522 spin_lock(&fwc->name_lock);
1523 }
1524 spin_unlock(&fwc->name_lock);
1525}
1526
1527/**
1528 * device_cache_fw_images - cache devices' firmware
1529 *
1530 * If one device called request_firmware or its nowait version
1531 * successfully before, the firmware names are recored into the
1532 * device's devres link list, so device_cache_fw_images can call
1533 * cache_firmware() to cache these firmwares for the device,
1534 * then the device driver can load its firmwares easily at
1535 * time when system is not ready to complete loading firmware.
1536 */
1537static void device_cache_fw_images(void)
1538{
1539 struct firmware_cache *fwc = &fw_cache;
Ming Leiffe53f62012-08-04 12:01:28 +08001540 int old_timeout;
Ming Lei37276a52012-08-04 12:01:27 +08001541 DEFINE_WAIT(wait);
1542
1543 pr_debug("%s\n", __func__);
1544
Ming Lei373304f2012-10-09 12:01:01 +08001545 /* cancel uncache work */
1546 cancel_delayed_work_sync(&fwc->work);
1547
Ming Leiffe53f62012-08-04 12:01:28 +08001548 /*
1549 * use small loading timeout for caching devices' firmware
1550 * because all these firmware images have been loaded
1551 * successfully at lease once, also system is ready for
1552 * completing firmware loading now. The maximum size of
1553 * firmware in current distributions is about 2M bytes,
1554 * so 10 secs should be enough.
1555 */
1556 old_timeout = loading_timeout;
1557 loading_timeout = 10;
1558
Ming Leiac39b3e2012-08-20 19:04:16 +08001559 mutex_lock(&fw_lock);
1560 fwc->state = FW_LOADER_START_CACHE;
Ming Leiab6dd8e2012-08-17 22:07:00 +08001561 dpm_for_each_dev(NULL, dev_cache_fw_image);
Ming Leiac39b3e2012-08-20 19:04:16 +08001562 mutex_unlock(&fw_lock);
Ming Lei37276a52012-08-04 12:01:27 +08001563
1564 /* wait for completion of caching firmware for all devices */
Ming Leid28d3882012-10-09 12:01:04 +08001565 async_synchronize_full_domain(&fw_cache_domain);
Ming Leiffe53f62012-08-04 12:01:28 +08001566
1567 loading_timeout = old_timeout;
Ming Lei37276a52012-08-04 12:01:27 +08001568}
1569
1570/**
1571 * device_uncache_fw_images - uncache devices' firmware
1572 *
1573 * uncache all firmwares which have been cached successfully
1574 * by device_uncache_fw_images earlier
1575 */
1576static void device_uncache_fw_images(void)
1577{
1578 pr_debug("%s\n", __func__);
1579 __device_uncache_fw_images();
1580}
1581
1582static void device_uncache_fw_images_work(struct work_struct *work)
1583{
1584 device_uncache_fw_images();
1585}
1586
1587/**
1588 * device_uncache_fw_images_delay - uncache devices firmwares
1589 * @delay: number of milliseconds to delay uncache device firmwares
1590 *
1591 * uncache all devices's firmwares which has been cached successfully
1592 * by device_cache_fw_images after @delay milliseconds.
1593 */
1594static void device_uncache_fw_images_delay(unsigned long delay)
1595{
Shaibal Duttabce66182014-01-31 15:44:58 -08001596 queue_delayed_work(system_power_efficient_wq, &fw_cache.work,
1597 msecs_to_jiffies(delay));
Ming Lei37276a52012-08-04 12:01:27 +08001598}
1599
Ming Lei07646d92012-08-04 12:01:29 +08001600static int fw_pm_notify(struct notifier_block *notify_block,
1601 unsigned long mode, void *unused)
1602{
1603 switch (mode) {
1604 case PM_HIBERNATION_PREPARE:
1605 case PM_SUSPEND_PREPARE:
Sebastian Capellaf8d5b9e2014-02-18 17:52:08 -08001606 case PM_RESTORE_PREPARE:
Ming Leiaf5bc112013-05-27 18:30:04 +08001607 kill_requests_without_uevent();
Ming Lei07646d92012-08-04 12:01:29 +08001608 device_cache_fw_images();
1609 break;
1610
1611 case PM_POST_SUSPEND:
1612 case PM_POST_HIBERNATION:
1613 case PM_POST_RESTORE:
Ming Leiac39b3e2012-08-20 19:04:16 +08001614 /*
1615 * In case that system sleep failed and syscore_suspend is
1616 * not called.
1617 */
1618 mutex_lock(&fw_lock);
1619 fw_cache.state = FW_LOADER_NO_CACHE;
1620 mutex_unlock(&fw_lock);
1621
Ming Lei07646d92012-08-04 12:01:29 +08001622 device_uncache_fw_images_delay(10 * MSEC_PER_SEC);
1623 break;
1624 }
1625
1626 return 0;
1627}
Ming Lei07646d92012-08-04 12:01:29 +08001628
Ming Leiac39b3e2012-08-20 19:04:16 +08001629/* stop caching firmware once syscore_suspend is reached */
1630static int fw_suspend(void)
1631{
1632 fw_cache.state = FW_LOADER_NO_CACHE;
1633 return 0;
1634}
1635
1636static struct syscore_ops fw_syscore_ops = {
1637 .suspend = fw_suspend,
1638};
Ming Leicfe016b2012-09-08 17:32:30 +08001639#else
1640static int fw_cache_piggyback_on_request(const char *name)
1641{
1642 return 0;
1643}
1644#endif
Ming Leiac39b3e2012-08-20 19:04:16 +08001645
Ming Lei37276a52012-08-04 12:01:27 +08001646static void __init fw_cache_init(void)
1647{
1648 spin_lock_init(&fw_cache.lock);
1649 INIT_LIST_HEAD(&fw_cache.head);
Ming Leicfe016b2012-09-08 17:32:30 +08001650 fw_cache.state = FW_LOADER_NO_CACHE;
Ming Lei37276a52012-08-04 12:01:27 +08001651
Ming Leicfe016b2012-09-08 17:32:30 +08001652#ifdef CONFIG_PM_SLEEP
Ming Lei37276a52012-08-04 12:01:27 +08001653 spin_lock_init(&fw_cache.name_lock);
1654 INIT_LIST_HEAD(&fw_cache.fw_names);
Ming Lei37276a52012-08-04 12:01:27 +08001655
Ming Lei37276a52012-08-04 12:01:27 +08001656 INIT_DELAYED_WORK(&fw_cache.work,
1657 device_uncache_fw_images_work);
Ming Lei07646d92012-08-04 12:01:29 +08001658
1659 fw_cache.pm_notify.notifier_call = fw_pm_notify;
1660 register_pm_notifier(&fw_cache.pm_notify);
Ming Leiac39b3e2012-08-20 19:04:16 +08001661
1662 register_syscore_ops(&fw_syscore_ops);
Ming Leicfe016b2012-09-08 17:32:30 +08001663#endif
Ming Lei37276a52012-08-04 12:01:27 +08001664}
1665
Dmitry Torokhov673fae92010-03-13 23:49:13 -08001666static int __init firmware_class_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001667{
Ming Lei1f2b7952012-08-04 12:01:21 +08001668 fw_cache_init();
Takashi Iwai7b1269f2013-01-31 11:13:55 +01001669#ifdef CONFIG_FW_LOADER_USER_HELPER
Takashi Iwaife304142013-05-22 18:28:38 +02001670 register_reboot_notifier(&fw_shutdown_nb);
Dmitry Torokhov673fae92010-03-13 23:49:13 -08001671 return class_register(&firmware_class);
Takashi Iwai7b1269f2013-01-31 11:13:55 +01001672#else
1673 return 0;
1674#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001675}
Dmitry Torokhov673fae92010-03-13 23:49:13 -08001676
1677static void __exit firmware_class_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001678{
Ming Leicfe016b2012-09-08 17:32:30 +08001679#ifdef CONFIG_PM_SLEEP
Ming Leiac39b3e2012-08-20 19:04:16 +08001680 unregister_syscore_ops(&fw_syscore_ops);
Ming Lei07646d92012-08-04 12:01:29 +08001681 unregister_pm_notifier(&fw_cache.pm_notify);
Ming Leicfe016b2012-09-08 17:32:30 +08001682#endif
Takashi Iwai7b1269f2013-01-31 11:13:55 +01001683#ifdef CONFIG_FW_LOADER_USER_HELPER
Takashi Iwaife304142013-05-22 18:28:38 +02001684 unregister_reboot_notifier(&fw_shutdown_nb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001685 class_unregister(&firmware_class);
Takashi Iwai7b1269f2013-01-31 11:13:55 +01001686#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001687}
1688
Shaohua Lia30a6a22006-09-27 01:50:52 -07001689fs_initcall(firmware_class_init);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001690module_exit(firmware_class_exit);