9ffa70762473d8a9dc569b6506d0cc9c47753447
[deliverable/linux.git] / drivers / base / firmware_class.c
1 /*
2 * firmware_class.c - Multi purpose firmware loading support
3 *
4 * Copyright (c) 2003 Manuel Estrada Sainz
5 *
6 * Please see Documentation/firmware_class/ for more information.
7 *
8 */
9
10 #include <linux/capability.h>
11 #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>
18 #include <linux/mutex.h>
19 #include <linux/workqueue.h>
20 #include <linux/highmem.h>
21 #include <linux/firmware.h>
22 #include <linux/slab.h>
23 #include <linux/sched.h>
24 #include <linux/file.h>
25 #include <linux/list.h>
26 #include <linux/async.h>
27 #include <linux/pm.h>
28 #include <linux/suspend.h>
29 #include <linux/syscore_ops.h>
30 #include <linux/reboot.h>
31 #include <linux/security.h>
32
33 #include <generated/utsrelease.h>
34
35 #include "base.h"
36
37 MODULE_AUTHOR("Manuel Estrada Sainz");
38 MODULE_DESCRIPTION("Multi purpose firmware loading support");
39 MODULE_LICENSE("GPL");
40
41 /* Builtin firmware support */
42
43 #ifdef CONFIG_FW_LOADER
44
45 extern struct builtin_fw __start_builtin_fw[];
46 extern struct builtin_fw __end_builtin_fw[];
47
48 static bool fw_get_builtin_firmware(struct firmware *fw, const char *name)
49 {
50 struct builtin_fw *b_fw;
51
52 for (b_fw = __start_builtin_fw; b_fw != __end_builtin_fw; b_fw++) {
53 if (strcmp(name, b_fw->name) == 0) {
54 fw->size = b_fw->size;
55 fw->data = b_fw->data;
56 return true;
57 }
58 }
59
60 return false;
61 }
62
63 static bool fw_is_builtin_firmware(const struct firmware *fw)
64 {
65 struct builtin_fw *b_fw;
66
67 for (b_fw = __start_builtin_fw; b_fw != __end_builtin_fw; b_fw++)
68 if (fw->data == b_fw->data)
69 return true;
70
71 return false;
72 }
73
74 #else /* Module case - no builtin firmware support */
75
76 static inline bool fw_get_builtin_firmware(struct firmware *fw, const char *name)
77 {
78 return false;
79 }
80
81 static inline bool fw_is_builtin_firmware(const struct firmware *fw)
82 {
83 return false;
84 }
85 #endif
86
87 enum {
88 FW_STATUS_LOADING,
89 FW_STATUS_DONE,
90 FW_STATUS_ABORT,
91 };
92
93 static int loading_timeout = 60; /* In seconds */
94
95 static inline long firmware_loading_timeout(void)
96 {
97 return loading_timeout > 0 ? loading_timeout * HZ : MAX_JIFFY_OFFSET;
98 }
99
100 /* firmware behavior options */
101 #define FW_OPT_UEVENT (1U << 0)
102 #define FW_OPT_NOWAIT (1U << 1)
103 #ifdef CONFIG_FW_LOADER_USER_HELPER
104 #define FW_OPT_USERHELPER (1U << 2)
105 #else
106 #define FW_OPT_USERHELPER 0
107 #endif
108 #ifdef CONFIG_FW_LOADER_USER_HELPER_FALLBACK
109 #define FW_OPT_FALLBACK FW_OPT_USERHELPER
110 #else
111 #define FW_OPT_FALLBACK 0
112 #endif
113 #define FW_OPT_NO_WARN (1U << 3)
114
115 struct firmware_cache {
116 /* firmware_buf instance will be added into the below list */
117 spinlock_t lock;
118 struct list_head head;
119 int state;
120
121 #ifdef CONFIG_PM_SLEEP
122 /*
123 * Names of firmware images which have been cached successfully
124 * will be added into the below list so that device uncache
125 * helper can trace which firmware images have been cached
126 * before.
127 */
128 spinlock_t name_lock;
129 struct list_head fw_names;
130
131 struct delayed_work work;
132
133 struct notifier_block pm_notify;
134 #endif
135 };
136
137 struct firmware_buf {
138 struct kref ref;
139 struct list_head list;
140 struct completion completion;
141 struct firmware_cache *fwc;
142 unsigned long status;
143 void *data;
144 size_t size;
145 #ifdef CONFIG_FW_LOADER_USER_HELPER
146 bool is_paged_buf;
147 bool need_uevent;
148 struct page **pages;
149 int nr_pages;
150 int page_array_size;
151 struct list_head pending_list;
152 #endif
153 char fw_id[];
154 };
155
156 struct fw_cache_entry {
157 struct list_head list;
158 char name[];
159 };
160
161 struct fw_name_devm {
162 unsigned long magic;
163 char name[];
164 };
165
166 #define to_fwbuf(d) container_of(d, struct firmware_buf, ref)
167
168 #define FW_LOADER_NO_CACHE 0
169 #define FW_LOADER_START_CACHE 1
170
171 static int fw_cache_piggyback_on_request(const char *name);
172
173 /* fw_lock could be moved to 'struct firmware_priv' but since it is just
174 * guarding for corner cases a global lock should be OK */
175 static DEFINE_MUTEX(fw_lock);
176
177 static struct firmware_cache fw_cache;
178
179 static struct firmware_buf *__allocate_fw_buf(const char *fw_name,
180 struct firmware_cache *fwc)
181 {
182 struct firmware_buf *buf;
183
184 buf = kzalloc(sizeof(*buf) + strlen(fw_name) + 1, GFP_ATOMIC);
185
186 if (!buf)
187 return buf;
188
189 kref_init(&buf->ref);
190 strcpy(buf->fw_id, fw_name);
191 buf->fwc = fwc;
192 init_completion(&buf->completion);
193 #ifdef CONFIG_FW_LOADER_USER_HELPER
194 INIT_LIST_HEAD(&buf->pending_list);
195 #endif
196
197 pr_debug("%s: fw-%s buf=%p\n", __func__, fw_name, buf);
198
199 return buf;
200 }
201
202 static struct firmware_buf *__fw_lookup_buf(const char *fw_name)
203 {
204 struct firmware_buf *tmp;
205 struct firmware_cache *fwc = &fw_cache;
206
207 list_for_each_entry(tmp, &fwc->head, list)
208 if (!strcmp(tmp->fw_id, fw_name))
209 return tmp;
210 return NULL;
211 }
212
213 static int fw_lookup_and_allocate_buf(const char *fw_name,
214 struct firmware_cache *fwc,
215 struct firmware_buf **buf)
216 {
217 struct firmware_buf *tmp;
218
219 spin_lock(&fwc->lock);
220 tmp = __fw_lookup_buf(fw_name);
221 if (tmp) {
222 kref_get(&tmp->ref);
223 spin_unlock(&fwc->lock);
224 *buf = tmp;
225 return 1;
226 }
227 tmp = __allocate_fw_buf(fw_name, fwc);
228 if (tmp)
229 list_add(&tmp->list, &fwc->head);
230 spin_unlock(&fwc->lock);
231
232 *buf = tmp;
233
234 return tmp ? 0 : -ENOMEM;
235 }
236
237 static void __fw_free_buf(struct kref *ref)
238 __releases(&fwc->lock)
239 {
240 struct firmware_buf *buf = to_fwbuf(ref);
241 struct firmware_cache *fwc = buf->fwc;
242
243 pr_debug("%s: fw-%s buf=%p data=%p size=%u\n",
244 __func__, buf->fw_id, buf, buf->data,
245 (unsigned int)buf->size);
246
247 list_del(&buf->list);
248 spin_unlock(&fwc->lock);
249
250 #ifdef CONFIG_FW_LOADER_USER_HELPER
251 if (buf->is_paged_buf) {
252 int i;
253 vunmap(buf->data);
254 for (i = 0; i < buf->nr_pages; i++)
255 __free_page(buf->pages[i]);
256 kfree(buf->pages);
257 } else
258 #endif
259 vfree(buf->data);
260 kfree(buf);
261 }
262
263 static void fw_free_buf(struct firmware_buf *buf)
264 {
265 struct firmware_cache *fwc = buf->fwc;
266 spin_lock(&fwc->lock);
267 if (!kref_put(&buf->ref, __fw_free_buf))
268 spin_unlock(&fwc->lock);
269 }
270
271 /* direct firmware loading support */
272 static char fw_path_para[256];
273 static const char * const fw_path[] = {
274 fw_path_para,
275 "/lib/firmware/updates/" UTS_RELEASE,
276 "/lib/firmware/updates",
277 "/lib/firmware/" UTS_RELEASE,
278 "/lib/firmware"
279 };
280
281 /*
282 * Typical usage is that passing 'firmware_class.path=$CUSTOMIZED_PATH'
283 * from kernel command line because firmware_class is generally built in
284 * kernel instead of module.
285 */
286 module_param_string(path, fw_path_para, sizeof(fw_path_para), 0644);
287 MODULE_PARM_DESC(path, "customized firmware image search path with a higher priority than default path");
288
289 static int fw_read_file_contents(struct file *file, struct firmware_buf *fw_buf)
290 {
291 int size;
292 char *buf;
293 int rc;
294
295 if (!S_ISREG(file_inode(file)->i_mode))
296 return -EINVAL;
297 size = i_size_read(file_inode(file));
298 if (size <= 0)
299 return -EINVAL;
300 buf = vmalloc(size);
301 if (!buf)
302 return -ENOMEM;
303 rc = kernel_read(file, 0, buf, size);
304 if (rc != size) {
305 if (rc > 0)
306 rc = -EIO;
307 goto fail;
308 }
309 rc = security_kernel_fw_from_file(file, buf, size);
310 if (rc)
311 goto fail;
312 fw_buf->data = buf;
313 fw_buf->size = size;
314 return 0;
315 fail:
316 vfree(buf);
317 return rc;
318 }
319
320 static int fw_get_filesystem_firmware(struct device *device,
321 struct firmware_buf *buf)
322 {
323 int i, len;
324 int rc = -ENOENT;
325 char *path;
326
327 path = __getname();
328 if (!path)
329 return -ENOMEM;
330
331 for (i = 0; i < ARRAY_SIZE(fw_path); i++) {
332 struct file *file;
333
334 /* skip the unset customized path */
335 if (!fw_path[i][0])
336 continue;
337
338 len = snprintf(path, PATH_MAX, "%s/%s",
339 fw_path[i], buf->fw_id);
340 if (len >= PATH_MAX) {
341 rc = -ENAMETOOLONG;
342 break;
343 }
344
345 file = filp_open(path, O_RDONLY, 0);
346 if (IS_ERR(file))
347 continue;
348 rc = fw_read_file_contents(file, buf);
349 fput(file);
350 if (rc)
351 dev_warn(device, "firmware, attempted to load %s, but failed with error %d\n",
352 path, rc);
353 else
354 break;
355 }
356 __putname(path);
357
358 if (!rc) {
359 dev_dbg(device, "firmware: direct-loading firmware %s\n",
360 buf->fw_id);
361 mutex_lock(&fw_lock);
362 set_bit(FW_STATUS_DONE, &buf->status);
363 complete_all(&buf->completion);
364 mutex_unlock(&fw_lock);
365 }
366
367 return rc;
368 }
369
370 /* firmware holds the ownership of pages */
371 static void firmware_free_data(const struct firmware *fw)
372 {
373 /* Loaded directly? */
374 if (!fw->priv) {
375 vfree(fw->data);
376 return;
377 }
378 fw_free_buf(fw->priv);
379 }
380
381 /* store the pages buffer info firmware from buf */
382 static void fw_set_page_data(struct firmware_buf *buf, struct firmware *fw)
383 {
384 fw->priv = buf;
385 #ifdef CONFIG_FW_LOADER_USER_HELPER
386 fw->pages = buf->pages;
387 #endif
388 fw->size = buf->size;
389 fw->data = buf->data;
390
391 pr_debug("%s: fw-%s buf=%p data=%p size=%u\n",
392 __func__, buf->fw_id, buf, buf->data,
393 (unsigned int)buf->size);
394 }
395
396 #ifdef CONFIG_PM_SLEEP
397 static void fw_name_devm_release(struct device *dev, void *res)
398 {
399 struct fw_name_devm *fwn = res;
400
401 if (fwn->magic == (unsigned long)&fw_cache)
402 pr_debug("%s: fw_name-%s devm-%p released\n",
403 __func__, fwn->name, res);
404 }
405
406 static int fw_devm_match(struct device *dev, void *res,
407 void *match_data)
408 {
409 struct fw_name_devm *fwn = res;
410
411 return (fwn->magic == (unsigned long)&fw_cache) &&
412 !strcmp(fwn->name, match_data);
413 }
414
415 static struct fw_name_devm *fw_find_devm_name(struct device *dev,
416 const char *name)
417 {
418 struct fw_name_devm *fwn;
419
420 fwn = devres_find(dev, fw_name_devm_release,
421 fw_devm_match, (void *)name);
422 return fwn;
423 }
424
425 /* add firmware name into devres list */
426 static int fw_add_devm_name(struct device *dev, const char *name)
427 {
428 struct fw_name_devm *fwn;
429
430 fwn = fw_find_devm_name(dev, name);
431 if (fwn)
432 return 1;
433
434 fwn = devres_alloc(fw_name_devm_release, sizeof(struct fw_name_devm) +
435 strlen(name) + 1, GFP_KERNEL);
436 if (!fwn)
437 return -ENOMEM;
438
439 fwn->magic = (unsigned long)&fw_cache;
440 strcpy(fwn->name, name);
441 devres_add(dev, fwn);
442
443 return 0;
444 }
445 #else
446 static int fw_add_devm_name(struct device *dev, const char *name)
447 {
448 return 0;
449 }
450 #endif
451
452
453 /*
454 * user-mode helper code
455 */
456 #ifdef CONFIG_FW_LOADER_USER_HELPER
457 struct firmware_priv {
458 bool nowait;
459 struct device dev;
460 struct firmware_buf *buf;
461 struct firmware *fw;
462 };
463
464 static struct firmware_priv *to_firmware_priv(struct device *dev)
465 {
466 return container_of(dev, struct firmware_priv, dev);
467 }
468
469 static void __fw_load_abort(struct firmware_buf *buf)
470 {
471 /*
472 * There is a small window in which user can write to 'loading'
473 * between loading done and disappearance of 'loading'
474 */
475 if (test_bit(FW_STATUS_DONE, &buf->status))
476 return;
477
478 list_del_init(&buf->pending_list);
479 set_bit(FW_STATUS_ABORT, &buf->status);
480 complete_all(&buf->completion);
481 }
482
483 static void fw_load_abort(struct firmware_priv *fw_priv)
484 {
485 struct firmware_buf *buf = fw_priv->buf;
486
487 __fw_load_abort(buf);
488
489 /* avoid user action after loading abort */
490 fw_priv->buf = NULL;
491 }
492
493 #define is_fw_load_aborted(buf) \
494 test_bit(FW_STATUS_ABORT, &(buf)->status)
495
496 static LIST_HEAD(pending_fw_head);
497
498 /* reboot notifier for avoid deadlock with usermode_lock */
499 static int fw_shutdown_notify(struct notifier_block *unused1,
500 unsigned long unused2, void *unused3)
501 {
502 mutex_lock(&fw_lock);
503 while (!list_empty(&pending_fw_head))
504 __fw_load_abort(list_first_entry(&pending_fw_head,
505 struct firmware_buf,
506 pending_list));
507 mutex_unlock(&fw_lock);
508 return NOTIFY_DONE;
509 }
510
511 static struct notifier_block fw_shutdown_nb = {
512 .notifier_call = fw_shutdown_notify,
513 };
514
515 static ssize_t timeout_show(struct class *class, struct class_attribute *attr,
516 char *buf)
517 {
518 return sprintf(buf, "%d\n", loading_timeout);
519 }
520
521 /**
522 * firmware_timeout_store - set number of seconds to wait for firmware
523 * @class: device class pointer
524 * @attr: device attribute pointer
525 * @buf: buffer to scan for timeout value
526 * @count: number of bytes in @buf
527 *
528 * Sets the number of seconds to wait for the firmware. Once
529 * this expires an error will be returned to the driver and no
530 * firmware will be provided.
531 *
532 * Note: zero means 'wait forever'.
533 **/
534 static ssize_t timeout_store(struct class *class, struct class_attribute *attr,
535 const char *buf, size_t count)
536 {
537 loading_timeout = simple_strtol(buf, NULL, 10);
538 if (loading_timeout < 0)
539 loading_timeout = 0;
540
541 return count;
542 }
543
544 static struct class_attribute firmware_class_attrs[] = {
545 __ATTR_RW(timeout),
546 __ATTR_NULL
547 };
548
549 static void fw_dev_release(struct device *dev)
550 {
551 struct firmware_priv *fw_priv = to_firmware_priv(dev);
552
553 kfree(fw_priv);
554 }
555
556 static int firmware_uevent(struct device *dev, struct kobj_uevent_env *env)
557 {
558 struct firmware_priv *fw_priv = to_firmware_priv(dev);
559
560 if (add_uevent_var(env, "FIRMWARE=%s", fw_priv->buf->fw_id))
561 return -ENOMEM;
562 if (add_uevent_var(env, "TIMEOUT=%i", loading_timeout))
563 return -ENOMEM;
564 if (add_uevent_var(env, "ASYNC=%d", fw_priv->nowait))
565 return -ENOMEM;
566
567 return 0;
568 }
569
570 static struct class firmware_class = {
571 .name = "firmware",
572 .class_attrs = firmware_class_attrs,
573 .dev_uevent = firmware_uevent,
574 .dev_release = fw_dev_release,
575 };
576
577 static ssize_t firmware_loading_show(struct device *dev,
578 struct device_attribute *attr, char *buf)
579 {
580 struct firmware_priv *fw_priv = to_firmware_priv(dev);
581 int loading = 0;
582
583 mutex_lock(&fw_lock);
584 if (fw_priv->buf)
585 loading = test_bit(FW_STATUS_LOADING, &fw_priv->buf->status);
586 mutex_unlock(&fw_lock);
587
588 return sprintf(buf, "%d\n", loading);
589 }
590
591 /* Some architectures don't have PAGE_KERNEL_RO */
592 #ifndef PAGE_KERNEL_RO
593 #define PAGE_KERNEL_RO PAGE_KERNEL
594 #endif
595
596 /* one pages buffer should be mapped/unmapped only once */
597 static int fw_map_pages_buf(struct firmware_buf *buf)
598 {
599 if (!buf->is_paged_buf)
600 return 0;
601
602 vunmap(buf->data);
603 buf->data = vmap(buf->pages, buf->nr_pages, 0, PAGE_KERNEL_RO);
604 if (!buf->data)
605 return -ENOMEM;
606 return 0;
607 }
608
609 /**
610 * firmware_loading_store - set value in the 'loading' control file
611 * @dev: device pointer
612 * @attr: device attribute pointer
613 * @buf: buffer to scan for loading control value
614 * @count: number of bytes in @buf
615 *
616 * The relevant values are:
617 *
618 * 1: Start a load, discarding any previous partial load.
619 * 0: Conclude the load and hand the data to the driver code.
620 * -1: Conclude the load with an error and discard any written data.
621 **/
622 static ssize_t firmware_loading_store(struct device *dev,
623 struct device_attribute *attr,
624 const char *buf, size_t count)
625 {
626 struct firmware_priv *fw_priv = to_firmware_priv(dev);
627 struct firmware_buf *fw_buf;
628 ssize_t written = count;
629 int loading = simple_strtol(buf, NULL, 10);
630 int i;
631
632 mutex_lock(&fw_lock);
633 fw_buf = fw_priv->buf;
634 if (!fw_buf)
635 goto out;
636
637 switch (loading) {
638 case 1:
639 /* discarding any previous partial load */
640 if (!test_bit(FW_STATUS_DONE, &fw_buf->status)) {
641 for (i = 0; i < fw_buf->nr_pages; i++)
642 __free_page(fw_buf->pages[i]);
643 kfree(fw_buf->pages);
644 fw_buf->pages = NULL;
645 fw_buf->page_array_size = 0;
646 fw_buf->nr_pages = 0;
647 set_bit(FW_STATUS_LOADING, &fw_buf->status);
648 }
649 break;
650 case 0:
651 if (test_bit(FW_STATUS_LOADING, &fw_buf->status)) {
652 int rc;
653
654 set_bit(FW_STATUS_DONE, &fw_buf->status);
655 clear_bit(FW_STATUS_LOADING, &fw_buf->status);
656
657 /*
658 * Several loading requests may be pending on
659 * one same firmware buf, so let all requests
660 * see the mapped 'buf->data' once the loading
661 * is completed.
662 * */
663 rc = fw_map_pages_buf(fw_buf);
664 if (rc)
665 dev_err(dev, "%s: map pages failed\n",
666 __func__);
667 else
668 rc = security_kernel_fw_from_file(NULL,
669 fw_buf->data, fw_buf->size);
670
671 /*
672 * Same logic as fw_load_abort, only the DONE bit
673 * is ignored and we set ABORT only on failure.
674 */
675 list_del_init(&fw_buf->pending_list);
676 if (rc) {
677 set_bit(FW_STATUS_ABORT, &fw_buf->status);
678 written = rc;
679 }
680 complete_all(&fw_buf->completion);
681 break;
682 }
683 /* fallthrough */
684 default:
685 dev_err(dev, "%s: unexpected value (%d)\n", __func__, loading);
686 /* fallthrough */
687 case -1:
688 fw_load_abort(fw_priv);
689 break;
690 }
691 out:
692 mutex_unlock(&fw_lock);
693 return written;
694 }
695
696 static DEVICE_ATTR(loading, 0644, firmware_loading_show, firmware_loading_store);
697
698 static ssize_t firmware_data_read(struct file *filp, struct kobject *kobj,
699 struct bin_attribute *bin_attr,
700 char *buffer, loff_t offset, size_t count)
701 {
702 struct device *dev = kobj_to_dev(kobj);
703 struct firmware_priv *fw_priv = to_firmware_priv(dev);
704 struct firmware_buf *buf;
705 ssize_t ret_count;
706
707 mutex_lock(&fw_lock);
708 buf = fw_priv->buf;
709 if (!buf || test_bit(FW_STATUS_DONE, &buf->status)) {
710 ret_count = -ENODEV;
711 goto out;
712 }
713 if (offset > buf->size) {
714 ret_count = 0;
715 goto out;
716 }
717 if (count > buf->size - offset)
718 count = buf->size - offset;
719
720 ret_count = count;
721
722 while (count) {
723 void *page_data;
724 int page_nr = offset >> PAGE_SHIFT;
725 int page_ofs = offset & (PAGE_SIZE-1);
726 int page_cnt = min_t(size_t, PAGE_SIZE - page_ofs, count);
727
728 page_data = kmap(buf->pages[page_nr]);
729
730 memcpy(buffer, page_data + page_ofs, page_cnt);
731
732 kunmap(buf->pages[page_nr]);
733 buffer += page_cnt;
734 offset += page_cnt;
735 count -= page_cnt;
736 }
737 out:
738 mutex_unlock(&fw_lock);
739 return ret_count;
740 }
741
742 static int fw_realloc_buffer(struct firmware_priv *fw_priv, int min_size)
743 {
744 struct firmware_buf *buf = fw_priv->buf;
745 int pages_needed = PAGE_ALIGN(min_size) >> PAGE_SHIFT;
746
747 /* If the array of pages is too small, grow it... */
748 if (buf->page_array_size < pages_needed) {
749 int new_array_size = max(pages_needed,
750 buf->page_array_size * 2);
751 struct page **new_pages;
752
753 new_pages = kmalloc(new_array_size * sizeof(void *),
754 GFP_KERNEL);
755 if (!new_pages) {
756 fw_load_abort(fw_priv);
757 return -ENOMEM;
758 }
759 memcpy(new_pages, buf->pages,
760 buf->page_array_size * sizeof(void *));
761 memset(&new_pages[buf->page_array_size], 0, sizeof(void *) *
762 (new_array_size - buf->page_array_size));
763 kfree(buf->pages);
764 buf->pages = new_pages;
765 buf->page_array_size = new_array_size;
766 }
767
768 while (buf->nr_pages < pages_needed) {
769 buf->pages[buf->nr_pages] =
770 alloc_page(GFP_KERNEL | __GFP_HIGHMEM);
771
772 if (!buf->pages[buf->nr_pages]) {
773 fw_load_abort(fw_priv);
774 return -ENOMEM;
775 }
776 buf->nr_pages++;
777 }
778 return 0;
779 }
780
781 /**
782 * firmware_data_write - write method for firmware
783 * @filp: open sysfs file
784 * @kobj: kobject for the device
785 * @bin_attr: bin_attr structure
786 * @buffer: buffer being written
787 * @offset: buffer offset for write in total data store area
788 * @count: buffer size
789 *
790 * Data written to the 'data' attribute will be later handed to
791 * the driver as a firmware image.
792 **/
793 static ssize_t firmware_data_write(struct file *filp, struct kobject *kobj,
794 struct bin_attribute *bin_attr,
795 char *buffer, loff_t offset, size_t count)
796 {
797 struct device *dev = kobj_to_dev(kobj);
798 struct firmware_priv *fw_priv = to_firmware_priv(dev);
799 struct firmware_buf *buf;
800 ssize_t retval;
801
802 if (!capable(CAP_SYS_RAWIO))
803 return -EPERM;
804
805 mutex_lock(&fw_lock);
806 buf = fw_priv->buf;
807 if (!buf || test_bit(FW_STATUS_DONE, &buf->status)) {
808 retval = -ENODEV;
809 goto out;
810 }
811
812 retval = fw_realloc_buffer(fw_priv, offset + count);
813 if (retval)
814 goto out;
815
816 retval = count;
817
818 while (count) {
819 void *page_data;
820 int page_nr = offset >> PAGE_SHIFT;
821 int page_ofs = offset & (PAGE_SIZE - 1);
822 int page_cnt = min_t(size_t, PAGE_SIZE - page_ofs, count);
823
824 page_data = kmap(buf->pages[page_nr]);
825
826 memcpy(page_data + page_ofs, buffer, page_cnt);
827
828 kunmap(buf->pages[page_nr]);
829 buffer += page_cnt;
830 offset += page_cnt;
831 count -= page_cnt;
832 }
833
834 buf->size = max_t(size_t, offset, buf->size);
835 out:
836 mutex_unlock(&fw_lock);
837 return retval;
838 }
839
840 static struct bin_attribute firmware_attr_data = {
841 .attr = { .name = "data", .mode = 0644 },
842 .size = 0,
843 .read = firmware_data_read,
844 .write = firmware_data_write,
845 };
846
847 static struct attribute *fw_dev_attrs[] = {
848 &dev_attr_loading.attr,
849 NULL
850 };
851
852 static struct bin_attribute *fw_dev_bin_attrs[] = {
853 &firmware_attr_data,
854 NULL
855 };
856
857 static const struct attribute_group fw_dev_attr_group = {
858 .attrs = fw_dev_attrs,
859 .bin_attrs = fw_dev_bin_attrs,
860 };
861
862 static const struct attribute_group *fw_dev_attr_groups[] = {
863 &fw_dev_attr_group,
864 NULL
865 };
866
867 static struct firmware_priv *
868 fw_create_instance(struct firmware *firmware, const char *fw_name,
869 struct device *device, unsigned int opt_flags)
870 {
871 struct firmware_priv *fw_priv;
872 struct device *f_dev;
873
874 fw_priv = kzalloc(sizeof(*fw_priv), GFP_KERNEL);
875 if (!fw_priv) {
876 fw_priv = ERR_PTR(-ENOMEM);
877 goto exit;
878 }
879
880 fw_priv->nowait = !!(opt_flags & FW_OPT_NOWAIT);
881 fw_priv->fw = firmware;
882 f_dev = &fw_priv->dev;
883
884 device_initialize(f_dev);
885 dev_set_name(f_dev, "%s", fw_name);
886 f_dev->parent = device;
887 f_dev->class = &firmware_class;
888 f_dev->groups = fw_dev_attr_groups;
889 exit:
890 return fw_priv;
891 }
892
893 /* load a firmware via user helper */
894 static int _request_firmware_load(struct firmware_priv *fw_priv,
895 unsigned int opt_flags, long timeout)
896 {
897 int retval = 0;
898 struct device *f_dev = &fw_priv->dev;
899 struct firmware_buf *buf = fw_priv->buf;
900
901 /* fall back on userspace loading */
902 buf->is_paged_buf = true;
903
904 dev_set_uevent_suppress(f_dev, true);
905
906 retval = device_add(f_dev);
907 if (retval) {
908 dev_err(f_dev, "%s: device_register failed\n", __func__);
909 goto err_put_dev;
910 }
911
912 mutex_lock(&fw_lock);
913 list_add(&buf->pending_list, &pending_fw_head);
914 mutex_unlock(&fw_lock);
915
916 if (opt_flags & FW_OPT_UEVENT) {
917 buf->need_uevent = true;
918 dev_set_uevent_suppress(f_dev, false);
919 dev_dbg(f_dev, "firmware: requesting %s\n", buf->fw_id);
920 kobject_uevent(&fw_priv->dev.kobj, KOBJ_ADD);
921 } else {
922 timeout = MAX_JIFFY_OFFSET;
923 }
924
925 retval = wait_for_completion_interruptible_timeout(&buf->completion,
926 timeout);
927 if (retval == -ERESTARTSYS || !retval) {
928 mutex_lock(&fw_lock);
929 fw_load_abort(fw_priv);
930 mutex_unlock(&fw_lock);
931 } else if (retval > 0) {
932 retval = 0;
933 }
934
935 if (is_fw_load_aborted(buf))
936 retval = -EAGAIN;
937 else if (!buf->data)
938 retval = -ENOMEM;
939
940 device_del(f_dev);
941 err_put_dev:
942 put_device(f_dev);
943 return retval;
944 }
945
946 static int fw_load_from_user_helper(struct firmware *firmware,
947 const char *name, struct device *device,
948 unsigned int opt_flags, long timeout)
949 {
950 struct firmware_priv *fw_priv;
951
952 fw_priv = fw_create_instance(firmware, name, device, opt_flags);
953 if (IS_ERR(fw_priv))
954 return PTR_ERR(fw_priv);
955
956 fw_priv->buf = firmware->priv;
957 return _request_firmware_load(fw_priv, opt_flags, timeout);
958 }
959
960 #ifdef CONFIG_PM_SLEEP
961 /* kill pending requests without uevent to avoid blocking suspend */
962 static void kill_requests_without_uevent(void)
963 {
964 struct firmware_buf *buf;
965 struct firmware_buf *next;
966
967 mutex_lock(&fw_lock);
968 list_for_each_entry_safe(buf, next, &pending_fw_head, pending_list) {
969 if (!buf->need_uevent)
970 __fw_load_abort(buf);
971 }
972 mutex_unlock(&fw_lock);
973 }
974 #endif
975
976 #else /* CONFIG_FW_LOADER_USER_HELPER */
977 static inline int
978 fw_load_from_user_helper(struct firmware *firmware, const char *name,
979 struct device *device, unsigned int opt_flags,
980 long timeout)
981 {
982 return -ENOENT;
983 }
984
985 /* No abort during direct loading */
986 #define is_fw_load_aborted(buf) false
987
988 #ifdef CONFIG_PM_SLEEP
989 static inline void kill_requests_without_uevent(void) { }
990 #endif
991
992 #endif /* CONFIG_FW_LOADER_USER_HELPER */
993
994
995 /* wait until the shared firmware_buf becomes ready (or error) */
996 static int sync_cached_firmware_buf(struct firmware_buf *buf)
997 {
998 int ret = 0;
999
1000 mutex_lock(&fw_lock);
1001 while (!test_bit(FW_STATUS_DONE, &buf->status)) {
1002 if (is_fw_load_aborted(buf)) {
1003 ret = -ENOENT;
1004 break;
1005 }
1006 mutex_unlock(&fw_lock);
1007 ret = wait_for_completion_interruptible(&buf->completion);
1008 mutex_lock(&fw_lock);
1009 }
1010 mutex_unlock(&fw_lock);
1011 return ret;
1012 }
1013
1014 /* prepare firmware and firmware_buf structs;
1015 * return 0 if a firmware is already assigned, 1 if need to load one,
1016 * or a negative error code
1017 */
1018 static int
1019 _request_firmware_prepare(struct firmware **firmware_p, const char *name,
1020 struct device *device)
1021 {
1022 struct firmware *firmware;
1023 struct firmware_buf *buf;
1024 int ret;
1025
1026 *firmware_p = firmware = kzalloc(sizeof(*firmware), GFP_KERNEL);
1027 if (!firmware) {
1028 dev_err(device, "%s: kmalloc(struct firmware) failed\n",
1029 __func__);
1030 return -ENOMEM;
1031 }
1032
1033 if (fw_get_builtin_firmware(firmware, name)) {
1034 dev_dbg(device, "firmware: using built-in firmware %s\n", name);
1035 return 0; /* assigned */
1036 }
1037
1038 ret = fw_lookup_and_allocate_buf(name, &fw_cache, &buf);
1039
1040 /*
1041 * bind with 'buf' now to avoid warning in failure path
1042 * of requesting firmware.
1043 */
1044 firmware->priv = buf;
1045
1046 if (ret > 0) {
1047 ret = sync_cached_firmware_buf(buf);
1048 if (!ret) {
1049 fw_set_page_data(buf, firmware);
1050 return 0; /* assigned */
1051 }
1052 }
1053
1054 if (ret < 0)
1055 return ret;
1056 return 1; /* need to load */
1057 }
1058
1059 static int assign_firmware_buf(struct firmware *fw, struct device *device,
1060 unsigned int opt_flags)
1061 {
1062 struct firmware_buf *buf = fw->priv;
1063
1064 mutex_lock(&fw_lock);
1065 if (!buf->size || is_fw_load_aborted(buf)) {
1066 mutex_unlock(&fw_lock);
1067 return -ENOENT;
1068 }
1069
1070 /*
1071 * add firmware name into devres list so that we can auto cache
1072 * and uncache firmware for device.
1073 *
1074 * device may has been deleted already, but the problem
1075 * should be fixed in devres or driver core.
1076 */
1077 /* don't cache firmware handled without uevent */
1078 if (device && (opt_flags & FW_OPT_UEVENT))
1079 fw_add_devm_name(device, buf->fw_id);
1080
1081 /*
1082 * After caching firmware image is started, let it piggyback
1083 * on request firmware.
1084 */
1085 if (buf->fwc->state == FW_LOADER_START_CACHE) {
1086 if (fw_cache_piggyback_on_request(buf->fw_id))
1087 kref_get(&buf->ref);
1088 }
1089
1090 /* pass the pages buffer to driver at the last minute */
1091 fw_set_page_data(buf, fw);
1092 mutex_unlock(&fw_lock);
1093 return 0;
1094 }
1095
1096 /* called from request_firmware() and request_firmware_work_func() */
1097 static int
1098 _request_firmware(const struct firmware **firmware_p, const char *name,
1099 struct device *device, unsigned int opt_flags)
1100 {
1101 struct firmware *fw;
1102 long timeout;
1103 int ret;
1104
1105 if (!firmware_p)
1106 return -EINVAL;
1107
1108 if (!name || name[0] == '\0')
1109 return -EINVAL;
1110
1111 ret = _request_firmware_prepare(&fw, name, device);
1112 if (ret <= 0) /* error or already assigned */
1113 goto out;
1114
1115 ret = 0;
1116 timeout = firmware_loading_timeout();
1117 if (opt_flags & FW_OPT_NOWAIT) {
1118 timeout = usermodehelper_read_lock_wait(timeout);
1119 if (!timeout) {
1120 dev_dbg(device, "firmware: %s loading timed out\n",
1121 name);
1122 ret = -EBUSY;
1123 goto out;
1124 }
1125 } else {
1126 ret = usermodehelper_read_trylock();
1127 if (WARN_ON(ret)) {
1128 dev_err(device, "firmware: %s will not be loaded\n",
1129 name);
1130 goto out;
1131 }
1132 }
1133
1134 ret = fw_get_filesystem_firmware(device, fw->priv);
1135 if (ret) {
1136 if (!(opt_flags & FW_OPT_NO_WARN))
1137 dev_warn(device,
1138 "Direct firmware load for %s failed with error %d\n",
1139 name, ret);
1140 if (opt_flags & FW_OPT_USERHELPER) {
1141 dev_warn(device, "Falling back to user helper\n");
1142 ret = fw_load_from_user_helper(fw, name, device,
1143 opt_flags, timeout);
1144 }
1145 }
1146
1147 if (!ret)
1148 ret = assign_firmware_buf(fw, device, opt_flags);
1149
1150 usermodehelper_read_unlock();
1151
1152 out:
1153 if (ret < 0) {
1154 release_firmware(fw);
1155 fw = NULL;
1156 }
1157
1158 *firmware_p = fw;
1159 return ret;
1160 }
1161
1162 /**
1163 * request_firmware: - send firmware request and wait for it
1164 * @firmware_p: pointer to firmware image
1165 * @name: name of firmware file
1166 * @device: device for which firmware is being loaded
1167 *
1168 * @firmware_p will be used to return a firmware image by the name
1169 * of @name for device @device.
1170 *
1171 * Should be called from user context where sleeping is allowed.
1172 *
1173 * @name will be used as $FIRMWARE in the uevent environment and
1174 * should be distinctive enough not to be confused with any other
1175 * firmware image for this or any other device.
1176 *
1177 * Caller must hold the reference count of @device.
1178 *
1179 * The function can be called safely inside device's suspend and
1180 * resume callback.
1181 **/
1182 int
1183 request_firmware(const struct firmware **firmware_p, const char *name,
1184 struct device *device)
1185 {
1186 int ret;
1187
1188 /* Need to pin this module until return */
1189 __module_get(THIS_MODULE);
1190 ret = _request_firmware(firmware_p, name, device,
1191 FW_OPT_UEVENT | FW_OPT_FALLBACK);
1192 module_put(THIS_MODULE);
1193 return ret;
1194 }
1195 EXPORT_SYMBOL(request_firmware);
1196
1197 /**
1198 * request_firmware_direct: - load firmware directly without usermode helper
1199 * @firmware_p: pointer to firmware image
1200 * @name: name of firmware file
1201 * @device: device for which firmware is being loaded
1202 *
1203 * This function works pretty much like request_firmware(), but this doesn't
1204 * fall back to usermode helper even if the firmware couldn't be loaded
1205 * directly from fs. Hence it's useful for loading optional firmwares, which
1206 * aren't always present, without extra long timeouts of udev.
1207 **/
1208 int request_firmware_direct(const struct firmware **firmware_p,
1209 const char *name, struct device *device)
1210 {
1211 int ret;
1212
1213 __module_get(THIS_MODULE);
1214 ret = _request_firmware(firmware_p, name, device,
1215 FW_OPT_UEVENT | FW_OPT_NO_WARN);
1216 module_put(THIS_MODULE);
1217 return ret;
1218 }
1219 EXPORT_SYMBOL_GPL(request_firmware_direct);
1220
1221 /**
1222 * release_firmware: - release the resource associated with a firmware image
1223 * @fw: firmware resource to release
1224 **/
1225 void release_firmware(const struct firmware *fw)
1226 {
1227 if (fw) {
1228 if (!fw_is_builtin_firmware(fw))
1229 firmware_free_data(fw);
1230 kfree(fw);
1231 }
1232 }
1233 EXPORT_SYMBOL(release_firmware);
1234
1235 /* Async support */
1236 struct firmware_work {
1237 struct work_struct work;
1238 struct module *module;
1239 const char *name;
1240 struct device *device;
1241 void *context;
1242 void (*cont)(const struct firmware *fw, void *context);
1243 unsigned int opt_flags;
1244 };
1245
1246 static void request_firmware_work_func(struct work_struct *work)
1247 {
1248 struct firmware_work *fw_work;
1249 const struct firmware *fw;
1250
1251 fw_work = container_of(work, struct firmware_work, work);
1252
1253 _request_firmware(&fw, fw_work->name, fw_work->device,
1254 fw_work->opt_flags);
1255 fw_work->cont(fw, fw_work->context);
1256 put_device(fw_work->device); /* taken in request_firmware_nowait() */
1257
1258 module_put(fw_work->module);
1259 kfree(fw_work);
1260 }
1261
1262 /**
1263 * request_firmware_nowait - asynchronous version of request_firmware
1264 * @module: module requesting the firmware
1265 * @uevent: sends uevent to copy the firmware image if this flag
1266 * is non-zero else the firmware copy must be done manually.
1267 * @name: name of firmware file
1268 * @device: device for which firmware is being loaded
1269 * @gfp: allocation flags
1270 * @context: will be passed over to @cont, and
1271 * @fw may be %NULL if firmware request fails.
1272 * @cont: function will be called asynchronously when the firmware
1273 * request is over.
1274 *
1275 * Caller must hold the reference count of @device.
1276 *
1277 * Asynchronous variant of request_firmware() for user contexts:
1278 * - sleep for as small periods as possible since it may
1279 * increase kernel boot time of built-in device drivers
1280 * requesting firmware in their ->probe() methods, if
1281 * @gfp is GFP_KERNEL.
1282 *
1283 * - can't sleep at all if @gfp is GFP_ATOMIC.
1284 **/
1285 int
1286 request_firmware_nowait(
1287 struct module *module, bool uevent,
1288 const char *name, struct device *device, gfp_t gfp, void *context,
1289 void (*cont)(const struct firmware *fw, void *context))
1290 {
1291 struct firmware_work *fw_work;
1292
1293 fw_work = kzalloc(sizeof(struct firmware_work), gfp);
1294 if (!fw_work)
1295 return -ENOMEM;
1296
1297 fw_work->module = module;
1298 fw_work->name = name;
1299 fw_work->device = device;
1300 fw_work->context = context;
1301 fw_work->cont = cont;
1302 fw_work->opt_flags = FW_OPT_NOWAIT | FW_OPT_FALLBACK |
1303 (uevent ? FW_OPT_UEVENT : FW_OPT_USERHELPER);
1304
1305 if (!try_module_get(module)) {
1306 kfree(fw_work);
1307 return -EFAULT;
1308 }
1309
1310 get_device(fw_work->device);
1311 INIT_WORK(&fw_work->work, request_firmware_work_func);
1312 schedule_work(&fw_work->work);
1313 return 0;
1314 }
1315 EXPORT_SYMBOL(request_firmware_nowait);
1316
1317 #ifdef CONFIG_PM_SLEEP
1318 static ASYNC_DOMAIN_EXCLUSIVE(fw_cache_domain);
1319
1320 /**
1321 * cache_firmware - cache one firmware image in kernel memory space
1322 * @fw_name: the firmware image name
1323 *
1324 * Cache firmware in kernel memory so that drivers can use it when
1325 * system isn't ready for them to request firmware image from userspace.
1326 * Once it returns successfully, driver can use request_firmware or its
1327 * nowait version to get the cached firmware without any interacting
1328 * with userspace
1329 *
1330 * Return 0 if the firmware image has been cached successfully
1331 * Return !0 otherwise
1332 *
1333 */
1334 static int cache_firmware(const char *fw_name)
1335 {
1336 int ret;
1337 const struct firmware *fw;
1338
1339 pr_debug("%s: %s\n", __func__, fw_name);
1340
1341 ret = request_firmware(&fw, fw_name, NULL);
1342 if (!ret)
1343 kfree(fw);
1344
1345 pr_debug("%s: %s ret=%d\n", __func__, fw_name, ret);
1346
1347 return ret;
1348 }
1349
1350 static struct firmware_buf *fw_lookup_buf(const char *fw_name)
1351 {
1352 struct firmware_buf *tmp;
1353 struct firmware_cache *fwc = &fw_cache;
1354
1355 spin_lock(&fwc->lock);
1356 tmp = __fw_lookup_buf(fw_name);
1357 spin_unlock(&fwc->lock);
1358
1359 return tmp;
1360 }
1361
1362 /**
1363 * uncache_firmware - remove one cached firmware image
1364 * @fw_name: the firmware image name
1365 *
1366 * Uncache one firmware image which has been cached successfully
1367 * before.
1368 *
1369 * Return 0 if the firmware cache has been removed successfully
1370 * Return !0 otherwise
1371 *
1372 */
1373 static int uncache_firmware(const char *fw_name)
1374 {
1375 struct firmware_buf *buf;
1376 struct firmware fw;
1377
1378 pr_debug("%s: %s\n", __func__, fw_name);
1379
1380 if (fw_get_builtin_firmware(&fw, fw_name))
1381 return 0;
1382
1383 buf = fw_lookup_buf(fw_name);
1384 if (buf) {
1385 fw_free_buf(buf);
1386 return 0;
1387 }
1388
1389 return -EINVAL;
1390 }
1391
1392 static struct fw_cache_entry *alloc_fw_cache_entry(const char *name)
1393 {
1394 struct fw_cache_entry *fce;
1395
1396 fce = kzalloc(sizeof(*fce) + strlen(name) + 1, GFP_ATOMIC);
1397 if (!fce)
1398 goto exit;
1399
1400 strcpy(fce->name, name);
1401 exit:
1402 return fce;
1403 }
1404
1405 static int __fw_entry_found(const char *name)
1406 {
1407 struct firmware_cache *fwc = &fw_cache;
1408 struct fw_cache_entry *fce;
1409
1410 list_for_each_entry(fce, &fwc->fw_names, list) {
1411 if (!strcmp(fce->name, name))
1412 return 1;
1413 }
1414 return 0;
1415 }
1416
1417 static int fw_cache_piggyback_on_request(const char *name)
1418 {
1419 struct firmware_cache *fwc = &fw_cache;
1420 struct fw_cache_entry *fce;
1421 int ret = 0;
1422
1423 spin_lock(&fwc->name_lock);
1424 if (__fw_entry_found(name))
1425 goto found;
1426
1427 fce = alloc_fw_cache_entry(name);
1428 if (fce) {
1429 ret = 1;
1430 list_add(&fce->list, &fwc->fw_names);
1431 pr_debug("%s: fw: %s\n", __func__, name);
1432 }
1433 found:
1434 spin_unlock(&fwc->name_lock);
1435 return ret;
1436 }
1437
1438 static void free_fw_cache_entry(struct fw_cache_entry *fce)
1439 {
1440 kfree(fce);
1441 }
1442
1443 static void __async_dev_cache_fw_image(void *fw_entry,
1444 async_cookie_t cookie)
1445 {
1446 struct fw_cache_entry *fce = fw_entry;
1447 struct firmware_cache *fwc = &fw_cache;
1448 int ret;
1449
1450 ret = cache_firmware(fce->name);
1451 if (ret) {
1452 spin_lock(&fwc->name_lock);
1453 list_del(&fce->list);
1454 spin_unlock(&fwc->name_lock);
1455
1456 free_fw_cache_entry(fce);
1457 }
1458 }
1459
1460 /* called with dev->devres_lock held */
1461 static void dev_create_fw_entry(struct device *dev, void *res,
1462 void *data)
1463 {
1464 struct fw_name_devm *fwn = res;
1465 const char *fw_name = fwn->name;
1466 struct list_head *head = data;
1467 struct fw_cache_entry *fce;
1468
1469 fce = alloc_fw_cache_entry(fw_name);
1470 if (fce)
1471 list_add(&fce->list, head);
1472 }
1473
1474 static int devm_name_match(struct device *dev, void *res,
1475 void *match_data)
1476 {
1477 struct fw_name_devm *fwn = res;
1478 return (fwn->magic == (unsigned long)match_data);
1479 }
1480
1481 static void dev_cache_fw_image(struct device *dev, void *data)
1482 {
1483 LIST_HEAD(todo);
1484 struct fw_cache_entry *fce;
1485 struct fw_cache_entry *fce_next;
1486 struct firmware_cache *fwc = &fw_cache;
1487
1488 devres_for_each_res(dev, fw_name_devm_release,
1489 devm_name_match, &fw_cache,
1490 dev_create_fw_entry, &todo);
1491
1492 list_for_each_entry_safe(fce, fce_next, &todo, list) {
1493 list_del(&fce->list);
1494
1495 spin_lock(&fwc->name_lock);
1496 /* only one cache entry for one firmware */
1497 if (!__fw_entry_found(fce->name)) {
1498 list_add(&fce->list, &fwc->fw_names);
1499 } else {
1500 free_fw_cache_entry(fce);
1501 fce = NULL;
1502 }
1503 spin_unlock(&fwc->name_lock);
1504
1505 if (fce)
1506 async_schedule_domain(__async_dev_cache_fw_image,
1507 (void *)fce,
1508 &fw_cache_domain);
1509 }
1510 }
1511
1512 static void __device_uncache_fw_images(void)
1513 {
1514 struct firmware_cache *fwc = &fw_cache;
1515 struct fw_cache_entry *fce;
1516
1517 spin_lock(&fwc->name_lock);
1518 while (!list_empty(&fwc->fw_names)) {
1519 fce = list_entry(fwc->fw_names.next,
1520 struct fw_cache_entry, list);
1521 list_del(&fce->list);
1522 spin_unlock(&fwc->name_lock);
1523
1524 uncache_firmware(fce->name);
1525 free_fw_cache_entry(fce);
1526
1527 spin_lock(&fwc->name_lock);
1528 }
1529 spin_unlock(&fwc->name_lock);
1530 }
1531
1532 /**
1533 * device_cache_fw_images - cache devices' firmware
1534 *
1535 * If one device called request_firmware or its nowait version
1536 * successfully before, the firmware names are recored into the
1537 * device's devres link list, so device_cache_fw_images can call
1538 * cache_firmware() to cache these firmwares for the device,
1539 * then the device driver can load its firmwares easily at
1540 * time when system is not ready to complete loading firmware.
1541 */
1542 static void device_cache_fw_images(void)
1543 {
1544 struct firmware_cache *fwc = &fw_cache;
1545 int old_timeout;
1546 DEFINE_WAIT(wait);
1547
1548 pr_debug("%s\n", __func__);
1549
1550 /* cancel uncache work */
1551 cancel_delayed_work_sync(&fwc->work);
1552
1553 /*
1554 * use small loading timeout for caching devices' firmware
1555 * because all these firmware images have been loaded
1556 * successfully at lease once, also system is ready for
1557 * completing firmware loading now. The maximum size of
1558 * firmware in current distributions is about 2M bytes,
1559 * so 10 secs should be enough.
1560 */
1561 old_timeout = loading_timeout;
1562 loading_timeout = 10;
1563
1564 mutex_lock(&fw_lock);
1565 fwc->state = FW_LOADER_START_CACHE;
1566 dpm_for_each_dev(NULL, dev_cache_fw_image);
1567 mutex_unlock(&fw_lock);
1568
1569 /* wait for completion of caching firmware for all devices */
1570 async_synchronize_full_domain(&fw_cache_domain);
1571
1572 loading_timeout = old_timeout;
1573 }
1574
1575 /**
1576 * device_uncache_fw_images - uncache devices' firmware
1577 *
1578 * uncache all firmwares which have been cached successfully
1579 * by device_uncache_fw_images earlier
1580 */
1581 static void device_uncache_fw_images(void)
1582 {
1583 pr_debug("%s\n", __func__);
1584 __device_uncache_fw_images();
1585 }
1586
1587 static void device_uncache_fw_images_work(struct work_struct *work)
1588 {
1589 device_uncache_fw_images();
1590 }
1591
1592 /**
1593 * device_uncache_fw_images_delay - uncache devices firmwares
1594 * @delay: number of milliseconds to delay uncache device firmwares
1595 *
1596 * uncache all devices's firmwares which has been cached successfully
1597 * by device_cache_fw_images after @delay milliseconds.
1598 */
1599 static void device_uncache_fw_images_delay(unsigned long delay)
1600 {
1601 queue_delayed_work(system_power_efficient_wq, &fw_cache.work,
1602 msecs_to_jiffies(delay));
1603 }
1604
1605 static int fw_pm_notify(struct notifier_block *notify_block,
1606 unsigned long mode, void *unused)
1607 {
1608 switch (mode) {
1609 case PM_HIBERNATION_PREPARE:
1610 case PM_SUSPEND_PREPARE:
1611 case PM_RESTORE_PREPARE:
1612 kill_requests_without_uevent();
1613 device_cache_fw_images();
1614 break;
1615
1616 case PM_POST_SUSPEND:
1617 case PM_POST_HIBERNATION:
1618 case PM_POST_RESTORE:
1619 /*
1620 * In case that system sleep failed and syscore_suspend is
1621 * not called.
1622 */
1623 mutex_lock(&fw_lock);
1624 fw_cache.state = FW_LOADER_NO_CACHE;
1625 mutex_unlock(&fw_lock);
1626
1627 device_uncache_fw_images_delay(10 * MSEC_PER_SEC);
1628 break;
1629 }
1630
1631 return 0;
1632 }
1633
1634 /* stop caching firmware once syscore_suspend is reached */
1635 static int fw_suspend(void)
1636 {
1637 fw_cache.state = FW_LOADER_NO_CACHE;
1638 return 0;
1639 }
1640
1641 static struct syscore_ops fw_syscore_ops = {
1642 .suspend = fw_suspend,
1643 };
1644 #else
1645 static int fw_cache_piggyback_on_request(const char *name)
1646 {
1647 return 0;
1648 }
1649 #endif
1650
1651 static void __init fw_cache_init(void)
1652 {
1653 spin_lock_init(&fw_cache.lock);
1654 INIT_LIST_HEAD(&fw_cache.head);
1655 fw_cache.state = FW_LOADER_NO_CACHE;
1656
1657 #ifdef CONFIG_PM_SLEEP
1658 spin_lock_init(&fw_cache.name_lock);
1659 INIT_LIST_HEAD(&fw_cache.fw_names);
1660
1661 INIT_DELAYED_WORK(&fw_cache.work,
1662 device_uncache_fw_images_work);
1663
1664 fw_cache.pm_notify.notifier_call = fw_pm_notify;
1665 register_pm_notifier(&fw_cache.pm_notify);
1666
1667 register_syscore_ops(&fw_syscore_ops);
1668 #endif
1669 }
1670
1671 static int __init firmware_class_init(void)
1672 {
1673 fw_cache_init();
1674 #ifdef CONFIG_FW_LOADER_USER_HELPER
1675 register_reboot_notifier(&fw_shutdown_nb);
1676 return class_register(&firmware_class);
1677 #else
1678 return 0;
1679 #endif
1680 }
1681
1682 static void __exit firmware_class_exit(void)
1683 {
1684 #ifdef CONFIG_PM_SLEEP
1685 unregister_syscore_ops(&fw_syscore_ops);
1686 unregister_pm_notifier(&fw_cache.pm_notify);
1687 #endif
1688 #ifdef CONFIG_FW_LOADER_USER_HELPER
1689 unregister_reboot_notifier(&fw_shutdown_nb);
1690 class_unregister(&firmware_class);
1691 #endif
1692 }
1693
1694 fs_initcall(firmware_class_init);
1695 module_exit(firmware_class_exit);
This page took 0.083888 seconds and 4 git commands to generate.