blob: 45ed20cefa105bfae926b841c53f6fa2cc1b05c9 [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>
Mimi Zohare40ba6d2015-11-19 12:39:22 -050026#include <linux/fs.h>
Ming Lei37276a52012-08-04 12:01:27 +080027#include <linux/async.h>
28#include <linux/pm.h>
Ming Lei07646d92012-08-04 12:01:29 +080029#include <linux/suspend.h>
Ming Leiac39b3e2012-08-20 19:04:16 +080030#include <linux/syscore_ops.h>
Takashi Iwaife304142013-05-22 18:28:38 +020031#include <linux/reboot.h>
Kees Cook6593d922014-02-25 13:06:00 -080032#include <linux/security.h>
Ming Lei37276a52012-08-04 12:01:27 +080033
Linus Torvaldsabb139e2012-10-03 15:58:32 -070034#include <generated/utsrelease.h>
35
Ming Lei37276a52012-08-04 12:01:27 +080036#include "base.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070037
Markus Rechberger87d37a42007-06-04 18:45:44 +020038MODULE_AUTHOR("Manuel Estrada Sainz");
Linus Torvalds1da177e2005-04-16 15:20:36 -070039MODULE_DESCRIPTION("Multi purpose firmware loading support");
40MODULE_LICENSE("GPL");
41
Dmitry Torokhovbcb9bd12010-03-13 23:49:18 -080042/* Builtin firmware support */
43
44#ifdef CONFIG_FW_LOADER
45
46extern struct builtin_fw __start_builtin_fw[];
47extern struct builtin_fw __end_builtin_fw[];
48
49static bool fw_get_builtin_firmware(struct firmware *fw, const char *name)
50{
51 struct builtin_fw *b_fw;
52
53 for (b_fw = __start_builtin_fw; b_fw != __end_builtin_fw; b_fw++) {
54 if (strcmp(name, b_fw->name) == 0) {
55 fw->size = b_fw->size;
56 fw->data = b_fw->data;
57 return true;
58 }
59 }
60
61 return false;
62}
63
64static bool fw_is_builtin_firmware(const struct firmware *fw)
65{
66 struct builtin_fw *b_fw;
67
68 for (b_fw = __start_builtin_fw; b_fw != __end_builtin_fw; b_fw++)
69 if (fw->data == b_fw->data)
70 return true;
71
72 return false;
73}
74
75#else /* Module case - no builtin firmware support */
76
77static inline bool fw_get_builtin_firmware(struct firmware *fw, const char *name)
78{
79 return false;
80}
81
82static inline bool fw_is_builtin_firmware(const struct firmware *fw)
83{
84 return false;
85}
86#endif
87
Linus Torvalds1da177e2005-04-16 15:20:36 -070088enum {
89 FW_STATUS_LOADING,
90 FW_STATUS_DONE,
91 FW_STATUS_ABORT,
Linus Torvalds1da177e2005-04-16 15:20:36 -070092};
93
Dave Jones2f651682007-01-25 15:56:15 -050094static int loading_timeout = 60; /* In seconds */
Linus Torvalds1da177e2005-04-16 15:20:36 -070095
Rafael J. Wysocki9b78c1d2012-03-28 23:30:02 +020096static inline long firmware_loading_timeout(void)
97{
Ming Lei68ff2a02015-01-13 00:02:01 +080098 return loading_timeout > 0 ? loading_timeout * HZ : MAX_JIFFY_OFFSET;
Rafael J. Wysocki9b78c1d2012-03-28 23:30:02 +020099}
100
Takashi Iwai14c4bae2013-12-02 15:38:18 +0100101/* firmware behavior options */
102#define FW_OPT_UEVENT (1U << 0)
103#define FW_OPT_NOWAIT (1U << 1)
Takashi Iwai68aeeaa2013-12-02 15:38:19 +0100104#ifdef CONFIG_FW_LOADER_USER_HELPER
Takashi Iwai5a1379e2014-06-04 17:48:15 +0200105#define FW_OPT_USERHELPER (1U << 2)
Takashi Iwai68aeeaa2013-12-02 15:38:19 +0100106#else
Takashi Iwai5a1379e2014-06-04 17:48:15 +0200107#define FW_OPT_USERHELPER 0
108#endif
109#ifdef CONFIG_FW_LOADER_USER_HELPER_FALLBACK
110#define FW_OPT_FALLBACK FW_OPT_USERHELPER
111#else
112#define FW_OPT_FALLBACK 0
Takashi Iwai68aeeaa2013-12-02 15:38:19 +0100113#endif
Luis R. Rodriguezc868edf2014-07-02 09:55:05 -0700114#define FW_OPT_NO_WARN (1U << 3)
Vikram Mulukutla0e742e92016-08-02 14:04:25 -0700115#define FW_OPT_NOCACHE (1U << 4)
Takashi Iwai14c4bae2013-12-02 15:38:18 +0100116
Ming Lei1f2b7952012-08-04 12:01:21 +0800117struct firmware_cache {
118 /* firmware_buf instance will be added into the below list */
119 spinlock_t lock;
120 struct list_head head;
Ming Leicfe016b2012-09-08 17:32:30 +0800121 int state;
Ming Lei37276a52012-08-04 12:01:27 +0800122
Ming Leicfe016b2012-09-08 17:32:30 +0800123#ifdef CONFIG_PM_SLEEP
Ming Lei37276a52012-08-04 12:01:27 +0800124 /*
125 * Names of firmware images which have been cached successfully
126 * will be added into the below list so that device uncache
127 * helper can trace which firmware images have been cached
128 * before.
129 */
130 spinlock_t name_lock;
131 struct list_head fw_names;
132
Ming Lei37276a52012-08-04 12:01:27 +0800133 struct delayed_work work;
Ming Lei07646d92012-08-04 12:01:29 +0800134
135 struct notifier_block pm_notify;
Ming Leicfe016b2012-09-08 17:32:30 +0800136#endif
Ming Lei1f2b7952012-08-04 12:01:21 +0800137};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138
Ming Lei12446912012-08-04 12:01:20 +0800139struct firmware_buf {
Ming Lei1f2b7952012-08-04 12:01:21 +0800140 struct kref ref;
141 struct list_head list;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142 struct completion completion;
Ming Lei1f2b7952012-08-04 12:01:21 +0800143 struct firmware_cache *fwc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144 unsigned long status;
Ming Lei65710cb2012-08-04 12:01:16 +0800145 void *data;
146 size_t size;
Takashi Iwai7b1269f2013-01-31 11:13:55 +0100147#ifdef CONFIG_FW_LOADER_USER_HELPER
Takashi Iwaicd7239f2013-01-31 11:13:56 +0100148 bool is_paged_buf;
Ming Leiaf5bc112013-05-27 18:30:04 +0800149 bool need_uevent;
David Woodhouse6e03a202009-04-09 22:04:07 -0700150 struct page **pages;
151 int nr_pages;
152 int page_array_size;
Takashi Iwaife304142013-05-22 18:28:38 +0200153 struct list_head pending_list;
Takashi Iwai7b1269f2013-01-31 11:13:55 +0100154#endif
Luis R. Rodrigueze0fd9b12015-05-12 14:49:43 -0700155 const char *fw_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156};
157
Ming Lei37276a52012-08-04 12:01:27 +0800158struct fw_cache_entry {
159 struct list_head list;
Luis R. Rodrigueze0fd9b12015-05-12 14:49:43 -0700160 const char *name;
Ming Lei37276a52012-08-04 12:01:27 +0800161};
162
Ming Leif531f05a2012-08-04 12:01:25 +0800163struct fw_name_devm {
164 unsigned long magic;
Luis R. Rodrigueze0fd9b12015-05-12 14:49:43 -0700165 const char *name;
Ming Leif531f05a2012-08-04 12:01:25 +0800166};
167
Ming Lei1f2b7952012-08-04 12:01:21 +0800168#define to_fwbuf(d) container_of(d, struct firmware_buf, ref)
169
Ming Leiac39b3e2012-08-20 19:04:16 +0800170#define FW_LOADER_NO_CACHE 0
171#define FW_LOADER_START_CACHE 1
172
173static int fw_cache_piggyback_on_request(const char *name);
174
Ming Lei1f2b7952012-08-04 12:01:21 +0800175/* fw_lock could be moved to 'struct firmware_priv' but since it is just
176 * guarding for corner cases a global lock should be OK */
177static DEFINE_MUTEX(fw_lock);
178
179static struct firmware_cache fw_cache;
180
181static struct firmware_buf *__allocate_fw_buf(const char *fw_name,
182 struct firmware_cache *fwc)
183{
184 struct firmware_buf *buf;
185
Luis R. Rodrigueze0fd9b12015-05-12 14:49:43 -0700186 buf = kzalloc(sizeof(*buf), GFP_ATOMIC);
Ming Lei1f2b7952012-08-04 12:01:21 +0800187 if (!buf)
Luis R. Rodrigueze0fd9b12015-05-12 14:49:43 -0700188 return NULL;
189
190 buf->fw_id = kstrdup_const(fw_name, GFP_ATOMIC);
191 if (!buf->fw_id) {
192 kfree(buf);
193 return NULL;
194 }
Ming Lei1f2b7952012-08-04 12:01:21 +0800195
196 kref_init(&buf->ref);
Ming Lei1f2b7952012-08-04 12:01:21 +0800197 buf->fwc = fwc;
198 init_completion(&buf->completion);
Takashi Iwaife304142013-05-22 18:28:38 +0200199#ifdef CONFIG_FW_LOADER_USER_HELPER
200 INIT_LIST_HEAD(&buf->pending_list);
201#endif
Ming Lei1f2b7952012-08-04 12:01:21 +0800202
203 pr_debug("%s: fw-%s buf=%p\n", __func__, fw_name, buf);
204
205 return buf;
206}
207
Ming Lei2887b392012-08-04 12:01:22 +0800208static struct firmware_buf *__fw_lookup_buf(const char *fw_name)
209{
210 struct firmware_buf *tmp;
211 struct firmware_cache *fwc = &fw_cache;
212
213 list_for_each_entry(tmp, &fwc->head, list)
214 if (!strcmp(tmp->fw_id, fw_name))
215 return tmp;
216 return NULL;
217}
218
Ming Lei1f2b7952012-08-04 12:01:21 +0800219static int fw_lookup_and_allocate_buf(const char *fw_name,
220 struct firmware_cache *fwc,
221 struct firmware_buf **buf)
222{
223 struct firmware_buf *tmp;
224
225 spin_lock(&fwc->lock);
Ming Lei2887b392012-08-04 12:01:22 +0800226 tmp = __fw_lookup_buf(fw_name);
227 if (tmp) {
228 kref_get(&tmp->ref);
229 spin_unlock(&fwc->lock);
230 *buf = tmp;
231 return 1;
232 }
Ming Lei1f2b7952012-08-04 12:01:21 +0800233 tmp = __allocate_fw_buf(fw_name, fwc);
234 if (tmp)
235 list_add(&tmp->list, &fwc->head);
236 spin_unlock(&fwc->lock);
237
238 *buf = tmp;
239
240 return tmp ? 0 : -ENOMEM;
241}
242
243static void __fw_free_buf(struct kref *ref)
Bart Van Assche98233b22014-01-04 14:20:36 +0100244 __releases(&fwc->lock)
Ming Lei1f2b7952012-08-04 12:01:21 +0800245{
246 struct firmware_buf *buf = to_fwbuf(ref);
247 struct firmware_cache *fwc = buf->fwc;
Ming Lei1f2b7952012-08-04 12:01:21 +0800248
249 pr_debug("%s: fw-%s buf=%p data=%p size=%u\n",
250 __func__, buf->fw_id, buf, buf->data,
251 (unsigned int)buf->size);
252
Ming Lei1f2b7952012-08-04 12:01:21 +0800253 list_del(&buf->list);
254 spin_unlock(&fwc->lock);
255
Takashi Iwai7b1269f2013-01-31 11:13:55 +0100256#ifdef CONFIG_FW_LOADER_USER_HELPER
Takashi Iwaicd7239f2013-01-31 11:13:56 +0100257 if (buf->is_paged_buf) {
Takashi Iwai7b1269f2013-01-31 11:13:55 +0100258 int i;
Ming Lei746058f2012-10-09 12:01:03 +0800259 vunmap(buf->data);
260 for (i = 0; i < buf->nr_pages; i++)
261 __free_page(buf->pages[i]);
Chen Feng10a3fbf2015-12-16 17:03:15 +0800262 vfree(buf->pages);
Ming Lei746058f2012-10-09 12:01:03 +0800263 } else
Takashi Iwai7b1269f2013-01-31 11:13:55 +0100264#endif
Ming Lei746058f2012-10-09 12:01:03 +0800265 vfree(buf->data);
Luis R. Rodrigueze0fd9b12015-05-12 14:49:43 -0700266 kfree_const(buf->fw_id);
Ming Lei1f2b7952012-08-04 12:01:21 +0800267 kfree(buf);
268}
269
270static void fw_free_buf(struct firmware_buf *buf)
271{
Chuansheng Liubd9eb7f2012-11-10 01:27:22 +0800272 struct firmware_cache *fwc = buf->fwc;
273 spin_lock(&fwc->lock);
274 if (!kref_put(&buf->ref, __fw_free_buf))
275 spin_unlock(&fwc->lock);
Ming Lei1f2b7952012-08-04 12:01:21 +0800276}
277
Ming Lei746058f2012-10-09 12:01:03 +0800278/* direct firmware loading support */
Ming Lei27602842012-11-03 17:47:58 +0800279static char fw_path_para[256];
280static const char * const fw_path[] = {
281 fw_path_para,
Ming Lei746058f2012-10-09 12:01:03 +0800282 "/lib/firmware/updates/" UTS_RELEASE,
283 "/lib/firmware/updates",
284 "/lib/firmware/" UTS_RELEASE,
285 "/lib/firmware"
286};
287
Ming Lei27602842012-11-03 17:47:58 +0800288/*
289 * Typical usage is that passing 'firmware_class.path=$CUSTOMIZED_PATH'
290 * from kernel command line because firmware_class is generally built in
291 * kernel instead of module.
292 */
293module_param_string(path, fw_path_para, sizeof(fw_path_para), 0644);
294MODULE_PARM_DESC(path, "customized firmware image search path with a higher priority than default path");
295
Luis R. Rodriguez5275d192015-07-30 15:48:57 -0700296static void fw_finish_direct_load(struct device *device,
297 struct firmware_buf *buf)
298{
299 mutex_lock(&fw_lock);
300 set_bit(FW_STATUS_DONE, &buf->status);
301 complete_all(&buf->completion);
302 mutex_unlock(&fw_lock);
303}
304
Neil Horman3e358ac2013-09-06 15:36:08 -0400305static int fw_get_filesystem_firmware(struct device *device,
Takashi Iwai4e0c92d2013-01-31 11:13:54 +0100306 struct firmware_buf *buf)
Ming Lei746058f2012-10-09 12:01:03 +0800307{
Mimi Zohare40ba6d2015-11-19 12:39:22 -0500308 loff_t size;
Luis R. Rodriguez1ba4de12015-05-12 14:49:41 -0700309 int i, len;
Neil Horman3e358ac2013-09-06 15:36:08 -0400310 int rc = -ENOENT;
Luis R. Rodriguezf5727b02015-05-12 14:49:40 -0700311 char *path;
312
313 path = __getname();
314 if (!path)
315 return -ENOMEM;
Ming Lei746058f2012-10-09 12:01:03 +0800316
317 for (i = 0; i < ARRAY_SIZE(fw_path); i++) {
Ming Lei27602842012-11-03 17:47:58 +0800318 /* skip the unset customized path */
319 if (!fw_path[i][0])
320 continue;
321
Luis R. Rodriguez1ba4de12015-05-12 14:49:41 -0700322 len = snprintf(path, PATH_MAX, "%s/%s",
323 fw_path[i], buf->fw_id);
324 if (len >= PATH_MAX) {
325 rc = -ENAMETOOLONG;
326 break;
327 }
Ming Lei746058f2012-10-09 12:01:03 +0800328
Mimi Zohare40ba6d2015-11-19 12:39:22 -0500329 buf->size = 0;
330 rc = kernel_read_file_from_path(path, &buf->data, &size,
331 INT_MAX, READING_FIRMWARE);
Kees Cook4b2530d2016-02-04 13:15:02 -0800332 if (rc) {
Luis R. Rodriguez8e516aa2016-02-28 21:57:55 +0100333 if (rc == -ENOENT)
334 dev_dbg(device, "loading %s failed with error %d\n",
335 path, rc);
336 else
337 dev_warn(device, "loading %s failed with error %d\n",
338 path, rc);
Kees Cook4b2530d2016-02-04 13:15:02 -0800339 continue;
340 }
Mimi Zohare40ba6d2015-11-19 12:39:22 -0500341 dev_dbg(device, "direct-loading %s\n", buf->fw_id);
342 buf->size = size;
Luis R. Rodriguez5275d192015-07-30 15:48:57 -0700343 fw_finish_direct_load(device, buf);
Kees Cook4b2530d2016-02-04 13:15:02 -0800344 break;
Takashi Iwai4e0c92d2013-01-31 11:13:54 +0100345 }
Kees Cook4b2530d2016-02-04 13:15:02 -0800346 __putname(path);
Takashi Iwai4e0c92d2013-01-31 11:13:54 +0100347
Neil Horman3e358ac2013-09-06 15:36:08 -0400348 return rc;
Ming Lei746058f2012-10-09 12:01:03 +0800349}
350
Takashi Iwai7b1269f2013-01-31 11:13:55 +0100351/* firmware holds the ownership of pages */
352static void firmware_free_data(const struct firmware *fw)
353{
354 /* Loaded directly? */
355 if (!fw->priv) {
356 vfree(fw->data);
357 return;
358 }
359 fw_free_buf(fw->priv);
360}
361
Takashi Iwaicd7239f2013-01-31 11:13:56 +0100362/* store the pages buffer info firmware from buf */
363static void fw_set_page_data(struct firmware_buf *buf, struct firmware *fw)
364{
365 fw->priv = buf;
Takashi Iwai7b1269f2013-01-31 11:13:55 +0100366#ifdef CONFIG_FW_LOADER_USER_HELPER
Takashi Iwaicd7239f2013-01-31 11:13:56 +0100367 fw->pages = buf->pages;
368#endif
369 fw->size = buf->size;
370 fw->data = buf->data;
371
372 pr_debug("%s: fw-%s buf=%p data=%p size=%u\n",
373 __func__, buf->fw_id, buf, buf->data,
374 (unsigned int)buf->size);
375}
376
377#ifdef CONFIG_PM_SLEEP
378static void fw_name_devm_release(struct device *dev, void *res)
379{
380 struct fw_name_devm *fwn = res;
381
382 if (fwn->magic == (unsigned long)&fw_cache)
383 pr_debug("%s: fw_name-%s devm-%p released\n",
384 __func__, fwn->name, res);
Luis R. Rodrigueze0fd9b12015-05-12 14:49:43 -0700385 kfree_const(fwn->name);
Takashi Iwaicd7239f2013-01-31 11:13:56 +0100386}
387
388static int fw_devm_match(struct device *dev, void *res,
389 void *match_data)
390{
391 struct fw_name_devm *fwn = res;
392
393 return (fwn->magic == (unsigned long)&fw_cache) &&
394 !strcmp(fwn->name, match_data);
395}
396
397static struct fw_name_devm *fw_find_devm_name(struct device *dev,
398 const char *name)
399{
400 struct fw_name_devm *fwn;
401
402 fwn = devres_find(dev, fw_name_devm_release,
403 fw_devm_match, (void *)name);
404 return fwn;
405}
406
407/* add firmware name into devres list */
408static int fw_add_devm_name(struct device *dev, const char *name)
409{
410 struct fw_name_devm *fwn;
411
412 fwn = fw_find_devm_name(dev, name);
413 if (fwn)
414 return 1;
415
Luis R. Rodrigueze0fd9b12015-05-12 14:49:43 -0700416 fwn = devres_alloc(fw_name_devm_release, sizeof(struct fw_name_devm),
417 GFP_KERNEL);
Takashi Iwaicd7239f2013-01-31 11:13:56 +0100418 if (!fwn)
419 return -ENOMEM;
Luis R. Rodrigueze0fd9b12015-05-12 14:49:43 -0700420 fwn->name = kstrdup_const(name, GFP_KERNEL);
421 if (!fwn->name) {
Vladimir Zapolskiya885de62015-07-29 23:26:28 +0300422 devres_free(fwn);
Luis R. Rodrigueze0fd9b12015-05-12 14:49:43 -0700423 return -ENOMEM;
424 }
Takashi Iwaicd7239f2013-01-31 11:13:56 +0100425
426 fwn->magic = (unsigned long)&fw_cache;
Takashi Iwaicd7239f2013-01-31 11:13:56 +0100427 devres_add(dev, fwn);
428
429 return 0;
430}
431#else
432static int fw_add_devm_name(struct device *dev, const char *name)
433{
434 return 0;
435}
436#endif
437
438
439/*
440 * user-mode helper code
441 */
442#ifdef CONFIG_FW_LOADER_USER_HELPER
443struct firmware_priv {
Takashi Iwaicd7239f2013-01-31 11:13:56 +0100444 bool nowait;
445 struct device dev;
446 struct firmware_buf *buf;
447 struct firmware *fw;
448};
Takashi Iwai7b1269f2013-01-31 11:13:55 +0100449
Dmitry Torokhovf8a4bd32010-06-04 00:54:43 -0700450static struct firmware_priv *to_firmware_priv(struct device *dev)
451{
452 return container_of(dev, struct firmware_priv, dev);
453}
454
Greg Kroah-Hartman7068cb02013-06-19 20:26:43 -0700455static void __fw_load_abort(struct firmware_buf *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456{
Ming Lei87597932013-06-15 16:36:38 +0800457 /*
458 * There is a small window in which user can write to 'loading'
459 * between loading done and disappearance of 'loading'
460 */
461 if (test_bit(FW_STATUS_DONE, &buf->status))
462 return;
463
Takashi Iwaife304142013-05-22 18:28:38 +0200464 list_del_init(&buf->pending_list);
Ming Lei12446912012-08-04 12:01:20 +0800465 set_bit(FW_STATUS_ABORT, &buf->status);
Ming Lei1f2b7952012-08-04 12:01:21 +0800466 complete_all(&buf->completion);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467}
468
Greg Kroah-Hartman7068cb02013-06-19 20:26:43 -0700469static void fw_load_abort(struct firmware_priv *fw_priv)
470{
471 struct firmware_buf *buf = fw_priv->buf;
472
473 __fw_load_abort(buf);
Ming Lei87597932013-06-15 16:36:38 +0800474
475 /* avoid user action after loading abort */
476 fw_priv->buf = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477}
478
Takashi Iwai807be032013-01-31 11:13:57 +0100479#define is_fw_load_aborted(buf) \
480 test_bit(FW_STATUS_ABORT, &(buf)->status)
481
Takashi Iwaife304142013-05-22 18:28:38 +0200482static LIST_HEAD(pending_fw_head);
483
484/* reboot notifier for avoid deadlock with usermode_lock */
485static int fw_shutdown_notify(struct notifier_block *unused1,
486 unsigned long unused2, void *unused3)
487{
488 mutex_lock(&fw_lock);
489 while (!list_empty(&pending_fw_head))
Greg Kroah-Hartman7068cb02013-06-19 20:26:43 -0700490 __fw_load_abort(list_first_entry(&pending_fw_head,
Takashi Iwaife304142013-05-22 18:28:38 +0200491 struct firmware_buf,
492 pending_list));
493 mutex_unlock(&fw_lock);
494 return NOTIFY_DONE;
495}
496
497static struct notifier_block fw_shutdown_nb = {
498 .notifier_call = fw_shutdown_notify,
499};
500
Greg Kroah-Hartman14adbe52013-08-23 17:08:48 -0700501static ssize_t timeout_show(struct class *class, struct class_attribute *attr,
502 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503{
504 return sprintf(buf, "%d\n", loading_timeout);
505}
506
507/**
Randy Dunlapeb8e3172005-10-30 15:03:01 -0800508 * firmware_timeout_store - set number of seconds to wait for firmware
509 * @class: device class pointer
Randy Dunlape59817b2010-03-10 11:47:58 -0800510 * @attr: device attribute pointer
Randy Dunlapeb8e3172005-10-30 15:03:01 -0800511 * @buf: buffer to scan for timeout value
512 * @count: number of bytes in @buf
513 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514 * Sets the number of seconds to wait for the firmware. Once
Randy Dunlapeb8e3172005-10-30 15:03:01 -0800515 * this expires an error will be returned to the driver and no
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516 * firmware will be provided.
517 *
Randy Dunlapeb8e3172005-10-30 15:03:01 -0800518 * Note: zero means 'wait forever'.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519 **/
Greg Kroah-Hartman14adbe52013-08-23 17:08:48 -0700520static ssize_t timeout_store(struct class *class, struct class_attribute *attr,
521 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522{
523 loading_timeout = simple_strtol(buf, NULL, 10);
Stanislaw W. Gruszkab92eac02005-06-28 20:44:51 -0700524 if (loading_timeout < 0)
525 loading_timeout = 0;
Dmitry Torokhovf8a4bd32010-06-04 00:54:43 -0700526
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527 return count;
528}
529
Dmitry Torokhov673fae92010-03-13 23:49:13 -0800530static struct class_attribute firmware_class_attrs[] = {
Greg Kroah-Hartman14adbe52013-08-23 17:08:48 -0700531 __ATTR_RW(timeout),
Dmitry Torokhov673fae92010-03-13 23:49:13 -0800532 __ATTR_NULL
533};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534
Dmitry Torokhov673fae92010-03-13 23:49:13 -0800535static void fw_dev_release(struct device *dev)
536{
Dmitry Torokhovf8a4bd32010-06-04 00:54:43 -0700537 struct firmware_priv *fw_priv = to_firmware_priv(dev);
Ming Lei65710cb2012-08-04 12:01:16 +0800538
Dmitry Torokhov673fae92010-03-13 23:49:13 -0800539 kfree(fw_priv);
Dmitry Torokhov673fae92010-03-13 23:49:13 -0800540}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541
Linus Torvalds6f957722015-07-09 11:20:01 -0700542static int do_firmware_uevent(struct firmware_priv *fw_priv, struct kobj_uevent_env *env)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543{
Ming Lei12446912012-08-04 12:01:20 +0800544 if (add_uevent_var(env, "FIRMWARE=%s", fw_priv->buf->fw_id))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545 return -ENOMEM;
Kay Sievers7eff2e72007-08-14 15:15:12 +0200546 if (add_uevent_var(env, "TIMEOUT=%i", loading_timeout))
kay.sievers@vrfy.org68970892005-04-18 21:57:31 -0700547 return -ENOMEM;
Johannes Berge9045f92010-03-29 17:57:20 +0200548 if (add_uevent_var(env, "ASYNC=%d", fw_priv->nowait))
549 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550
551 return 0;
552}
553
Linus Torvalds6f957722015-07-09 11:20:01 -0700554static int firmware_uevent(struct device *dev, struct kobj_uevent_env *env)
555{
556 struct firmware_priv *fw_priv = to_firmware_priv(dev);
557 int err = 0;
558
559 mutex_lock(&fw_lock);
560 if (fw_priv->buf)
561 err = do_firmware_uevent(fw_priv, env);
562 mutex_unlock(&fw_lock);
563 return err;
564}
565
Adrian Bunk1b81d662006-05-20 15:00:16 -0700566static struct class firmware_class = {
567 .name = "firmware",
Dmitry Torokhov673fae92010-03-13 23:49:13 -0800568 .class_attrs = firmware_class_attrs,
Greg Kroah-Hartmane55c8792006-09-14 07:30:59 -0700569 .dev_uevent = firmware_uevent,
570 .dev_release = fw_dev_release,
Adrian Bunk1b81d662006-05-20 15:00:16 -0700571};
572
Greg Kroah-Hartmane55c8792006-09-14 07:30:59 -0700573static ssize_t firmware_loading_show(struct device *dev,
574 struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575{
Dmitry Torokhovf8a4bd32010-06-04 00:54:43 -0700576 struct firmware_priv *fw_priv = to_firmware_priv(dev);
Ming Lei87597932013-06-15 16:36:38 +0800577 int loading = 0;
578
579 mutex_lock(&fw_lock);
580 if (fw_priv->buf)
581 loading = test_bit(FW_STATUS_LOADING, &fw_priv->buf->status);
582 mutex_unlock(&fw_lock);
Dmitry Torokhovf8a4bd32010-06-04 00:54:43 -0700583
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584 return sprintf(buf, "%d\n", loading);
585}
586
David Woodhouse6e03a202009-04-09 22:04:07 -0700587/* Some architectures don't have PAGE_KERNEL_RO */
588#ifndef PAGE_KERNEL_RO
589#define PAGE_KERNEL_RO PAGE_KERNEL
590#endif
Ming Lei253c9242012-10-09 12:01:02 +0800591
592/* one pages buffer should be mapped/unmapped only once */
593static int fw_map_pages_buf(struct firmware_buf *buf)
594{
Takashi Iwaicd7239f2013-01-31 11:13:56 +0100595 if (!buf->is_paged_buf)
Ming Lei746058f2012-10-09 12:01:03 +0800596 return 0;
597
Markus Elfringdaa3d672014-11-19 11:38:38 +0100598 vunmap(buf->data);
Ming Lei253c9242012-10-09 12:01:02 +0800599 buf->data = vmap(buf->pages, buf->nr_pages, 0, PAGE_KERNEL_RO);
600 if (!buf->data)
601 return -ENOMEM;
602 return 0;
603}
604
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605/**
Randy Dunlapeb8e3172005-10-30 15:03:01 -0800606 * firmware_loading_store - set value in the 'loading' control file
Greg Kroah-Hartmane55c8792006-09-14 07:30:59 -0700607 * @dev: device pointer
Randy Dunlapaf9997e2006-12-22 01:06:52 -0800608 * @attr: device attribute pointer
Randy Dunlapeb8e3172005-10-30 15:03:01 -0800609 * @buf: buffer to scan for loading control value
610 * @count: number of bytes in @buf
611 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612 * The relevant values are:
613 *
614 * 1: Start a load, discarding any previous partial load.
Randy Dunlapeb8e3172005-10-30 15:03:01 -0800615 * 0: Conclude the load and hand the data to the driver code.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616 * -1: Conclude the load with an error and discard any written data.
617 **/
Greg Kroah-Hartmane55c8792006-09-14 07:30:59 -0700618static ssize_t firmware_loading_store(struct device *dev,
619 struct device_attribute *attr,
620 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621{
Dmitry Torokhovf8a4bd32010-06-04 00:54:43 -0700622 struct firmware_priv *fw_priv = to_firmware_priv(dev);
Ming Lei87597932013-06-15 16:36:38 +0800623 struct firmware_buf *fw_buf;
Kees Cook6593d922014-02-25 13:06:00 -0800624 ssize_t written = count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625 int loading = simple_strtol(buf, NULL, 10);
David Woodhouse6e03a202009-04-09 22:04:07 -0700626 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627
Neil Hormaneea915b2012-01-02 15:31:23 -0500628 mutex_lock(&fw_lock);
Ming Lei87597932013-06-15 16:36:38 +0800629 fw_buf = fw_priv->buf;
Ming Lei12446912012-08-04 12:01:20 +0800630 if (!fw_buf)
Neil Hormaneea915b2012-01-02 15:31:23 -0500631 goto out;
632
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633 switch (loading) {
634 case 1:
Ming Lei65710cb2012-08-04 12:01:16 +0800635 /* discarding any previous partial load */
Ming Lei12446912012-08-04 12:01:20 +0800636 if (!test_bit(FW_STATUS_DONE, &fw_buf->status)) {
637 for (i = 0; i < fw_buf->nr_pages; i++)
638 __free_page(fw_buf->pages[i]);
Chen Feng10a3fbf2015-12-16 17:03:15 +0800639 vfree(fw_buf->pages);
Ming Lei12446912012-08-04 12:01:20 +0800640 fw_buf->pages = NULL;
641 fw_buf->page_array_size = 0;
642 fw_buf->nr_pages = 0;
643 set_bit(FW_STATUS_LOADING, &fw_buf->status);
Ming Lei28eefa72012-08-04 12:01:17 +0800644 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645 break;
646 case 0:
Ming Lei12446912012-08-04 12:01:20 +0800647 if (test_bit(FW_STATUS_LOADING, &fw_buf->status)) {
Kees Cook6593d922014-02-25 13:06:00 -0800648 int rc;
649
Ming Lei12446912012-08-04 12:01:20 +0800650 set_bit(FW_STATUS_DONE, &fw_buf->status);
651 clear_bit(FW_STATUS_LOADING, &fw_buf->status);
Ming Lei253c9242012-10-09 12:01:02 +0800652
653 /*
654 * Several loading requests may be pending on
655 * one same firmware buf, so let all requests
656 * see the mapped 'buf->data' once the loading
657 * is completed.
658 * */
Kees Cook6593d922014-02-25 13:06:00 -0800659 rc = fw_map_pages_buf(fw_buf);
660 if (rc)
zhang jun2b1278c2014-02-13 15:18:47 +0800661 dev_err(dev, "%s: map pages failed\n",
662 __func__);
Kees Cook6593d922014-02-25 13:06:00 -0800663 else
Mimi Zohare40ba6d2015-11-19 12:39:22 -0500664 rc = security_kernel_post_read_file(NULL,
665 fw_buf->data, fw_buf->size,
666 READING_FIRMWARE);
Kees Cook6593d922014-02-25 13:06:00 -0800667
668 /*
669 * Same logic as fw_load_abort, only the DONE bit
670 * is ignored and we set ABORT only on failure.
671 */
Takashi Iwaife304142013-05-22 18:28:38 +0200672 list_del_init(&fw_buf->pending_list);
Kees Cook6593d922014-02-25 13:06:00 -0800673 if (rc) {
674 set_bit(FW_STATUS_ABORT, &fw_buf->status);
675 written = rc;
676 }
Ming Lei1f2b7952012-08-04 12:01:21 +0800677 complete_all(&fw_buf->completion);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678 break;
679 }
680 /* fallthrough */
681 default:
Bjorn Helgaas266a8132008-10-15 22:04:20 -0700682 dev_err(dev, "%s: unexpected value (%d)\n", __func__, loading);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683 /* fallthrough */
684 case -1:
685 fw_load_abort(fw_priv);
686 break;
687 }
Neil Hormaneea915b2012-01-02 15:31:23 -0500688out:
689 mutex_unlock(&fw_lock);
Kees Cook6593d922014-02-25 13:06:00 -0800690 return written;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691}
692
Greg Kroah-Hartmane55c8792006-09-14 07:30:59 -0700693static DEVICE_ATTR(loading, 0644, firmware_loading_show, firmware_loading_store);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694
Stephen Boyd9ccf9812016-08-02 14:04:22 -0700695static void firmware_rw(struct firmware_buf *buf, char *buffer,
696 loff_t offset, size_t count, bool read)
697{
698 while (count) {
699 void *page_data;
700 int page_nr = offset >> PAGE_SHIFT;
701 int page_ofs = offset & (PAGE_SIZE-1);
702 int page_cnt = min_t(size_t, PAGE_SIZE - page_ofs, count);
703
704 page_data = kmap(buf->pages[page_nr]);
705
706 if (read)
707 memcpy(buffer, page_data + page_ofs, page_cnt);
708 else
709 memcpy(page_data + page_ofs, buffer, page_cnt);
710
711 kunmap(buf->pages[page_nr]);
712 buffer += page_cnt;
713 offset += page_cnt;
714 count -= page_cnt;
715 }
716}
717
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
Stephen Boyd9ccf9812016-08-02 14:04:22 -0700742 firmware_rw(buf, buffer, offset, count, true);
David Woodhouse6e03a202009-04-09 22:04:07 -0700743
Linus Torvalds1da177e2005-04-16 15:20:36 -0700744out:
Laura Garciacad1e552006-05-23 23:22:38 +0200745 mutex_unlock(&fw_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746 return ret_count;
747}
Randy Dunlapeb8e3172005-10-30 15:03:01 -0800748
Dmitry Torokhovf8a4bd32010-06-04 00:54:43 -0700749static int fw_realloc_buffer(struct firmware_priv *fw_priv, int min_size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750{
Ming Lei12446912012-08-04 12:01:20 +0800751 struct firmware_buf *buf = fw_priv->buf;
Fabian Fredericka76040d2014-07-01 21:13:30 +0200752 int pages_needed = PAGE_ALIGN(min_size) >> PAGE_SHIFT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753
David Woodhouse6e03a202009-04-09 22:04:07 -0700754 /* If the array of pages is too small, grow it... */
Ming Lei12446912012-08-04 12:01:20 +0800755 if (buf->page_array_size < pages_needed) {
David Woodhouse6e03a202009-04-09 22:04:07 -0700756 int new_array_size = max(pages_needed,
Ming Lei12446912012-08-04 12:01:20 +0800757 buf->page_array_size * 2);
David Woodhouse6e03a202009-04-09 22:04:07 -0700758 struct page **new_pages;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759
Chen Feng10a3fbf2015-12-16 17:03:15 +0800760 new_pages = vmalloc(new_array_size * sizeof(void *));
David Woodhouse6e03a202009-04-09 22:04:07 -0700761 if (!new_pages) {
762 fw_load_abort(fw_priv);
763 return -ENOMEM;
764 }
Ming Lei12446912012-08-04 12:01:20 +0800765 memcpy(new_pages, buf->pages,
766 buf->page_array_size * sizeof(void *));
767 memset(&new_pages[buf->page_array_size], 0, sizeof(void *) *
768 (new_array_size - buf->page_array_size));
Chen Feng10a3fbf2015-12-16 17:03:15 +0800769 vfree(buf->pages);
Ming Lei12446912012-08-04 12:01:20 +0800770 buf->pages = new_pages;
771 buf->page_array_size = new_array_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772 }
David Woodhouse6e03a202009-04-09 22:04:07 -0700773
Ming Lei12446912012-08-04 12:01:20 +0800774 while (buf->nr_pages < pages_needed) {
775 buf->pages[buf->nr_pages] =
David Woodhouse6e03a202009-04-09 22:04:07 -0700776 alloc_page(GFP_KERNEL | __GFP_HIGHMEM);
777
Ming Lei12446912012-08-04 12:01:20 +0800778 if (!buf->pages[buf->nr_pages]) {
David Woodhouse6e03a202009-04-09 22:04:07 -0700779 fw_load_abort(fw_priv);
780 return -ENOMEM;
781 }
Ming Lei12446912012-08-04 12:01:20 +0800782 buf->nr_pages++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784 return 0;
785}
786
787/**
Randy Dunlapeb8e3172005-10-30 15:03:01 -0800788 * firmware_data_write - write method for firmware
Chris Wright2c3c8be2010-05-12 18:28:57 -0700789 * @filp: open sysfs file
Greg Kroah-Hartmane55c8792006-09-14 07:30:59 -0700790 * @kobj: kobject for the device
Randy Dunlap42e61f42007-07-23 21:42:11 -0700791 * @bin_attr: bin_attr structure
Randy Dunlapeb8e3172005-10-30 15:03:01 -0800792 * @buffer: buffer being written
793 * @offset: buffer offset for write in total data store area
794 * @count: buffer size
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795 *
Randy Dunlapeb8e3172005-10-30 15:03:01 -0800796 * Data written to the 'data' attribute will be later handed to
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797 * the driver as a firmware image.
798 **/
Dmitry Torokhovf8a4bd32010-06-04 00:54:43 -0700799static ssize_t firmware_data_write(struct file *filp, struct kobject *kobj,
800 struct bin_attribute *bin_attr,
801 char *buffer, loff_t offset, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802{
Lars-Peter Clausenb0d1f802012-07-03 18:49:36 +0200803 struct device *dev = kobj_to_dev(kobj);
Dmitry Torokhovf8a4bd32010-06-04 00:54:43 -0700804 struct firmware_priv *fw_priv = to_firmware_priv(dev);
Ming Lei12446912012-08-04 12:01:20 +0800805 struct firmware_buf *buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806 ssize_t retval;
807
808 if (!capable(CAP_SYS_RAWIO))
809 return -EPERM;
Stanislaw W. Gruszkab92eac02005-06-28 20:44:51 -0700810
Laura Garciacad1e552006-05-23 23:22:38 +0200811 mutex_lock(&fw_lock);
Ming Lei12446912012-08-04 12:01:20 +0800812 buf = fw_priv->buf;
813 if (!buf || test_bit(FW_STATUS_DONE, &buf->status)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814 retval = -ENODEV;
815 goto out;
816 }
Ming Lei65710cb2012-08-04 12:01:16 +0800817
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818 retval = fw_realloc_buffer(fw_priv, offset + count);
819 if (retval)
820 goto out;
821
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822 retval = count;
Stephen Boyd9ccf9812016-08-02 14:04:22 -0700823 firmware_rw(buf, buffer, offset, count, false);
David Woodhouse6e03a202009-04-09 22:04:07 -0700824
Stephen Boyd9ccf9812016-08-02 14:04:22 -0700825 buf->size = max_t(size_t, offset + count, buf->size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700826out:
Laura Garciacad1e552006-05-23 23:22:38 +0200827 mutex_unlock(&fw_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828 return retval;
829}
Randy Dunlapeb8e3172005-10-30 15:03:01 -0800830
Dmitry Torokhov0983ca22010-06-04 00:54:37 -0700831static struct bin_attribute firmware_attr_data = {
832 .attr = { .name = "data", .mode = 0644 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700833 .size = 0,
834 .read = firmware_data_read,
835 .write = firmware_data_write,
836};
837
Takashi Iwai46239902015-02-04 15:18:07 +0100838static struct attribute *fw_dev_attrs[] = {
839 &dev_attr_loading.attr,
840 NULL
841};
842
843static struct bin_attribute *fw_dev_bin_attrs[] = {
844 &firmware_attr_data,
845 NULL
846};
847
848static const struct attribute_group fw_dev_attr_group = {
849 .attrs = fw_dev_attrs,
850 .bin_attrs = fw_dev_bin_attrs,
851};
852
853static const struct attribute_group *fw_dev_attr_groups[] = {
854 &fw_dev_attr_group,
855 NULL
856};
857
Dmitry Torokhovf8a4bd32010-06-04 00:54:43 -0700858static struct firmware_priv *
Stephen Boyddddb5542012-03-28 23:30:43 +0200859fw_create_instance(struct firmware *firmware, const char *fw_name,
Takashi Iwai14c4bae2013-12-02 15:38:18 +0100860 struct device *device, unsigned int opt_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700861{
Dmitry Torokhovf8a4bd32010-06-04 00:54:43 -0700862 struct firmware_priv *fw_priv;
863 struct device *f_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864
Ming Lei12446912012-08-04 12:01:20 +0800865 fw_priv = kzalloc(sizeof(*fw_priv), GFP_KERNEL);
Dmitry Torokhovf8a4bd32010-06-04 00:54:43 -0700866 if (!fw_priv) {
Ming Lei12446912012-08-04 12:01:20 +0800867 fw_priv = ERR_PTR(-ENOMEM);
868 goto exit;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870
Takashi Iwai14c4bae2013-12-02 15:38:18 +0100871 fw_priv->nowait = !!(opt_flags & FW_OPT_NOWAIT);
Ming Lei1f2b7952012-08-04 12:01:21 +0800872 fw_priv->fw = firmware;
Dmitry Torokhovf8a4bd32010-06-04 00:54:43 -0700873 f_dev = &fw_priv->dev;
874
875 device_initialize(f_dev);
Ming Lei99c2aa72012-08-04 12:01:19 +0800876 dev_set_name(f_dev, "%s", fw_name);
Greg Kroah-Hartmane55c8792006-09-14 07:30:59 -0700877 f_dev->parent = device;
878 f_dev->class = &firmware_class;
Takashi Iwai46239902015-02-04 15:18:07 +0100879 f_dev->groups = fw_dev_attr_groups;
Ming Lei12446912012-08-04 12:01:20 +0800880exit:
Dmitry Torokhovf8a4bd32010-06-04 00:54:43 -0700881 return fw_priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700882}
Takashi Iwaicd7239f2013-01-31 11:13:56 +0100883
884/* load a firmware via user helper */
Takashi Iwai14c4bae2013-12-02 15:38:18 +0100885static int _request_firmware_load(struct firmware_priv *fw_priv,
886 unsigned int opt_flags, long timeout)
Takashi Iwaicd7239f2013-01-31 11:13:56 +0100887{
888 int retval = 0;
889 struct device *f_dev = &fw_priv->dev;
890 struct firmware_buf *buf = fw_priv->buf;
891
892 /* fall back on userspace loading */
893 buf->is_paged_buf = true;
894
895 dev_set_uevent_suppress(f_dev, true);
896
Takashi Iwaicd7239f2013-01-31 11:13:56 +0100897 retval = device_add(f_dev);
898 if (retval) {
899 dev_err(f_dev, "%s: device_register failed\n", __func__);
900 goto err_put_dev;
901 }
902
Maxime Bizon1eeeef12013-08-29 20:28:13 +0200903 mutex_lock(&fw_lock);
904 list_add(&buf->pending_list, &pending_fw_head);
905 mutex_unlock(&fw_lock);
906
Takashi Iwai14c4bae2013-12-02 15:38:18 +0100907 if (opt_flags & FW_OPT_UEVENT) {
Ming Leiaf5bc112013-05-27 18:30:04 +0800908 buf->need_uevent = true;
Takashi Iwaicd7239f2013-01-31 11:13:56 +0100909 dev_set_uevent_suppress(f_dev, false);
910 dev_dbg(f_dev, "firmware: requesting %s\n", buf->fw_id);
Takashi Iwaicd7239f2013-01-31 11:13:56 +0100911 kobject_uevent(&fw_priv->dev.kobj, KOBJ_ADD);
Ming Lei68ff2a02015-01-13 00:02:01 +0800912 } else {
913 timeout = MAX_JIFFY_OFFSET;
Takashi Iwaicd7239f2013-01-31 11:13:56 +0100914 }
915
Ming Lei68ff2a02015-01-13 00:02:01 +0800916 retval = wait_for_completion_interruptible_timeout(&buf->completion,
917 timeout);
918 if (retval == -ERESTARTSYS || !retval) {
Ming Lei0cb64242015-01-13 00:01:35 +0800919 mutex_lock(&fw_lock);
920 fw_load_abort(fw_priv);
921 mutex_unlock(&fw_lock);
Zahari Doychevef518cc2015-03-10 10:45:40 +0100922 } else if (retval > 0) {
923 retval = 0;
Ming Lei0cb64242015-01-13 00:01:35 +0800924 }
Takashi Iwaicd7239f2013-01-31 11:13:56 +0100925
Shuah Khan0542ad82014-07-22 18:10:38 -0600926 if (is_fw_load_aborted(buf))
927 retval = -EAGAIN;
928 else if (!buf->data)
zhang jun2b1278c2014-02-13 15:18:47 +0800929 retval = -ENOMEM;
Takashi Iwaicd7239f2013-01-31 11:13:56 +0100930
Takashi Iwaicd7239f2013-01-31 11:13:56 +0100931 device_del(f_dev);
932err_put_dev:
933 put_device(f_dev);
934 return retval;
935}
936
937static int fw_load_from_user_helper(struct firmware *firmware,
938 const char *name, struct device *device,
Takashi Iwai14c4bae2013-12-02 15:38:18 +0100939 unsigned int opt_flags, long timeout)
Takashi Iwaicd7239f2013-01-31 11:13:56 +0100940{
941 struct firmware_priv *fw_priv;
942
Takashi Iwai14c4bae2013-12-02 15:38:18 +0100943 fw_priv = fw_create_instance(firmware, name, device, opt_flags);
Takashi Iwaicd7239f2013-01-31 11:13:56 +0100944 if (IS_ERR(fw_priv))
945 return PTR_ERR(fw_priv);
946
947 fw_priv->buf = firmware->priv;
Takashi Iwai14c4bae2013-12-02 15:38:18 +0100948 return _request_firmware_load(fw_priv, opt_flags, timeout);
Takashi Iwaicd7239f2013-01-31 11:13:56 +0100949}
Ming Leiddf1f062013-06-04 10:01:13 +0800950
Ming Lei5b7cb7a2013-06-06 19:52:54 +0800951#ifdef CONFIG_PM_SLEEP
Ming Leiddf1f062013-06-04 10:01:13 +0800952/* kill pending requests without uevent to avoid blocking suspend */
953static void kill_requests_without_uevent(void)
954{
955 struct firmware_buf *buf;
956 struct firmware_buf *next;
957
958 mutex_lock(&fw_lock);
959 list_for_each_entry_safe(buf, next, &pending_fw_head, pending_list) {
960 if (!buf->need_uevent)
Greg Kroah-Hartman7068cb02013-06-19 20:26:43 -0700961 __fw_load_abort(buf);
Ming Leiddf1f062013-06-04 10:01:13 +0800962 }
963 mutex_unlock(&fw_lock);
964}
Ming Lei5b7cb7a2013-06-06 19:52:54 +0800965#endif
Ming Leiddf1f062013-06-04 10:01:13 +0800966
Takashi Iwaicd7239f2013-01-31 11:13:56 +0100967#else /* CONFIG_FW_LOADER_USER_HELPER */
968static inline int
969fw_load_from_user_helper(struct firmware *firmware, const char *name,
Takashi Iwai14c4bae2013-12-02 15:38:18 +0100970 struct device *device, unsigned int opt_flags,
Takashi Iwaicd7239f2013-01-31 11:13:56 +0100971 long timeout)
972{
973 return -ENOENT;
974}
Takashi Iwai807be032013-01-31 11:13:57 +0100975
976/* No abort during direct loading */
977#define is_fw_load_aborted(buf) false
978
Ming Lei5b7cb7a2013-06-06 19:52:54 +0800979#ifdef CONFIG_PM_SLEEP
Ming Leiddf1f062013-06-04 10:01:13 +0800980static inline void kill_requests_without_uevent(void) { }
Ming Lei5b7cb7a2013-06-06 19:52:54 +0800981#endif
Ming Leiddf1f062013-06-04 10:01:13 +0800982
Takashi Iwai7b1269f2013-01-31 11:13:55 +0100983#endif /* CONFIG_FW_LOADER_USER_HELPER */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700984
Ming Leif531f05a2012-08-04 12:01:25 +0800985
Takashi Iwai4e0c92d2013-01-31 11:13:54 +0100986/* wait until the shared firmware_buf becomes ready (or error) */
987static int sync_cached_firmware_buf(struct firmware_buf *buf)
Ming Lei1f2b7952012-08-04 12:01:21 +0800988{
Takashi Iwai4e0c92d2013-01-31 11:13:54 +0100989 int ret = 0;
990
991 mutex_lock(&fw_lock);
992 while (!test_bit(FW_STATUS_DONE, &buf->status)) {
Takashi Iwai807be032013-01-31 11:13:57 +0100993 if (is_fw_load_aborted(buf)) {
Takashi Iwai4e0c92d2013-01-31 11:13:54 +0100994 ret = -ENOENT;
995 break;
996 }
997 mutex_unlock(&fw_lock);
Kweh, Hock Leong000deba2014-11-18 10:56:59 +0800998 ret = wait_for_completion_interruptible(&buf->completion);
Takashi Iwai4e0c92d2013-01-31 11:13:54 +0100999 mutex_lock(&fw_lock);
1000 }
1001 mutex_unlock(&fw_lock);
1002 return ret;
Ming Lei1f2b7952012-08-04 12:01:21 +08001003}
1004
Takashi Iwai4e0c92d2013-01-31 11:13:54 +01001005/* prepare firmware and firmware_buf structs;
1006 * return 0 if a firmware is already assigned, 1 if need to load one,
1007 * or a negative error code
1008 */
1009static int
1010_request_firmware_prepare(struct firmware **firmware_p, const char *name,
1011 struct device *device)
Dmitry Torokhovf8a4bd32010-06-04 00:54:43 -07001012{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001013 struct firmware *firmware;
Ming Lei1f2b7952012-08-04 12:01:21 +08001014 struct firmware_buf *buf;
1015 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001016
Jiri Slaby4aed0642005-09-13 01:25:01 -07001017 *firmware_p = firmware = kzalloc(sizeof(*firmware), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001018 if (!firmware) {
Bjorn Helgaas266a8132008-10-15 22:04:20 -07001019 dev_err(device, "%s: kmalloc(struct firmware) failed\n",
1020 __func__);
Takashi Iwai4e0c92d2013-01-31 11:13:54 +01001021 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001022 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001023
Dmitry Torokhovbcb9bd12010-03-13 23:49:18 -08001024 if (fw_get_builtin_firmware(firmware, name)) {
Luis R. Rodriguezed046302015-04-29 16:30:43 -07001025 dev_dbg(device, "using built-in %s\n", name);
Takashi Iwai4e0c92d2013-01-31 11:13:54 +01001026 return 0; /* assigned */
David Woodhouse5658c762008-05-23 13:52:42 +01001027 }
1028
Ming Lei1f2b7952012-08-04 12:01:21 +08001029 ret = fw_lookup_and_allocate_buf(name, &fw_cache, &buf);
Ming Lei1f2b7952012-08-04 12:01:21 +08001030
Takashi Iwai4e0c92d2013-01-31 11:13:54 +01001031 /*
1032 * bind with 'buf' now to avoid warning in failure path
1033 * of requesting firmware.
1034 */
1035 firmware->priv = buf;
Ming Lei1f2b7952012-08-04 12:01:21 +08001036
Takashi Iwai4e0c92d2013-01-31 11:13:54 +01001037 if (ret > 0) {
1038 ret = sync_cached_firmware_buf(buf);
1039 if (!ret) {
1040 fw_set_page_data(buf, firmware);
1041 return 0; /* assigned */
1042 }
Stephen Boyddddb5542012-03-28 23:30:43 +02001043 }
Ming Lei1f2b7952012-08-04 12:01:21 +08001044
Takashi Iwai4e0c92d2013-01-31 11:13:54 +01001045 if (ret < 0)
1046 return ret;
1047 return 1; /* need to load */
Rafael J. Wysocki811fa402012-03-28 23:29:55 +02001048}
1049
Ming Leie771d1a2013-05-27 18:30:03 +08001050static int assign_firmware_buf(struct firmware *fw, struct device *device,
Takashi Iwai14c4bae2013-12-02 15:38:18 +01001051 unsigned int opt_flags)
Takashi Iwai4e0c92d2013-01-31 11:13:54 +01001052{
1053 struct firmware_buf *buf = fw->priv;
1054
1055 mutex_lock(&fw_lock);
Takashi Iwai807be032013-01-31 11:13:57 +01001056 if (!buf->size || is_fw_load_aborted(buf)) {
Takashi Iwai4e0c92d2013-01-31 11:13:54 +01001057 mutex_unlock(&fw_lock);
1058 return -ENOENT;
1059 }
1060
1061 /*
1062 * add firmware name into devres list so that we can auto cache
1063 * and uncache firmware for device.
1064 *
1065 * device may has been deleted already, but the problem
1066 * should be fixed in devres or driver core.
1067 */
Takashi Iwai14c4bae2013-12-02 15:38:18 +01001068 /* don't cache firmware handled without uevent */
Vikram Mulukutla0e742e92016-08-02 14:04:25 -07001069 if (device && (opt_flags & FW_OPT_UEVENT) &&
1070 !(opt_flags & FW_OPT_NOCACHE))
Takashi Iwai4e0c92d2013-01-31 11:13:54 +01001071 fw_add_devm_name(device, buf->fw_id);
1072
1073 /*
1074 * After caching firmware image is started, let it piggyback
1075 * on request firmware.
1076 */
Vikram Mulukutla0e742e92016-08-02 14:04:25 -07001077 if (!(opt_flags & FW_OPT_NOCACHE) &&
1078 buf->fwc->state == FW_LOADER_START_CACHE) {
Takashi Iwai4e0c92d2013-01-31 11:13:54 +01001079 if (fw_cache_piggyback_on_request(buf->fw_id))
1080 kref_get(&buf->ref);
1081 }
1082
1083 /* pass the pages buffer to driver at the last minute */
1084 fw_set_page_data(buf, fw);
1085 mutex_unlock(&fw_lock);
1086 return 0;
1087}
1088
Takashi Iwai4e0c92d2013-01-31 11:13:54 +01001089/* called from request_firmware() and request_firmware_work_func() */
1090static int
1091_request_firmware(const struct firmware **firmware_p, const char *name,
Takashi Iwai14c4bae2013-12-02 15:38:18 +01001092 struct device *device, unsigned int opt_flags)
Takashi Iwai4e0c92d2013-01-31 11:13:54 +01001093{
Brian Norris715780a2015-12-09 14:50:28 -08001094 struct firmware *fw = NULL;
Takashi Iwai4e0c92d2013-01-31 11:13:54 +01001095 long timeout;
1096 int ret;
1097
1098 if (!firmware_p)
1099 return -EINVAL;
1100
Brian Norris715780a2015-12-09 14:50:28 -08001101 if (!name || name[0] == '\0') {
1102 ret = -EINVAL;
1103 goto out;
1104 }
Kees Cook471b0952014-09-18 11:25:37 -07001105
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);
Luis R. Rodriguezf9692b22015-05-12 14:49:42 -07001254 kfree_const(fw_work->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001255 kfree(fw_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001256}
1257
1258/**
Ben Hutchings3c31f072010-02-14 14:18:53 +00001259 * request_firmware_nowait - asynchronous version of request_firmware
Randy Dunlapeb8e3172005-10-30 15:03:01 -08001260 * @module: module requesting the firmware
Kay Sievers312c0042005-11-16 09:00:00 +01001261 * @uevent: sends uevent to copy the firmware image if this flag
Randy Dunlapeb8e3172005-10-30 15:03:01 -08001262 * is non-zero else the firmware copy must be done manually.
1263 * @name: name of firmware file
1264 * @device: device for which firmware is being loaded
Johannes Berg9ebfbd42009-10-29 12:36:02 +01001265 * @gfp: allocation flags
Randy Dunlapeb8e3172005-10-30 15:03:01 -08001266 * @context: will be passed over to @cont, and
1267 * @fw may be %NULL if firmware request fails.
1268 * @cont: function will be called asynchronously when the firmware
1269 * request is over.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001270 *
Ming Lei0cfc1e12012-08-04 12:01:23 +08001271 * Caller must hold the reference count of @device.
1272 *
Ming Lei6f21a622012-08-04 12:01:24 +08001273 * Asynchronous variant of request_firmware() for user contexts:
1274 * - sleep for as small periods as possible since it may
1275 * increase kernel boot time of built-in device drivers
1276 * requesting firmware in their ->probe() methods, if
1277 * @gfp is GFP_KERNEL.
1278 *
1279 * - can't sleep at all if @gfp is GFP_ATOMIC.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001280 **/
1281int
1282request_firmware_nowait(
Bob Liu072fc8f2011-01-26 18:33:32 +08001283 struct module *module, bool uevent,
Johannes Berg9ebfbd42009-10-29 12:36:02 +01001284 const char *name, struct device *device, gfp_t gfp, void *context,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001285 void (*cont)(const struct firmware *fw, void *context))
1286{
Dmitry Torokhovf8a4bd32010-06-04 00:54:43 -07001287 struct firmware_work *fw_work;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001288
Andrei Opreaea310032015-03-08 12:41:15 +02001289 fw_work = kzalloc(sizeof(struct firmware_work), gfp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001290 if (!fw_work)
1291 return -ENOMEM;
Dmitry Torokhovf8a4bd32010-06-04 00:54:43 -07001292
1293 fw_work->module = module;
Luis R. Rodriguezf9692b22015-05-12 14:49:42 -07001294 fw_work->name = kstrdup_const(name, gfp);
Luis R. Rodriguez303cda02015-05-28 17:46:42 -07001295 if (!fw_work->name) {
1296 kfree(fw_work);
Luis R. Rodriguezf9692b22015-05-12 14:49:42 -07001297 return -ENOMEM;
Luis R. Rodriguez303cda02015-05-28 17:46:42 -07001298 }
Dmitry Torokhovf8a4bd32010-06-04 00:54:43 -07001299 fw_work->device = device;
1300 fw_work->context = context;
1301 fw_work->cont = cont;
Takashi Iwai14c4bae2013-12-02 15:38:18 +01001302 fw_work->opt_flags = FW_OPT_NOWAIT | FW_OPT_FALLBACK |
Takashi Iwai5a1379e2014-06-04 17:48:15 +02001303 (uevent ? FW_OPT_UEVENT : FW_OPT_USERHELPER);
Dmitry Torokhovf8a4bd32010-06-04 00:54:43 -07001304
Linus Torvalds1da177e2005-04-16 15:20:36 -07001305 if (!try_module_get(module)) {
Luis R. Rodriguezf9692b22015-05-12 14:49:42 -07001306 kfree_const(fw_work->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001307 kfree(fw_work);
1308 return -EFAULT;
1309 }
1310
Ming Lei0cfc1e12012-08-04 12:01:23 +08001311 get_device(fw_work->device);
Stephen Boyda36cf842012-03-28 23:31:00 +02001312 INIT_WORK(&fw_work->work, request_firmware_work_func);
1313 schedule_work(&fw_work->work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001314 return 0;
1315}
Daniel Mackf4945132013-05-23 22:17:18 +02001316EXPORT_SYMBOL(request_firmware_nowait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001317
Ming Lei90f890812013-06-20 12:30:16 +08001318#ifdef CONFIG_PM_SLEEP
1319static ASYNC_DOMAIN_EXCLUSIVE(fw_cache_domain);
1320
Ming Lei2887b392012-08-04 12:01:22 +08001321/**
1322 * cache_firmware - cache one firmware image in kernel memory space
1323 * @fw_name: the firmware image name
1324 *
1325 * Cache firmware in kernel memory so that drivers can use it when
1326 * system isn't ready for them to request firmware image from userspace.
1327 * Once it returns successfully, driver can use request_firmware or its
1328 * nowait version to get the cached firmware without any interacting
1329 * with userspace
1330 *
1331 * Return 0 if the firmware image has been cached successfully
1332 * Return !0 otherwise
1333 *
1334 */
Ming Lei93232e42013-06-06 20:01:47 +08001335static int cache_firmware(const char *fw_name)
Ming Lei2887b392012-08-04 12:01:22 +08001336{
1337 int ret;
1338 const struct firmware *fw;
1339
1340 pr_debug("%s: %s\n", __func__, fw_name);
1341
1342 ret = request_firmware(&fw, fw_name, NULL);
1343 if (!ret)
1344 kfree(fw);
1345
1346 pr_debug("%s: %s ret=%d\n", __func__, fw_name, ret);
1347
1348 return ret;
1349}
1350
Ming Lei6a2c1232013-06-26 09:28:17 +08001351static struct firmware_buf *fw_lookup_buf(const char *fw_name)
1352{
1353 struct firmware_buf *tmp;
1354 struct firmware_cache *fwc = &fw_cache;
1355
1356 spin_lock(&fwc->lock);
1357 tmp = __fw_lookup_buf(fw_name);
1358 spin_unlock(&fwc->lock);
1359
1360 return tmp;
1361}
1362
Ming Lei2887b392012-08-04 12:01:22 +08001363/**
1364 * uncache_firmware - remove one cached firmware image
1365 * @fw_name: the firmware image name
1366 *
1367 * Uncache one firmware image which has been cached successfully
1368 * before.
1369 *
1370 * Return 0 if the firmware cache has been removed successfully
1371 * Return !0 otherwise
1372 *
1373 */
Ming Lei93232e42013-06-06 20:01:47 +08001374static int uncache_firmware(const char *fw_name)
Ming Lei2887b392012-08-04 12:01:22 +08001375{
1376 struct firmware_buf *buf;
1377 struct firmware fw;
1378
1379 pr_debug("%s: %s\n", __func__, fw_name);
1380
1381 if (fw_get_builtin_firmware(&fw, fw_name))
1382 return 0;
1383
1384 buf = fw_lookup_buf(fw_name);
1385 if (buf) {
1386 fw_free_buf(buf);
1387 return 0;
1388 }
1389
1390 return -EINVAL;
1391}
1392
Ming Lei37276a52012-08-04 12:01:27 +08001393static struct fw_cache_entry *alloc_fw_cache_entry(const char *name)
1394{
1395 struct fw_cache_entry *fce;
1396
Luis R. Rodrigueze0fd9b12015-05-12 14:49:43 -07001397 fce = kzalloc(sizeof(*fce), GFP_ATOMIC);
Ming Lei37276a52012-08-04 12:01:27 +08001398 if (!fce)
1399 goto exit;
1400
Luis R. Rodrigueze0fd9b12015-05-12 14:49:43 -07001401 fce->name = kstrdup_const(name, GFP_ATOMIC);
1402 if (!fce->name) {
1403 kfree(fce);
1404 fce = NULL;
1405 goto exit;
1406 }
Ming Lei37276a52012-08-04 12:01:27 +08001407exit:
1408 return fce;
1409}
1410
Ming Lei373304f2012-10-09 12:01:01 +08001411static int __fw_entry_found(const char *name)
1412{
1413 struct firmware_cache *fwc = &fw_cache;
1414 struct fw_cache_entry *fce;
1415
1416 list_for_each_entry(fce, &fwc->fw_names, list) {
1417 if (!strcmp(fce->name, name))
1418 return 1;
1419 }
1420 return 0;
1421}
1422
Ming Leiac39b3e2012-08-20 19:04:16 +08001423static int fw_cache_piggyback_on_request(const char *name)
1424{
1425 struct firmware_cache *fwc = &fw_cache;
1426 struct fw_cache_entry *fce;
1427 int ret = 0;
1428
1429 spin_lock(&fwc->name_lock);
Ming Lei373304f2012-10-09 12:01:01 +08001430 if (__fw_entry_found(name))
1431 goto found;
Ming Leiac39b3e2012-08-20 19:04:16 +08001432
1433 fce = alloc_fw_cache_entry(name);
1434 if (fce) {
1435 ret = 1;
1436 list_add(&fce->list, &fwc->fw_names);
1437 pr_debug("%s: fw: %s\n", __func__, name);
1438 }
1439found:
1440 spin_unlock(&fwc->name_lock);
1441 return ret;
1442}
1443
Ming Lei37276a52012-08-04 12:01:27 +08001444static void free_fw_cache_entry(struct fw_cache_entry *fce)
1445{
Luis R. Rodrigueze0fd9b12015-05-12 14:49:43 -07001446 kfree_const(fce->name);
Ming Lei37276a52012-08-04 12:01:27 +08001447 kfree(fce);
1448}
1449
1450static void __async_dev_cache_fw_image(void *fw_entry,
1451 async_cookie_t cookie)
1452{
1453 struct fw_cache_entry *fce = fw_entry;
1454 struct firmware_cache *fwc = &fw_cache;
1455 int ret;
1456
1457 ret = cache_firmware(fce->name);
Ming Leiac39b3e2012-08-20 19:04:16 +08001458 if (ret) {
1459 spin_lock(&fwc->name_lock);
1460 list_del(&fce->list);
1461 spin_unlock(&fwc->name_lock);
Ming Lei37276a52012-08-04 12:01:27 +08001462
Ming Leiac39b3e2012-08-20 19:04:16 +08001463 free_fw_cache_entry(fce);
1464 }
Ming Lei37276a52012-08-04 12:01:27 +08001465}
1466
1467/* called with dev->devres_lock held */
1468static void dev_create_fw_entry(struct device *dev, void *res,
1469 void *data)
1470{
1471 struct fw_name_devm *fwn = res;
1472 const char *fw_name = fwn->name;
1473 struct list_head *head = data;
1474 struct fw_cache_entry *fce;
1475
1476 fce = alloc_fw_cache_entry(fw_name);
1477 if (fce)
1478 list_add(&fce->list, head);
1479}
1480
1481static int devm_name_match(struct device *dev, void *res,
1482 void *match_data)
1483{
1484 struct fw_name_devm *fwn = res;
1485 return (fwn->magic == (unsigned long)match_data);
1486}
1487
Ming Leiab6dd8e2012-08-17 22:07:00 +08001488static void dev_cache_fw_image(struct device *dev, void *data)
Ming Lei37276a52012-08-04 12:01:27 +08001489{
1490 LIST_HEAD(todo);
1491 struct fw_cache_entry *fce;
1492 struct fw_cache_entry *fce_next;
1493 struct firmware_cache *fwc = &fw_cache;
1494
1495 devres_for_each_res(dev, fw_name_devm_release,
1496 devm_name_match, &fw_cache,
1497 dev_create_fw_entry, &todo);
1498
1499 list_for_each_entry_safe(fce, fce_next, &todo, list) {
1500 list_del(&fce->list);
1501
1502 spin_lock(&fwc->name_lock);
Ming Lei373304f2012-10-09 12:01:01 +08001503 /* only one cache entry for one firmware */
1504 if (!__fw_entry_found(fce->name)) {
Ming Lei373304f2012-10-09 12:01:01 +08001505 list_add(&fce->list, &fwc->fw_names);
1506 } else {
1507 free_fw_cache_entry(fce);
1508 fce = NULL;
1509 }
Ming Lei37276a52012-08-04 12:01:27 +08001510 spin_unlock(&fwc->name_lock);
1511
Ming Lei373304f2012-10-09 12:01:01 +08001512 if (fce)
Ming Leid28d3882012-10-09 12:01:04 +08001513 async_schedule_domain(__async_dev_cache_fw_image,
1514 (void *)fce,
1515 &fw_cache_domain);
Ming Lei37276a52012-08-04 12:01:27 +08001516 }
1517}
1518
1519static void __device_uncache_fw_images(void)
1520{
1521 struct firmware_cache *fwc = &fw_cache;
1522 struct fw_cache_entry *fce;
1523
1524 spin_lock(&fwc->name_lock);
1525 while (!list_empty(&fwc->fw_names)) {
1526 fce = list_entry(fwc->fw_names.next,
1527 struct fw_cache_entry, list);
1528 list_del(&fce->list);
1529 spin_unlock(&fwc->name_lock);
1530
1531 uncache_firmware(fce->name);
1532 free_fw_cache_entry(fce);
1533
1534 spin_lock(&fwc->name_lock);
1535 }
1536 spin_unlock(&fwc->name_lock);
1537}
1538
1539/**
1540 * device_cache_fw_images - cache devices' firmware
1541 *
1542 * If one device called request_firmware or its nowait version
1543 * successfully before, the firmware names are recored into the
1544 * device's devres link list, so device_cache_fw_images can call
1545 * cache_firmware() to cache these firmwares for the device,
1546 * then the device driver can load its firmwares easily at
1547 * time when system is not ready to complete loading firmware.
1548 */
1549static void device_cache_fw_images(void)
1550{
1551 struct firmware_cache *fwc = &fw_cache;
Ming Leiffe53f62012-08-04 12:01:28 +08001552 int old_timeout;
Ming Lei37276a52012-08-04 12:01:27 +08001553 DEFINE_WAIT(wait);
1554
1555 pr_debug("%s\n", __func__);
1556
Ming Lei373304f2012-10-09 12:01:01 +08001557 /* cancel uncache work */
1558 cancel_delayed_work_sync(&fwc->work);
1559
Ming Leiffe53f62012-08-04 12:01:28 +08001560 /*
1561 * use small loading timeout for caching devices' firmware
1562 * because all these firmware images have been loaded
1563 * successfully at lease once, also system is ready for
1564 * completing firmware loading now. The maximum size of
1565 * firmware in current distributions is about 2M bytes,
1566 * so 10 secs should be enough.
1567 */
1568 old_timeout = loading_timeout;
1569 loading_timeout = 10;
1570
Ming Leiac39b3e2012-08-20 19:04:16 +08001571 mutex_lock(&fw_lock);
1572 fwc->state = FW_LOADER_START_CACHE;
Ming Leiab6dd8e2012-08-17 22:07:00 +08001573 dpm_for_each_dev(NULL, dev_cache_fw_image);
Ming Leiac39b3e2012-08-20 19:04:16 +08001574 mutex_unlock(&fw_lock);
Ming Lei37276a52012-08-04 12:01:27 +08001575
1576 /* wait for completion of caching firmware for all devices */
Ming Leid28d3882012-10-09 12:01:04 +08001577 async_synchronize_full_domain(&fw_cache_domain);
Ming Leiffe53f62012-08-04 12:01:28 +08001578
1579 loading_timeout = old_timeout;
Ming Lei37276a52012-08-04 12:01:27 +08001580}
1581
1582/**
1583 * device_uncache_fw_images - uncache devices' firmware
1584 *
1585 * uncache all firmwares which have been cached successfully
1586 * by device_uncache_fw_images earlier
1587 */
1588static void device_uncache_fw_images(void)
1589{
1590 pr_debug("%s\n", __func__);
1591 __device_uncache_fw_images();
1592}
1593
1594static void device_uncache_fw_images_work(struct work_struct *work)
1595{
1596 device_uncache_fw_images();
1597}
1598
1599/**
1600 * device_uncache_fw_images_delay - uncache devices firmwares
1601 * @delay: number of milliseconds to delay uncache device firmwares
1602 *
1603 * uncache all devices's firmwares which has been cached successfully
1604 * by device_cache_fw_images after @delay milliseconds.
1605 */
1606static void device_uncache_fw_images_delay(unsigned long delay)
1607{
Shaibal Duttabce66182014-01-31 15:44:58 -08001608 queue_delayed_work(system_power_efficient_wq, &fw_cache.work,
1609 msecs_to_jiffies(delay));
Ming Lei37276a52012-08-04 12:01:27 +08001610}
1611
Ming Lei07646d92012-08-04 12:01:29 +08001612static int fw_pm_notify(struct notifier_block *notify_block,
1613 unsigned long mode, void *unused)
1614{
1615 switch (mode) {
1616 case PM_HIBERNATION_PREPARE:
1617 case PM_SUSPEND_PREPARE:
Sebastian Capellaf8d5b9e2014-02-18 17:52:08 -08001618 case PM_RESTORE_PREPARE:
Ming Leiaf5bc112013-05-27 18:30:04 +08001619 kill_requests_without_uevent();
Ming Lei07646d92012-08-04 12:01:29 +08001620 device_cache_fw_images();
1621 break;
1622
1623 case PM_POST_SUSPEND:
1624 case PM_POST_HIBERNATION:
1625 case PM_POST_RESTORE:
Ming Leiac39b3e2012-08-20 19:04:16 +08001626 /*
1627 * In case that system sleep failed and syscore_suspend is
1628 * not called.
1629 */
1630 mutex_lock(&fw_lock);
1631 fw_cache.state = FW_LOADER_NO_CACHE;
1632 mutex_unlock(&fw_lock);
1633
Ming Lei07646d92012-08-04 12:01:29 +08001634 device_uncache_fw_images_delay(10 * MSEC_PER_SEC);
1635 break;
1636 }
1637
1638 return 0;
1639}
Ming Lei07646d92012-08-04 12:01:29 +08001640
Ming Leiac39b3e2012-08-20 19:04:16 +08001641/* stop caching firmware once syscore_suspend is reached */
1642static int fw_suspend(void)
1643{
1644 fw_cache.state = FW_LOADER_NO_CACHE;
1645 return 0;
1646}
1647
1648static struct syscore_ops fw_syscore_ops = {
1649 .suspend = fw_suspend,
1650};
Ming Leicfe016b2012-09-08 17:32:30 +08001651#else
1652static int fw_cache_piggyback_on_request(const char *name)
1653{
1654 return 0;
1655}
1656#endif
Ming Leiac39b3e2012-08-20 19:04:16 +08001657
Ming Lei37276a52012-08-04 12:01:27 +08001658static void __init fw_cache_init(void)
1659{
1660 spin_lock_init(&fw_cache.lock);
1661 INIT_LIST_HEAD(&fw_cache.head);
Ming Leicfe016b2012-09-08 17:32:30 +08001662 fw_cache.state = FW_LOADER_NO_CACHE;
Ming Lei37276a52012-08-04 12:01:27 +08001663
Ming Leicfe016b2012-09-08 17:32:30 +08001664#ifdef CONFIG_PM_SLEEP
Ming Lei37276a52012-08-04 12:01:27 +08001665 spin_lock_init(&fw_cache.name_lock);
1666 INIT_LIST_HEAD(&fw_cache.fw_names);
Ming Lei37276a52012-08-04 12:01:27 +08001667
Ming Lei37276a52012-08-04 12:01:27 +08001668 INIT_DELAYED_WORK(&fw_cache.work,
1669 device_uncache_fw_images_work);
Ming Lei07646d92012-08-04 12:01:29 +08001670
1671 fw_cache.pm_notify.notifier_call = fw_pm_notify;
1672 register_pm_notifier(&fw_cache.pm_notify);
Ming Leiac39b3e2012-08-20 19:04:16 +08001673
1674 register_syscore_ops(&fw_syscore_ops);
Ming Leicfe016b2012-09-08 17:32:30 +08001675#endif
Ming Lei37276a52012-08-04 12:01:27 +08001676}
1677
Dmitry Torokhov673fae92010-03-13 23:49:13 -08001678static int __init firmware_class_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001679{
Ming Lei1f2b7952012-08-04 12:01:21 +08001680 fw_cache_init();
Takashi Iwai7b1269f2013-01-31 11:13:55 +01001681#ifdef CONFIG_FW_LOADER_USER_HELPER
Takashi Iwaife304142013-05-22 18:28:38 +02001682 register_reboot_notifier(&fw_shutdown_nb);
Dmitry Torokhov673fae92010-03-13 23:49:13 -08001683 return class_register(&firmware_class);
Takashi Iwai7b1269f2013-01-31 11:13:55 +01001684#else
1685 return 0;
1686#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001687}
Dmitry Torokhov673fae92010-03-13 23:49:13 -08001688
1689static void __exit firmware_class_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001690{
Ming Leicfe016b2012-09-08 17:32:30 +08001691#ifdef CONFIG_PM_SLEEP
Ming Leiac39b3e2012-08-20 19:04:16 +08001692 unregister_syscore_ops(&fw_syscore_ops);
Ming Lei07646d92012-08-04 12:01:29 +08001693 unregister_pm_notifier(&fw_cache.pm_notify);
Ming Leicfe016b2012-09-08 17:32:30 +08001694#endif
Takashi Iwai7b1269f2013-01-31 11:13:55 +01001695#ifdef CONFIG_FW_LOADER_USER_HELPER
Takashi Iwaife304142013-05-22 18:28:38 +02001696 unregister_reboot_notifier(&fw_shutdown_nb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001697 class_unregister(&firmware_class);
Takashi Iwai7b1269f2013-01-31 11:13:55 +01001698#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001699}
1700
Shaohua Lia30a6a22006-09-27 01:50:52 -07001701fs_initcall(firmware_class_init);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001702module_exit(firmware_class_exit);