blob: 124d50ceb116227639786ba63ada378e185f9aa2 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * firmware_class.c - Multi purpose firmware loading support
3 *
Markus Rechberger87d37a42007-06-04 18:45:44 +02004 * Copyright (c) 2003 Manuel Estrada Sainz
Linus Torvalds1da177e2005-04-16 15:20:36 -07005 *
6 * Please see Documentation/firmware_class/ for more information.
7 *
8 */
9
Randy.Dunlapc59ede72006-01-11 12:17:46 -080010#include <linux/capability.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070011#include <linux/device.h>
12#include <linux/module.h>
13#include <linux/init.h>
14#include <linux/timer.h>
15#include <linux/vmalloc.h>
16#include <linux/interrupt.h>
17#include <linux/bitops.h>
Laura Garciacad1e552006-05-23 23:22:38 +020018#include <linux/mutex.h>
Stephen Boyda36cf842012-03-28 23:31:00 +020019#include <linux/workqueue.h>
David Woodhouse6e03a202009-04-09 22:04:07 -070020#include <linux/highmem.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070021#include <linux/firmware.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090022#include <linux/slab.h>
Stephen Boyda36cf842012-03-28 23:31:00 +020023#include <linux/sched.h>
Linus Torvaldsabb139e2012-10-03 15:58:32 -070024#include <linux/file.h>
Ming Lei1f2b7952012-08-04 12:01:21 +080025#include <linux/list.h>
Ming Lei37276a52012-08-04 12:01:27 +080026#include <linux/async.h>
27#include <linux/pm.h>
Ming Lei07646d92012-08-04 12:01:29 +080028#include <linux/suspend.h>
Ming Leiac39b3e2012-08-20 19:04:16 +080029#include <linux/syscore_ops.h>
Takashi Iwaife304142013-05-22 18:28:38 +020030#include <linux/reboot.h>
Ming Lei37276a52012-08-04 12:01:27 +080031
Linus Torvaldsabb139e2012-10-03 15:58:32 -070032#include <generated/utsrelease.h>
33
Ming Lei37276a52012-08-04 12:01:27 +080034#include "base.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070035
Markus Rechberger87d37a42007-06-04 18:45:44 +020036MODULE_AUTHOR("Manuel Estrada Sainz");
Linus Torvalds1da177e2005-04-16 15:20:36 -070037MODULE_DESCRIPTION("Multi purpose firmware loading support");
38MODULE_LICENSE("GPL");
39
Dmitry Torokhovbcb9bd12010-03-13 23:49:18 -080040/* Builtin firmware support */
41
42#ifdef CONFIG_FW_LOADER
43
44extern struct builtin_fw __start_builtin_fw[];
45extern struct builtin_fw __end_builtin_fw[];
46
47static bool fw_get_builtin_firmware(struct firmware *fw, const char *name)
48{
49 struct builtin_fw *b_fw;
50
51 for (b_fw = __start_builtin_fw; b_fw != __end_builtin_fw; b_fw++) {
52 if (strcmp(name, b_fw->name) == 0) {
53 fw->size = b_fw->size;
54 fw->data = b_fw->data;
55 return true;
56 }
57 }
58
59 return false;
60}
61
62static bool fw_is_builtin_firmware(const struct firmware *fw)
63{
64 struct builtin_fw *b_fw;
65
66 for (b_fw = __start_builtin_fw; b_fw != __end_builtin_fw; b_fw++)
67 if (fw->data == b_fw->data)
68 return true;
69
70 return false;
71}
72
73#else /* Module case - no builtin firmware support */
74
75static inline bool fw_get_builtin_firmware(struct firmware *fw, const char *name)
76{
77 return false;
78}
79
80static inline bool fw_is_builtin_firmware(const struct firmware *fw)
81{
82 return false;
83}
84#endif
85
Linus Torvalds1da177e2005-04-16 15:20:36 -070086enum {
87 FW_STATUS_LOADING,
88 FW_STATUS_DONE,
89 FW_STATUS_ABORT,
Linus Torvalds1da177e2005-04-16 15:20:36 -070090};
91
Dave Jones2f651682007-01-25 15:56:15 -050092static int loading_timeout = 60; /* In seconds */
Linus Torvalds1da177e2005-04-16 15:20:36 -070093
Rafael J. Wysocki9b78c1d2012-03-28 23:30:02 +020094static inline long firmware_loading_timeout(void)
95{
96 return loading_timeout > 0 ? loading_timeout * HZ : MAX_SCHEDULE_TIMEOUT;
97}
98
Takashi Iwai14c4bae2013-12-02 15:38:18 +010099/* firmware behavior options */
100#define FW_OPT_UEVENT (1U << 0)
101#define FW_OPT_NOWAIT (1U << 1)
Takashi Iwai68aeeaa2013-12-02 15:38:19 +0100102#ifdef CONFIG_FW_LOADER_USER_HELPER
Takashi Iwai5a1379e2014-06-04 17:48:15 +0200103#define FW_OPT_USERHELPER (1U << 2)
Takashi Iwai68aeeaa2013-12-02 15:38:19 +0100104#else
Takashi Iwai5a1379e2014-06-04 17:48:15 +0200105#define FW_OPT_USERHELPER 0
106#endif
107#ifdef CONFIG_FW_LOADER_USER_HELPER_FALLBACK
108#define FW_OPT_FALLBACK FW_OPT_USERHELPER
109#else
110#define FW_OPT_FALLBACK 0
Takashi Iwai68aeeaa2013-12-02 15:38:19 +0100111#endif
Luis R. Rodriguezc868edf2014-07-02 09:55:05 -0700112#define FW_OPT_NO_WARN (1U << 3)
Takashi Iwai14c4bae2013-12-02 15:38:18 +0100113
Ming Lei1f2b7952012-08-04 12:01:21 +0800114struct firmware_cache {
115 /* firmware_buf instance will be added into the below list */
116 spinlock_t lock;
117 struct list_head head;
Ming Leicfe016b2012-09-08 17:32:30 +0800118 int state;
Ming Lei37276a52012-08-04 12:01:27 +0800119
Ming Leicfe016b2012-09-08 17:32:30 +0800120#ifdef CONFIG_PM_SLEEP
Ming Lei37276a52012-08-04 12:01:27 +0800121 /*
122 * Names of firmware images which have been cached successfully
123 * will be added into the below list so that device uncache
124 * helper can trace which firmware images have been cached
125 * before.
126 */
127 spinlock_t name_lock;
128 struct list_head fw_names;
129
Ming Lei37276a52012-08-04 12:01:27 +0800130 struct delayed_work work;
Ming Lei07646d92012-08-04 12:01:29 +0800131
132 struct notifier_block pm_notify;
Ming Leicfe016b2012-09-08 17:32:30 +0800133#endif
Ming Lei1f2b7952012-08-04 12:01:21 +0800134};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135
Ming Lei12446912012-08-04 12:01:20 +0800136struct firmware_buf {
Ming Lei1f2b7952012-08-04 12:01:21 +0800137 struct kref ref;
138 struct list_head list;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139 struct completion completion;
Ming Lei1f2b7952012-08-04 12:01:21 +0800140 struct firmware_cache *fwc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141 unsigned long status;
Ming Lei65710cb2012-08-04 12:01:16 +0800142 void *data;
143 size_t size;
Takashi Iwai7b1269f2013-01-31 11:13:55 +0100144#ifdef CONFIG_FW_LOADER_USER_HELPER
Takashi Iwaicd7239f2013-01-31 11:13:56 +0100145 bool is_paged_buf;
Ming Leiaf5bc112013-05-27 18:30:04 +0800146 bool need_uevent;
David Woodhouse6e03a202009-04-09 22:04:07 -0700147 struct page **pages;
148 int nr_pages;
149 int page_array_size;
Takashi Iwaife304142013-05-22 18:28:38 +0200150 struct list_head pending_list;
Takashi Iwai7b1269f2013-01-31 11:13:55 +0100151#endif
Dmitry Torokhove1771232010-03-13 23:49:23 -0800152 char fw_id[];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153};
154
Ming Lei37276a52012-08-04 12:01:27 +0800155struct fw_cache_entry {
156 struct list_head list;
157 char name[];
158};
159
Ming Leif531f05a2012-08-04 12:01:25 +0800160struct fw_name_devm {
161 unsigned long magic;
162 char name[];
163};
164
Ming Lei1f2b7952012-08-04 12:01:21 +0800165#define to_fwbuf(d) container_of(d, struct firmware_buf, ref)
166
Ming Leiac39b3e2012-08-20 19:04:16 +0800167#define FW_LOADER_NO_CACHE 0
168#define FW_LOADER_START_CACHE 1
169
170static int fw_cache_piggyback_on_request(const char *name);
171
Ming Lei1f2b7952012-08-04 12:01:21 +0800172/* fw_lock could be moved to 'struct firmware_priv' but since it is just
173 * guarding for corner cases a global lock should be OK */
174static DEFINE_MUTEX(fw_lock);
175
176static struct firmware_cache fw_cache;
177
178static struct firmware_buf *__allocate_fw_buf(const char *fw_name,
179 struct firmware_cache *fwc)
180{
181 struct firmware_buf *buf;
182
183 buf = kzalloc(sizeof(*buf) + strlen(fw_name) + 1 , GFP_ATOMIC);
184
185 if (!buf)
186 return buf;
187
188 kref_init(&buf->ref);
189 strcpy(buf->fw_id, fw_name);
190 buf->fwc = fwc;
191 init_completion(&buf->completion);
Takashi Iwaife304142013-05-22 18:28:38 +0200192#ifdef CONFIG_FW_LOADER_USER_HELPER
193 INIT_LIST_HEAD(&buf->pending_list);
194#endif
Ming Lei1f2b7952012-08-04 12:01:21 +0800195
196 pr_debug("%s: fw-%s buf=%p\n", __func__, fw_name, buf);
197
198 return buf;
199}
200
Ming Lei2887b392012-08-04 12:01:22 +0800201static struct firmware_buf *__fw_lookup_buf(const char *fw_name)
202{
203 struct firmware_buf *tmp;
204 struct firmware_cache *fwc = &fw_cache;
205
206 list_for_each_entry(tmp, &fwc->head, list)
207 if (!strcmp(tmp->fw_id, fw_name))
208 return tmp;
209 return NULL;
210}
211
Ming Lei1f2b7952012-08-04 12:01:21 +0800212static int fw_lookup_and_allocate_buf(const char *fw_name,
213 struct firmware_cache *fwc,
214 struct firmware_buf **buf)
215{
216 struct firmware_buf *tmp;
217
218 spin_lock(&fwc->lock);
Ming Lei2887b392012-08-04 12:01:22 +0800219 tmp = __fw_lookup_buf(fw_name);
220 if (tmp) {
221 kref_get(&tmp->ref);
222 spin_unlock(&fwc->lock);
223 *buf = tmp;
224 return 1;
225 }
Ming Lei1f2b7952012-08-04 12:01:21 +0800226 tmp = __allocate_fw_buf(fw_name, fwc);
227 if (tmp)
228 list_add(&tmp->list, &fwc->head);
229 spin_unlock(&fwc->lock);
230
231 *buf = tmp;
232
233 return tmp ? 0 : -ENOMEM;
234}
235
236static void __fw_free_buf(struct kref *ref)
Bart Van Assche98233b22014-01-04 14:20:36 +0100237 __releases(&fwc->lock)
Ming Lei1f2b7952012-08-04 12:01:21 +0800238{
239 struct firmware_buf *buf = to_fwbuf(ref);
240 struct firmware_cache *fwc = buf->fwc;
Ming Lei1f2b7952012-08-04 12:01:21 +0800241
242 pr_debug("%s: fw-%s buf=%p data=%p size=%u\n",
243 __func__, buf->fw_id, buf, buf->data,
244 (unsigned int)buf->size);
245
Ming Lei1f2b7952012-08-04 12:01:21 +0800246 list_del(&buf->list);
247 spin_unlock(&fwc->lock);
248
Takashi Iwai7b1269f2013-01-31 11:13:55 +0100249#ifdef CONFIG_FW_LOADER_USER_HELPER
Takashi Iwaicd7239f2013-01-31 11:13:56 +0100250 if (buf->is_paged_buf) {
Takashi Iwai7b1269f2013-01-31 11:13:55 +0100251 int i;
Ming Lei746058f2012-10-09 12:01:03 +0800252 vunmap(buf->data);
253 for (i = 0; i < buf->nr_pages; i++)
254 __free_page(buf->pages[i]);
255 kfree(buf->pages);
256 } else
Takashi Iwai7b1269f2013-01-31 11:13:55 +0100257#endif
Ming Lei746058f2012-10-09 12:01:03 +0800258 vfree(buf->data);
Ming Lei1f2b7952012-08-04 12:01:21 +0800259 kfree(buf);
260}
261
262static void fw_free_buf(struct firmware_buf *buf)
263{
Chuansheng Liubd9eb7f2012-11-10 01:27:22 +0800264 struct firmware_cache *fwc = buf->fwc;
265 spin_lock(&fwc->lock);
266 if (!kref_put(&buf->ref, __fw_free_buf))
267 spin_unlock(&fwc->lock);
Ming Lei1f2b7952012-08-04 12:01:21 +0800268}
269
Ming Lei746058f2012-10-09 12:01:03 +0800270/* direct firmware loading support */
Ming Lei27602842012-11-03 17:47:58 +0800271static char fw_path_para[256];
272static const char * const fw_path[] = {
273 fw_path_para,
Ming Lei746058f2012-10-09 12:01:03 +0800274 "/lib/firmware/updates/" UTS_RELEASE,
275 "/lib/firmware/updates",
276 "/lib/firmware/" UTS_RELEASE,
277 "/lib/firmware"
278};
279
Ming Lei27602842012-11-03 17:47:58 +0800280/*
281 * Typical usage is that passing 'firmware_class.path=$CUSTOMIZED_PATH'
282 * from kernel command line because firmware_class is generally built in
283 * kernel instead of module.
284 */
285module_param_string(path, fw_path_para, sizeof(fw_path_para), 0644);
286MODULE_PARM_DESC(path, "customized firmware image search path with a higher priority than default path");
287
Neil Horman3e358ac2013-09-06 15:36:08 -0400288static int fw_read_file_contents(struct file *file, struct firmware_buf *fw_buf)
Ming Lei746058f2012-10-09 12:01:03 +0800289{
Ben Hutchings08da2012013-12-28 16:53:59 +0100290 int size;
Ming Lei746058f2012-10-09 12:01:03 +0800291 char *buf;
Neil Horman3e358ac2013-09-06 15:36:08 -0400292 int rc;
Ming Lei746058f2012-10-09 12:01:03 +0800293
Dmitry Kasatkin6af6b162014-06-13 18:09:54 +0300294 if (!S_ISREG(file_inode(file)->i_mode))
295 return -EINVAL;
296 size = i_size_read(file_inode(file));
Luciano Coelho4adf07f2013-01-15 10:43:43 +0200297 if (size <= 0)
Neil Horman3e358ac2013-09-06 15:36:08 -0400298 return -EINVAL;
Ming Lei746058f2012-10-09 12:01:03 +0800299 buf = vmalloc(size);
300 if (!buf)
Neil Horman3e358ac2013-09-06 15:36:08 -0400301 return -ENOMEM;
302 rc = kernel_read(file, 0, buf, size);
303 if (rc != size) {
304 if (rc > 0)
305 rc = -EIO;
Ming Lei746058f2012-10-09 12:01:03 +0800306 vfree(buf);
Neil Horman3e358ac2013-09-06 15:36:08 -0400307 return rc;
Ming Lei746058f2012-10-09 12:01:03 +0800308 }
309 fw_buf->data = buf;
310 fw_buf->size = size;
Neil Horman3e358ac2013-09-06 15:36:08 -0400311 return 0;
Ming Lei746058f2012-10-09 12:01:03 +0800312}
313
Neil Horman3e358ac2013-09-06 15:36:08 -0400314static int fw_get_filesystem_firmware(struct device *device,
Takashi Iwai4e0c92d2013-01-31 11:13:54 +0100315 struct firmware_buf *buf)
Ming Lei746058f2012-10-09 12:01:03 +0800316{
317 int i;
Neil Horman3e358ac2013-09-06 15:36:08 -0400318 int rc = -ENOENT;
Ming Lei746058f2012-10-09 12:01:03 +0800319 char *path = __getname();
320
321 for (i = 0; i < ARRAY_SIZE(fw_path); i++) {
322 struct file *file;
Ming Lei27602842012-11-03 17:47:58 +0800323
324 /* skip the unset customized path */
325 if (!fw_path[i][0])
326 continue;
327
Ming Lei746058f2012-10-09 12:01:03 +0800328 snprintf(path, PATH_MAX, "%s/%s", fw_path[i], buf->fw_id);
329
330 file = filp_open(path, O_RDONLY, 0);
331 if (IS_ERR(file))
332 continue;
Neil Horman3e358ac2013-09-06 15:36:08 -0400333 rc = fw_read_file_contents(file, buf);
Ming Lei746058f2012-10-09 12:01:03 +0800334 fput(file);
Neil Horman3e358ac2013-09-06 15:36:08 -0400335 if (rc)
336 dev_warn(device, "firmware, attempted to load %s, but failed with error %d\n",
337 path, rc);
338 else
Ming Lei746058f2012-10-09 12:01:03 +0800339 break;
340 }
341 __putname(path);
Takashi Iwai4e0c92d2013-01-31 11:13:54 +0100342
Neil Horman3e358ac2013-09-06 15:36:08 -0400343 if (!rc) {
Takashi Iwai4e0c92d2013-01-31 11:13:54 +0100344 dev_dbg(device, "firmware: direct-loading firmware %s\n",
345 buf->fw_id);
346 mutex_lock(&fw_lock);
347 set_bit(FW_STATUS_DONE, &buf->status);
348 complete_all(&buf->completion);
349 mutex_unlock(&fw_lock);
350 }
351
Neil Horman3e358ac2013-09-06 15:36:08 -0400352 return rc;
Ming Lei746058f2012-10-09 12:01:03 +0800353}
354
Takashi Iwai7b1269f2013-01-31 11:13:55 +0100355/* firmware holds the ownership of pages */
356static void firmware_free_data(const struct firmware *fw)
357{
358 /* Loaded directly? */
359 if (!fw->priv) {
360 vfree(fw->data);
361 return;
362 }
363 fw_free_buf(fw->priv);
364}
365
Takashi Iwaicd7239f2013-01-31 11:13:56 +0100366/* store the pages buffer info firmware from buf */
367static void fw_set_page_data(struct firmware_buf *buf, struct firmware *fw)
368{
369 fw->priv = buf;
Takashi Iwai7b1269f2013-01-31 11:13:55 +0100370#ifdef CONFIG_FW_LOADER_USER_HELPER
Takashi Iwaicd7239f2013-01-31 11:13:56 +0100371 fw->pages = buf->pages;
372#endif
373 fw->size = buf->size;
374 fw->data = buf->data;
375
376 pr_debug("%s: fw-%s buf=%p data=%p size=%u\n",
377 __func__, buf->fw_id, buf, buf->data,
378 (unsigned int)buf->size);
379}
380
381#ifdef CONFIG_PM_SLEEP
382static void fw_name_devm_release(struct device *dev, void *res)
383{
384 struct fw_name_devm *fwn = res;
385
386 if (fwn->magic == (unsigned long)&fw_cache)
387 pr_debug("%s: fw_name-%s devm-%p released\n",
388 __func__, fwn->name, res);
389}
390
391static int fw_devm_match(struct device *dev, void *res,
392 void *match_data)
393{
394 struct fw_name_devm *fwn = res;
395
396 return (fwn->magic == (unsigned long)&fw_cache) &&
397 !strcmp(fwn->name, match_data);
398}
399
400static struct fw_name_devm *fw_find_devm_name(struct device *dev,
401 const char *name)
402{
403 struct fw_name_devm *fwn;
404
405 fwn = devres_find(dev, fw_name_devm_release,
406 fw_devm_match, (void *)name);
407 return fwn;
408}
409
410/* add firmware name into devres list */
411static int fw_add_devm_name(struct device *dev, const char *name)
412{
413 struct fw_name_devm *fwn;
414
415 fwn = fw_find_devm_name(dev, name);
416 if (fwn)
417 return 1;
418
419 fwn = devres_alloc(fw_name_devm_release, sizeof(struct fw_name_devm) +
420 strlen(name) + 1, GFP_KERNEL);
421 if (!fwn)
422 return -ENOMEM;
423
424 fwn->magic = (unsigned long)&fw_cache;
425 strcpy(fwn->name, name);
426 devres_add(dev, fwn);
427
428 return 0;
429}
430#else
431static int fw_add_devm_name(struct device *dev, const char *name)
432{
433 return 0;
434}
435#endif
436
437
438/*
439 * user-mode helper code
440 */
441#ifdef CONFIG_FW_LOADER_USER_HELPER
442struct firmware_priv {
443 struct delayed_work timeout_work;
444 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
Kay Sievers7eff2e72007-08-14 15:15:12 +0200542static int firmware_uevent(struct device *dev, struct kobj_uevent_env *env)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543{
Dmitry Torokhovf8a4bd32010-06-04 00:54:43 -0700544 struct firmware_priv *fw_priv = to_firmware_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545
Ming Lei12446912012-08-04 12:01:20 +0800546 if (add_uevent_var(env, "FIRMWARE=%s", fw_priv->buf->fw_id))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547 return -ENOMEM;
Kay Sievers7eff2e72007-08-14 15:15:12 +0200548 if (add_uevent_var(env, "TIMEOUT=%i", loading_timeout))
kay.sievers@vrfy.org68970892005-04-18 21:57:31 -0700549 return -ENOMEM;
Johannes Berge9045f92010-03-29 17:57:20 +0200550 if (add_uevent_var(env, "ASYNC=%d", fw_priv->nowait))
551 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552
553 return 0;
554}
555
Adrian Bunk1b81d662006-05-20 15:00:16 -0700556static struct class firmware_class = {
557 .name = "firmware",
Dmitry Torokhov673fae92010-03-13 23:49:13 -0800558 .class_attrs = firmware_class_attrs,
Greg Kroah-Hartmane55c8792006-09-14 07:30:59 -0700559 .dev_uevent = firmware_uevent,
560 .dev_release = fw_dev_release,
Adrian Bunk1b81d662006-05-20 15:00:16 -0700561};
562
Greg Kroah-Hartmane55c8792006-09-14 07:30:59 -0700563static ssize_t firmware_loading_show(struct device *dev,
564 struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565{
Dmitry Torokhovf8a4bd32010-06-04 00:54:43 -0700566 struct firmware_priv *fw_priv = to_firmware_priv(dev);
Ming Lei87597932013-06-15 16:36:38 +0800567 int loading = 0;
568
569 mutex_lock(&fw_lock);
570 if (fw_priv->buf)
571 loading = test_bit(FW_STATUS_LOADING, &fw_priv->buf->status);
572 mutex_unlock(&fw_lock);
Dmitry Torokhovf8a4bd32010-06-04 00:54:43 -0700573
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574 return sprintf(buf, "%d\n", loading);
575}
576
David Woodhouse6e03a202009-04-09 22:04:07 -0700577/* Some architectures don't have PAGE_KERNEL_RO */
578#ifndef PAGE_KERNEL_RO
579#define PAGE_KERNEL_RO PAGE_KERNEL
580#endif
Ming Lei253c9242012-10-09 12:01:02 +0800581
582/* one pages buffer should be mapped/unmapped only once */
583static int fw_map_pages_buf(struct firmware_buf *buf)
584{
Takashi Iwaicd7239f2013-01-31 11:13:56 +0100585 if (!buf->is_paged_buf)
Ming Lei746058f2012-10-09 12:01:03 +0800586 return 0;
587
Ming Lei253c9242012-10-09 12:01:02 +0800588 if (buf->data)
589 vunmap(buf->data);
590 buf->data = vmap(buf->pages, buf->nr_pages, 0, PAGE_KERNEL_RO);
591 if (!buf->data)
592 return -ENOMEM;
593 return 0;
594}
595
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596/**
Randy Dunlapeb8e3172005-10-30 15:03:01 -0800597 * firmware_loading_store - set value in the 'loading' control file
Greg Kroah-Hartmane55c8792006-09-14 07:30:59 -0700598 * @dev: device pointer
Randy Dunlapaf9997e2006-12-22 01:06:52 -0800599 * @attr: device attribute pointer
Randy Dunlapeb8e3172005-10-30 15:03:01 -0800600 * @buf: buffer to scan for loading control value
601 * @count: number of bytes in @buf
602 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603 * The relevant values are:
604 *
605 * 1: Start a load, discarding any previous partial load.
Randy Dunlapeb8e3172005-10-30 15:03:01 -0800606 * 0: Conclude the load and hand the data to the driver code.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607 * -1: Conclude the load with an error and discard any written data.
608 **/
Greg Kroah-Hartmane55c8792006-09-14 07:30:59 -0700609static ssize_t firmware_loading_store(struct device *dev,
610 struct device_attribute *attr,
611 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612{
Dmitry Torokhovf8a4bd32010-06-04 00:54:43 -0700613 struct firmware_priv *fw_priv = to_firmware_priv(dev);
Ming Lei87597932013-06-15 16:36:38 +0800614 struct firmware_buf *fw_buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615 int loading = simple_strtol(buf, NULL, 10);
David Woodhouse6e03a202009-04-09 22:04:07 -0700616 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617
Neil Hormaneea915b2012-01-02 15:31:23 -0500618 mutex_lock(&fw_lock);
Ming Lei87597932013-06-15 16:36:38 +0800619 fw_buf = fw_priv->buf;
Ming Lei12446912012-08-04 12:01:20 +0800620 if (!fw_buf)
Neil Hormaneea915b2012-01-02 15:31:23 -0500621 goto out;
622
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623 switch (loading) {
624 case 1:
Ming Lei65710cb2012-08-04 12:01:16 +0800625 /* discarding any previous partial load */
Ming Lei12446912012-08-04 12:01:20 +0800626 if (!test_bit(FW_STATUS_DONE, &fw_buf->status)) {
627 for (i = 0; i < fw_buf->nr_pages; i++)
628 __free_page(fw_buf->pages[i]);
629 kfree(fw_buf->pages);
630 fw_buf->pages = NULL;
631 fw_buf->page_array_size = 0;
632 fw_buf->nr_pages = 0;
633 set_bit(FW_STATUS_LOADING, &fw_buf->status);
Ming Lei28eefa72012-08-04 12:01:17 +0800634 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635 break;
636 case 0:
Ming Lei12446912012-08-04 12:01:20 +0800637 if (test_bit(FW_STATUS_LOADING, &fw_buf->status)) {
638 set_bit(FW_STATUS_DONE, &fw_buf->status);
639 clear_bit(FW_STATUS_LOADING, &fw_buf->status);
Ming Lei253c9242012-10-09 12:01:02 +0800640
641 /*
642 * Several loading requests may be pending on
643 * one same firmware buf, so let all requests
644 * see the mapped 'buf->data' once the loading
645 * is completed.
646 * */
zhang jun2b1278c2014-02-13 15:18:47 +0800647 if (fw_map_pages_buf(fw_buf))
648 dev_err(dev, "%s: map pages failed\n",
649 __func__);
Takashi Iwaife304142013-05-22 18:28:38 +0200650 list_del_init(&fw_buf->pending_list);
Ming Lei1f2b7952012-08-04 12:01:21 +0800651 complete_all(&fw_buf->completion);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652 break;
653 }
654 /* fallthrough */
655 default:
Bjorn Helgaas266a8132008-10-15 22:04:20 -0700656 dev_err(dev, "%s: unexpected value (%d)\n", __func__, loading);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657 /* fallthrough */
658 case -1:
659 fw_load_abort(fw_priv);
660 break;
661 }
Neil Hormaneea915b2012-01-02 15:31:23 -0500662out:
663 mutex_unlock(&fw_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664 return count;
665}
666
Greg Kroah-Hartmane55c8792006-09-14 07:30:59 -0700667static DEVICE_ATTR(loading, 0644, firmware_loading_show, firmware_loading_store);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668
Dmitry Torokhovf8a4bd32010-06-04 00:54:43 -0700669static ssize_t firmware_data_read(struct file *filp, struct kobject *kobj,
670 struct bin_attribute *bin_attr,
671 char *buffer, loff_t offset, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672{
Lars-Peter Clausenb0d1f802012-07-03 18:49:36 +0200673 struct device *dev = kobj_to_dev(kobj);
Dmitry Torokhovf8a4bd32010-06-04 00:54:43 -0700674 struct firmware_priv *fw_priv = to_firmware_priv(dev);
Ming Lei12446912012-08-04 12:01:20 +0800675 struct firmware_buf *buf;
Akinobu Mitaf37e6612008-07-25 01:48:23 -0700676 ssize_t ret_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677
Laura Garciacad1e552006-05-23 23:22:38 +0200678 mutex_lock(&fw_lock);
Ming Lei12446912012-08-04 12:01:20 +0800679 buf = fw_priv->buf;
680 if (!buf || test_bit(FW_STATUS_DONE, &buf->status)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681 ret_count = -ENODEV;
682 goto out;
683 }
Ming Lei12446912012-08-04 12:01:20 +0800684 if (offset > buf->size) {
Jiri Slaby308975f2009-06-21 23:57:31 +0200685 ret_count = 0;
686 goto out;
687 }
Ming Lei12446912012-08-04 12:01:20 +0800688 if (count > buf->size - offset)
689 count = buf->size - offset;
David Woodhouse6e03a202009-04-09 22:04:07 -0700690
691 ret_count = count;
692
693 while (count) {
694 void *page_data;
695 int page_nr = offset >> PAGE_SHIFT;
696 int page_ofs = offset & (PAGE_SIZE-1);
697 int page_cnt = min_t(size_t, PAGE_SIZE - page_ofs, count);
698
Ming Lei12446912012-08-04 12:01:20 +0800699 page_data = kmap(buf->pages[page_nr]);
David Woodhouse6e03a202009-04-09 22:04:07 -0700700
701 memcpy(buffer, page_data + page_ofs, page_cnt);
702
Ming Lei12446912012-08-04 12:01:20 +0800703 kunmap(buf->pages[page_nr]);
David Woodhouse6e03a202009-04-09 22:04:07 -0700704 buffer += page_cnt;
705 offset += page_cnt;
706 count -= page_cnt;
707 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708out:
Laura Garciacad1e552006-05-23 23:22:38 +0200709 mutex_unlock(&fw_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710 return ret_count;
711}
Randy Dunlapeb8e3172005-10-30 15:03:01 -0800712
Dmitry Torokhovf8a4bd32010-06-04 00:54:43 -0700713static int fw_realloc_buffer(struct firmware_priv *fw_priv, int min_size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714{
Ming Lei12446912012-08-04 12:01:20 +0800715 struct firmware_buf *buf = fw_priv->buf;
Fabian Fredericka76040d2014-07-01 21:13:30 +0200716 int pages_needed = PAGE_ALIGN(min_size) >> PAGE_SHIFT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717
David Woodhouse6e03a202009-04-09 22:04:07 -0700718 /* If the array of pages is too small, grow it... */
Ming Lei12446912012-08-04 12:01:20 +0800719 if (buf->page_array_size < pages_needed) {
David Woodhouse6e03a202009-04-09 22:04:07 -0700720 int new_array_size = max(pages_needed,
Ming Lei12446912012-08-04 12:01:20 +0800721 buf->page_array_size * 2);
David Woodhouse6e03a202009-04-09 22:04:07 -0700722 struct page **new_pages;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723
David Woodhouse6e03a202009-04-09 22:04:07 -0700724 new_pages = kmalloc(new_array_size * sizeof(void *),
725 GFP_KERNEL);
726 if (!new_pages) {
727 fw_load_abort(fw_priv);
728 return -ENOMEM;
729 }
Ming Lei12446912012-08-04 12:01:20 +0800730 memcpy(new_pages, buf->pages,
731 buf->page_array_size * sizeof(void *));
732 memset(&new_pages[buf->page_array_size], 0, sizeof(void *) *
733 (new_array_size - buf->page_array_size));
734 kfree(buf->pages);
735 buf->pages = new_pages;
736 buf->page_array_size = new_array_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737 }
David Woodhouse6e03a202009-04-09 22:04:07 -0700738
Ming Lei12446912012-08-04 12:01:20 +0800739 while (buf->nr_pages < pages_needed) {
740 buf->pages[buf->nr_pages] =
David Woodhouse6e03a202009-04-09 22:04:07 -0700741 alloc_page(GFP_KERNEL | __GFP_HIGHMEM);
742
Ming Lei12446912012-08-04 12:01:20 +0800743 if (!buf->pages[buf->nr_pages]) {
David Woodhouse6e03a202009-04-09 22:04:07 -0700744 fw_load_abort(fw_priv);
745 return -ENOMEM;
746 }
Ming Lei12446912012-08-04 12:01:20 +0800747 buf->nr_pages++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749 return 0;
750}
751
752/**
Randy Dunlapeb8e3172005-10-30 15:03:01 -0800753 * firmware_data_write - write method for firmware
Chris Wright2c3c8be2010-05-12 18:28:57 -0700754 * @filp: open sysfs file
Greg Kroah-Hartmane55c8792006-09-14 07:30:59 -0700755 * @kobj: kobject for the device
Randy Dunlap42e61f42007-07-23 21:42:11 -0700756 * @bin_attr: bin_attr structure
Randy Dunlapeb8e3172005-10-30 15:03:01 -0800757 * @buffer: buffer being written
758 * @offset: buffer offset for write in total data store area
759 * @count: buffer size
Linus Torvalds1da177e2005-04-16 15:20:36 -0700760 *
Randy Dunlapeb8e3172005-10-30 15:03:01 -0800761 * Data written to the 'data' attribute will be later handed to
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762 * the driver as a firmware image.
763 **/
Dmitry Torokhovf8a4bd32010-06-04 00:54:43 -0700764static ssize_t firmware_data_write(struct file *filp, struct kobject *kobj,
765 struct bin_attribute *bin_attr,
766 char *buffer, loff_t offset, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767{
Lars-Peter Clausenb0d1f802012-07-03 18:49:36 +0200768 struct device *dev = kobj_to_dev(kobj);
Dmitry Torokhovf8a4bd32010-06-04 00:54:43 -0700769 struct firmware_priv *fw_priv = to_firmware_priv(dev);
Ming Lei12446912012-08-04 12:01:20 +0800770 struct firmware_buf *buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771 ssize_t retval;
772
773 if (!capable(CAP_SYS_RAWIO))
774 return -EPERM;
Stanislaw W. Gruszkab92eac02005-06-28 20:44:51 -0700775
Laura Garciacad1e552006-05-23 23:22:38 +0200776 mutex_lock(&fw_lock);
Ming Lei12446912012-08-04 12:01:20 +0800777 buf = fw_priv->buf;
778 if (!buf || test_bit(FW_STATUS_DONE, &buf->status)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779 retval = -ENODEV;
780 goto out;
781 }
Ming Lei65710cb2012-08-04 12:01:16 +0800782
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783 retval = fw_realloc_buffer(fw_priv, offset + count);
784 if (retval)
785 goto out;
786
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787 retval = count;
David Woodhouse6e03a202009-04-09 22:04:07 -0700788
789 while (count) {
790 void *page_data;
791 int page_nr = offset >> PAGE_SHIFT;
792 int page_ofs = offset & (PAGE_SIZE - 1);
793 int page_cnt = min_t(size_t, PAGE_SIZE - page_ofs, count);
794
Ming Lei12446912012-08-04 12:01:20 +0800795 page_data = kmap(buf->pages[page_nr]);
David Woodhouse6e03a202009-04-09 22:04:07 -0700796
797 memcpy(page_data + page_ofs, buffer, page_cnt);
798
Ming Lei12446912012-08-04 12:01:20 +0800799 kunmap(buf->pages[page_nr]);
David Woodhouse6e03a202009-04-09 22:04:07 -0700800 buffer += page_cnt;
801 offset += page_cnt;
802 count -= page_cnt;
803 }
804
Ming Lei12446912012-08-04 12:01:20 +0800805 buf->size = max_t(size_t, offset, buf->size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806out:
Laura Garciacad1e552006-05-23 23:22:38 +0200807 mutex_unlock(&fw_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808 return retval;
809}
Randy Dunlapeb8e3172005-10-30 15:03:01 -0800810
Dmitry Torokhov0983ca22010-06-04 00:54:37 -0700811static struct bin_attribute firmware_attr_data = {
812 .attr = { .name = "data", .mode = 0644 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813 .size = 0,
814 .read = firmware_data_read,
815 .write = firmware_data_write,
816};
817
Chuansheng Liuce2fcbd2012-11-08 19:14:40 +0800818static void firmware_class_timeout_work(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819{
Chuansheng Liuce2fcbd2012-11-08 19:14:40 +0800820 struct firmware_priv *fw_priv = container_of(work,
821 struct firmware_priv, timeout_work.work);
Dmitry Torokhovf8a4bd32010-06-04 00:54:43 -0700822
Chuansheng Liuce2fcbd2012-11-08 19:14:40 +0800823 mutex_lock(&fw_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824 fw_load_abort(fw_priv);
Chuansheng Liuce2fcbd2012-11-08 19:14:40 +0800825 mutex_unlock(&fw_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700826}
827
Dmitry Torokhovf8a4bd32010-06-04 00:54:43 -0700828static struct firmware_priv *
Stephen Boyddddb5542012-03-28 23:30:43 +0200829fw_create_instance(struct firmware *firmware, const char *fw_name,
Takashi Iwai14c4bae2013-12-02 15:38:18 +0100830 struct device *device, unsigned int opt_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831{
Dmitry Torokhovf8a4bd32010-06-04 00:54:43 -0700832 struct firmware_priv *fw_priv;
833 struct device *f_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834
Ming Lei12446912012-08-04 12:01:20 +0800835 fw_priv = kzalloc(sizeof(*fw_priv), GFP_KERNEL);
Dmitry Torokhovf8a4bd32010-06-04 00:54:43 -0700836 if (!fw_priv) {
Bjorn Helgaas266a8132008-10-15 22:04:20 -0700837 dev_err(device, "%s: kmalloc failed\n", __func__);
Ming Lei12446912012-08-04 12:01:20 +0800838 fw_priv = ERR_PTR(-ENOMEM);
839 goto exit;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700840 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841
Takashi Iwai14c4bae2013-12-02 15:38:18 +0100842 fw_priv->nowait = !!(opt_flags & FW_OPT_NOWAIT);
Ming Lei1f2b7952012-08-04 12:01:21 +0800843 fw_priv->fw = firmware;
Chuansheng Liuce2fcbd2012-11-08 19:14:40 +0800844 INIT_DELAYED_WORK(&fw_priv->timeout_work,
845 firmware_class_timeout_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846
Dmitry Torokhovf8a4bd32010-06-04 00:54:43 -0700847 f_dev = &fw_priv->dev;
848
849 device_initialize(f_dev);
Ming Lei99c2aa72012-08-04 12:01:19 +0800850 dev_set_name(f_dev, "%s", fw_name);
Greg Kroah-Hartmane55c8792006-09-14 07:30:59 -0700851 f_dev->parent = device;
852 f_dev->class = &firmware_class;
Ming Lei12446912012-08-04 12:01:20 +0800853exit:
Dmitry Torokhovf8a4bd32010-06-04 00:54:43 -0700854 return fw_priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855}
Takashi Iwaicd7239f2013-01-31 11:13:56 +0100856
857/* load a firmware via user helper */
Takashi Iwai14c4bae2013-12-02 15:38:18 +0100858static int _request_firmware_load(struct firmware_priv *fw_priv,
859 unsigned int opt_flags, long timeout)
Takashi Iwaicd7239f2013-01-31 11:13:56 +0100860{
861 int retval = 0;
862 struct device *f_dev = &fw_priv->dev;
863 struct firmware_buf *buf = fw_priv->buf;
864
865 /* fall back on userspace loading */
866 buf->is_paged_buf = true;
867
868 dev_set_uevent_suppress(f_dev, true);
869
Takashi Iwaicd7239f2013-01-31 11:13:56 +0100870 retval = device_add(f_dev);
871 if (retval) {
872 dev_err(f_dev, "%s: device_register failed\n", __func__);
873 goto err_put_dev;
874 }
875
876 retval = device_create_bin_file(f_dev, &firmware_attr_data);
877 if (retval) {
878 dev_err(f_dev, "%s: sysfs_create_bin_file failed\n", __func__);
879 goto err_del_dev;
880 }
881
Maxime Bizon1eeeef12013-08-29 20:28:13 +0200882 mutex_lock(&fw_lock);
883 list_add(&buf->pending_list, &pending_fw_head);
884 mutex_unlock(&fw_lock);
885
Takashi Iwaicd7239f2013-01-31 11:13:56 +0100886 retval = device_create_file(f_dev, &dev_attr_loading);
887 if (retval) {
Maxime Bizon1eeeef12013-08-29 20:28:13 +0200888 mutex_lock(&fw_lock);
889 list_del_init(&buf->pending_list);
890 mutex_unlock(&fw_lock);
Takashi Iwaicd7239f2013-01-31 11:13:56 +0100891 dev_err(f_dev, "%s: device_create_file failed\n", __func__);
892 goto err_del_bin_attr;
893 }
894
Takashi Iwai14c4bae2013-12-02 15:38:18 +0100895 if (opt_flags & FW_OPT_UEVENT) {
Ming Leiaf5bc112013-05-27 18:30:04 +0800896 buf->need_uevent = true;
Takashi Iwaicd7239f2013-01-31 11:13:56 +0100897 dev_set_uevent_suppress(f_dev, false);
898 dev_dbg(f_dev, "firmware: requesting %s\n", buf->fw_id);
899 if (timeout != MAX_SCHEDULE_TIMEOUT)
Shaibal Duttabce66182014-01-31 15:44:58 -0800900 queue_delayed_work(system_power_efficient_wq,
901 &fw_priv->timeout_work, timeout);
Takashi Iwaicd7239f2013-01-31 11:13:56 +0100902
903 kobject_uevent(&fw_priv->dev.kobj, KOBJ_ADD);
904 }
905
906 wait_for_completion(&buf->completion);
907
908 cancel_delayed_work_sync(&fw_priv->timeout_work);
zhang jun2b1278c2014-02-13 15:18:47 +0800909 if (!buf->data)
910 retval = -ENOMEM;
Takashi Iwaicd7239f2013-01-31 11:13:56 +0100911
Takashi Iwaicd7239f2013-01-31 11:13:56 +0100912 device_remove_file(f_dev, &dev_attr_loading);
913err_del_bin_attr:
914 device_remove_bin_file(f_dev, &firmware_attr_data);
915err_del_dev:
916 device_del(f_dev);
917err_put_dev:
918 put_device(f_dev);
919 return retval;
920}
921
922static int fw_load_from_user_helper(struct firmware *firmware,
923 const char *name, struct device *device,
Takashi Iwai14c4bae2013-12-02 15:38:18 +0100924 unsigned int opt_flags, long timeout)
Takashi Iwaicd7239f2013-01-31 11:13:56 +0100925{
926 struct firmware_priv *fw_priv;
927
Takashi Iwai14c4bae2013-12-02 15:38:18 +0100928 fw_priv = fw_create_instance(firmware, name, device, opt_flags);
Takashi Iwaicd7239f2013-01-31 11:13:56 +0100929 if (IS_ERR(fw_priv))
930 return PTR_ERR(fw_priv);
931
932 fw_priv->buf = firmware->priv;
Takashi Iwai14c4bae2013-12-02 15:38:18 +0100933 return _request_firmware_load(fw_priv, opt_flags, timeout);
Takashi Iwaicd7239f2013-01-31 11:13:56 +0100934}
Ming Leiddf1f062013-06-04 10:01:13 +0800935
Ming Lei5b7cb7a2013-06-06 19:52:54 +0800936#ifdef CONFIG_PM_SLEEP
Ming Leiddf1f062013-06-04 10:01:13 +0800937/* kill pending requests without uevent to avoid blocking suspend */
938static void kill_requests_without_uevent(void)
939{
940 struct firmware_buf *buf;
941 struct firmware_buf *next;
942
943 mutex_lock(&fw_lock);
944 list_for_each_entry_safe(buf, next, &pending_fw_head, pending_list) {
945 if (!buf->need_uevent)
Greg Kroah-Hartman7068cb02013-06-19 20:26:43 -0700946 __fw_load_abort(buf);
Ming Leiddf1f062013-06-04 10:01:13 +0800947 }
948 mutex_unlock(&fw_lock);
949}
Ming Lei5b7cb7a2013-06-06 19:52:54 +0800950#endif
Ming Leiddf1f062013-06-04 10:01:13 +0800951
Takashi Iwaicd7239f2013-01-31 11:13:56 +0100952#else /* CONFIG_FW_LOADER_USER_HELPER */
953static inline int
954fw_load_from_user_helper(struct firmware *firmware, const char *name,
Takashi Iwai14c4bae2013-12-02 15:38:18 +0100955 struct device *device, unsigned int opt_flags,
Takashi Iwaicd7239f2013-01-31 11:13:56 +0100956 long timeout)
957{
958 return -ENOENT;
959}
Takashi Iwai807be032013-01-31 11:13:57 +0100960
961/* No abort during direct loading */
962#define is_fw_load_aborted(buf) false
963
Ming Lei5b7cb7a2013-06-06 19:52:54 +0800964#ifdef CONFIG_PM_SLEEP
Ming Leiddf1f062013-06-04 10:01:13 +0800965static inline void kill_requests_without_uevent(void) { }
Ming Lei5b7cb7a2013-06-06 19:52:54 +0800966#endif
Ming Leiddf1f062013-06-04 10:01:13 +0800967
Takashi Iwai7b1269f2013-01-31 11:13:55 +0100968#endif /* CONFIG_FW_LOADER_USER_HELPER */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700969
Ming Leif531f05a2012-08-04 12:01:25 +0800970
Takashi Iwai4e0c92d2013-01-31 11:13:54 +0100971/* wait until the shared firmware_buf becomes ready (or error) */
972static int sync_cached_firmware_buf(struct firmware_buf *buf)
Ming Lei1f2b7952012-08-04 12:01:21 +0800973{
Takashi Iwai4e0c92d2013-01-31 11:13:54 +0100974 int ret = 0;
975
976 mutex_lock(&fw_lock);
977 while (!test_bit(FW_STATUS_DONE, &buf->status)) {
Takashi Iwai807be032013-01-31 11:13:57 +0100978 if (is_fw_load_aborted(buf)) {
Takashi Iwai4e0c92d2013-01-31 11:13:54 +0100979 ret = -ENOENT;
980 break;
981 }
982 mutex_unlock(&fw_lock);
983 wait_for_completion(&buf->completion);
984 mutex_lock(&fw_lock);
985 }
986 mutex_unlock(&fw_lock);
987 return ret;
Ming Lei1f2b7952012-08-04 12:01:21 +0800988}
989
Takashi Iwai4e0c92d2013-01-31 11:13:54 +0100990/* prepare firmware and firmware_buf structs;
991 * return 0 if a firmware is already assigned, 1 if need to load one,
992 * or a negative error code
993 */
994static int
995_request_firmware_prepare(struct firmware **firmware_p, const char *name,
996 struct device *device)
Dmitry Torokhovf8a4bd32010-06-04 00:54:43 -0700997{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700998 struct firmware *firmware;
Ming Lei1f2b7952012-08-04 12:01:21 +0800999 struct firmware_buf *buf;
1000 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001001
Jiri Slaby4aed0642005-09-13 01:25:01 -07001002 *firmware_p = firmware = kzalloc(sizeof(*firmware), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001003 if (!firmware) {
Bjorn Helgaas266a8132008-10-15 22:04:20 -07001004 dev_err(device, "%s: kmalloc(struct firmware) failed\n",
1005 __func__);
Takashi Iwai4e0c92d2013-01-31 11:13:54 +01001006 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001007 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001008
Dmitry Torokhovbcb9bd12010-03-13 23:49:18 -08001009 if (fw_get_builtin_firmware(firmware, name)) {
Rafael J. Wysocki6f18ff92010-02-27 21:43:22 +01001010 dev_dbg(device, "firmware: using built-in firmware %s\n", name);
Takashi Iwai4e0c92d2013-01-31 11:13:54 +01001011 return 0; /* assigned */
David Woodhouse5658c762008-05-23 13:52:42 +01001012 }
1013
Ming Lei1f2b7952012-08-04 12:01:21 +08001014 ret = fw_lookup_and_allocate_buf(name, &fw_cache, &buf);
Ming Lei1f2b7952012-08-04 12:01:21 +08001015
Takashi Iwai4e0c92d2013-01-31 11:13:54 +01001016 /*
1017 * bind with 'buf' now to avoid warning in failure path
1018 * of requesting firmware.
1019 */
1020 firmware->priv = buf;
Ming Lei1f2b7952012-08-04 12:01:21 +08001021
Takashi Iwai4e0c92d2013-01-31 11:13:54 +01001022 if (ret > 0) {
1023 ret = sync_cached_firmware_buf(buf);
1024 if (!ret) {
1025 fw_set_page_data(buf, firmware);
1026 return 0; /* assigned */
1027 }
Stephen Boyddddb5542012-03-28 23:30:43 +02001028 }
Ming Lei1f2b7952012-08-04 12:01:21 +08001029
Takashi Iwai4e0c92d2013-01-31 11:13:54 +01001030 if (ret < 0)
1031 return ret;
1032 return 1; /* need to load */
Rafael J. Wysocki811fa402012-03-28 23:29:55 +02001033}
1034
Ming Leie771d1a2013-05-27 18:30:03 +08001035static int assign_firmware_buf(struct firmware *fw, struct device *device,
Takashi Iwai14c4bae2013-12-02 15:38:18 +01001036 unsigned int opt_flags)
Takashi Iwai4e0c92d2013-01-31 11:13:54 +01001037{
1038 struct firmware_buf *buf = fw->priv;
1039
1040 mutex_lock(&fw_lock);
Takashi Iwai807be032013-01-31 11:13:57 +01001041 if (!buf->size || is_fw_load_aborted(buf)) {
Takashi Iwai4e0c92d2013-01-31 11:13:54 +01001042 mutex_unlock(&fw_lock);
1043 return -ENOENT;
1044 }
1045
1046 /*
1047 * add firmware name into devres list so that we can auto cache
1048 * and uncache firmware for device.
1049 *
1050 * device may has been deleted already, but the problem
1051 * should be fixed in devres or driver core.
1052 */
Takashi Iwai14c4bae2013-12-02 15:38:18 +01001053 /* don't cache firmware handled without uevent */
1054 if (device && (opt_flags & FW_OPT_UEVENT))
Takashi Iwai4e0c92d2013-01-31 11:13:54 +01001055 fw_add_devm_name(device, buf->fw_id);
1056
1057 /*
1058 * After caching firmware image is started, let it piggyback
1059 * on request firmware.
1060 */
1061 if (buf->fwc->state == FW_LOADER_START_CACHE) {
1062 if (fw_cache_piggyback_on_request(buf->fw_id))
1063 kref_get(&buf->ref);
1064 }
1065
1066 /* pass the pages buffer to driver at the last minute */
1067 fw_set_page_data(buf, fw);
1068 mutex_unlock(&fw_lock);
1069 return 0;
1070}
1071
Takashi Iwai4e0c92d2013-01-31 11:13:54 +01001072/* called from request_firmware() and request_firmware_work_func() */
1073static int
1074_request_firmware(const struct firmware **firmware_p, const char *name,
Takashi Iwai14c4bae2013-12-02 15:38:18 +01001075 struct device *device, unsigned int opt_flags)
Takashi Iwai4e0c92d2013-01-31 11:13:54 +01001076{
1077 struct firmware *fw;
1078 long timeout;
1079 int ret;
1080
1081 if (!firmware_p)
1082 return -EINVAL;
1083
1084 ret = _request_firmware_prepare(&fw, name, device);
1085 if (ret <= 0) /* error or already assigned */
1086 goto out;
1087
1088 ret = 0;
1089 timeout = firmware_loading_timeout();
Takashi Iwai14c4bae2013-12-02 15:38:18 +01001090 if (opt_flags & FW_OPT_NOWAIT) {
Takashi Iwai4e0c92d2013-01-31 11:13:54 +01001091 timeout = usermodehelper_read_lock_wait(timeout);
1092 if (!timeout) {
1093 dev_dbg(device, "firmware: %s loading timed out\n",
1094 name);
1095 ret = -EBUSY;
1096 goto out;
1097 }
1098 } else {
1099 ret = usermodehelper_read_trylock();
1100 if (WARN_ON(ret)) {
1101 dev_err(device, "firmware: %s will not be loaded\n",
1102 name);
1103 goto out;
1104 }
1105 }
1106
Neil Horman3e358ac2013-09-06 15:36:08 -04001107 ret = fw_get_filesystem_firmware(device, fw->priv);
1108 if (ret) {
Luis R. Rodriguezc868edf2014-07-02 09:55:05 -07001109 if (!(opt_flags & FW_OPT_NO_WARN))
Takashi Iwaibba3a872013-12-02 15:38:16 +01001110 dev_warn(device,
Luis R. Rodriguezc868edf2014-07-02 09:55:05 -07001111 "Direct firmware load for %s failed with error %d\n",
1112 name, ret);
1113 if (opt_flags & FW_OPT_USERHELPER) {
Takashi Iwaibba3a872013-12-02 15:38:16 +01001114 dev_warn(device, "Falling back to user helper\n");
1115 ret = fw_load_from_user_helper(fw, name, device,
Takashi Iwai14c4bae2013-12-02 15:38:18 +01001116 opt_flags, timeout);
Takashi Iwaibba3a872013-12-02 15:38:16 +01001117 }
Neil Horman3e358ac2013-09-06 15:36:08 -04001118 }
Ming Leie771d1a2013-05-27 18:30:03 +08001119
Takashi Iwai4e0c92d2013-01-31 11:13:54 +01001120 if (!ret)
Takashi Iwai14c4bae2013-12-02 15:38:18 +01001121 ret = assign_firmware_buf(fw, device, opt_flags);
Takashi Iwai4e0c92d2013-01-31 11:13:54 +01001122
1123 usermodehelper_read_unlock();
1124
1125 out:
1126 if (ret < 0) {
1127 release_firmware(fw);
1128 fw = NULL;
1129 }
1130
1131 *firmware_p = fw;
1132 return ret;
1133}
1134
Linus Torvalds1da177e2005-04-16 15:20:36 -07001135/**
Kay Sievers312c0042005-11-16 09:00:00 +01001136 * request_firmware: - send firmware request and wait for it
Randy Dunlapeb8e3172005-10-30 15:03:01 -08001137 * @firmware_p: pointer to firmware image
1138 * @name: name of firmware file
1139 * @device: device for which firmware is being loaded
1140 *
1141 * @firmware_p will be used to return a firmware image by the name
Abhay Salunke6e3eaab2005-09-06 15:17:13 -07001142 * of @name for device @device.
1143 *
1144 * Should be called from user context where sleeping is allowed.
1145 *
Kay Sievers312c0042005-11-16 09:00:00 +01001146 * @name will be used as $FIRMWARE in the uevent environment and
Abhay Salunke6e3eaab2005-09-06 15:17:13 -07001147 * should be distinctive enough not to be confused with any other
1148 * firmware image for this or any other device.
Ming Lei0cfc1e12012-08-04 12:01:23 +08001149 *
1150 * Caller must hold the reference count of @device.
Ming Lei6a927852012-11-03 17:48:16 +08001151 *
1152 * The function can be called safely inside device's suspend and
1153 * resume callback.
Abhay Salunke6e3eaab2005-09-06 15:17:13 -07001154 **/
1155int
1156request_firmware(const struct firmware **firmware_p, const char *name,
1157 struct device *device)
1158{
Ming Leid6c8aa32013-06-06 20:01:48 +08001159 int ret;
1160
1161 /* Need to pin this module until return */
1162 __module_get(THIS_MODULE);
Takashi Iwai14c4bae2013-12-02 15:38:18 +01001163 ret = _request_firmware(firmware_p, name, device,
1164 FW_OPT_UEVENT | FW_OPT_FALLBACK);
Ming Leid6c8aa32013-06-06 20:01:48 +08001165 module_put(THIS_MODULE);
1166 return ret;
Abhay Salunke6e3eaab2005-09-06 15:17:13 -07001167}
Daniel Mackf4945132013-05-23 22:17:18 +02001168EXPORT_SYMBOL(request_firmware);
Abhay Salunke6e3eaab2005-09-06 15:17:13 -07001169
Takashi Iwaibba3a872013-12-02 15:38:16 +01001170/**
1171 * request_firmware: - load firmware directly without usermode helper
1172 * @firmware_p: pointer to firmware image
1173 * @name: name of firmware file
1174 * @device: device for which firmware is being loaded
1175 *
1176 * This function works pretty much like request_firmware(), but this doesn't
1177 * fall back to usermode helper even if the firmware couldn't be loaded
1178 * directly from fs. Hence it's useful for loading optional firmwares, which
1179 * aren't always present, without extra long timeouts of udev.
1180 **/
1181int request_firmware_direct(const struct firmware **firmware_p,
1182 const char *name, struct device *device)
1183{
1184 int ret;
1185 __module_get(THIS_MODULE);
Luis R. Rodriguezc868edf2014-07-02 09:55:05 -07001186 ret = _request_firmware(firmware_p, name, device,
1187 FW_OPT_UEVENT | FW_OPT_NO_WARN);
Takashi Iwaibba3a872013-12-02 15:38:16 +01001188 module_put(THIS_MODULE);
1189 return ret;
1190}
1191EXPORT_SYMBOL_GPL(request_firmware_direct);
Takashi Iwaibba3a872013-12-02 15:38:16 +01001192
Abhay Salunke6e3eaab2005-09-06 15:17:13 -07001193/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07001194 * release_firmware: - release the resource associated with a firmware image
Randy Dunlapeb8e3172005-10-30 15:03:01 -08001195 * @fw: firmware resource to release
Linus Torvalds1da177e2005-04-16 15:20:36 -07001196 **/
Dmitry Torokhovbcb9bd12010-03-13 23:49:18 -08001197void release_firmware(const struct firmware *fw)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001198{
1199 if (fw) {
Dmitry Torokhovbcb9bd12010-03-13 23:49:18 -08001200 if (!fw_is_builtin_firmware(fw))
1201 firmware_free_data(fw);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001202 kfree(fw);
1203 }
1204}
Daniel Mackf4945132013-05-23 22:17:18 +02001205EXPORT_SYMBOL(release_firmware);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001206
Linus Torvalds1da177e2005-04-16 15:20:36 -07001207/* Async support */
1208struct firmware_work {
1209 struct work_struct work;
1210 struct module *module;
1211 const char *name;
1212 struct device *device;
1213 void *context;
1214 void (*cont)(const struct firmware *fw, void *context);
Takashi Iwai14c4bae2013-12-02 15:38:18 +01001215 unsigned int opt_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001216};
1217
Stephen Boyda36cf842012-03-28 23:31:00 +02001218static void request_firmware_work_func(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001219{
Stephen Boyda36cf842012-03-28 23:31:00 +02001220 struct firmware_work *fw_work;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001221 const struct firmware *fw;
Dmitry Torokhovf8a4bd32010-06-04 00:54:43 -07001222
Stephen Boyda36cf842012-03-28 23:31:00 +02001223 fw_work = container_of(work, struct firmware_work, work);
Rafael J. Wysocki811fa402012-03-28 23:29:55 +02001224
Takashi Iwai4e0c92d2013-01-31 11:13:54 +01001225 _request_firmware(&fw, fw_work->name, fw_work->device,
Takashi Iwai14c4bae2013-12-02 15:38:18 +01001226 fw_work->opt_flags);
Johannes Berg9ebfbd42009-10-29 12:36:02 +01001227 fw_work->cont(fw, fw_work->context);
Takashi Iwai4e0c92d2013-01-31 11:13:54 +01001228 put_device(fw_work->device); /* taken in request_firmware_nowait() */
Johannes Berg9ebfbd42009-10-29 12:36:02 +01001229
Linus Torvalds1da177e2005-04-16 15:20:36 -07001230 module_put(fw_work->module);
1231 kfree(fw_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001232}
1233
1234/**
Ben Hutchings3c31f072010-02-14 14:18:53 +00001235 * request_firmware_nowait - asynchronous version of request_firmware
Randy Dunlapeb8e3172005-10-30 15:03:01 -08001236 * @module: module requesting the firmware
Kay Sievers312c0042005-11-16 09:00:00 +01001237 * @uevent: sends uevent to copy the firmware image if this flag
Randy Dunlapeb8e3172005-10-30 15:03:01 -08001238 * is non-zero else the firmware copy must be done manually.
1239 * @name: name of firmware file
1240 * @device: device for which firmware is being loaded
Johannes Berg9ebfbd42009-10-29 12:36:02 +01001241 * @gfp: allocation flags
Randy Dunlapeb8e3172005-10-30 15:03:01 -08001242 * @context: will be passed over to @cont, and
1243 * @fw may be %NULL if firmware request fails.
1244 * @cont: function will be called asynchronously when the firmware
1245 * request is over.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001246 *
Ming Lei0cfc1e12012-08-04 12:01:23 +08001247 * Caller must hold the reference count of @device.
1248 *
Ming Lei6f21a622012-08-04 12:01:24 +08001249 * Asynchronous variant of request_firmware() for user contexts:
1250 * - sleep for as small periods as possible since it may
1251 * increase kernel boot time of built-in device drivers
1252 * requesting firmware in their ->probe() methods, if
1253 * @gfp is GFP_KERNEL.
1254 *
1255 * - can't sleep at all if @gfp is GFP_ATOMIC.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001256 **/
1257int
1258request_firmware_nowait(
Bob Liu072fc8f2011-01-26 18:33:32 +08001259 struct module *module, bool uevent,
Johannes Berg9ebfbd42009-10-29 12:36:02 +01001260 const char *name, struct device *device, gfp_t gfp, void *context,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001261 void (*cont)(const struct firmware *fw, void *context))
1262{
Dmitry Torokhovf8a4bd32010-06-04 00:54:43 -07001263 struct firmware_work *fw_work;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001264
Dmitry Torokhovf8a4bd32010-06-04 00:54:43 -07001265 fw_work = kzalloc(sizeof (struct firmware_work), gfp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001266 if (!fw_work)
1267 return -ENOMEM;
Dmitry Torokhovf8a4bd32010-06-04 00:54:43 -07001268
1269 fw_work->module = module;
1270 fw_work->name = name;
1271 fw_work->device = device;
1272 fw_work->context = context;
1273 fw_work->cont = cont;
Takashi Iwai14c4bae2013-12-02 15:38:18 +01001274 fw_work->opt_flags = FW_OPT_NOWAIT | FW_OPT_FALLBACK |
Takashi Iwai5a1379e2014-06-04 17:48:15 +02001275 (uevent ? FW_OPT_UEVENT : FW_OPT_USERHELPER);
Dmitry Torokhovf8a4bd32010-06-04 00:54:43 -07001276
Linus Torvalds1da177e2005-04-16 15:20:36 -07001277 if (!try_module_get(module)) {
1278 kfree(fw_work);
1279 return -EFAULT;
1280 }
1281
Ming Lei0cfc1e12012-08-04 12:01:23 +08001282 get_device(fw_work->device);
Stephen Boyda36cf842012-03-28 23:31:00 +02001283 INIT_WORK(&fw_work->work, request_firmware_work_func);
1284 schedule_work(&fw_work->work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001285 return 0;
1286}
Daniel Mackf4945132013-05-23 22:17:18 +02001287EXPORT_SYMBOL(request_firmware_nowait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001288
Ming Lei90f890812013-06-20 12:30:16 +08001289#ifdef CONFIG_PM_SLEEP
1290static ASYNC_DOMAIN_EXCLUSIVE(fw_cache_domain);
1291
Ming Lei2887b392012-08-04 12:01:22 +08001292/**
1293 * cache_firmware - cache one firmware image in kernel memory space
1294 * @fw_name: the firmware image name
1295 *
1296 * Cache firmware in kernel memory so that drivers can use it when
1297 * system isn't ready for them to request firmware image from userspace.
1298 * Once it returns successfully, driver can use request_firmware or its
1299 * nowait version to get the cached firmware without any interacting
1300 * with userspace
1301 *
1302 * Return 0 if the firmware image has been cached successfully
1303 * Return !0 otherwise
1304 *
1305 */
Ming Lei93232e42013-06-06 20:01:47 +08001306static int cache_firmware(const char *fw_name)
Ming Lei2887b392012-08-04 12:01:22 +08001307{
1308 int ret;
1309 const struct firmware *fw;
1310
1311 pr_debug("%s: %s\n", __func__, fw_name);
1312
1313 ret = request_firmware(&fw, fw_name, NULL);
1314 if (!ret)
1315 kfree(fw);
1316
1317 pr_debug("%s: %s ret=%d\n", __func__, fw_name, ret);
1318
1319 return ret;
1320}
1321
Ming Lei6a2c1232013-06-26 09:28:17 +08001322static struct firmware_buf *fw_lookup_buf(const char *fw_name)
1323{
1324 struct firmware_buf *tmp;
1325 struct firmware_cache *fwc = &fw_cache;
1326
1327 spin_lock(&fwc->lock);
1328 tmp = __fw_lookup_buf(fw_name);
1329 spin_unlock(&fwc->lock);
1330
1331 return tmp;
1332}
1333
Ming Lei2887b392012-08-04 12:01:22 +08001334/**
1335 * uncache_firmware - remove one cached firmware image
1336 * @fw_name: the firmware image name
1337 *
1338 * Uncache one firmware image which has been cached successfully
1339 * before.
1340 *
1341 * Return 0 if the firmware cache has been removed successfully
1342 * Return !0 otherwise
1343 *
1344 */
Ming Lei93232e42013-06-06 20:01:47 +08001345static int uncache_firmware(const char *fw_name)
Ming Lei2887b392012-08-04 12:01:22 +08001346{
1347 struct firmware_buf *buf;
1348 struct firmware fw;
1349
1350 pr_debug("%s: %s\n", __func__, fw_name);
1351
1352 if (fw_get_builtin_firmware(&fw, fw_name))
1353 return 0;
1354
1355 buf = fw_lookup_buf(fw_name);
1356 if (buf) {
1357 fw_free_buf(buf);
1358 return 0;
1359 }
1360
1361 return -EINVAL;
1362}
1363
Ming Lei37276a52012-08-04 12:01:27 +08001364static struct fw_cache_entry *alloc_fw_cache_entry(const char *name)
1365{
1366 struct fw_cache_entry *fce;
1367
1368 fce = kzalloc(sizeof(*fce) + strlen(name) + 1, GFP_ATOMIC);
1369 if (!fce)
1370 goto exit;
1371
1372 strcpy(fce->name, name);
1373exit:
1374 return fce;
1375}
1376
Ming Lei373304f2012-10-09 12:01:01 +08001377static int __fw_entry_found(const char *name)
1378{
1379 struct firmware_cache *fwc = &fw_cache;
1380 struct fw_cache_entry *fce;
1381
1382 list_for_each_entry(fce, &fwc->fw_names, list) {
1383 if (!strcmp(fce->name, name))
1384 return 1;
1385 }
1386 return 0;
1387}
1388
Ming Leiac39b3e2012-08-20 19:04:16 +08001389static int fw_cache_piggyback_on_request(const char *name)
1390{
1391 struct firmware_cache *fwc = &fw_cache;
1392 struct fw_cache_entry *fce;
1393 int ret = 0;
1394
1395 spin_lock(&fwc->name_lock);
Ming Lei373304f2012-10-09 12:01:01 +08001396 if (__fw_entry_found(name))
1397 goto found;
Ming Leiac39b3e2012-08-20 19:04:16 +08001398
1399 fce = alloc_fw_cache_entry(name);
1400 if (fce) {
1401 ret = 1;
1402 list_add(&fce->list, &fwc->fw_names);
1403 pr_debug("%s: fw: %s\n", __func__, name);
1404 }
1405found:
1406 spin_unlock(&fwc->name_lock);
1407 return ret;
1408}
1409
Ming Lei37276a52012-08-04 12:01:27 +08001410static void free_fw_cache_entry(struct fw_cache_entry *fce)
1411{
1412 kfree(fce);
1413}
1414
1415static void __async_dev_cache_fw_image(void *fw_entry,
1416 async_cookie_t cookie)
1417{
1418 struct fw_cache_entry *fce = fw_entry;
1419 struct firmware_cache *fwc = &fw_cache;
1420 int ret;
1421
1422 ret = cache_firmware(fce->name);
Ming Leiac39b3e2012-08-20 19:04:16 +08001423 if (ret) {
1424 spin_lock(&fwc->name_lock);
1425 list_del(&fce->list);
1426 spin_unlock(&fwc->name_lock);
Ming Lei37276a52012-08-04 12:01:27 +08001427
Ming Leiac39b3e2012-08-20 19:04:16 +08001428 free_fw_cache_entry(fce);
1429 }
Ming Lei37276a52012-08-04 12:01:27 +08001430}
1431
1432/* called with dev->devres_lock held */
1433static void dev_create_fw_entry(struct device *dev, void *res,
1434 void *data)
1435{
1436 struct fw_name_devm *fwn = res;
1437 const char *fw_name = fwn->name;
1438 struct list_head *head = data;
1439 struct fw_cache_entry *fce;
1440
1441 fce = alloc_fw_cache_entry(fw_name);
1442 if (fce)
1443 list_add(&fce->list, head);
1444}
1445
1446static int devm_name_match(struct device *dev, void *res,
1447 void *match_data)
1448{
1449 struct fw_name_devm *fwn = res;
1450 return (fwn->magic == (unsigned long)match_data);
1451}
1452
Ming Leiab6dd8e2012-08-17 22:07:00 +08001453static void dev_cache_fw_image(struct device *dev, void *data)
Ming Lei37276a52012-08-04 12:01:27 +08001454{
1455 LIST_HEAD(todo);
1456 struct fw_cache_entry *fce;
1457 struct fw_cache_entry *fce_next;
1458 struct firmware_cache *fwc = &fw_cache;
1459
1460 devres_for_each_res(dev, fw_name_devm_release,
1461 devm_name_match, &fw_cache,
1462 dev_create_fw_entry, &todo);
1463
1464 list_for_each_entry_safe(fce, fce_next, &todo, list) {
1465 list_del(&fce->list);
1466
1467 spin_lock(&fwc->name_lock);
Ming Lei373304f2012-10-09 12:01:01 +08001468 /* only one cache entry for one firmware */
1469 if (!__fw_entry_found(fce->name)) {
Ming Lei373304f2012-10-09 12:01:01 +08001470 list_add(&fce->list, &fwc->fw_names);
1471 } else {
1472 free_fw_cache_entry(fce);
1473 fce = NULL;
1474 }
Ming Lei37276a52012-08-04 12:01:27 +08001475 spin_unlock(&fwc->name_lock);
1476
Ming Lei373304f2012-10-09 12:01:01 +08001477 if (fce)
Ming Leid28d3882012-10-09 12:01:04 +08001478 async_schedule_domain(__async_dev_cache_fw_image,
1479 (void *)fce,
1480 &fw_cache_domain);
Ming Lei37276a52012-08-04 12:01:27 +08001481 }
1482}
1483
1484static void __device_uncache_fw_images(void)
1485{
1486 struct firmware_cache *fwc = &fw_cache;
1487 struct fw_cache_entry *fce;
1488
1489 spin_lock(&fwc->name_lock);
1490 while (!list_empty(&fwc->fw_names)) {
1491 fce = list_entry(fwc->fw_names.next,
1492 struct fw_cache_entry, list);
1493 list_del(&fce->list);
1494 spin_unlock(&fwc->name_lock);
1495
1496 uncache_firmware(fce->name);
1497 free_fw_cache_entry(fce);
1498
1499 spin_lock(&fwc->name_lock);
1500 }
1501 spin_unlock(&fwc->name_lock);
1502}
1503
1504/**
1505 * device_cache_fw_images - cache devices' firmware
1506 *
1507 * If one device called request_firmware or its nowait version
1508 * successfully before, the firmware names are recored into the
1509 * device's devres link list, so device_cache_fw_images can call
1510 * cache_firmware() to cache these firmwares for the device,
1511 * then the device driver can load its firmwares easily at
1512 * time when system is not ready to complete loading firmware.
1513 */
1514static void device_cache_fw_images(void)
1515{
1516 struct firmware_cache *fwc = &fw_cache;
Ming Leiffe53f62012-08-04 12:01:28 +08001517 int old_timeout;
Ming Lei37276a52012-08-04 12:01:27 +08001518 DEFINE_WAIT(wait);
1519
1520 pr_debug("%s\n", __func__);
1521
Ming Lei373304f2012-10-09 12:01:01 +08001522 /* cancel uncache work */
1523 cancel_delayed_work_sync(&fwc->work);
1524
Ming Leiffe53f62012-08-04 12:01:28 +08001525 /*
1526 * use small loading timeout for caching devices' firmware
1527 * because all these firmware images have been loaded
1528 * successfully at lease once, also system is ready for
1529 * completing firmware loading now. The maximum size of
1530 * firmware in current distributions is about 2M bytes,
1531 * so 10 secs should be enough.
1532 */
1533 old_timeout = loading_timeout;
1534 loading_timeout = 10;
1535
Ming Leiac39b3e2012-08-20 19:04:16 +08001536 mutex_lock(&fw_lock);
1537 fwc->state = FW_LOADER_START_CACHE;
Ming Leiab6dd8e2012-08-17 22:07:00 +08001538 dpm_for_each_dev(NULL, dev_cache_fw_image);
Ming Leiac39b3e2012-08-20 19:04:16 +08001539 mutex_unlock(&fw_lock);
Ming Lei37276a52012-08-04 12:01:27 +08001540
1541 /* wait for completion of caching firmware for all devices */
Ming Leid28d3882012-10-09 12:01:04 +08001542 async_synchronize_full_domain(&fw_cache_domain);
Ming Leiffe53f62012-08-04 12:01:28 +08001543
1544 loading_timeout = old_timeout;
Ming Lei37276a52012-08-04 12:01:27 +08001545}
1546
1547/**
1548 * device_uncache_fw_images - uncache devices' firmware
1549 *
1550 * uncache all firmwares which have been cached successfully
1551 * by device_uncache_fw_images earlier
1552 */
1553static void device_uncache_fw_images(void)
1554{
1555 pr_debug("%s\n", __func__);
1556 __device_uncache_fw_images();
1557}
1558
1559static void device_uncache_fw_images_work(struct work_struct *work)
1560{
1561 device_uncache_fw_images();
1562}
1563
1564/**
1565 * device_uncache_fw_images_delay - uncache devices firmwares
1566 * @delay: number of milliseconds to delay uncache device firmwares
1567 *
1568 * uncache all devices's firmwares which has been cached successfully
1569 * by device_cache_fw_images after @delay milliseconds.
1570 */
1571static void device_uncache_fw_images_delay(unsigned long delay)
1572{
Shaibal Duttabce66182014-01-31 15:44:58 -08001573 queue_delayed_work(system_power_efficient_wq, &fw_cache.work,
1574 msecs_to_jiffies(delay));
Ming Lei37276a52012-08-04 12:01:27 +08001575}
1576
Ming Lei07646d92012-08-04 12:01:29 +08001577static int fw_pm_notify(struct notifier_block *notify_block,
1578 unsigned long mode, void *unused)
1579{
1580 switch (mode) {
1581 case PM_HIBERNATION_PREPARE:
1582 case PM_SUSPEND_PREPARE:
Sebastian Capellaf8d5b9e2014-02-18 17:52:08 -08001583 case PM_RESTORE_PREPARE:
Ming Leiaf5bc112013-05-27 18:30:04 +08001584 kill_requests_without_uevent();
Ming Lei07646d92012-08-04 12:01:29 +08001585 device_cache_fw_images();
1586 break;
1587
1588 case PM_POST_SUSPEND:
1589 case PM_POST_HIBERNATION:
1590 case PM_POST_RESTORE:
Ming Leiac39b3e2012-08-20 19:04:16 +08001591 /*
1592 * In case that system sleep failed and syscore_suspend is
1593 * not called.
1594 */
1595 mutex_lock(&fw_lock);
1596 fw_cache.state = FW_LOADER_NO_CACHE;
1597 mutex_unlock(&fw_lock);
1598
Ming Lei07646d92012-08-04 12:01:29 +08001599 device_uncache_fw_images_delay(10 * MSEC_PER_SEC);
1600 break;
1601 }
1602
1603 return 0;
1604}
Ming Lei07646d92012-08-04 12:01:29 +08001605
Ming Leiac39b3e2012-08-20 19:04:16 +08001606/* stop caching firmware once syscore_suspend is reached */
1607static int fw_suspend(void)
1608{
1609 fw_cache.state = FW_LOADER_NO_CACHE;
1610 return 0;
1611}
1612
1613static struct syscore_ops fw_syscore_ops = {
1614 .suspend = fw_suspend,
1615};
Ming Leicfe016b2012-09-08 17:32:30 +08001616#else
1617static int fw_cache_piggyback_on_request(const char *name)
1618{
1619 return 0;
1620}
1621#endif
Ming Leiac39b3e2012-08-20 19:04:16 +08001622
Ming Lei37276a52012-08-04 12:01:27 +08001623static void __init fw_cache_init(void)
1624{
1625 spin_lock_init(&fw_cache.lock);
1626 INIT_LIST_HEAD(&fw_cache.head);
Ming Leicfe016b2012-09-08 17:32:30 +08001627 fw_cache.state = FW_LOADER_NO_CACHE;
Ming Lei37276a52012-08-04 12:01:27 +08001628
Ming Leicfe016b2012-09-08 17:32:30 +08001629#ifdef CONFIG_PM_SLEEP
Ming Lei37276a52012-08-04 12:01:27 +08001630 spin_lock_init(&fw_cache.name_lock);
1631 INIT_LIST_HEAD(&fw_cache.fw_names);
Ming Lei37276a52012-08-04 12:01:27 +08001632
Ming Lei37276a52012-08-04 12:01:27 +08001633 INIT_DELAYED_WORK(&fw_cache.work,
1634 device_uncache_fw_images_work);
Ming Lei07646d92012-08-04 12:01:29 +08001635
1636 fw_cache.pm_notify.notifier_call = fw_pm_notify;
1637 register_pm_notifier(&fw_cache.pm_notify);
Ming Leiac39b3e2012-08-20 19:04:16 +08001638
1639 register_syscore_ops(&fw_syscore_ops);
Ming Leicfe016b2012-09-08 17:32:30 +08001640#endif
Ming Lei37276a52012-08-04 12:01:27 +08001641}
1642
Dmitry Torokhov673fae92010-03-13 23:49:13 -08001643static int __init firmware_class_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001644{
Ming Lei1f2b7952012-08-04 12:01:21 +08001645 fw_cache_init();
Takashi Iwai7b1269f2013-01-31 11:13:55 +01001646#ifdef CONFIG_FW_LOADER_USER_HELPER
Takashi Iwaife304142013-05-22 18:28:38 +02001647 register_reboot_notifier(&fw_shutdown_nb);
Dmitry Torokhov673fae92010-03-13 23:49:13 -08001648 return class_register(&firmware_class);
Takashi Iwai7b1269f2013-01-31 11:13:55 +01001649#else
1650 return 0;
1651#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001652}
Dmitry Torokhov673fae92010-03-13 23:49:13 -08001653
1654static void __exit firmware_class_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001655{
Ming Leicfe016b2012-09-08 17:32:30 +08001656#ifdef CONFIG_PM_SLEEP
Ming Leiac39b3e2012-08-20 19:04:16 +08001657 unregister_syscore_ops(&fw_syscore_ops);
Ming Lei07646d92012-08-04 12:01:29 +08001658 unregister_pm_notifier(&fw_cache.pm_notify);
Ming Leicfe016b2012-09-08 17:32:30 +08001659#endif
Takashi Iwai7b1269f2013-01-31 11:13:55 +01001660#ifdef CONFIG_FW_LOADER_USER_HELPER
Takashi Iwaife304142013-05-22 18:28:38 +02001661 unregister_reboot_notifier(&fw_shutdown_nb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001662 class_unregister(&firmware_class);
Takashi Iwai7b1269f2013-01-31 11:13:55 +01001663#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001664}
1665
Shaohua Lia30a6a22006-09-27 01:50:52 -07001666fs_initcall(firmware_class_init);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001667module_exit(firmware_class_exit);