firmware: Unify the paged buffer release helper
[linux-2.6-block.git] / drivers / base / firmware_loader / main.c
CommitLineData
989d42e8 1// SPDX-License-Identifier: GPL-2.0
1da177e4 2/*
5d6d1ddd 3 * main.c - Multi purpose firmware loading support
1da177e4 4 *
87d37a4f 5 * Copyright (c) 2003 Manuel Estrada Sainz
1da177e4
LT
6 *
7 * Please see Documentation/firmware_class/ for more information.
8 *
9 */
10
73da4b4b
LR
11#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
12
c59ede7b 13#include <linux/capability.h>
1da177e4
LT
14#include <linux/device.h>
15#include <linux/module.h>
16#include <linux/init.h>
17#include <linux/timer.h>
18#include <linux/vmalloc.h>
19#include <linux/interrupt.h>
20#include <linux/bitops.h>
cad1e55d 21#include <linux/mutex.h>
a36cf844 22#include <linux/workqueue.h>
6e03a201 23#include <linux/highmem.h>
1da177e4 24#include <linux/firmware.h>
5a0e3ad6 25#include <linux/slab.h>
a36cf844 26#include <linux/sched.h>
abb139e7 27#include <linux/file.h>
1f2b7959 28#include <linux/list.h>
e40ba6d5 29#include <linux/fs.h>
37276a51
ML
30#include <linux/async.h>
31#include <linux/pm.h>
07646d9c 32#include <linux/suspend.h>
ac39b3ea 33#include <linux/syscore_ops.h>
fe304143 34#include <linux/reboot.h>
6593d924 35#include <linux/security.h>
37276a51 36
abb139e7
LT
37#include <generated/utsrelease.h>
38
5d6d1ddd
LR
39#include "../base.h"
40#include "firmware.h"
41#include "fallback.h"
1da177e4 42
87d37a4f 43MODULE_AUTHOR("Manuel Estrada Sainz");
1da177e4
LT
44MODULE_DESCRIPTION("Multi purpose firmware loading support");
45MODULE_LICENSE("GPL");
46
be8d462f
LR
47struct firmware_cache {
48 /* firmware_buf instance will be added into the below list */
49 spinlock_t lock;
50 struct list_head head;
51 int state;
52
53#ifdef CONFIG_PM_SLEEP
54 /*
55 * Names of firmware images which have been cached successfully
56 * will be added into the below list so that device uncache
57 * helper can trace which firmware images have been cached
58 * before.
59 */
60 spinlock_t name_lock;
61 struct list_head fw_names;
62
63 struct delayed_work work;
64
65 struct notifier_block pm_notify;
66#endif
67};
68
be8d462f
LR
69struct fw_cache_entry {
70 struct list_head list;
71 const char *name;
72};
73
74struct fw_name_devm {
75 unsigned long magic;
76 const char *name;
77};
78
942e743b
LR
79static inline struct fw_priv *to_fw_priv(struct kref *ref)
80{
81 return container_of(ref, struct fw_priv, ref);
82}
be8d462f
LR
83
84#define FW_LOADER_NO_CACHE 0
85#define FW_LOADER_START_CACHE 1
86
87/* fw_lock could be moved to 'struct fw_sysfs' but since it is just
88 * guarding for corner cases a global lock should be OK */
d73f821c 89DEFINE_MUTEX(fw_lock);
be8d462f
LR
90
91static struct firmware_cache fw_cache;
92
bcb9bd18
DT
93/* Builtin firmware support */
94
95#ifdef CONFIG_FW_LOADER
96
97extern struct builtin_fw __start_builtin_fw[];
98extern struct builtin_fw __end_builtin_fw[];
99
5711ae6d
LR
100static void fw_copy_to_prealloc_buf(struct firmware *fw,
101 void *buf, size_t size)
102{
103 if (!buf || size < fw->size)
104 return;
105 memcpy(buf, fw->data, fw->size);
106}
107
a098ecd2
SB
108static bool fw_get_builtin_firmware(struct firmware *fw, const char *name,
109 void *buf, size_t size)
bcb9bd18
DT
110{
111 struct builtin_fw *b_fw;
112
113 for (b_fw = __start_builtin_fw; b_fw != __end_builtin_fw; b_fw++) {
114 if (strcmp(name, b_fw->name) == 0) {
115 fw->size = b_fw->size;
116 fw->data = b_fw->data;
5711ae6d 117 fw_copy_to_prealloc_buf(fw, buf, size);
a098ecd2 118
bcb9bd18
DT
119 return true;
120 }
121 }
122
123 return false;
124}
125
126static bool fw_is_builtin_firmware(const struct firmware *fw)
127{
128 struct builtin_fw *b_fw;
129
130 for (b_fw = __start_builtin_fw; b_fw != __end_builtin_fw; b_fw++)
131 if (fw->data == b_fw->data)
132 return true;
133
134 return false;
135}
136
137#else /* Module case - no builtin firmware support */
138
a098ecd2
SB
139static inline bool fw_get_builtin_firmware(struct firmware *fw,
140 const char *name, void *buf,
141 size_t size)
bcb9bd18
DT
142{
143 return false;
144}
145
146static inline bool fw_is_builtin_firmware(const struct firmware *fw)
147{
148 return false;
149}
150#endif
151
f1b9cf39 152static void fw_state_init(struct fw_priv *fw_priv)
f52cc379 153{
f1b9cf39
LR
154 struct fw_state *fw_st = &fw_priv->fw_st;
155
e44565f6 156 init_completion(&fw_st->completion);
f52cc379
DW
157 fw_st->status = FW_STATUS_UNKNOWN;
158}
159
f1b9cf39
LR
160static inline int fw_state_wait(struct fw_priv *fw_priv)
161{
162 return __fw_state_wait_common(fw_priv, MAX_SCHEDULE_TIMEOUT);
163}
f52cc379 164
ac39b3ea
ML
165static int fw_cache_piggyback_on_request(const char *name);
166
cd5322b7
LR
167static struct fw_priv *__allocate_fw_priv(const char *fw_name,
168 struct firmware_cache *fwc,
169 void *dbuf, size_t size)
1f2b7959 170{
cd5322b7 171 struct fw_priv *fw_priv;
1f2b7959 172
cd5322b7
LR
173 fw_priv = kzalloc(sizeof(*fw_priv), GFP_ATOMIC);
174 if (!fw_priv)
e0fd9b1d
LR
175 return NULL;
176
31034f22
LR
177 fw_priv->fw_name = kstrdup_const(fw_name, GFP_ATOMIC);
178 if (!fw_priv->fw_name) {
cd5322b7 179 kfree(fw_priv);
e0fd9b1d
LR
180 return NULL;
181 }
1f2b7959 182
cd5322b7
LR
183 kref_init(&fw_priv->ref);
184 fw_priv->fwc = fwc;
185 fw_priv->data = dbuf;
186 fw_priv->allocated_size = size;
f1b9cf39 187 fw_state_init(fw_priv);
fe304143 188#ifdef CONFIG_FW_LOADER_USER_HELPER
cd5322b7 189 INIT_LIST_HEAD(&fw_priv->pending_list);
fe304143 190#endif
1f2b7959 191
cd5322b7 192 pr_debug("%s: fw-%s fw_priv=%p\n", __func__, fw_name, fw_priv);
1f2b7959 193
cd5322b7 194 return fw_priv;
1f2b7959
ML
195}
196
cd5322b7 197static struct fw_priv *__lookup_fw_priv(const char *fw_name)
2887b395 198{
cd5322b7 199 struct fw_priv *tmp;
2887b395
ML
200 struct firmware_cache *fwc = &fw_cache;
201
202 list_for_each_entry(tmp, &fwc->head, list)
31034f22 203 if (!strcmp(tmp->fw_name, fw_name))
2887b395
ML
204 return tmp;
205 return NULL;
206}
207
30172bea 208/* Returns 1 for batching firmware requests with the same name */
cd5322b7
LR
209static int alloc_lookup_fw_priv(const char *fw_name,
210 struct firmware_cache *fwc,
211 struct fw_priv **fw_priv, void *dbuf,
422b3db2 212 size_t size, enum fw_opt opt_flags)
1f2b7959 213{
cd5322b7 214 struct fw_priv *tmp;
1f2b7959
ML
215
216 spin_lock(&fwc->lock);
422b3db2
RB
217 if (!(opt_flags & FW_OPT_NOCACHE)) {
218 tmp = __lookup_fw_priv(fw_name);
219 if (tmp) {
220 kref_get(&tmp->ref);
221 spin_unlock(&fwc->lock);
222 *fw_priv = tmp;
223 pr_debug("batched request - sharing the same struct fw_priv and lookup for multiple requests\n");
224 return 1;
225 }
2887b395 226 }
422b3db2 227
cd5322b7 228 tmp = __allocate_fw_priv(fw_name, fwc, dbuf, size);
70120405
BA
229 if (tmp) {
230 INIT_LIST_HEAD(&tmp->list);
231 if (!(opt_flags & FW_OPT_NOCACHE))
232 list_add(&tmp->list, &fwc->head);
233 }
1f2b7959
ML
234 spin_unlock(&fwc->lock);
235
cd5322b7 236 *fw_priv = tmp;
1f2b7959
ML
237
238 return tmp ? 0 : -ENOMEM;
239}
240
cd5322b7 241static void __free_fw_priv(struct kref *ref)
98233b21 242 __releases(&fwc->lock)
1f2b7959 243{
cd5322b7
LR
244 struct fw_priv *fw_priv = to_fw_priv(ref);
245 struct firmware_cache *fwc = fw_priv->fwc;
1f2b7959 246
cd5322b7 247 pr_debug("%s: fw-%s fw_priv=%p data=%p size=%u\n",
31034f22 248 __func__, fw_priv->fw_name, fw_priv, fw_priv->data,
cd5322b7 249 (unsigned int)fw_priv->size);
1f2b7959 250
cd5322b7 251 list_del(&fw_priv->list);
1f2b7959
ML
252 spin_unlock(&fwc->lock);
253
8f58570b 254 fw_free_paged_buf(fw_priv); /* free leftover pages */
cd5322b7
LR
255 if (!fw_priv->allocated_size)
256 vfree(fw_priv->data);
31034f22 257 kfree_const(fw_priv->fw_name);
cd5322b7 258 kfree(fw_priv);
1f2b7959
ML
259}
260
cd5322b7 261static void free_fw_priv(struct fw_priv *fw_priv)
1f2b7959 262{
cd5322b7 263 struct firmware_cache *fwc = fw_priv->fwc;
bd9eb7fb 264 spin_lock(&fwc->lock);
cd5322b7 265 if (!kref_put(&fw_priv->ref, __free_fw_priv))
bd9eb7fb 266 spin_unlock(&fwc->lock);
1f2b7959
ML
267}
268
8f58570b
TI
269#ifdef CONFIG_FW_LOADER_USER_HELPER
270void fw_free_paged_buf(struct fw_priv *fw_priv)
271{
272 int i;
273
274 if (!fw_priv->pages)
275 return;
276
277 for (i = 0; i < fw_priv->nr_pages; i++)
278 __free_page(fw_priv->pages[i]);
279 vfree(fw_priv->pages);
280 fw_priv->pages = NULL;
281 fw_priv->page_array_size = 0;
282 fw_priv->nr_pages = 0;
283}
284#endif
285
746058f4 286/* direct firmware loading support */
27602842
ML
287static char fw_path_para[256];
288static const char * const fw_path[] = {
289 fw_path_para,
746058f4
ML
290 "/lib/firmware/updates/" UTS_RELEASE,
291 "/lib/firmware/updates",
292 "/lib/firmware/" UTS_RELEASE,
293 "/lib/firmware"
294};
295
27602842
ML
296/*
297 * Typical usage is that passing 'firmware_class.path=$CUSTOMIZED_PATH'
298 * from kernel command line because firmware_class is generally built in
299 * kernel instead of module.
300 */
301module_param_string(path, fw_path_para, sizeof(fw_path_para), 0644);
302MODULE_PARM_DESC(path, "customized firmware image search path with a higher priority than default path");
303
a098ecd2 304static int
cd5322b7 305fw_get_filesystem_firmware(struct device *device, struct fw_priv *fw_priv)
746058f4 306{
e40ba6d5 307 loff_t size;
1ba4de17 308 int i, len;
3e358ac2 309 int rc = -ENOENT;
f5727b05 310 char *path;
a098ecd2
SB
311 enum kernel_read_file_id id = READING_FIRMWARE;
312 size_t msize = INT_MAX;
313
314 /* Already populated data member means we're loading into a buffer */
cd5322b7 315 if (fw_priv->data) {
a098ecd2 316 id = READING_FIRMWARE_PREALLOC_BUFFER;
cd5322b7 317 msize = fw_priv->allocated_size;
a098ecd2 318 }
f5727b05
LR
319
320 path = __getname();
321 if (!path)
322 return -ENOMEM;
746058f4
ML
323
324 for (i = 0; i < ARRAY_SIZE(fw_path); i++) {
27602842
ML
325 /* skip the unset customized path */
326 if (!fw_path[i][0])
327 continue;
328
1ba4de17 329 len = snprintf(path, PATH_MAX, "%s/%s",
31034f22 330 fw_path[i], fw_priv->fw_name);
1ba4de17
LR
331 if (len >= PATH_MAX) {
332 rc = -ENAMETOOLONG;
333 break;
334 }
746058f4 335
cd5322b7
LR
336 fw_priv->size = 0;
337 rc = kernel_read_file_from_path(path, &fw_priv->data, &size,
338 msize, id);
4b2530d8 339 if (rc) {
eac473bc 340 if (rc != -ENOENT)
8e516aa5
LR
341 dev_warn(device, "loading %s failed with error %d\n",
342 path, rc);
eac473bc
JZ
343 else
344 dev_dbg(device, "loading %s failed for no such file or directory.\n",
345 path);
4b2530d8
KC
346 continue;
347 }
31034f22 348 dev_dbg(device, "direct-loading %s\n", fw_priv->fw_name);
cd5322b7 349 fw_priv->size = size;
f1b9cf39 350 fw_state_done(fw_priv);
4b2530d8 351 break;
4e0c92d0 352 }
4b2530d8 353 __putname(path);
4e0c92d0 354
3e358ac2 355 return rc;
746058f4
ML
356}
357
7b1269f7
TI
358/* firmware holds the ownership of pages */
359static void firmware_free_data(const struct firmware *fw)
360{
361 /* Loaded directly? */
362 if (!fw->priv) {
363 vfree(fw->data);
364 return;
365 }
cd5322b7 366 free_fw_priv(fw->priv);
7b1269f7
TI
367}
368
cd7239fa 369/* store the pages buffer info firmware from buf */
cd5322b7 370static void fw_set_page_data(struct fw_priv *fw_priv, struct firmware *fw)
cd7239fa 371{
cd5322b7 372 fw->priv = fw_priv;
cd7239fa 373#ifdef CONFIG_FW_LOADER_USER_HELPER
cd5322b7 374 fw->pages = fw_priv->pages;
cd7239fa 375#endif
cd5322b7
LR
376 fw->size = fw_priv->size;
377 fw->data = fw_priv->data;
cd7239fa 378
cd5322b7 379 pr_debug("%s: fw-%s fw_priv=%p data=%p size=%u\n",
31034f22 380 __func__, fw_priv->fw_name, fw_priv, fw_priv->data,
cd5322b7 381 (unsigned int)fw_priv->size);
cd7239fa
TI
382}
383
384#ifdef CONFIG_PM_SLEEP
385static void fw_name_devm_release(struct device *dev, void *res)
386{
387 struct fw_name_devm *fwn = res;
388
389 if (fwn->magic == (unsigned long)&fw_cache)
390 pr_debug("%s: fw_name-%s devm-%p released\n",
391 __func__, fwn->name, res);
e0fd9b1d 392 kfree_const(fwn->name);
cd7239fa
TI
393}
394
395static int fw_devm_match(struct device *dev, void *res,
396 void *match_data)
397{
398 struct fw_name_devm *fwn = res;
399
400 return (fwn->magic == (unsigned long)&fw_cache) &&
401 !strcmp(fwn->name, match_data);
402}
403
404static struct fw_name_devm *fw_find_devm_name(struct device *dev,
405 const char *name)
406{
407 struct fw_name_devm *fwn;
408
409 fwn = devres_find(dev, fw_name_devm_release,
410 fw_devm_match, (void *)name);
411 return fwn;
412}
413
3194d06a 414static bool fw_cache_is_setup(struct device *dev, const char *name)
cd7239fa
TI
415{
416 struct fw_name_devm *fwn;
417
418 fwn = fw_find_devm_name(dev, name);
419 if (fwn)
3194d06a
LR
420 return true;
421
422 return false;
423}
424
425/* add firmware name into devres list */
426static int fw_add_devm_name(struct device *dev, const char *name)
427{
428 struct fw_name_devm *fwn;
429
430 if (fw_cache_is_setup(dev, name))
d15d7311 431 return 0;
cd7239fa 432
e0fd9b1d
LR
433 fwn = devres_alloc(fw_name_devm_release, sizeof(struct fw_name_devm),
434 GFP_KERNEL);
cd7239fa
TI
435 if (!fwn)
436 return -ENOMEM;
e0fd9b1d
LR
437 fwn->name = kstrdup_const(name, GFP_KERNEL);
438 if (!fwn->name) {
a885de67 439 devres_free(fwn);
e0fd9b1d
LR
440 return -ENOMEM;
441 }
cd7239fa
TI
442
443 fwn->magic = (unsigned long)&fw_cache;
cd7239fa
TI
444 devres_add(dev, fwn);
445
446 return 0;
447}
448#else
995e8695
LR
449static bool fw_cache_is_setup(struct device *dev, const char *name)
450{
451 return false;
452}
453
cd7239fa
TI
454static int fw_add_devm_name(struct device *dev, const char *name)
455{
456 return 0;
457}
458#endif
459
d73f821c 460int assign_fw(struct firmware *fw, struct device *device,
eb33eb04 461 enum fw_opt opt_flags)
8509adca 462{
cd5322b7 463 struct fw_priv *fw_priv = fw->priv;
d15d7311 464 int ret;
8509adca
LR
465
466 mutex_lock(&fw_lock);
f1b9cf39 467 if (!fw_priv->size || fw_state_is_aborted(fw_priv)) {
8509adca
LR
468 mutex_unlock(&fw_lock);
469 return -ENOENT;
470 }
471
472 /*
473 * add firmware name into devres list so that we can auto cache
474 * and uncache firmware for device.
475 *
476 * device may has been deleted already, but the problem
477 * should be fixed in devres or driver core.
478 */
479 /* don't cache firmware handled without uevent */
480 if (device && (opt_flags & FW_OPT_UEVENT) &&
d15d7311
LR
481 !(opt_flags & FW_OPT_NOCACHE)) {
482 ret = fw_add_devm_name(device, fw_priv->fw_name);
483 if (ret) {
484 mutex_unlock(&fw_lock);
485 return ret;
486 }
487 }
8509adca
LR
488
489 /*
490 * After caching firmware image is started, let it piggyback
491 * on request firmware.
492 */
493 if (!(opt_flags & FW_OPT_NOCACHE) &&
cd5322b7 494 fw_priv->fwc->state == FW_LOADER_START_CACHE) {
31034f22 495 if (fw_cache_piggyback_on_request(fw_priv->fw_name))
cd5322b7 496 kref_get(&fw_priv->ref);
8509adca
LR
497 }
498
499 /* pass the pages buffer to driver at the last minute */
cd5322b7 500 fw_set_page_data(fw_priv, fw);
8509adca
LR
501 mutex_unlock(&fw_lock);
502 return 0;
503}
cd7239fa 504
4e0c92d0
TI
505/* prepare firmware and firmware_buf structs;
506 * return 0 if a firmware is already assigned, 1 if need to load one,
507 * or a negative error code
508 */
509static int
510_request_firmware_prepare(struct firmware **firmware_p, const char *name,
422b3db2
RB
511 struct device *device, void *dbuf, size_t size,
512 enum fw_opt opt_flags)
1da177e4 513{
1da177e4 514 struct firmware *firmware;
cd5322b7 515 struct fw_priv *fw_priv;
1f2b7959 516 int ret;
1da177e4 517
4aed0644 518 *firmware_p = firmware = kzalloc(sizeof(*firmware), GFP_KERNEL);
1da177e4 519 if (!firmware) {
266a813c
BH
520 dev_err(device, "%s: kmalloc(struct firmware) failed\n",
521 __func__);
4e0c92d0 522 return -ENOMEM;
1da177e4 523 }
1da177e4 524
a098ecd2 525 if (fw_get_builtin_firmware(firmware, name, dbuf, size)) {
ed04630b 526 dev_dbg(device, "using built-in %s\n", name);
4e0c92d0 527 return 0; /* assigned */
5658c769
DW
528 }
529
422b3db2
RB
530 ret = alloc_lookup_fw_priv(name, &fw_cache, &fw_priv, dbuf, size,
531 opt_flags);
4e0c92d0
TI
532
533 /*
cd5322b7 534 * bind with 'priv' now to avoid warning in failure path
4e0c92d0
TI
535 * of requesting firmware.
536 */
cd5322b7 537 firmware->priv = fw_priv;
4e0c92d0
TI
538
539 if (ret > 0) {
f1b9cf39 540 ret = fw_state_wait(fw_priv);
4e0c92d0 541 if (!ret) {
cd5322b7 542 fw_set_page_data(fw_priv, firmware);
4e0c92d0
TI
543 return 0; /* assigned */
544 }
dddb5549 545 }
811fa400 546
4e0c92d0
TI
547 if (ret < 0)
548 return ret;
549 return 1; /* need to load */
550}
551
90d41e74
LR
552/*
553 * Batched requests need only one wake, we need to do this step last due to the
554 * fallback mechanism. The buf is protected with kref_get(), and it won't be
555 * released until the last user calls release_firmware().
556 *
557 * Failed batched requests are possible as well, in such cases we just share
cd5322b7 558 * the struct fw_priv and won't release it until all requests are woken
90d41e74
LR
559 * and have gone through this same path.
560 */
561static void fw_abort_batch_reqs(struct firmware *fw)
562{
cd5322b7 563 struct fw_priv *fw_priv;
90d41e74
LR
564
565 /* Loaded directly? */
566 if (!fw || !fw->priv)
567 return;
568
cd5322b7 569 fw_priv = fw->priv;
f1b9cf39
LR
570 if (!fw_state_is_aborted(fw_priv))
571 fw_state_aborted(fw_priv);
90d41e74
LR
572}
573
4e0c92d0
TI
574/* called from request_firmware() and request_firmware_work_func() */
575static int
576_request_firmware(const struct firmware **firmware_p, const char *name,
a098ecd2 577 struct device *device, void *buf, size_t size,
eb33eb04 578 enum fw_opt opt_flags)
4e0c92d0 579{
715780ae 580 struct firmware *fw = NULL;
4e0c92d0
TI
581 int ret;
582
583 if (!firmware_p)
584 return -EINVAL;
585
715780ae
BN
586 if (!name || name[0] == '\0') {
587 ret = -EINVAL;
588 goto out;
589 }
471b095d 590
422b3db2
RB
591 ret = _request_firmware_prepare(&fw, name, device, buf, size,
592 opt_flags);
4e0c92d0
TI
593 if (ret <= 0) /* error or already assigned */
594 goto out;
595
3e358ac2
NH
596 ret = fw_get_filesystem_firmware(device, fw->priv);
597 if (ret) {
c868edf4 598 if (!(opt_flags & FW_OPT_NO_WARN))
bba3a87e 599 dev_warn(device,
c868edf4
LR
600 "Direct firmware load for %s failed with error %d\n",
601 name, ret);
cf1cde7c 602 ret = firmware_fallback_sysfs(fw, name, device, opt_flags, ret);
06a45a93 603 } else
cd5322b7 604 ret = assign_fw(fw, device, opt_flags);
4e0c92d0 605
4e0c92d0
TI
606 out:
607 if (ret < 0) {
90d41e74 608 fw_abort_batch_reqs(fw);
4e0c92d0
TI
609 release_firmware(fw);
610 fw = NULL;
611 }
612
613 *firmware_p = fw;
614 return ret;
615}
616
6e3eaab0 617/**
c35f9cbb 618 * request_firmware() - send firmware request and wait for it
eb8e3179
RD
619 * @firmware_p: pointer to firmware image
620 * @name: name of firmware file
621 * @device: device for which firmware is being loaded
622 *
623 * @firmware_p will be used to return a firmware image by the name
6e3eaab0
AS
624 * of @name for device @device.
625 *
626 * Should be called from user context where sleeping is allowed.
627 *
312c004d 628 * @name will be used as $FIRMWARE in the uevent environment and
6e3eaab0
AS
629 * should be distinctive enough not to be confused with any other
630 * firmware image for this or any other device.
0cfc1e1e
ML
631 *
632 * Caller must hold the reference count of @device.
6a927857
ML
633 *
634 * The function can be called safely inside device's suspend and
635 * resume callback.
6e3eaab0
AS
636 **/
637int
638request_firmware(const struct firmware **firmware_p, const char *name,
ea31003c 639 struct device *device)
6e3eaab0 640{
d6c8aa39
ML
641 int ret;
642
643 /* Need to pin this module until return */
644 __module_get(THIS_MODULE);
a098ecd2 645 ret = _request_firmware(firmware_p, name, device, NULL, 0,
3f722712 646 FW_OPT_UEVENT);
d6c8aa39
ML
647 module_put(THIS_MODULE);
648 return ret;
6e3eaab0 649}
f494513f 650EXPORT_SYMBOL(request_firmware);
6e3eaab0 651
7dcc0134
AR
652/**
653 * firmware_request_nowarn() - request for an optional fw module
654 * @firmware: pointer to firmware image
655 * @name: name of firmware file
656 * @device: device for which firmware is being loaded
657 *
658 * This function is similar in behaviour to request_firmware(), except
659 * it doesn't produce warning messages when the file is not found.
660 * The sysfs fallback mechanism is enabled if direct filesystem lookup fails,
661 * however, however failures to find the firmware file with it are still
662 * suppressed. It is therefore up to the driver to check for the return value
663 * of this call and to decide when to inform the users of errors.
664 **/
665int firmware_request_nowarn(const struct firmware **firmware, const char *name,
666 struct device *device)
667{
668 int ret;
669
670 /* Need to pin this module until return */
671 __module_get(THIS_MODULE);
672 ret = _request_firmware(firmware, name, device, NULL, 0,
673 FW_OPT_UEVENT | FW_OPT_NO_WARN);
674 module_put(THIS_MODULE);
675 return ret;
676}
677EXPORT_SYMBOL_GPL(firmware_request_nowarn);
678
bba3a87e 679/**
c35f9cbb 680 * request_firmware_direct() - load firmware directly without usermode helper
bba3a87e
TI
681 * @firmware_p: pointer to firmware image
682 * @name: name of firmware file
683 * @device: device for which firmware is being loaded
684 *
685 * This function works pretty much like request_firmware(), but this doesn't
686 * fall back to usermode helper even if the firmware couldn't be loaded
687 * directly from fs. Hence it's useful for loading optional firmwares, which
688 * aren't always present, without extra long timeouts of udev.
689 **/
690int request_firmware_direct(const struct firmware **firmware_p,
691 const char *name, struct device *device)
692{
693 int ret;
ea31003c 694
bba3a87e 695 __module_get(THIS_MODULE);
a098ecd2 696 ret = _request_firmware(firmware_p, name, device, NULL, 0,
3f722712
LR
697 FW_OPT_UEVENT | FW_OPT_NO_WARN |
698 FW_OPT_NOFALLBACK);
bba3a87e
TI
699 module_put(THIS_MODULE);
700 return ret;
701}
702EXPORT_SYMBOL_GPL(request_firmware_direct);
bba3a87e 703
5d42c96e 704/**
c35f9cbb 705 * firmware_request_cache() - cache firmware for suspend so resume can use it
5d42c96e
LR
706 * @name: name of firmware file
707 * @device: device for which firmware should be cached for
708 *
709 * There are some devices with an optimization that enables the device to not
710 * require loading firmware on system reboot. This optimization may still
711 * require the firmware present on resume from suspend. This routine can be
712 * used to ensure the firmware is present on resume from suspend in these
713 * situations. This helper is not compatible with drivers which use
714 * request_firmware_into_buf() or request_firmware_nowait() with no uevent set.
715 **/
716int firmware_request_cache(struct device *device, const char *name)
717{
718 int ret;
719
720 mutex_lock(&fw_lock);
721 ret = fw_add_devm_name(device, name);
722 mutex_unlock(&fw_lock);
723
724 return ret;
725}
726EXPORT_SYMBOL_GPL(firmware_request_cache);
727
a098ecd2 728/**
c35f9cbb 729 * request_firmware_into_buf() - load firmware into a previously allocated buffer
a098ecd2
SB
730 * @firmware_p: pointer to firmware image
731 * @name: name of firmware file
732 * @device: device for which firmware is being loaded and DMA region allocated
733 * @buf: address of buffer to load firmware into
734 * @size: size of buffer
735 *
736 * This function works pretty much like request_firmware(), but it doesn't
737 * allocate a buffer to hold the firmware data. Instead, the firmware
738 * is loaded directly into the buffer pointed to by @buf and the @firmware_p
739 * data member is pointed at @buf.
740 *
741 * This function doesn't cache firmware either.
742 */
743int
744request_firmware_into_buf(const struct firmware **firmware_p, const char *name,
745 struct device *device, void *buf, size_t size)
746{
747 int ret;
748
995e8695
LR
749 if (fw_cache_is_setup(device, name))
750 return -EOPNOTSUPP;
751
a098ecd2
SB
752 __module_get(THIS_MODULE);
753 ret = _request_firmware(firmware_p, name, device, buf, size,
3f722712 754 FW_OPT_UEVENT | FW_OPT_NOCACHE);
a098ecd2
SB
755 module_put(THIS_MODULE);
756 return ret;
757}
758EXPORT_SYMBOL(request_firmware_into_buf);
759
1da177e4 760/**
c35f9cbb 761 * release_firmware() - release the resource associated with a firmware image
eb8e3179 762 * @fw: firmware resource to release
1da177e4 763 **/
bcb9bd18 764void release_firmware(const struct firmware *fw)
1da177e4
LT
765{
766 if (fw) {
bcb9bd18
DT
767 if (!fw_is_builtin_firmware(fw))
768 firmware_free_data(fw);
1da177e4
LT
769 kfree(fw);
770 }
771}
f494513f 772EXPORT_SYMBOL(release_firmware);
1da177e4 773
1da177e4
LT
774/* Async support */
775struct firmware_work {
776 struct work_struct work;
777 struct module *module;
778 const char *name;
779 struct device *device;
780 void *context;
781 void (*cont)(const struct firmware *fw, void *context);
eb33eb04 782 enum fw_opt opt_flags;
1da177e4
LT
783};
784
a36cf844 785static void request_firmware_work_func(struct work_struct *work)
1da177e4 786{
a36cf844 787 struct firmware_work *fw_work;
1da177e4 788 const struct firmware *fw;
f8a4bd34 789
a36cf844 790 fw_work = container_of(work, struct firmware_work, work);
811fa400 791
a098ecd2 792 _request_firmware(&fw, fw_work->name, fw_work->device, NULL, 0,
14c4bae7 793 fw_work->opt_flags);
9ebfbd45 794 fw_work->cont(fw, fw_work->context);
4e0c92d0 795 put_device(fw_work->device); /* taken in request_firmware_nowait() */
9ebfbd45 796
1da177e4 797 module_put(fw_work->module);
f9692b26 798 kfree_const(fw_work->name);
1da177e4 799 kfree(fw_work);
1da177e4
LT
800}
801
802/**
c35f9cbb 803 * request_firmware_nowait() - asynchronous version of request_firmware
eb8e3179 804 * @module: module requesting the firmware
312c004d 805 * @uevent: sends uevent to copy the firmware image if this flag
eb8e3179
RD
806 * is non-zero else the firmware copy must be done manually.
807 * @name: name of firmware file
808 * @device: device for which firmware is being loaded
9ebfbd45 809 * @gfp: allocation flags
eb8e3179
RD
810 * @context: will be passed over to @cont, and
811 * @fw may be %NULL if firmware request fails.
812 * @cont: function will be called asynchronously when the firmware
813 * request is over.
1da177e4 814 *
0cfc1e1e
ML
815 * Caller must hold the reference count of @device.
816 *
6f21a62a
ML
817 * Asynchronous variant of request_firmware() for user contexts:
818 * - sleep for as small periods as possible since it may
88bcef50
SF
819 * increase kernel boot time of built-in device drivers
820 * requesting firmware in their ->probe() methods, if
821 * @gfp is GFP_KERNEL.
6f21a62a
ML
822 *
823 * - can't sleep at all if @gfp is GFP_ATOMIC.
1da177e4
LT
824 **/
825int
826request_firmware_nowait(
072fc8f0 827 struct module *module, bool uevent,
9ebfbd45 828 const char *name, struct device *device, gfp_t gfp, void *context,
1da177e4
LT
829 void (*cont)(const struct firmware *fw, void *context))
830{
f8a4bd34 831 struct firmware_work *fw_work;
1da177e4 832
ea31003c 833 fw_work = kzalloc(sizeof(struct firmware_work), gfp);
1da177e4
LT
834 if (!fw_work)
835 return -ENOMEM;
f8a4bd34
DT
836
837 fw_work->module = module;
f9692b26 838 fw_work->name = kstrdup_const(name, gfp);
303cda0e
LR
839 if (!fw_work->name) {
840 kfree(fw_work);
f9692b26 841 return -ENOMEM;
303cda0e 842 }
f8a4bd34
DT
843 fw_work->device = device;
844 fw_work->context = context;
845 fw_work->cont = cont;
3f722712 846 fw_work->opt_flags = FW_OPT_NOWAIT |
5a1379e8 847 (uevent ? FW_OPT_UEVENT : FW_OPT_USERHELPER);
f8a4bd34 848
995e8695
LR
849 if (!uevent && fw_cache_is_setup(device, name)) {
850 kfree_const(fw_work->name);
851 kfree(fw_work);
852 return -EOPNOTSUPP;
853 }
854
1da177e4 855 if (!try_module_get(module)) {
f9692b26 856 kfree_const(fw_work->name);
1da177e4
LT
857 kfree(fw_work);
858 return -EFAULT;
859 }
860
0cfc1e1e 861 get_device(fw_work->device);
a36cf844
SB
862 INIT_WORK(&fw_work->work, request_firmware_work_func);
863 schedule_work(&fw_work->work);
1da177e4
LT
864 return 0;
865}
f494513f 866EXPORT_SYMBOL(request_firmware_nowait);
1da177e4 867
90f89081
ML
868#ifdef CONFIG_PM_SLEEP
869static ASYNC_DOMAIN_EXCLUSIVE(fw_cache_domain);
870
2887b395 871/**
c35f9cbb 872 * cache_firmware() - cache one firmware image in kernel memory space
2887b395
ML
873 * @fw_name: the firmware image name
874 *
875 * Cache firmware in kernel memory so that drivers can use it when
876 * system isn't ready for them to request firmware image from userspace.
877 * Once it returns successfully, driver can use request_firmware or its
878 * nowait version to get the cached firmware without any interacting
879 * with userspace
880 *
881 * Return 0 if the firmware image has been cached successfully
882 * Return !0 otherwise
883 *
884 */
93232e46 885static int cache_firmware(const char *fw_name)
2887b395
ML
886{
887 int ret;
888 const struct firmware *fw;
889
890 pr_debug("%s: %s\n", __func__, fw_name);
891
892 ret = request_firmware(&fw, fw_name, NULL);
893 if (!ret)
894 kfree(fw);
895
896 pr_debug("%s: %s ret=%d\n", __func__, fw_name, ret);
897
898 return ret;
899}
900
cd5322b7 901static struct fw_priv *lookup_fw_priv(const char *fw_name)
6a2c1234 902{
cd5322b7 903 struct fw_priv *tmp;
6a2c1234
ML
904 struct firmware_cache *fwc = &fw_cache;
905
906 spin_lock(&fwc->lock);
cd5322b7 907 tmp = __lookup_fw_priv(fw_name);
6a2c1234
ML
908 spin_unlock(&fwc->lock);
909
910 return tmp;
911}
912
2887b395 913/**
c35f9cbb 914 * uncache_firmware() - remove one cached firmware image
2887b395
ML
915 * @fw_name: the firmware image name
916 *
917 * Uncache one firmware image which has been cached successfully
918 * before.
919 *
920 * Return 0 if the firmware cache has been removed successfully
921 * Return !0 otherwise
922 *
923 */
93232e46 924static int uncache_firmware(const char *fw_name)
2887b395 925{
cd5322b7 926 struct fw_priv *fw_priv;
2887b395
ML
927 struct firmware fw;
928
929 pr_debug("%s: %s\n", __func__, fw_name);
930
a098ecd2 931 if (fw_get_builtin_firmware(&fw, fw_name, NULL, 0))
2887b395
ML
932 return 0;
933
cd5322b7
LR
934 fw_priv = lookup_fw_priv(fw_name);
935 if (fw_priv) {
936 free_fw_priv(fw_priv);
2887b395
ML
937 return 0;
938 }
939
940 return -EINVAL;
941}
942
37276a51
ML
943static struct fw_cache_entry *alloc_fw_cache_entry(const char *name)
944{
945 struct fw_cache_entry *fce;
946
e0fd9b1d 947 fce = kzalloc(sizeof(*fce), GFP_ATOMIC);
37276a51
ML
948 if (!fce)
949 goto exit;
950
e0fd9b1d
LR
951 fce->name = kstrdup_const(name, GFP_ATOMIC);
952 if (!fce->name) {
953 kfree(fce);
954 fce = NULL;
955 goto exit;
956 }
37276a51
ML
957exit:
958 return fce;
959}
960
373304fe 961static int __fw_entry_found(const char *name)
ac39b3ea
ML
962{
963 struct firmware_cache *fwc = &fw_cache;
964 struct fw_cache_entry *fce;
ac39b3ea 965
ac39b3ea
ML
966 list_for_each_entry(fce, &fwc->fw_names, list) {
967 if (!strcmp(fce->name, name))
373304fe 968 return 1;
ac39b3ea 969 }
373304fe
ML
970 return 0;
971}
972
973static int fw_cache_piggyback_on_request(const char *name)
974{
975 struct firmware_cache *fwc = &fw_cache;
976 struct fw_cache_entry *fce;
977 int ret = 0;
978
979 spin_lock(&fwc->name_lock);
980 if (__fw_entry_found(name))
981 goto found;
ac39b3ea
ML
982
983 fce = alloc_fw_cache_entry(name);
984 if (fce) {
985 ret = 1;
986 list_add(&fce->list, &fwc->fw_names);
987 pr_debug("%s: fw: %s\n", __func__, name);
988 }
989found:
990 spin_unlock(&fwc->name_lock);
991 return ret;
992}
993
37276a51
ML
994static void free_fw_cache_entry(struct fw_cache_entry *fce)
995{
e0fd9b1d 996 kfree_const(fce->name);
37276a51
ML
997 kfree(fce);
998}
999
1000static void __async_dev_cache_fw_image(void *fw_entry,
1001 async_cookie_t cookie)
1002{
1003 struct fw_cache_entry *fce = fw_entry;
1004 struct firmware_cache *fwc = &fw_cache;
1005 int ret;
1006
1007 ret = cache_firmware(fce->name);
ac39b3ea
ML
1008 if (ret) {
1009 spin_lock(&fwc->name_lock);
1010 list_del(&fce->list);
1011 spin_unlock(&fwc->name_lock);
37276a51 1012
ac39b3ea
ML
1013 free_fw_cache_entry(fce);
1014 }
37276a51
ML
1015}
1016
1017/* called with dev->devres_lock held */
1018static void dev_create_fw_entry(struct device *dev, void *res,
1019 void *data)
1020{
1021 struct fw_name_devm *fwn = res;
1022 const char *fw_name = fwn->name;
1023 struct list_head *head = data;
1024 struct fw_cache_entry *fce;
1025
1026 fce = alloc_fw_cache_entry(fw_name);
1027 if (fce)
1028 list_add(&fce->list, head);
1029}
1030
1031static int devm_name_match(struct device *dev, void *res,
1032 void *match_data)
1033{
1034 struct fw_name_devm *fwn = res;
1035 return (fwn->magic == (unsigned long)match_data);
1036}
1037
ab6dd8e5 1038static void dev_cache_fw_image(struct device *dev, void *data)
37276a51
ML
1039{
1040 LIST_HEAD(todo);
1041 struct fw_cache_entry *fce;
1042 struct fw_cache_entry *fce_next;
1043 struct firmware_cache *fwc = &fw_cache;
1044
1045 devres_for_each_res(dev, fw_name_devm_release,
1046 devm_name_match, &fw_cache,
1047 dev_create_fw_entry, &todo);
1048
1049 list_for_each_entry_safe(fce, fce_next, &todo, list) {
1050 list_del(&fce->list);
1051
1052 spin_lock(&fwc->name_lock);
373304fe
ML
1053 /* only one cache entry for one firmware */
1054 if (!__fw_entry_found(fce->name)) {
373304fe
ML
1055 list_add(&fce->list, &fwc->fw_names);
1056 } else {
1057 free_fw_cache_entry(fce);
1058 fce = NULL;
1059 }
37276a51
ML
1060 spin_unlock(&fwc->name_lock);
1061
373304fe 1062 if (fce)
d28d3882
ML
1063 async_schedule_domain(__async_dev_cache_fw_image,
1064 (void *)fce,
1065 &fw_cache_domain);
37276a51
ML
1066 }
1067}
1068
1069static void __device_uncache_fw_images(void)
1070{
1071 struct firmware_cache *fwc = &fw_cache;
1072 struct fw_cache_entry *fce;
1073
1074 spin_lock(&fwc->name_lock);
1075 while (!list_empty(&fwc->fw_names)) {
1076 fce = list_entry(fwc->fw_names.next,
1077 struct fw_cache_entry, list);
1078 list_del(&fce->list);
1079 spin_unlock(&fwc->name_lock);
1080
1081 uncache_firmware(fce->name);
1082 free_fw_cache_entry(fce);
1083
1084 spin_lock(&fwc->name_lock);
1085 }
1086 spin_unlock(&fwc->name_lock);
1087}
1088
1089/**
c35f9cbb 1090 * device_cache_fw_images() - cache devices' firmware
37276a51
ML
1091 *
1092 * If one device called request_firmware or its nowait version
1093 * successfully before, the firmware names are recored into the
1094 * device's devres link list, so device_cache_fw_images can call
1095 * cache_firmware() to cache these firmwares for the device,
1096 * then the device driver can load its firmwares easily at
1097 * time when system is not ready to complete loading firmware.
1098 */
1099static void device_cache_fw_images(void)
1100{
1101 struct firmware_cache *fwc = &fw_cache;
37276a51
ML
1102 DEFINE_WAIT(wait);
1103
1104 pr_debug("%s\n", __func__);
1105
373304fe
ML
1106 /* cancel uncache work */
1107 cancel_delayed_work_sync(&fwc->work);
1108
5d9566b1 1109 fw_fallback_set_cache_timeout();
ffe53f6f 1110
ac39b3ea
ML
1111 mutex_lock(&fw_lock);
1112 fwc->state = FW_LOADER_START_CACHE;
ab6dd8e5 1113 dpm_for_each_dev(NULL, dev_cache_fw_image);
ac39b3ea 1114 mutex_unlock(&fw_lock);
37276a51
ML
1115
1116 /* wait for completion of caching firmware for all devices */
d28d3882 1117 async_synchronize_full_domain(&fw_cache_domain);
ffe53f6f 1118
5d9566b1 1119 fw_fallback_set_default_timeout();
37276a51
ML
1120}
1121
1122/**
c35f9cbb 1123 * device_uncache_fw_images() - uncache devices' firmware
37276a51
ML
1124 *
1125 * uncache all firmwares which have been cached successfully
1126 * by device_uncache_fw_images earlier
1127 */
1128static void device_uncache_fw_images(void)
1129{
1130 pr_debug("%s\n", __func__);
1131 __device_uncache_fw_images();
1132}
1133
1134static void device_uncache_fw_images_work(struct work_struct *work)
1135{
1136 device_uncache_fw_images();
1137}
1138
1139/**
c35f9cbb 1140 * device_uncache_fw_images_delay() - uncache devices firmwares
37276a51
ML
1141 * @delay: number of milliseconds to delay uncache device firmwares
1142 *
1143 * uncache all devices's firmwares which has been cached successfully
1144 * by device_cache_fw_images after @delay milliseconds.
1145 */
1146static void device_uncache_fw_images_delay(unsigned long delay)
1147{
bce6618a
SD
1148 queue_delayed_work(system_power_efficient_wq, &fw_cache.work,
1149 msecs_to_jiffies(delay));
37276a51
ML
1150}
1151
07646d9c
ML
1152static int fw_pm_notify(struct notifier_block *notify_block,
1153 unsigned long mode, void *unused)
1154{
1155 switch (mode) {
1156 case PM_HIBERNATION_PREPARE:
1157 case PM_SUSPEND_PREPARE:
f8d5b9e9 1158 case PM_RESTORE_PREPARE:
c4b76893
LR
1159 /*
1160 * kill pending fallback requests with a custom fallback
1161 * to avoid stalling suspend.
1162 */
1163 kill_pending_fw_fallback_reqs(true);
07646d9c
ML
1164 device_cache_fw_images();
1165 break;
1166
1167 case PM_POST_SUSPEND:
1168 case PM_POST_HIBERNATION:
1169 case PM_POST_RESTORE:
ac39b3ea
ML
1170 /*
1171 * In case that system sleep failed and syscore_suspend is
1172 * not called.
1173 */
1174 mutex_lock(&fw_lock);
1175 fw_cache.state = FW_LOADER_NO_CACHE;
1176 mutex_unlock(&fw_lock);
1177
07646d9c
ML
1178 device_uncache_fw_images_delay(10 * MSEC_PER_SEC);
1179 break;
1180 }
1181
1182 return 0;
1183}
07646d9c 1184
ac39b3ea
ML
1185/* stop caching firmware once syscore_suspend is reached */
1186static int fw_suspend(void)
1187{
1188 fw_cache.state = FW_LOADER_NO_CACHE;
1189 return 0;
1190}
1191
1192static struct syscore_ops fw_syscore_ops = {
1193 .suspend = fw_suspend,
1194};
a67e503b 1195
59b6d859
LR
1196static int __init register_fw_pm_ops(void)
1197{
1198 int ret;
1199
1200 spin_lock_init(&fw_cache.name_lock);
1201 INIT_LIST_HEAD(&fw_cache.fw_names);
1202
1203 INIT_DELAYED_WORK(&fw_cache.work,
1204 device_uncache_fw_images_work);
1205
1206 fw_cache.pm_notify.notifier_call = fw_pm_notify;
1207 ret = register_pm_notifier(&fw_cache.pm_notify);
1208 if (ret)
1209 return ret;
1210
1211 register_syscore_ops(&fw_syscore_ops);
1212
1213 return ret;
1214}
1215
a67e503b
LR
1216static inline void unregister_fw_pm_ops(void)
1217{
1218 unregister_syscore_ops(&fw_syscore_ops);
1219 unregister_pm_notifier(&fw_cache.pm_notify);
1220}
cfe016b1
ML
1221#else
1222static int fw_cache_piggyback_on_request(const char *name)
1223{
1224 return 0;
1225}
59b6d859
LR
1226static inline int register_fw_pm_ops(void)
1227{
1228 return 0;
1229}
a67e503b
LR
1230static inline void unregister_fw_pm_ops(void)
1231{
1232}
cfe016b1 1233#endif
ac39b3ea 1234
37276a51
ML
1235static void __init fw_cache_init(void)
1236{
1237 spin_lock_init(&fw_cache.lock);
1238 INIT_LIST_HEAD(&fw_cache.head);
cfe016b1 1239 fw_cache.state = FW_LOADER_NO_CACHE;
37276a51
ML
1240}
1241
a669f04a
LR
1242static int fw_shutdown_notify(struct notifier_block *unused1,
1243 unsigned long unused2, void *unused3)
1244{
1245 /*
1246 * Kill all pending fallback requests to avoid both stalling shutdown,
1247 * and avoid a deadlock with the usermode_lock.
1248 */
1249 kill_pending_fw_fallback_reqs(false);
1250
1251 return NOTIFY_DONE;
1252}
1253
1254static struct notifier_block fw_shutdown_nb = {
1255 .notifier_call = fw_shutdown_notify,
1256};
1257
673fae90 1258static int __init firmware_class_init(void)
1da177e4 1259{
59b6d859
LR
1260 int ret;
1261
1262 /* No need to unfold these on exit */
1f2b7959 1263 fw_cache_init();
59b6d859
LR
1264
1265 ret = register_fw_pm_ops();
1266 if (ret)
1267 return ret;
1268
561a10b6
LR
1269 ret = register_reboot_notifier(&fw_shutdown_nb);
1270 if (ret)
1271 goto out;
1272
6bb9cf3a 1273 return register_sysfs_loader();
561a10b6
LR
1274
1275out:
1276 unregister_fw_pm_ops();
1277 return ret;
1da177e4 1278}
673fae90
DT
1279
1280static void __exit firmware_class_exit(void)
1da177e4 1281{
a67e503b 1282 unregister_fw_pm_ops();
fe304143 1283 unregister_reboot_notifier(&fw_shutdown_nb);
6bb9cf3a 1284 unregister_sysfs_loader();
1da177e4
LT
1285}
1286
a30a6a2c 1287fs_initcall(firmware_class_init);
1da177e4 1288module_exit(firmware_class_exit);