blob: 8524450e75bd15d8f97327af84662b4af32fc3a7 [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
Luis R. Rodrigueze0fd9b12015-05-12 14:49:43 -0700153 const 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;
Luis R. Rodrigueze0fd9b12015-05-12 14:49:43 -0700158 const char *name;
Ming Lei37276a52012-08-04 12:01:27 +0800159};
160
Ming Leif531f05a2012-08-04 12:01:25 +0800161struct fw_name_devm {
162 unsigned long magic;
Luis R. Rodrigueze0fd9b12015-05-12 14:49:43 -0700163 const char *name;
Ming Leif531f05a2012-08-04 12:01:25 +0800164};
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
Luis R. Rodrigueze0fd9b12015-05-12 14:49:43 -0700184 buf = kzalloc(sizeof(*buf), GFP_ATOMIC);
Ming Lei1f2b7952012-08-04 12:01:21 +0800185 if (!buf)
Luis R. Rodrigueze0fd9b12015-05-12 14:49:43 -0700186 return NULL;
187
188 buf->fw_id = kstrdup_const(fw_name, GFP_ATOMIC);
189 if (!buf->fw_id) {
190 kfree(buf);
191 return NULL;
192 }
Ming Lei1f2b7952012-08-04 12:01:21 +0800193
194 kref_init(&buf->ref);
Ming Lei1f2b7952012-08-04 12:01:21 +0800195 buf->fwc = fwc;
196 init_completion(&buf->completion);
Takashi Iwaife304142013-05-22 18:28:38 +0200197#ifdef CONFIG_FW_LOADER_USER_HELPER
198 INIT_LIST_HEAD(&buf->pending_list);
199#endif
Ming Lei1f2b7952012-08-04 12:01:21 +0800200
201 pr_debug("%s: fw-%s buf=%p\n", __func__, fw_name, buf);
202
203 return buf;
204}
205
Ming Lei2887b392012-08-04 12:01:22 +0800206static struct firmware_buf *__fw_lookup_buf(const char *fw_name)
207{
208 struct firmware_buf *tmp;
209 struct firmware_cache *fwc = &fw_cache;
210
211 list_for_each_entry(tmp, &fwc->head, list)
212 if (!strcmp(tmp->fw_id, fw_name))
213 return tmp;
214 return NULL;
215}
216
Ming Lei1f2b7952012-08-04 12:01:21 +0800217static int fw_lookup_and_allocate_buf(const char *fw_name,
218 struct firmware_cache *fwc,
219 struct firmware_buf **buf)
220{
221 struct firmware_buf *tmp;
222
223 spin_lock(&fwc->lock);
Ming Lei2887b392012-08-04 12:01:22 +0800224 tmp = __fw_lookup_buf(fw_name);
225 if (tmp) {
226 kref_get(&tmp->ref);
227 spin_unlock(&fwc->lock);
228 *buf = tmp;
229 return 1;
230 }
Ming Lei1f2b7952012-08-04 12:01:21 +0800231 tmp = __allocate_fw_buf(fw_name, fwc);
232 if (tmp)
233 list_add(&tmp->list, &fwc->head);
234 spin_unlock(&fwc->lock);
235
236 *buf = tmp;
237
238 return tmp ? 0 : -ENOMEM;
239}
240
241static void __fw_free_buf(struct kref *ref)
Bart Van Assche98233b22014-01-04 14:20:36 +0100242 __releases(&fwc->lock)
Ming Lei1f2b7952012-08-04 12:01:21 +0800243{
244 struct firmware_buf *buf = to_fwbuf(ref);
245 struct firmware_cache *fwc = buf->fwc;
Ming Lei1f2b7952012-08-04 12:01:21 +0800246
247 pr_debug("%s: fw-%s buf=%p data=%p size=%u\n",
248 __func__, buf->fw_id, buf, buf->data,
249 (unsigned int)buf->size);
250
Ming Lei1f2b7952012-08-04 12:01:21 +0800251 list_del(&buf->list);
252 spin_unlock(&fwc->lock);
253
Takashi Iwai7b1269f2013-01-31 11:13:55 +0100254#ifdef CONFIG_FW_LOADER_USER_HELPER
Takashi Iwaicd7239f2013-01-31 11:13:56 +0100255 if (buf->is_paged_buf) {
Takashi Iwai7b1269f2013-01-31 11:13:55 +0100256 int i;
Ming Lei746058f2012-10-09 12:01:03 +0800257 vunmap(buf->data);
258 for (i = 0; i < buf->nr_pages; i++)
259 __free_page(buf->pages[i]);
260 kfree(buf->pages);
261 } else
Takashi Iwai7b1269f2013-01-31 11:13:55 +0100262#endif
Ming Lei746058f2012-10-09 12:01:03 +0800263 vfree(buf->data);
Luis R. Rodrigueze0fd9b12015-05-12 14:49:43 -0700264 kfree_const(buf->fw_id);
Ming Lei1f2b7952012-08-04 12:01:21 +0800265 kfree(buf);
266}
267
268static void fw_free_buf(struct firmware_buf *buf)
269{
Chuansheng Liubd9eb7f2012-11-10 01:27:22 +0800270 struct firmware_cache *fwc = buf->fwc;
271 spin_lock(&fwc->lock);
272 if (!kref_put(&buf->ref, __fw_free_buf))
273 spin_unlock(&fwc->lock);
Ming Lei1f2b7952012-08-04 12:01:21 +0800274}
275
Ming Lei746058f2012-10-09 12:01:03 +0800276/* direct firmware loading support */
Ming Lei27602842012-11-03 17:47:58 +0800277static char fw_path_para[256];
278static const char * const fw_path[] = {
279 fw_path_para,
Ming Lei746058f2012-10-09 12:01:03 +0800280 "/lib/firmware/updates/" UTS_RELEASE,
281 "/lib/firmware/updates",
282 "/lib/firmware/" UTS_RELEASE,
283 "/lib/firmware"
284};
285
Ming Lei27602842012-11-03 17:47:58 +0800286/*
287 * Typical usage is that passing 'firmware_class.path=$CUSTOMIZED_PATH'
288 * from kernel command line because firmware_class is generally built in
289 * kernel instead of module.
290 */
291module_param_string(path, fw_path_para, sizeof(fw_path_para), 0644);
292MODULE_PARM_DESC(path, "customized firmware image search path with a higher priority than default path");
293
Neil Horman3e358ac2013-09-06 15:36:08 -0400294static int fw_read_file_contents(struct file *file, struct firmware_buf *fw_buf)
Ming Lei746058f2012-10-09 12:01:03 +0800295{
Ben Hutchings08da2012013-12-28 16:53:59 +0100296 int size;
Ming Lei746058f2012-10-09 12:01:03 +0800297 char *buf;
Neil Horman3e358ac2013-09-06 15:36:08 -0400298 int rc;
Ming Lei746058f2012-10-09 12:01:03 +0800299
Dmitry Kasatkin6af6b162014-06-13 18:09:54 +0300300 if (!S_ISREG(file_inode(file)->i_mode))
301 return -EINVAL;
302 size = i_size_read(file_inode(file));
Luciano Coelho4adf07f2013-01-15 10:43:43 +0200303 if (size <= 0)
Neil Horman3e358ac2013-09-06 15:36:08 -0400304 return -EINVAL;
Ming Lei746058f2012-10-09 12:01:03 +0800305 buf = vmalloc(size);
306 if (!buf)
Neil Horman3e358ac2013-09-06 15:36:08 -0400307 return -ENOMEM;
308 rc = kernel_read(file, 0, buf, size);
309 if (rc != size) {
310 if (rc > 0)
311 rc = -EIO;
Kees Cook6593d922014-02-25 13:06:00 -0800312 goto fail;
Ming Lei746058f2012-10-09 12:01:03 +0800313 }
Kees Cook6593d922014-02-25 13:06:00 -0800314 rc = security_kernel_fw_from_file(file, buf, size);
315 if (rc)
316 goto fail;
Ming Lei746058f2012-10-09 12:01:03 +0800317 fw_buf->data = buf;
318 fw_buf->size = size;
Neil Horman3e358ac2013-09-06 15:36:08 -0400319 return 0;
Kees Cook6593d922014-02-25 13:06:00 -0800320fail:
321 vfree(buf);
322 return rc;
Ming Lei746058f2012-10-09 12:01:03 +0800323}
324
Neil Horman3e358ac2013-09-06 15:36:08 -0400325static int fw_get_filesystem_firmware(struct device *device,
Takashi Iwai4e0c92d2013-01-31 11:13:54 +0100326 struct firmware_buf *buf)
Ming Lei746058f2012-10-09 12:01:03 +0800327{
Luis R. Rodriguez1ba4de12015-05-12 14:49:41 -0700328 int i, len;
Neil Horman3e358ac2013-09-06 15:36:08 -0400329 int rc = -ENOENT;
Luis R. Rodriguezf5727b02015-05-12 14:49:40 -0700330 char *path;
331
332 path = __getname();
333 if (!path)
334 return -ENOMEM;
Ming Lei746058f2012-10-09 12:01:03 +0800335
336 for (i = 0; i < ARRAY_SIZE(fw_path); i++) {
337 struct file *file;
Ming Lei27602842012-11-03 17:47:58 +0800338
339 /* skip the unset customized path */
340 if (!fw_path[i][0])
341 continue;
342
Luis R. Rodriguez1ba4de12015-05-12 14:49:41 -0700343 len = snprintf(path, PATH_MAX, "%s/%s",
344 fw_path[i], buf->fw_id);
345 if (len >= PATH_MAX) {
346 rc = -ENAMETOOLONG;
347 break;
348 }
Ming Lei746058f2012-10-09 12:01:03 +0800349
350 file = filp_open(path, O_RDONLY, 0);
351 if (IS_ERR(file))
352 continue;
Neil Horman3e358ac2013-09-06 15:36:08 -0400353 rc = fw_read_file_contents(file, buf);
Ming Lei746058f2012-10-09 12:01:03 +0800354 fput(file);
Neil Horman3e358ac2013-09-06 15:36:08 -0400355 if (rc)
356 dev_warn(device, "firmware, attempted to load %s, but failed with error %d\n",
357 path, rc);
358 else
Ming Lei746058f2012-10-09 12:01:03 +0800359 break;
360 }
361 __putname(path);
Takashi Iwai4e0c92d2013-01-31 11:13:54 +0100362
Neil Horman3e358ac2013-09-06 15:36:08 -0400363 if (!rc) {
Takashi Iwai4e0c92d2013-01-31 11:13:54 +0100364 dev_dbg(device, "firmware: direct-loading firmware %s\n",
365 buf->fw_id);
366 mutex_lock(&fw_lock);
367 set_bit(FW_STATUS_DONE, &buf->status);
368 complete_all(&buf->completion);
369 mutex_unlock(&fw_lock);
370 }
371
Neil Horman3e358ac2013-09-06 15:36:08 -0400372 return rc;
Ming Lei746058f2012-10-09 12:01:03 +0800373}
374
Takashi Iwai7b1269f2013-01-31 11:13:55 +0100375/* firmware holds the ownership of pages */
376static void firmware_free_data(const struct firmware *fw)
377{
378 /* Loaded directly? */
379 if (!fw->priv) {
380 vfree(fw->data);
381 return;
382 }
383 fw_free_buf(fw->priv);
384}
385
Takashi Iwaicd7239f2013-01-31 11:13:56 +0100386/* store the pages buffer info firmware from buf */
387static void fw_set_page_data(struct firmware_buf *buf, struct firmware *fw)
388{
389 fw->priv = buf;
Takashi Iwai7b1269f2013-01-31 11:13:55 +0100390#ifdef CONFIG_FW_LOADER_USER_HELPER
Takashi Iwaicd7239f2013-01-31 11:13:56 +0100391 fw->pages = buf->pages;
392#endif
393 fw->size = buf->size;
394 fw->data = buf->data;
395
396 pr_debug("%s: fw-%s buf=%p data=%p size=%u\n",
397 __func__, buf->fw_id, buf, buf->data,
398 (unsigned int)buf->size);
399}
400
401#ifdef CONFIG_PM_SLEEP
402static void fw_name_devm_release(struct device *dev, void *res)
403{
404 struct fw_name_devm *fwn = res;
405
406 if (fwn->magic == (unsigned long)&fw_cache)
407 pr_debug("%s: fw_name-%s devm-%p released\n",
408 __func__, fwn->name, res);
Luis R. Rodrigueze0fd9b12015-05-12 14:49:43 -0700409 kfree_const(fwn->name);
Takashi Iwaicd7239f2013-01-31 11:13:56 +0100410}
411
412static int fw_devm_match(struct device *dev, void *res,
413 void *match_data)
414{
415 struct fw_name_devm *fwn = res;
416
417 return (fwn->magic == (unsigned long)&fw_cache) &&
418 !strcmp(fwn->name, match_data);
419}
420
421static struct fw_name_devm *fw_find_devm_name(struct device *dev,
422 const char *name)
423{
424 struct fw_name_devm *fwn;
425
426 fwn = devres_find(dev, fw_name_devm_release,
427 fw_devm_match, (void *)name);
428 return fwn;
429}
430
431/* add firmware name into devres list */
432static int fw_add_devm_name(struct device *dev, const char *name)
433{
434 struct fw_name_devm *fwn;
435
436 fwn = fw_find_devm_name(dev, name);
437 if (fwn)
438 return 1;
439
Luis R. Rodrigueze0fd9b12015-05-12 14:49:43 -0700440 fwn = devres_alloc(fw_name_devm_release, sizeof(struct fw_name_devm),
441 GFP_KERNEL);
Takashi Iwaicd7239f2013-01-31 11:13:56 +0100442 if (!fwn)
443 return -ENOMEM;
Luis R. Rodrigueze0fd9b12015-05-12 14:49:43 -0700444 fwn->name = kstrdup_const(name, GFP_KERNEL);
445 if (!fwn->name) {
Vladimir Zapolskiya885de62015-07-29 23:26:28 +0300446 devres_free(fwn);
Luis R. Rodrigueze0fd9b12015-05-12 14:49:43 -0700447 return -ENOMEM;
448 }
Takashi Iwaicd7239f2013-01-31 11:13:56 +0100449
450 fwn->magic = (unsigned long)&fw_cache;
Takashi Iwaicd7239f2013-01-31 11:13:56 +0100451 devres_add(dev, fwn);
452
453 return 0;
454}
455#else
456static int fw_add_devm_name(struct device *dev, const char *name)
457{
458 return 0;
459}
460#endif
461
462
463/*
464 * user-mode helper code
465 */
466#ifdef CONFIG_FW_LOADER_USER_HELPER
467struct firmware_priv {
Takashi Iwaicd7239f2013-01-31 11:13:56 +0100468 bool nowait;
469 struct device dev;
470 struct firmware_buf *buf;
471 struct firmware *fw;
472};
Takashi Iwai7b1269f2013-01-31 11:13:55 +0100473
Dmitry Torokhovf8a4bd32010-06-04 00:54:43 -0700474static struct firmware_priv *to_firmware_priv(struct device *dev)
475{
476 return container_of(dev, struct firmware_priv, dev);
477}
478
Greg Kroah-Hartman7068cb02013-06-19 20:26:43 -0700479static void __fw_load_abort(struct firmware_buf *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480{
Ming Lei87597932013-06-15 16:36:38 +0800481 /*
482 * There is a small window in which user can write to 'loading'
483 * between loading done and disappearance of 'loading'
484 */
485 if (test_bit(FW_STATUS_DONE, &buf->status))
486 return;
487
Takashi Iwaife304142013-05-22 18:28:38 +0200488 list_del_init(&buf->pending_list);
Ming Lei12446912012-08-04 12:01:20 +0800489 set_bit(FW_STATUS_ABORT, &buf->status);
Ming Lei1f2b7952012-08-04 12:01:21 +0800490 complete_all(&buf->completion);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491}
492
Greg Kroah-Hartman7068cb02013-06-19 20:26:43 -0700493static void fw_load_abort(struct firmware_priv *fw_priv)
494{
495 struct firmware_buf *buf = fw_priv->buf;
496
497 __fw_load_abort(buf);
Ming Lei87597932013-06-15 16:36:38 +0800498
499 /* avoid user action after loading abort */
500 fw_priv->buf = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501}
502
Takashi Iwai807be032013-01-31 11:13:57 +0100503#define is_fw_load_aborted(buf) \
504 test_bit(FW_STATUS_ABORT, &(buf)->status)
505
Takashi Iwaife304142013-05-22 18:28:38 +0200506static LIST_HEAD(pending_fw_head);
507
508/* reboot notifier for avoid deadlock with usermode_lock */
509static int fw_shutdown_notify(struct notifier_block *unused1,
510 unsigned long unused2, void *unused3)
511{
512 mutex_lock(&fw_lock);
513 while (!list_empty(&pending_fw_head))
Greg Kroah-Hartman7068cb02013-06-19 20:26:43 -0700514 __fw_load_abort(list_first_entry(&pending_fw_head,
Takashi Iwaife304142013-05-22 18:28:38 +0200515 struct firmware_buf,
516 pending_list));
517 mutex_unlock(&fw_lock);
518 return NOTIFY_DONE;
519}
520
521static struct notifier_block fw_shutdown_nb = {
522 .notifier_call = fw_shutdown_notify,
523};
524
Greg Kroah-Hartman14adbe52013-08-23 17:08:48 -0700525static ssize_t timeout_show(struct class *class, struct class_attribute *attr,
526 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527{
528 return sprintf(buf, "%d\n", loading_timeout);
529}
530
531/**
Randy Dunlapeb8e3172005-10-30 15:03:01 -0800532 * firmware_timeout_store - set number of seconds to wait for firmware
533 * @class: device class pointer
Randy Dunlape59817b2010-03-10 11:47:58 -0800534 * @attr: device attribute pointer
Randy Dunlapeb8e3172005-10-30 15:03:01 -0800535 * @buf: buffer to scan for timeout value
536 * @count: number of bytes in @buf
537 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538 * Sets the number of seconds to wait for the firmware. Once
Randy Dunlapeb8e3172005-10-30 15:03:01 -0800539 * this expires an error will be returned to the driver and no
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540 * firmware will be provided.
541 *
Randy Dunlapeb8e3172005-10-30 15:03:01 -0800542 * Note: zero means 'wait forever'.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543 **/
Greg Kroah-Hartman14adbe52013-08-23 17:08:48 -0700544static ssize_t timeout_store(struct class *class, struct class_attribute *attr,
545 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546{
547 loading_timeout = simple_strtol(buf, NULL, 10);
Stanislaw W. Gruszkab92eac02005-06-28 20:44:51 -0700548 if (loading_timeout < 0)
549 loading_timeout = 0;
Dmitry Torokhovf8a4bd32010-06-04 00:54:43 -0700550
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551 return count;
552}
553
Dmitry Torokhov673fae92010-03-13 23:49:13 -0800554static struct class_attribute firmware_class_attrs[] = {
Greg Kroah-Hartman14adbe52013-08-23 17:08:48 -0700555 __ATTR_RW(timeout),
Dmitry Torokhov673fae92010-03-13 23:49:13 -0800556 __ATTR_NULL
557};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558
Dmitry Torokhov673fae92010-03-13 23:49:13 -0800559static void fw_dev_release(struct device *dev)
560{
Dmitry Torokhovf8a4bd32010-06-04 00:54:43 -0700561 struct firmware_priv *fw_priv = to_firmware_priv(dev);
Ming Lei65710cb2012-08-04 12:01:16 +0800562
Dmitry Torokhov673fae92010-03-13 23:49:13 -0800563 kfree(fw_priv);
Dmitry Torokhov673fae92010-03-13 23:49:13 -0800564}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565
Linus Torvalds6f957722015-07-09 11:20:01 -0700566static int do_firmware_uevent(struct firmware_priv *fw_priv, struct kobj_uevent_env *env)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567{
Ming Lei12446912012-08-04 12:01:20 +0800568 if (add_uevent_var(env, "FIRMWARE=%s", fw_priv->buf->fw_id))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569 return -ENOMEM;
Kay Sievers7eff2e72007-08-14 15:15:12 +0200570 if (add_uevent_var(env, "TIMEOUT=%i", loading_timeout))
kay.sievers@vrfy.org68970892005-04-18 21:57:31 -0700571 return -ENOMEM;
Johannes Berge9045f92010-03-29 17:57:20 +0200572 if (add_uevent_var(env, "ASYNC=%d", fw_priv->nowait))
573 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574
575 return 0;
576}
577
Linus Torvalds6f957722015-07-09 11:20:01 -0700578static int firmware_uevent(struct device *dev, struct kobj_uevent_env *env)
579{
580 struct firmware_priv *fw_priv = to_firmware_priv(dev);
581 int err = 0;
582
583 mutex_lock(&fw_lock);
584 if (fw_priv->buf)
585 err = do_firmware_uevent(fw_priv, env);
586 mutex_unlock(&fw_lock);
587 return err;
588}
589
Adrian Bunk1b81d662006-05-20 15:00:16 -0700590static struct class firmware_class = {
591 .name = "firmware",
Dmitry Torokhov673fae92010-03-13 23:49:13 -0800592 .class_attrs = firmware_class_attrs,
Greg Kroah-Hartmane55c8792006-09-14 07:30:59 -0700593 .dev_uevent = firmware_uevent,
594 .dev_release = fw_dev_release,
Adrian Bunk1b81d662006-05-20 15:00:16 -0700595};
596
Greg Kroah-Hartmane55c8792006-09-14 07:30:59 -0700597static ssize_t firmware_loading_show(struct device *dev,
598 struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599{
Dmitry Torokhovf8a4bd32010-06-04 00:54:43 -0700600 struct firmware_priv *fw_priv = to_firmware_priv(dev);
Ming Lei87597932013-06-15 16:36:38 +0800601 int loading = 0;
602
603 mutex_lock(&fw_lock);
604 if (fw_priv->buf)
605 loading = test_bit(FW_STATUS_LOADING, &fw_priv->buf->status);
606 mutex_unlock(&fw_lock);
Dmitry Torokhovf8a4bd32010-06-04 00:54:43 -0700607
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608 return sprintf(buf, "%d\n", loading);
609}
610
David Woodhouse6e03a202009-04-09 22:04:07 -0700611/* Some architectures don't have PAGE_KERNEL_RO */
612#ifndef PAGE_KERNEL_RO
613#define PAGE_KERNEL_RO PAGE_KERNEL
614#endif
Ming Lei253c9242012-10-09 12:01:02 +0800615
616/* one pages buffer should be mapped/unmapped only once */
617static int fw_map_pages_buf(struct firmware_buf *buf)
618{
Takashi Iwaicd7239f2013-01-31 11:13:56 +0100619 if (!buf->is_paged_buf)
Ming Lei746058f2012-10-09 12:01:03 +0800620 return 0;
621
Markus Elfringdaa3d672014-11-19 11:38:38 +0100622 vunmap(buf->data);
Ming Lei253c9242012-10-09 12:01:02 +0800623 buf->data = vmap(buf->pages, buf->nr_pages, 0, PAGE_KERNEL_RO);
624 if (!buf->data)
625 return -ENOMEM;
626 return 0;
627}
628
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629/**
Randy Dunlapeb8e3172005-10-30 15:03:01 -0800630 * firmware_loading_store - set value in the 'loading' control file
Greg Kroah-Hartmane55c8792006-09-14 07:30:59 -0700631 * @dev: device pointer
Randy Dunlapaf9997e2006-12-22 01:06:52 -0800632 * @attr: device attribute pointer
Randy Dunlapeb8e3172005-10-30 15:03:01 -0800633 * @buf: buffer to scan for loading control value
634 * @count: number of bytes in @buf
635 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636 * The relevant values are:
637 *
638 * 1: Start a load, discarding any previous partial load.
Randy Dunlapeb8e3172005-10-30 15:03:01 -0800639 * 0: Conclude the load and hand the data to the driver code.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640 * -1: Conclude the load with an error and discard any written data.
641 **/
Greg Kroah-Hartmane55c8792006-09-14 07:30:59 -0700642static ssize_t firmware_loading_store(struct device *dev,
643 struct device_attribute *attr,
644 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645{
Dmitry Torokhovf8a4bd32010-06-04 00:54:43 -0700646 struct firmware_priv *fw_priv = to_firmware_priv(dev);
Ming Lei87597932013-06-15 16:36:38 +0800647 struct firmware_buf *fw_buf;
Kees Cook6593d922014-02-25 13:06:00 -0800648 ssize_t written = count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649 int loading = simple_strtol(buf, NULL, 10);
David Woodhouse6e03a202009-04-09 22:04:07 -0700650 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651
Neil Hormaneea915b2012-01-02 15:31:23 -0500652 mutex_lock(&fw_lock);
Ming Lei87597932013-06-15 16:36:38 +0800653 fw_buf = fw_priv->buf;
Ming Lei12446912012-08-04 12:01:20 +0800654 if (!fw_buf)
Neil Hormaneea915b2012-01-02 15:31:23 -0500655 goto out;
656
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657 switch (loading) {
658 case 1:
Ming Lei65710cb2012-08-04 12:01:16 +0800659 /* discarding any previous partial load */
Ming Lei12446912012-08-04 12:01:20 +0800660 if (!test_bit(FW_STATUS_DONE, &fw_buf->status)) {
661 for (i = 0; i < fw_buf->nr_pages; i++)
662 __free_page(fw_buf->pages[i]);
663 kfree(fw_buf->pages);
664 fw_buf->pages = NULL;
665 fw_buf->page_array_size = 0;
666 fw_buf->nr_pages = 0;
667 set_bit(FW_STATUS_LOADING, &fw_buf->status);
Ming Lei28eefa72012-08-04 12:01:17 +0800668 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669 break;
670 case 0:
Ming Lei12446912012-08-04 12:01:20 +0800671 if (test_bit(FW_STATUS_LOADING, &fw_buf->status)) {
Kees Cook6593d922014-02-25 13:06:00 -0800672 int rc;
673
Ming Lei12446912012-08-04 12:01:20 +0800674 set_bit(FW_STATUS_DONE, &fw_buf->status);
675 clear_bit(FW_STATUS_LOADING, &fw_buf->status);
Ming Lei253c9242012-10-09 12:01:02 +0800676
677 /*
678 * Several loading requests may be pending on
679 * one same firmware buf, so let all requests
680 * see the mapped 'buf->data' once the loading
681 * is completed.
682 * */
Kees Cook6593d922014-02-25 13:06:00 -0800683 rc = fw_map_pages_buf(fw_buf);
684 if (rc)
zhang jun2b1278c2014-02-13 15:18:47 +0800685 dev_err(dev, "%s: map pages failed\n",
686 __func__);
Kees Cook6593d922014-02-25 13:06:00 -0800687 else
688 rc = security_kernel_fw_from_file(NULL,
689 fw_buf->data, fw_buf->size);
690
691 /*
692 * Same logic as fw_load_abort, only the DONE bit
693 * is ignored and we set ABORT only on failure.
694 */
Takashi Iwaife304142013-05-22 18:28:38 +0200695 list_del_init(&fw_buf->pending_list);
Kees Cook6593d922014-02-25 13:06:00 -0800696 if (rc) {
697 set_bit(FW_STATUS_ABORT, &fw_buf->status);
698 written = rc;
699 }
Ming Lei1f2b7952012-08-04 12:01:21 +0800700 complete_all(&fw_buf->completion);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701 break;
702 }
703 /* fallthrough */
704 default:
Bjorn Helgaas266a8132008-10-15 22:04:20 -0700705 dev_err(dev, "%s: unexpected value (%d)\n", __func__, loading);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706 /* fallthrough */
707 case -1:
708 fw_load_abort(fw_priv);
709 break;
710 }
Neil Hormaneea915b2012-01-02 15:31:23 -0500711out:
712 mutex_unlock(&fw_lock);
Kees Cook6593d922014-02-25 13:06:00 -0800713 return written;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714}
715
Greg Kroah-Hartmane55c8792006-09-14 07:30:59 -0700716static DEVICE_ATTR(loading, 0644, firmware_loading_show, firmware_loading_store);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717
Dmitry Torokhovf8a4bd32010-06-04 00:54:43 -0700718static ssize_t firmware_data_read(struct file *filp, struct kobject *kobj,
719 struct bin_attribute *bin_attr,
720 char *buffer, loff_t offset, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721{
Lars-Peter Clausenb0d1f802012-07-03 18:49:36 +0200722 struct device *dev = kobj_to_dev(kobj);
Dmitry Torokhovf8a4bd32010-06-04 00:54:43 -0700723 struct firmware_priv *fw_priv = to_firmware_priv(dev);
Ming Lei12446912012-08-04 12:01:20 +0800724 struct firmware_buf *buf;
Akinobu Mitaf37e6612008-07-25 01:48:23 -0700725 ssize_t ret_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726
Laura Garciacad1e552006-05-23 23:22:38 +0200727 mutex_lock(&fw_lock);
Ming Lei12446912012-08-04 12:01:20 +0800728 buf = fw_priv->buf;
729 if (!buf || test_bit(FW_STATUS_DONE, &buf->status)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730 ret_count = -ENODEV;
731 goto out;
732 }
Ming Lei12446912012-08-04 12:01:20 +0800733 if (offset > buf->size) {
Jiri Slaby308975f2009-06-21 23:57:31 +0200734 ret_count = 0;
735 goto out;
736 }
Ming Lei12446912012-08-04 12:01:20 +0800737 if (count > buf->size - offset)
738 count = buf->size - offset;
David Woodhouse6e03a202009-04-09 22:04:07 -0700739
740 ret_count = count;
741
742 while (count) {
743 void *page_data;
744 int page_nr = offset >> PAGE_SHIFT;
745 int page_ofs = offset & (PAGE_SIZE-1);
746 int page_cnt = min_t(size_t, PAGE_SIZE - page_ofs, count);
747
Ming Lei12446912012-08-04 12:01:20 +0800748 page_data = kmap(buf->pages[page_nr]);
David Woodhouse6e03a202009-04-09 22:04:07 -0700749
750 memcpy(buffer, page_data + page_ofs, page_cnt);
751
Ming Lei12446912012-08-04 12:01:20 +0800752 kunmap(buf->pages[page_nr]);
David Woodhouse6e03a202009-04-09 22:04:07 -0700753 buffer += page_cnt;
754 offset += page_cnt;
755 count -= page_cnt;
756 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700757out:
Laura Garciacad1e552006-05-23 23:22:38 +0200758 mutex_unlock(&fw_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759 return ret_count;
760}
Randy Dunlapeb8e3172005-10-30 15:03:01 -0800761
Dmitry Torokhovf8a4bd32010-06-04 00:54:43 -0700762static int fw_realloc_buffer(struct firmware_priv *fw_priv, int min_size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763{
Ming Lei12446912012-08-04 12:01:20 +0800764 struct firmware_buf *buf = fw_priv->buf;
Fabian Fredericka76040d2014-07-01 21:13:30 +0200765 int pages_needed = PAGE_ALIGN(min_size) >> PAGE_SHIFT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766
David Woodhouse6e03a202009-04-09 22:04:07 -0700767 /* If the array of pages is too small, grow it... */
Ming Lei12446912012-08-04 12:01:20 +0800768 if (buf->page_array_size < pages_needed) {
David Woodhouse6e03a202009-04-09 22:04:07 -0700769 int new_array_size = max(pages_needed,
Ming Lei12446912012-08-04 12:01:20 +0800770 buf->page_array_size * 2);
David Woodhouse6e03a202009-04-09 22:04:07 -0700771 struct page **new_pages;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772
David Woodhouse6e03a202009-04-09 22:04:07 -0700773 new_pages = kmalloc(new_array_size * sizeof(void *),
774 GFP_KERNEL);
775 if (!new_pages) {
776 fw_load_abort(fw_priv);
777 return -ENOMEM;
778 }
Ming Lei12446912012-08-04 12:01:20 +0800779 memcpy(new_pages, buf->pages,
780 buf->page_array_size * sizeof(void *));
781 memset(&new_pages[buf->page_array_size], 0, sizeof(void *) *
782 (new_array_size - buf->page_array_size));
783 kfree(buf->pages);
784 buf->pages = new_pages;
785 buf->page_array_size = new_array_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786 }
David Woodhouse6e03a202009-04-09 22:04:07 -0700787
Ming Lei12446912012-08-04 12:01:20 +0800788 while (buf->nr_pages < pages_needed) {
789 buf->pages[buf->nr_pages] =
David Woodhouse6e03a202009-04-09 22:04:07 -0700790 alloc_page(GFP_KERNEL | __GFP_HIGHMEM);
791
Ming Lei12446912012-08-04 12:01:20 +0800792 if (!buf->pages[buf->nr_pages]) {
David Woodhouse6e03a202009-04-09 22:04:07 -0700793 fw_load_abort(fw_priv);
794 return -ENOMEM;
795 }
Ming Lei12446912012-08-04 12:01:20 +0800796 buf->nr_pages++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798 return 0;
799}
800
801/**
Randy Dunlapeb8e3172005-10-30 15:03:01 -0800802 * firmware_data_write - write method for firmware
Chris Wright2c3c8be2010-05-12 18:28:57 -0700803 * @filp: open sysfs file
Greg Kroah-Hartmane55c8792006-09-14 07:30:59 -0700804 * @kobj: kobject for the device
Randy Dunlap42e61f42007-07-23 21:42:11 -0700805 * @bin_attr: bin_attr structure
Randy Dunlapeb8e3172005-10-30 15:03:01 -0800806 * @buffer: buffer being written
807 * @offset: buffer offset for write in total data store area
808 * @count: buffer size
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809 *
Randy Dunlapeb8e3172005-10-30 15:03:01 -0800810 * Data written to the 'data' attribute will be later handed to
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811 * the driver as a firmware image.
812 **/
Dmitry Torokhovf8a4bd32010-06-04 00:54:43 -0700813static ssize_t firmware_data_write(struct file *filp, struct kobject *kobj,
814 struct bin_attribute *bin_attr,
815 char *buffer, loff_t offset, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816{
Lars-Peter Clausenb0d1f802012-07-03 18:49:36 +0200817 struct device *dev = kobj_to_dev(kobj);
Dmitry Torokhovf8a4bd32010-06-04 00:54:43 -0700818 struct firmware_priv *fw_priv = to_firmware_priv(dev);
Ming Lei12446912012-08-04 12:01:20 +0800819 struct firmware_buf *buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820 ssize_t retval;
821
822 if (!capable(CAP_SYS_RAWIO))
823 return -EPERM;
Stanislaw W. Gruszkab92eac02005-06-28 20:44:51 -0700824
Laura Garciacad1e552006-05-23 23:22:38 +0200825 mutex_lock(&fw_lock);
Ming Lei12446912012-08-04 12:01:20 +0800826 buf = fw_priv->buf;
827 if (!buf || test_bit(FW_STATUS_DONE, &buf->status)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828 retval = -ENODEV;
829 goto out;
830 }
Ming Lei65710cb2012-08-04 12:01:16 +0800831
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832 retval = fw_realloc_buffer(fw_priv, offset + count);
833 if (retval)
834 goto out;
835
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836 retval = count;
David Woodhouse6e03a202009-04-09 22:04:07 -0700837
838 while (count) {
839 void *page_data;
840 int page_nr = offset >> PAGE_SHIFT;
841 int page_ofs = offset & (PAGE_SIZE - 1);
842 int page_cnt = min_t(size_t, PAGE_SIZE - page_ofs, count);
843
Ming Lei12446912012-08-04 12:01:20 +0800844 page_data = kmap(buf->pages[page_nr]);
David Woodhouse6e03a202009-04-09 22:04:07 -0700845
846 memcpy(page_data + page_ofs, buffer, page_cnt);
847
Ming Lei12446912012-08-04 12:01:20 +0800848 kunmap(buf->pages[page_nr]);
David Woodhouse6e03a202009-04-09 22:04:07 -0700849 buffer += page_cnt;
850 offset += page_cnt;
851 count -= page_cnt;
852 }
853
Ming Lei12446912012-08-04 12:01:20 +0800854 buf->size = max_t(size_t, offset, buf->size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855out:
Laura Garciacad1e552006-05-23 23:22:38 +0200856 mutex_unlock(&fw_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857 return retval;
858}
Randy Dunlapeb8e3172005-10-30 15:03:01 -0800859
Dmitry Torokhov0983ca22010-06-04 00:54:37 -0700860static struct bin_attribute firmware_attr_data = {
861 .attr = { .name = "data", .mode = 0644 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862 .size = 0,
863 .read = firmware_data_read,
864 .write = firmware_data_write,
865};
866
Takashi Iwai46239902015-02-04 15:18:07 +0100867static struct attribute *fw_dev_attrs[] = {
868 &dev_attr_loading.attr,
869 NULL
870};
871
872static struct bin_attribute *fw_dev_bin_attrs[] = {
873 &firmware_attr_data,
874 NULL
875};
876
877static const struct attribute_group fw_dev_attr_group = {
878 .attrs = fw_dev_attrs,
879 .bin_attrs = fw_dev_bin_attrs,
880};
881
882static const struct attribute_group *fw_dev_attr_groups[] = {
883 &fw_dev_attr_group,
884 NULL
885};
886
Dmitry Torokhovf8a4bd32010-06-04 00:54:43 -0700887static struct firmware_priv *
Stephen Boyddddb5542012-03-28 23:30:43 +0200888fw_create_instance(struct firmware *firmware, const char *fw_name,
Takashi Iwai14c4bae2013-12-02 15:38:18 +0100889 struct device *device, unsigned int opt_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700890{
Dmitry Torokhovf8a4bd32010-06-04 00:54:43 -0700891 struct firmware_priv *fw_priv;
892 struct device *f_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700893
Ming Lei12446912012-08-04 12:01:20 +0800894 fw_priv = kzalloc(sizeof(*fw_priv), GFP_KERNEL);
Dmitry Torokhovf8a4bd32010-06-04 00:54:43 -0700895 if (!fw_priv) {
Ming Lei12446912012-08-04 12:01:20 +0800896 fw_priv = ERR_PTR(-ENOMEM);
897 goto exit;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700898 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700899
Takashi Iwai14c4bae2013-12-02 15:38:18 +0100900 fw_priv->nowait = !!(opt_flags & FW_OPT_NOWAIT);
Ming Lei1f2b7952012-08-04 12:01:21 +0800901 fw_priv->fw = firmware;
Dmitry Torokhovf8a4bd32010-06-04 00:54:43 -0700902 f_dev = &fw_priv->dev;
903
904 device_initialize(f_dev);
Ming Lei99c2aa72012-08-04 12:01:19 +0800905 dev_set_name(f_dev, "%s", fw_name);
Greg Kroah-Hartmane55c8792006-09-14 07:30:59 -0700906 f_dev->parent = device;
907 f_dev->class = &firmware_class;
Takashi Iwai46239902015-02-04 15:18:07 +0100908 f_dev->groups = fw_dev_attr_groups;
Ming Lei12446912012-08-04 12:01:20 +0800909exit:
Dmitry Torokhovf8a4bd32010-06-04 00:54:43 -0700910 return fw_priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700911}
Takashi Iwaicd7239f2013-01-31 11:13:56 +0100912
913/* load a firmware via user helper */
Takashi Iwai14c4bae2013-12-02 15:38:18 +0100914static int _request_firmware_load(struct firmware_priv *fw_priv,
915 unsigned int opt_flags, long timeout)
Takashi Iwaicd7239f2013-01-31 11:13:56 +0100916{
917 int retval = 0;
918 struct device *f_dev = &fw_priv->dev;
919 struct firmware_buf *buf = fw_priv->buf;
920
921 /* fall back on userspace loading */
922 buf->is_paged_buf = true;
923
924 dev_set_uevent_suppress(f_dev, true);
925
Takashi Iwaicd7239f2013-01-31 11:13:56 +0100926 retval = device_add(f_dev);
927 if (retval) {
928 dev_err(f_dev, "%s: device_register failed\n", __func__);
929 goto err_put_dev;
930 }
931
Maxime Bizon1eeeef12013-08-29 20:28:13 +0200932 mutex_lock(&fw_lock);
933 list_add(&buf->pending_list, &pending_fw_head);
934 mutex_unlock(&fw_lock);
935
Takashi Iwai14c4bae2013-12-02 15:38:18 +0100936 if (opt_flags & FW_OPT_UEVENT) {
Ming Leiaf5bc112013-05-27 18:30:04 +0800937 buf->need_uevent = true;
Takashi Iwaicd7239f2013-01-31 11:13:56 +0100938 dev_set_uevent_suppress(f_dev, false);
939 dev_dbg(f_dev, "firmware: requesting %s\n", buf->fw_id);
Takashi Iwaicd7239f2013-01-31 11:13:56 +0100940 kobject_uevent(&fw_priv->dev.kobj, KOBJ_ADD);
Ming Lei68ff2a02015-01-13 00:02:01 +0800941 } else {
942 timeout = MAX_JIFFY_OFFSET;
Takashi Iwaicd7239f2013-01-31 11:13:56 +0100943 }
944
Ming Lei68ff2a02015-01-13 00:02:01 +0800945 retval = wait_for_completion_interruptible_timeout(&buf->completion,
946 timeout);
947 if (retval == -ERESTARTSYS || !retval) {
Ming Lei0cb64242015-01-13 00:01:35 +0800948 mutex_lock(&fw_lock);
949 fw_load_abort(fw_priv);
950 mutex_unlock(&fw_lock);
Zahari Doychevef518cc2015-03-10 10:45:40 +0100951 } else if (retval > 0) {
952 retval = 0;
Ming Lei0cb64242015-01-13 00:01:35 +0800953 }
Takashi Iwaicd7239f2013-01-31 11:13:56 +0100954
Shuah Khan0542ad82014-07-22 18:10:38 -0600955 if (is_fw_load_aborted(buf))
956 retval = -EAGAIN;
957 else if (!buf->data)
zhang jun2b1278c2014-02-13 15:18:47 +0800958 retval = -ENOMEM;
Takashi Iwaicd7239f2013-01-31 11:13:56 +0100959
Takashi Iwaicd7239f2013-01-31 11:13:56 +0100960 device_del(f_dev);
961err_put_dev:
962 put_device(f_dev);
963 return retval;
964}
965
966static int fw_load_from_user_helper(struct firmware *firmware,
967 const char *name, struct device *device,
Takashi Iwai14c4bae2013-12-02 15:38:18 +0100968 unsigned int opt_flags, long timeout)
Takashi Iwaicd7239f2013-01-31 11:13:56 +0100969{
970 struct firmware_priv *fw_priv;
971
Takashi Iwai14c4bae2013-12-02 15:38:18 +0100972 fw_priv = fw_create_instance(firmware, name, device, opt_flags);
Takashi Iwaicd7239f2013-01-31 11:13:56 +0100973 if (IS_ERR(fw_priv))
974 return PTR_ERR(fw_priv);
975
976 fw_priv->buf = firmware->priv;
Takashi Iwai14c4bae2013-12-02 15:38:18 +0100977 return _request_firmware_load(fw_priv, opt_flags, timeout);
Takashi Iwaicd7239f2013-01-31 11:13:56 +0100978}
Ming Leiddf1f062013-06-04 10:01:13 +0800979
Ming Lei5b7cb7a2013-06-06 19:52:54 +0800980#ifdef CONFIG_PM_SLEEP
Ming Leiddf1f062013-06-04 10:01:13 +0800981/* kill pending requests without uevent to avoid blocking suspend */
982static void kill_requests_without_uevent(void)
983{
984 struct firmware_buf *buf;
985 struct firmware_buf *next;
986
987 mutex_lock(&fw_lock);
988 list_for_each_entry_safe(buf, next, &pending_fw_head, pending_list) {
989 if (!buf->need_uevent)
Greg Kroah-Hartman7068cb02013-06-19 20:26:43 -0700990 __fw_load_abort(buf);
Ming Leiddf1f062013-06-04 10:01:13 +0800991 }
992 mutex_unlock(&fw_lock);
993}
Ming Lei5b7cb7a2013-06-06 19:52:54 +0800994#endif
Ming Leiddf1f062013-06-04 10:01:13 +0800995
Takashi Iwaicd7239f2013-01-31 11:13:56 +0100996#else /* CONFIG_FW_LOADER_USER_HELPER */
997static inline int
998fw_load_from_user_helper(struct firmware *firmware, const char *name,
Takashi Iwai14c4bae2013-12-02 15:38:18 +0100999 struct device *device, unsigned int opt_flags,
Takashi Iwaicd7239f2013-01-31 11:13:56 +01001000 long timeout)
1001{
1002 return -ENOENT;
1003}
Takashi Iwai807be032013-01-31 11:13:57 +01001004
1005/* No abort during direct loading */
1006#define is_fw_load_aborted(buf) false
1007
Ming Lei5b7cb7a2013-06-06 19:52:54 +08001008#ifdef CONFIG_PM_SLEEP
Ming Leiddf1f062013-06-04 10:01:13 +08001009static inline void kill_requests_without_uevent(void) { }
Ming Lei5b7cb7a2013-06-06 19:52:54 +08001010#endif
Ming Leiddf1f062013-06-04 10:01:13 +08001011
Takashi Iwai7b1269f2013-01-31 11:13:55 +01001012#endif /* CONFIG_FW_LOADER_USER_HELPER */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001013
Ming Leif531f05a2012-08-04 12:01:25 +08001014
Takashi Iwai4e0c92d2013-01-31 11:13:54 +01001015/* wait until the shared firmware_buf becomes ready (or error) */
1016static int sync_cached_firmware_buf(struct firmware_buf *buf)
Ming Lei1f2b7952012-08-04 12:01:21 +08001017{
Takashi Iwai4e0c92d2013-01-31 11:13:54 +01001018 int ret = 0;
1019
1020 mutex_lock(&fw_lock);
1021 while (!test_bit(FW_STATUS_DONE, &buf->status)) {
Takashi Iwai807be032013-01-31 11:13:57 +01001022 if (is_fw_load_aborted(buf)) {
Takashi Iwai4e0c92d2013-01-31 11:13:54 +01001023 ret = -ENOENT;
1024 break;
1025 }
1026 mutex_unlock(&fw_lock);
Kweh, Hock Leong000deba2014-11-18 10:56:59 +08001027 ret = wait_for_completion_interruptible(&buf->completion);
Takashi Iwai4e0c92d2013-01-31 11:13:54 +01001028 mutex_lock(&fw_lock);
1029 }
1030 mutex_unlock(&fw_lock);
1031 return ret;
Ming Lei1f2b7952012-08-04 12:01:21 +08001032}
1033
Takashi Iwai4e0c92d2013-01-31 11:13:54 +01001034/* prepare firmware and firmware_buf structs;
1035 * return 0 if a firmware is already assigned, 1 if need to load one,
1036 * or a negative error code
1037 */
1038static int
1039_request_firmware_prepare(struct firmware **firmware_p, const char *name,
1040 struct device *device)
Dmitry Torokhovf8a4bd32010-06-04 00:54:43 -07001041{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001042 struct firmware *firmware;
Ming Lei1f2b7952012-08-04 12:01:21 +08001043 struct firmware_buf *buf;
1044 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001045
Jiri Slaby4aed0642005-09-13 01:25:01 -07001046 *firmware_p = firmware = kzalloc(sizeof(*firmware), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001047 if (!firmware) {
Bjorn Helgaas266a8132008-10-15 22:04:20 -07001048 dev_err(device, "%s: kmalloc(struct firmware) failed\n",
1049 __func__);
Takashi Iwai4e0c92d2013-01-31 11:13:54 +01001050 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001051 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001052
Dmitry Torokhovbcb9bd12010-03-13 23:49:18 -08001053 if (fw_get_builtin_firmware(firmware, name)) {
Rafael J. Wysocki6f18ff92010-02-27 21:43:22 +01001054 dev_dbg(device, "firmware: using built-in firmware %s\n", name);
Takashi Iwai4e0c92d2013-01-31 11:13:54 +01001055 return 0; /* assigned */
David Woodhouse5658c762008-05-23 13:52:42 +01001056 }
1057
Ming Lei1f2b7952012-08-04 12:01:21 +08001058 ret = fw_lookup_and_allocate_buf(name, &fw_cache, &buf);
Ming Lei1f2b7952012-08-04 12:01:21 +08001059
Takashi Iwai4e0c92d2013-01-31 11:13:54 +01001060 /*
1061 * bind with 'buf' now to avoid warning in failure path
1062 * of requesting firmware.
1063 */
1064 firmware->priv = buf;
Ming Lei1f2b7952012-08-04 12:01:21 +08001065
Takashi Iwai4e0c92d2013-01-31 11:13:54 +01001066 if (ret > 0) {
1067 ret = sync_cached_firmware_buf(buf);
1068 if (!ret) {
1069 fw_set_page_data(buf, firmware);
1070 return 0; /* assigned */
1071 }
Stephen Boyddddb5542012-03-28 23:30:43 +02001072 }
Ming Lei1f2b7952012-08-04 12:01:21 +08001073
Takashi Iwai4e0c92d2013-01-31 11:13:54 +01001074 if (ret < 0)
1075 return ret;
1076 return 1; /* need to load */
Rafael J. Wysocki811fa402012-03-28 23:29:55 +02001077}
1078
Ming Leie771d1a2013-05-27 18:30:03 +08001079static int assign_firmware_buf(struct firmware *fw, struct device *device,
Takashi Iwai14c4bae2013-12-02 15:38:18 +01001080 unsigned int opt_flags)
Takashi Iwai4e0c92d2013-01-31 11:13:54 +01001081{
1082 struct firmware_buf *buf = fw->priv;
1083
1084 mutex_lock(&fw_lock);
Takashi Iwai807be032013-01-31 11:13:57 +01001085 if (!buf->size || is_fw_load_aborted(buf)) {
Takashi Iwai4e0c92d2013-01-31 11:13:54 +01001086 mutex_unlock(&fw_lock);
1087 return -ENOENT;
1088 }
1089
1090 /*
1091 * add firmware name into devres list so that we can auto cache
1092 * and uncache firmware for device.
1093 *
1094 * device may has been deleted already, but the problem
1095 * should be fixed in devres or driver core.
1096 */
Takashi Iwai14c4bae2013-12-02 15:38:18 +01001097 /* don't cache firmware handled without uevent */
1098 if (device && (opt_flags & FW_OPT_UEVENT))
Takashi Iwai4e0c92d2013-01-31 11:13:54 +01001099 fw_add_devm_name(device, buf->fw_id);
1100
1101 /*
1102 * After caching firmware image is started, let it piggyback
1103 * on request firmware.
1104 */
1105 if (buf->fwc->state == FW_LOADER_START_CACHE) {
1106 if (fw_cache_piggyback_on_request(buf->fw_id))
1107 kref_get(&buf->ref);
1108 }
1109
1110 /* pass the pages buffer to driver at the last minute */
1111 fw_set_page_data(buf, fw);
1112 mutex_unlock(&fw_lock);
1113 return 0;
1114}
1115
Takashi Iwai4e0c92d2013-01-31 11:13:54 +01001116/* called from request_firmware() and request_firmware_work_func() */
1117static int
1118_request_firmware(const struct firmware **firmware_p, const char *name,
Takashi Iwai14c4bae2013-12-02 15:38:18 +01001119 struct device *device, unsigned int opt_flags)
Takashi Iwai4e0c92d2013-01-31 11:13:54 +01001120{
1121 struct firmware *fw;
1122 long timeout;
1123 int ret;
1124
1125 if (!firmware_p)
1126 return -EINVAL;
1127
Kees Cook471b0952014-09-18 11:25:37 -07001128 if (!name || name[0] == '\0')
1129 return -EINVAL;
1130
Takashi Iwai4e0c92d2013-01-31 11:13:54 +01001131 ret = _request_firmware_prepare(&fw, name, device);
1132 if (ret <= 0) /* error or already assigned */
1133 goto out;
1134
1135 ret = 0;
1136 timeout = firmware_loading_timeout();
Takashi Iwai14c4bae2013-12-02 15:38:18 +01001137 if (opt_flags & FW_OPT_NOWAIT) {
Takashi Iwai4e0c92d2013-01-31 11:13:54 +01001138 timeout = usermodehelper_read_lock_wait(timeout);
1139 if (!timeout) {
1140 dev_dbg(device, "firmware: %s loading timed out\n",
1141 name);
1142 ret = -EBUSY;
1143 goto out;
1144 }
1145 } else {
1146 ret = usermodehelper_read_trylock();
1147 if (WARN_ON(ret)) {
1148 dev_err(device, "firmware: %s will not be loaded\n",
1149 name);
1150 goto out;
1151 }
1152 }
1153
Neil Horman3e358ac2013-09-06 15:36:08 -04001154 ret = fw_get_filesystem_firmware(device, fw->priv);
1155 if (ret) {
Luis R. Rodriguezc868edf2014-07-02 09:55:05 -07001156 if (!(opt_flags & FW_OPT_NO_WARN))
Takashi Iwaibba3a872013-12-02 15:38:16 +01001157 dev_warn(device,
Luis R. Rodriguezc868edf2014-07-02 09:55:05 -07001158 "Direct firmware load for %s failed with error %d\n",
1159 name, ret);
1160 if (opt_flags & FW_OPT_USERHELPER) {
Takashi Iwaibba3a872013-12-02 15:38:16 +01001161 dev_warn(device, "Falling back to user helper\n");
1162 ret = fw_load_from_user_helper(fw, name, device,
Takashi Iwai14c4bae2013-12-02 15:38:18 +01001163 opt_flags, timeout);
Takashi Iwaibba3a872013-12-02 15:38:16 +01001164 }
Neil Horman3e358ac2013-09-06 15:36:08 -04001165 }
Ming Leie771d1a2013-05-27 18:30:03 +08001166
Takashi Iwai4e0c92d2013-01-31 11:13:54 +01001167 if (!ret)
Takashi Iwai14c4bae2013-12-02 15:38:18 +01001168 ret = assign_firmware_buf(fw, device, opt_flags);
Takashi Iwai4e0c92d2013-01-31 11:13:54 +01001169
1170 usermodehelper_read_unlock();
1171
1172 out:
1173 if (ret < 0) {
1174 release_firmware(fw);
1175 fw = NULL;
1176 }
1177
1178 *firmware_p = fw;
1179 return ret;
1180}
1181
Linus Torvalds1da177e2005-04-16 15:20:36 -07001182/**
Kay Sievers312c0042005-11-16 09:00:00 +01001183 * request_firmware: - send firmware request and wait for it
Randy Dunlapeb8e3172005-10-30 15:03:01 -08001184 * @firmware_p: pointer to firmware image
1185 * @name: name of firmware file
1186 * @device: device for which firmware is being loaded
1187 *
1188 * @firmware_p will be used to return a firmware image by the name
Abhay Salunke6e3eaab2005-09-06 15:17:13 -07001189 * of @name for device @device.
1190 *
1191 * Should be called from user context where sleeping is allowed.
1192 *
Kay Sievers312c0042005-11-16 09:00:00 +01001193 * @name will be used as $FIRMWARE in the uevent environment and
Abhay Salunke6e3eaab2005-09-06 15:17:13 -07001194 * should be distinctive enough not to be confused with any other
1195 * firmware image for this or any other device.
Ming Lei0cfc1e12012-08-04 12:01:23 +08001196 *
1197 * Caller must hold the reference count of @device.
Ming Lei6a927852012-11-03 17:48:16 +08001198 *
1199 * The function can be called safely inside device's suspend and
1200 * resume callback.
Abhay Salunke6e3eaab2005-09-06 15:17:13 -07001201 **/
1202int
1203request_firmware(const struct firmware **firmware_p, const char *name,
Andrei Opreaea310032015-03-08 12:41:15 +02001204 struct device *device)
Abhay Salunke6e3eaab2005-09-06 15:17:13 -07001205{
Ming Leid6c8aa32013-06-06 20:01:48 +08001206 int ret;
1207
1208 /* Need to pin this module until return */
1209 __module_get(THIS_MODULE);
Takashi Iwai14c4bae2013-12-02 15:38:18 +01001210 ret = _request_firmware(firmware_p, name, device,
1211 FW_OPT_UEVENT | FW_OPT_FALLBACK);
Ming Leid6c8aa32013-06-06 20:01:48 +08001212 module_put(THIS_MODULE);
1213 return ret;
Abhay Salunke6e3eaab2005-09-06 15:17:13 -07001214}
Daniel Mackf4945132013-05-23 22:17:18 +02001215EXPORT_SYMBOL(request_firmware);
Abhay Salunke6e3eaab2005-09-06 15:17:13 -07001216
Takashi Iwaibba3a872013-12-02 15:38:16 +01001217/**
Borislav Petkov3c1556b2014-12-03 22:46:37 +01001218 * request_firmware_direct: - load firmware directly without usermode helper
Takashi Iwaibba3a872013-12-02 15:38:16 +01001219 * @firmware_p: pointer to firmware image
1220 * @name: name of firmware file
1221 * @device: device for which firmware is being loaded
1222 *
1223 * This function works pretty much like request_firmware(), but this doesn't
1224 * fall back to usermode helper even if the firmware couldn't be loaded
1225 * directly from fs. Hence it's useful for loading optional firmwares, which
1226 * aren't always present, without extra long timeouts of udev.
1227 **/
1228int request_firmware_direct(const struct firmware **firmware_p,
1229 const char *name, struct device *device)
1230{
1231 int ret;
Andrei Opreaea310032015-03-08 12:41:15 +02001232
Takashi Iwaibba3a872013-12-02 15:38:16 +01001233 __module_get(THIS_MODULE);
Luis R. Rodriguezc868edf2014-07-02 09:55:05 -07001234 ret = _request_firmware(firmware_p, name, device,
1235 FW_OPT_UEVENT | FW_OPT_NO_WARN);
Takashi Iwaibba3a872013-12-02 15:38:16 +01001236 module_put(THIS_MODULE);
1237 return ret;
1238}
1239EXPORT_SYMBOL_GPL(request_firmware_direct);
Takashi Iwaibba3a872013-12-02 15:38:16 +01001240
Abhay Salunke6e3eaab2005-09-06 15:17:13 -07001241/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07001242 * release_firmware: - release the resource associated with a firmware image
Randy Dunlapeb8e3172005-10-30 15:03:01 -08001243 * @fw: firmware resource to release
Linus Torvalds1da177e2005-04-16 15:20:36 -07001244 **/
Dmitry Torokhovbcb9bd12010-03-13 23:49:18 -08001245void release_firmware(const struct firmware *fw)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001246{
1247 if (fw) {
Dmitry Torokhovbcb9bd12010-03-13 23:49:18 -08001248 if (!fw_is_builtin_firmware(fw))
1249 firmware_free_data(fw);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001250 kfree(fw);
1251 }
1252}
Daniel Mackf4945132013-05-23 22:17:18 +02001253EXPORT_SYMBOL(release_firmware);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001254
Linus Torvalds1da177e2005-04-16 15:20:36 -07001255/* Async support */
1256struct firmware_work {
1257 struct work_struct work;
1258 struct module *module;
1259 const char *name;
1260 struct device *device;
1261 void *context;
1262 void (*cont)(const struct firmware *fw, void *context);
Takashi Iwai14c4bae2013-12-02 15:38:18 +01001263 unsigned int opt_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001264};
1265
Stephen Boyda36cf842012-03-28 23:31:00 +02001266static void request_firmware_work_func(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001267{
Stephen Boyda36cf842012-03-28 23:31:00 +02001268 struct firmware_work *fw_work;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001269 const struct firmware *fw;
Dmitry Torokhovf8a4bd32010-06-04 00:54:43 -07001270
Stephen Boyda36cf842012-03-28 23:31:00 +02001271 fw_work = container_of(work, struct firmware_work, work);
Rafael J. Wysocki811fa402012-03-28 23:29:55 +02001272
Takashi Iwai4e0c92d2013-01-31 11:13:54 +01001273 _request_firmware(&fw, fw_work->name, fw_work->device,
Takashi Iwai14c4bae2013-12-02 15:38:18 +01001274 fw_work->opt_flags);
Johannes Berg9ebfbd42009-10-29 12:36:02 +01001275 fw_work->cont(fw, fw_work->context);
Takashi Iwai4e0c92d2013-01-31 11:13:54 +01001276 put_device(fw_work->device); /* taken in request_firmware_nowait() */
Johannes Berg9ebfbd42009-10-29 12:36:02 +01001277
Linus Torvalds1da177e2005-04-16 15:20:36 -07001278 module_put(fw_work->module);
Luis R. Rodriguezf9692b22015-05-12 14:49:42 -07001279 kfree_const(fw_work->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001280 kfree(fw_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001281}
1282
1283/**
Ben Hutchings3c31f072010-02-14 14:18:53 +00001284 * request_firmware_nowait - asynchronous version of request_firmware
Randy Dunlapeb8e3172005-10-30 15:03:01 -08001285 * @module: module requesting the firmware
Kay Sievers312c0042005-11-16 09:00:00 +01001286 * @uevent: sends uevent to copy the firmware image if this flag
Randy Dunlapeb8e3172005-10-30 15:03:01 -08001287 * is non-zero else the firmware copy must be done manually.
1288 * @name: name of firmware file
1289 * @device: device for which firmware is being loaded
Johannes Berg9ebfbd42009-10-29 12:36:02 +01001290 * @gfp: allocation flags
Randy Dunlapeb8e3172005-10-30 15:03:01 -08001291 * @context: will be passed over to @cont, and
1292 * @fw may be %NULL if firmware request fails.
1293 * @cont: function will be called asynchronously when the firmware
1294 * request is over.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001295 *
Ming Lei0cfc1e12012-08-04 12:01:23 +08001296 * Caller must hold the reference count of @device.
1297 *
Ming Lei6f21a622012-08-04 12:01:24 +08001298 * Asynchronous variant of request_firmware() for user contexts:
1299 * - sleep for as small periods as possible since it may
1300 * increase kernel boot time of built-in device drivers
1301 * requesting firmware in their ->probe() methods, if
1302 * @gfp is GFP_KERNEL.
1303 *
1304 * - can't sleep at all if @gfp is GFP_ATOMIC.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001305 **/
1306int
1307request_firmware_nowait(
Bob Liu072fc8f2011-01-26 18:33:32 +08001308 struct module *module, bool uevent,
Johannes Berg9ebfbd42009-10-29 12:36:02 +01001309 const char *name, struct device *device, gfp_t gfp, void *context,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001310 void (*cont)(const struct firmware *fw, void *context))
1311{
Dmitry Torokhovf8a4bd32010-06-04 00:54:43 -07001312 struct firmware_work *fw_work;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001313
Andrei Opreaea310032015-03-08 12:41:15 +02001314 fw_work = kzalloc(sizeof(struct firmware_work), gfp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001315 if (!fw_work)
1316 return -ENOMEM;
Dmitry Torokhovf8a4bd32010-06-04 00:54:43 -07001317
1318 fw_work->module = module;
Luis R. Rodriguezf9692b22015-05-12 14:49:42 -07001319 fw_work->name = kstrdup_const(name, gfp);
Luis R. Rodriguez303cda02015-05-28 17:46:42 -07001320 if (!fw_work->name) {
1321 kfree(fw_work);
Luis R. Rodriguezf9692b22015-05-12 14:49:42 -07001322 return -ENOMEM;
Luis R. Rodriguez303cda02015-05-28 17:46:42 -07001323 }
Dmitry Torokhovf8a4bd32010-06-04 00:54:43 -07001324 fw_work->device = device;
1325 fw_work->context = context;
1326 fw_work->cont = cont;
Takashi Iwai14c4bae2013-12-02 15:38:18 +01001327 fw_work->opt_flags = FW_OPT_NOWAIT | FW_OPT_FALLBACK |
Takashi Iwai5a1379e2014-06-04 17:48:15 +02001328 (uevent ? FW_OPT_UEVENT : FW_OPT_USERHELPER);
Dmitry Torokhovf8a4bd32010-06-04 00:54:43 -07001329
Linus Torvalds1da177e2005-04-16 15:20:36 -07001330 if (!try_module_get(module)) {
Luis R. Rodriguezf9692b22015-05-12 14:49:42 -07001331 kfree_const(fw_work->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001332 kfree(fw_work);
1333 return -EFAULT;
1334 }
1335
Ming Lei0cfc1e12012-08-04 12:01:23 +08001336 get_device(fw_work->device);
Stephen Boyda36cf842012-03-28 23:31:00 +02001337 INIT_WORK(&fw_work->work, request_firmware_work_func);
1338 schedule_work(&fw_work->work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001339 return 0;
1340}
Daniel Mackf4945132013-05-23 22:17:18 +02001341EXPORT_SYMBOL(request_firmware_nowait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001342
Ming Lei90f890812013-06-20 12:30:16 +08001343#ifdef CONFIG_PM_SLEEP
1344static ASYNC_DOMAIN_EXCLUSIVE(fw_cache_domain);
1345
Ming Lei2887b392012-08-04 12:01:22 +08001346/**
1347 * cache_firmware - cache one firmware image in kernel memory space
1348 * @fw_name: the firmware image name
1349 *
1350 * Cache firmware in kernel memory so that drivers can use it when
1351 * system isn't ready for them to request firmware image from userspace.
1352 * Once it returns successfully, driver can use request_firmware or its
1353 * nowait version to get the cached firmware without any interacting
1354 * with userspace
1355 *
1356 * Return 0 if the firmware image has been cached successfully
1357 * Return !0 otherwise
1358 *
1359 */
Ming Lei93232e42013-06-06 20:01:47 +08001360static int cache_firmware(const char *fw_name)
Ming Lei2887b392012-08-04 12:01:22 +08001361{
1362 int ret;
1363 const struct firmware *fw;
1364
1365 pr_debug("%s: %s\n", __func__, fw_name);
1366
1367 ret = request_firmware(&fw, fw_name, NULL);
1368 if (!ret)
1369 kfree(fw);
1370
1371 pr_debug("%s: %s ret=%d\n", __func__, fw_name, ret);
1372
1373 return ret;
1374}
1375
Ming Lei6a2c1232013-06-26 09:28:17 +08001376static struct firmware_buf *fw_lookup_buf(const char *fw_name)
1377{
1378 struct firmware_buf *tmp;
1379 struct firmware_cache *fwc = &fw_cache;
1380
1381 spin_lock(&fwc->lock);
1382 tmp = __fw_lookup_buf(fw_name);
1383 spin_unlock(&fwc->lock);
1384
1385 return tmp;
1386}
1387
Ming Lei2887b392012-08-04 12:01:22 +08001388/**
1389 * uncache_firmware - remove one cached firmware image
1390 * @fw_name: the firmware image name
1391 *
1392 * Uncache one firmware image which has been cached successfully
1393 * before.
1394 *
1395 * Return 0 if the firmware cache has been removed successfully
1396 * Return !0 otherwise
1397 *
1398 */
Ming Lei93232e42013-06-06 20:01:47 +08001399static int uncache_firmware(const char *fw_name)
Ming Lei2887b392012-08-04 12:01:22 +08001400{
1401 struct firmware_buf *buf;
1402 struct firmware fw;
1403
1404 pr_debug("%s: %s\n", __func__, fw_name);
1405
1406 if (fw_get_builtin_firmware(&fw, fw_name))
1407 return 0;
1408
1409 buf = fw_lookup_buf(fw_name);
1410 if (buf) {
1411 fw_free_buf(buf);
1412 return 0;
1413 }
1414
1415 return -EINVAL;
1416}
1417
Ming Lei37276a52012-08-04 12:01:27 +08001418static struct fw_cache_entry *alloc_fw_cache_entry(const char *name)
1419{
1420 struct fw_cache_entry *fce;
1421
Luis R. Rodrigueze0fd9b12015-05-12 14:49:43 -07001422 fce = kzalloc(sizeof(*fce), GFP_ATOMIC);
Ming Lei37276a52012-08-04 12:01:27 +08001423 if (!fce)
1424 goto exit;
1425
Luis R. Rodrigueze0fd9b12015-05-12 14:49:43 -07001426 fce->name = kstrdup_const(name, GFP_ATOMIC);
1427 if (!fce->name) {
1428 kfree(fce);
1429 fce = NULL;
1430 goto exit;
1431 }
Ming Lei37276a52012-08-04 12:01:27 +08001432exit:
1433 return fce;
1434}
1435
Ming Lei373304f2012-10-09 12:01:01 +08001436static int __fw_entry_found(const char *name)
1437{
1438 struct firmware_cache *fwc = &fw_cache;
1439 struct fw_cache_entry *fce;
1440
1441 list_for_each_entry(fce, &fwc->fw_names, list) {
1442 if (!strcmp(fce->name, name))
1443 return 1;
1444 }
1445 return 0;
1446}
1447
Ming Leiac39b3e2012-08-20 19:04:16 +08001448static int fw_cache_piggyback_on_request(const char *name)
1449{
1450 struct firmware_cache *fwc = &fw_cache;
1451 struct fw_cache_entry *fce;
1452 int ret = 0;
1453
1454 spin_lock(&fwc->name_lock);
Ming Lei373304f2012-10-09 12:01:01 +08001455 if (__fw_entry_found(name))
1456 goto found;
Ming Leiac39b3e2012-08-20 19:04:16 +08001457
1458 fce = alloc_fw_cache_entry(name);
1459 if (fce) {
1460 ret = 1;
1461 list_add(&fce->list, &fwc->fw_names);
1462 pr_debug("%s: fw: %s\n", __func__, name);
1463 }
1464found:
1465 spin_unlock(&fwc->name_lock);
1466 return ret;
1467}
1468
Ming Lei37276a52012-08-04 12:01:27 +08001469static void free_fw_cache_entry(struct fw_cache_entry *fce)
1470{
Luis R. Rodrigueze0fd9b12015-05-12 14:49:43 -07001471 kfree_const(fce->name);
Ming Lei37276a52012-08-04 12:01:27 +08001472 kfree(fce);
1473}
1474
1475static void __async_dev_cache_fw_image(void *fw_entry,
1476 async_cookie_t cookie)
1477{
1478 struct fw_cache_entry *fce = fw_entry;
1479 struct firmware_cache *fwc = &fw_cache;
1480 int ret;
1481
1482 ret = cache_firmware(fce->name);
Ming Leiac39b3e2012-08-20 19:04:16 +08001483 if (ret) {
1484 spin_lock(&fwc->name_lock);
1485 list_del(&fce->list);
1486 spin_unlock(&fwc->name_lock);
Ming Lei37276a52012-08-04 12:01:27 +08001487
Ming Leiac39b3e2012-08-20 19:04:16 +08001488 free_fw_cache_entry(fce);
1489 }
Ming Lei37276a52012-08-04 12:01:27 +08001490}
1491
1492/* called with dev->devres_lock held */
1493static void dev_create_fw_entry(struct device *dev, void *res,
1494 void *data)
1495{
1496 struct fw_name_devm *fwn = res;
1497 const char *fw_name = fwn->name;
1498 struct list_head *head = data;
1499 struct fw_cache_entry *fce;
1500
1501 fce = alloc_fw_cache_entry(fw_name);
1502 if (fce)
1503 list_add(&fce->list, head);
1504}
1505
1506static int devm_name_match(struct device *dev, void *res,
1507 void *match_data)
1508{
1509 struct fw_name_devm *fwn = res;
1510 return (fwn->magic == (unsigned long)match_data);
1511}
1512
Ming Leiab6dd8e2012-08-17 22:07:00 +08001513static void dev_cache_fw_image(struct device *dev, void *data)
Ming Lei37276a52012-08-04 12:01:27 +08001514{
1515 LIST_HEAD(todo);
1516 struct fw_cache_entry *fce;
1517 struct fw_cache_entry *fce_next;
1518 struct firmware_cache *fwc = &fw_cache;
1519
1520 devres_for_each_res(dev, fw_name_devm_release,
1521 devm_name_match, &fw_cache,
1522 dev_create_fw_entry, &todo);
1523
1524 list_for_each_entry_safe(fce, fce_next, &todo, list) {
1525 list_del(&fce->list);
1526
1527 spin_lock(&fwc->name_lock);
Ming Lei373304f2012-10-09 12:01:01 +08001528 /* only one cache entry for one firmware */
1529 if (!__fw_entry_found(fce->name)) {
Ming Lei373304f2012-10-09 12:01:01 +08001530 list_add(&fce->list, &fwc->fw_names);
1531 } else {
1532 free_fw_cache_entry(fce);
1533 fce = NULL;
1534 }
Ming Lei37276a52012-08-04 12:01:27 +08001535 spin_unlock(&fwc->name_lock);
1536
Ming Lei373304f2012-10-09 12:01:01 +08001537 if (fce)
Ming Leid28d3882012-10-09 12:01:04 +08001538 async_schedule_domain(__async_dev_cache_fw_image,
1539 (void *)fce,
1540 &fw_cache_domain);
Ming Lei37276a52012-08-04 12:01:27 +08001541 }
1542}
1543
1544static void __device_uncache_fw_images(void)
1545{
1546 struct firmware_cache *fwc = &fw_cache;
1547 struct fw_cache_entry *fce;
1548
1549 spin_lock(&fwc->name_lock);
1550 while (!list_empty(&fwc->fw_names)) {
1551 fce = list_entry(fwc->fw_names.next,
1552 struct fw_cache_entry, list);
1553 list_del(&fce->list);
1554 spin_unlock(&fwc->name_lock);
1555
1556 uncache_firmware(fce->name);
1557 free_fw_cache_entry(fce);
1558
1559 spin_lock(&fwc->name_lock);
1560 }
1561 spin_unlock(&fwc->name_lock);
1562}
1563
1564/**
1565 * device_cache_fw_images - cache devices' firmware
1566 *
1567 * If one device called request_firmware or its nowait version
1568 * successfully before, the firmware names are recored into the
1569 * device's devres link list, so device_cache_fw_images can call
1570 * cache_firmware() to cache these firmwares for the device,
1571 * then the device driver can load its firmwares easily at
1572 * time when system is not ready to complete loading firmware.
1573 */
1574static void device_cache_fw_images(void)
1575{
1576 struct firmware_cache *fwc = &fw_cache;
Ming Leiffe53f62012-08-04 12:01:28 +08001577 int old_timeout;
Ming Lei37276a52012-08-04 12:01:27 +08001578 DEFINE_WAIT(wait);
1579
1580 pr_debug("%s\n", __func__);
1581
Ming Lei373304f2012-10-09 12:01:01 +08001582 /* cancel uncache work */
1583 cancel_delayed_work_sync(&fwc->work);
1584
Ming Leiffe53f62012-08-04 12:01:28 +08001585 /*
1586 * use small loading timeout for caching devices' firmware
1587 * because all these firmware images have been loaded
1588 * successfully at lease once, also system is ready for
1589 * completing firmware loading now. The maximum size of
1590 * firmware in current distributions is about 2M bytes,
1591 * so 10 secs should be enough.
1592 */
1593 old_timeout = loading_timeout;
1594 loading_timeout = 10;
1595
Ming Leiac39b3e2012-08-20 19:04:16 +08001596 mutex_lock(&fw_lock);
1597 fwc->state = FW_LOADER_START_CACHE;
Ming Leiab6dd8e2012-08-17 22:07:00 +08001598 dpm_for_each_dev(NULL, dev_cache_fw_image);
Ming Leiac39b3e2012-08-20 19:04:16 +08001599 mutex_unlock(&fw_lock);
Ming Lei37276a52012-08-04 12:01:27 +08001600
1601 /* wait for completion of caching firmware for all devices */
Ming Leid28d3882012-10-09 12:01:04 +08001602 async_synchronize_full_domain(&fw_cache_domain);
Ming Leiffe53f62012-08-04 12:01:28 +08001603
1604 loading_timeout = old_timeout;
Ming Lei37276a52012-08-04 12:01:27 +08001605}
1606
1607/**
1608 * device_uncache_fw_images - uncache devices' firmware
1609 *
1610 * uncache all firmwares which have been cached successfully
1611 * by device_uncache_fw_images earlier
1612 */
1613static void device_uncache_fw_images(void)
1614{
1615 pr_debug("%s\n", __func__);
1616 __device_uncache_fw_images();
1617}
1618
1619static void device_uncache_fw_images_work(struct work_struct *work)
1620{
1621 device_uncache_fw_images();
1622}
1623
1624/**
1625 * device_uncache_fw_images_delay - uncache devices firmwares
1626 * @delay: number of milliseconds to delay uncache device firmwares
1627 *
1628 * uncache all devices's firmwares which has been cached successfully
1629 * by device_cache_fw_images after @delay milliseconds.
1630 */
1631static void device_uncache_fw_images_delay(unsigned long delay)
1632{
Shaibal Duttabce66182014-01-31 15:44:58 -08001633 queue_delayed_work(system_power_efficient_wq, &fw_cache.work,
1634 msecs_to_jiffies(delay));
Ming Lei37276a52012-08-04 12:01:27 +08001635}
1636
Ming Lei07646d92012-08-04 12:01:29 +08001637static int fw_pm_notify(struct notifier_block *notify_block,
1638 unsigned long mode, void *unused)
1639{
1640 switch (mode) {
1641 case PM_HIBERNATION_PREPARE:
1642 case PM_SUSPEND_PREPARE:
Sebastian Capellaf8d5b9e2014-02-18 17:52:08 -08001643 case PM_RESTORE_PREPARE:
Ming Leiaf5bc112013-05-27 18:30:04 +08001644 kill_requests_without_uevent();
Ming Lei07646d92012-08-04 12:01:29 +08001645 device_cache_fw_images();
1646 break;
1647
1648 case PM_POST_SUSPEND:
1649 case PM_POST_HIBERNATION:
1650 case PM_POST_RESTORE:
Ming Leiac39b3e2012-08-20 19:04:16 +08001651 /*
1652 * In case that system sleep failed and syscore_suspend is
1653 * not called.
1654 */
1655 mutex_lock(&fw_lock);
1656 fw_cache.state = FW_LOADER_NO_CACHE;
1657 mutex_unlock(&fw_lock);
1658
Ming Lei07646d92012-08-04 12:01:29 +08001659 device_uncache_fw_images_delay(10 * MSEC_PER_SEC);
1660 break;
1661 }
1662
1663 return 0;
1664}
Ming Lei07646d92012-08-04 12:01:29 +08001665
Ming Leiac39b3e2012-08-20 19:04:16 +08001666/* stop caching firmware once syscore_suspend is reached */
1667static int fw_suspend(void)
1668{
1669 fw_cache.state = FW_LOADER_NO_CACHE;
1670 return 0;
1671}
1672
1673static struct syscore_ops fw_syscore_ops = {
1674 .suspend = fw_suspend,
1675};
Ming Leicfe016b2012-09-08 17:32:30 +08001676#else
1677static int fw_cache_piggyback_on_request(const char *name)
1678{
1679 return 0;
1680}
1681#endif
Ming Leiac39b3e2012-08-20 19:04:16 +08001682
Ming Lei37276a52012-08-04 12:01:27 +08001683static void __init fw_cache_init(void)
1684{
1685 spin_lock_init(&fw_cache.lock);
1686 INIT_LIST_HEAD(&fw_cache.head);
Ming Leicfe016b2012-09-08 17:32:30 +08001687 fw_cache.state = FW_LOADER_NO_CACHE;
Ming Lei37276a52012-08-04 12:01:27 +08001688
Ming Leicfe016b2012-09-08 17:32:30 +08001689#ifdef CONFIG_PM_SLEEP
Ming Lei37276a52012-08-04 12:01:27 +08001690 spin_lock_init(&fw_cache.name_lock);
1691 INIT_LIST_HEAD(&fw_cache.fw_names);
Ming Lei37276a52012-08-04 12:01:27 +08001692
Ming Lei37276a52012-08-04 12:01:27 +08001693 INIT_DELAYED_WORK(&fw_cache.work,
1694 device_uncache_fw_images_work);
Ming Lei07646d92012-08-04 12:01:29 +08001695
1696 fw_cache.pm_notify.notifier_call = fw_pm_notify;
1697 register_pm_notifier(&fw_cache.pm_notify);
Ming Leiac39b3e2012-08-20 19:04:16 +08001698
1699 register_syscore_ops(&fw_syscore_ops);
Ming Leicfe016b2012-09-08 17:32:30 +08001700#endif
Ming Lei37276a52012-08-04 12:01:27 +08001701}
1702
Dmitry Torokhov673fae92010-03-13 23:49:13 -08001703static int __init firmware_class_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001704{
Ming Lei1f2b7952012-08-04 12:01:21 +08001705 fw_cache_init();
Takashi Iwai7b1269f2013-01-31 11:13:55 +01001706#ifdef CONFIG_FW_LOADER_USER_HELPER
Takashi Iwaife304142013-05-22 18:28:38 +02001707 register_reboot_notifier(&fw_shutdown_nb);
Dmitry Torokhov673fae92010-03-13 23:49:13 -08001708 return class_register(&firmware_class);
Takashi Iwai7b1269f2013-01-31 11:13:55 +01001709#else
1710 return 0;
1711#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001712}
Dmitry Torokhov673fae92010-03-13 23:49:13 -08001713
1714static void __exit firmware_class_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001715{
Ming Leicfe016b2012-09-08 17:32:30 +08001716#ifdef CONFIG_PM_SLEEP
Ming Leiac39b3e2012-08-20 19:04:16 +08001717 unregister_syscore_ops(&fw_syscore_ops);
Ming Lei07646d92012-08-04 12:01:29 +08001718 unregister_pm_notifier(&fw_cache.pm_notify);
Ming Leicfe016b2012-09-08 17:32:30 +08001719#endif
Takashi Iwai7b1269f2013-01-31 11:13:55 +01001720#ifdef CONFIG_FW_LOADER_USER_HELPER
Takashi Iwaife304142013-05-22 18:28:38 +02001721 unregister_reboot_notifier(&fw_shutdown_nb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001722 class_unregister(&firmware_class);
Takashi Iwai7b1269f2013-01-31 11:13:55 +01001723#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001724}
1725
Shaohua Lia30a6a22006-09-27 01:50:52 -07001726fs_initcall(firmware_class_init);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001727module_exit(firmware_class_exit);