blob: 5401814c874df066833c8b5c3ac2dc28e2842490 [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 Torvalds1da177e2005-04-16 15:20:36 -070024
Greg Kroah-Hartmane55c8792006-09-14 07:30:59 -070025#define to_dev(obj) container_of(obj, struct device, kobj)
26
Markus Rechberger87d37a42007-06-04 18:45:44 +020027MODULE_AUTHOR("Manuel Estrada Sainz");
Linus Torvalds1da177e2005-04-16 15:20:36 -070028MODULE_DESCRIPTION("Multi purpose firmware loading support");
29MODULE_LICENSE("GPL");
30
Dmitry Torokhovbcb9bd12010-03-13 23:49:18 -080031/* Builtin firmware support */
32
33#ifdef CONFIG_FW_LOADER
34
35extern struct builtin_fw __start_builtin_fw[];
36extern struct builtin_fw __end_builtin_fw[];
37
38static bool fw_get_builtin_firmware(struct firmware *fw, const char *name)
39{
40 struct builtin_fw *b_fw;
41
42 for (b_fw = __start_builtin_fw; b_fw != __end_builtin_fw; b_fw++) {
43 if (strcmp(name, b_fw->name) == 0) {
44 fw->size = b_fw->size;
45 fw->data = b_fw->data;
46 return true;
47 }
48 }
49
50 return false;
51}
52
53static bool fw_is_builtin_firmware(const struct firmware *fw)
54{
55 struct builtin_fw *b_fw;
56
57 for (b_fw = __start_builtin_fw; b_fw != __end_builtin_fw; b_fw++)
58 if (fw->data == b_fw->data)
59 return true;
60
61 return false;
62}
63
64#else /* Module case - no builtin firmware support */
65
66static inline bool fw_get_builtin_firmware(struct firmware *fw, const char *name)
67{
68 return false;
69}
70
71static inline bool fw_is_builtin_firmware(const struct firmware *fw)
72{
73 return false;
74}
75#endif
76
Linus Torvalds1da177e2005-04-16 15:20:36 -070077enum {
78 FW_STATUS_LOADING,
79 FW_STATUS_DONE,
80 FW_STATUS_ABORT,
Linus Torvalds1da177e2005-04-16 15:20:36 -070081};
82
Dave Jones2f651682007-01-25 15:56:15 -050083static int loading_timeout = 60; /* In seconds */
Linus Torvalds1da177e2005-04-16 15:20:36 -070084
Rafael J. Wysocki9b78c1d2012-03-28 23:30:02 +020085static inline long firmware_loading_timeout(void)
86{
87 return loading_timeout > 0 ? loading_timeout * HZ : MAX_SCHEDULE_TIMEOUT;
88}
89
Linus Torvalds1da177e2005-04-16 15:20:36 -070090/* fw_lock could be moved to 'struct firmware_priv' but since it is just
91 * guarding for corner cases a global lock should be OK */
Laura Garciacad1e552006-05-23 23:22:38 +020092static DEFINE_MUTEX(fw_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070093
94struct firmware_priv {
Linus Torvalds1da177e2005-04-16 15:20:36 -070095 struct completion completion;
Linus Torvalds1da177e2005-04-16 15:20:36 -070096 struct firmware *fw;
97 unsigned long status;
David Woodhouse6e03a202009-04-09 22:04:07 -070098 struct page **pages;
99 int nr_pages;
100 int page_array_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101 struct timer_list timeout;
Dmitry Torokhovf8a4bd32010-06-04 00:54:43 -0700102 struct device dev;
Johannes Berge9045f92010-03-29 17:57:20 +0200103 bool nowait;
Dmitry Torokhove1771232010-03-13 23:49:23 -0800104 char fw_id[];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105};
106
Dmitry Torokhovf8a4bd32010-06-04 00:54:43 -0700107static struct firmware_priv *to_firmware_priv(struct device *dev)
108{
109 return container_of(dev, struct firmware_priv, dev);
110}
111
112static void fw_load_abort(struct firmware_priv *fw_priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113{
114 set_bit(FW_STATUS_ABORT, &fw_priv->status);
115 wmb();
116 complete(&fw_priv->completion);
117}
118
Dmitry Torokhovf8a4bd32010-06-04 00:54:43 -0700119static ssize_t firmware_timeout_show(struct class *class,
120 struct class_attribute *attr,
121 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122{
123 return sprintf(buf, "%d\n", loading_timeout);
124}
125
126/**
Randy Dunlapeb8e3172005-10-30 15:03:01 -0800127 * firmware_timeout_store - set number of seconds to wait for firmware
128 * @class: device class pointer
Randy Dunlape59817b2010-03-10 11:47:58 -0800129 * @attr: device attribute pointer
Randy Dunlapeb8e3172005-10-30 15:03:01 -0800130 * @buf: buffer to scan for timeout value
131 * @count: number of bytes in @buf
132 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133 * Sets the number of seconds to wait for the firmware. Once
Randy Dunlapeb8e3172005-10-30 15:03:01 -0800134 * this expires an error will be returned to the driver and no
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135 * firmware will be provided.
136 *
Randy Dunlapeb8e3172005-10-30 15:03:01 -0800137 * Note: zero means 'wait forever'.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138 **/
Dmitry Torokhovf8a4bd32010-06-04 00:54:43 -0700139static ssize_t firmware_timeout_store(struct class *class,
140 struct class_attribute *attr,
141 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142{
143 loading_timeout = simple_strtol(buf, NULL, 10);
Stanislaw W. Gruszkab92eac02005-06-28 20:44:51 -0700144 if (loading_timeout < 0)
145 loading_timeout = 0;
Dmitry Torokhovf8a4bd32010-06-04 00:54:43 -0700146
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147 return count;
148}
149
Dmitry Torokhov673fae92010-03-13 23:49:13 -0800150static struct class_attribute firmware_class_attrs[] = {
151 __ATTR(timeout, S_IWUSR | S_IRUGO,
152 firmware_timeout_show, firmware_timeout_store),
153 __ATTR_NULL
154};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155
Dmitry Torokhov673fae92010-03-13 23:49:13 -0800156static void fw_dev_release(struct device *dev)
157{
Dmitry Torokhovf8a4bd32010-06-04 00:54:43 -0700158 struct firmware_priv *fw_priv = to_firmware_priv(dev);
Dmitry Torokhov673fae92010-03-13 23:49:13 -0800159 int i;
160
161 for (i = 0; i < fw_priv->nr_pages; i++)
162 __free_page(fw_priv->pages[i]);
163 kfree(fw_priv->pages);
Dmitry Torokhov673fae92010-03-13 23:49:13 -0800164 kfree(fw_priv);
Dmitry Torokhov673fae92010-03-13 23:49:13 -0800165
166 module_put(THIS_MODULE);
167}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168
Kay Sievers7eff2e72007-08-14 15:15:12 +0200169static int firmware_uevent(struct device *dev, struct kobj_uevent_env *env)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170{
Dmitry Torokhovf8a4bd32010-06-04 00:54:43 -0700171 struct firmware_priv *fw_priv = to_firmware_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172
Kay Sievers7eff2e72007-08-14 15:15:12 +0200173 if (add_uevent_var(env, "FIRMWARE=%s", fw_priv->fw_id))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174 return -ENOMEM;
Kay Sievers7eff2e72007-08-14 15:15:12 +0200175 if (add_uevent_var(env, "TIMEOUT=%i", loading_timeout))
kay.sievers@vrfy.org68970892005-04-18 21:57:31 -0700176 return -ENOMEM;
Johannes Berge9045f92010-03-29 17:57:20 +0200177 if (add_uevent_var(env, "ASYNC=%d", fw_priv->nowait))
178 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179
180 return 0;
181}
182
Adrian Bunk1b81d662006-05-20 15:00:16 -0700183static struct class firmware_class = {
184 .name = "firmware",
Dmitry Torokhov673fae92010-03-13 23:49:13 -0800185 .class_attrs = firmware_class_attrs,
Greg Kroah-Hartmane55c8792006-09-14 07:30:59 -0700186 .dev_uevent = firmware_uevent,
187 .dev_release = fw_dev_release,
Adrian Bunk1b81d662006-05-20 15:00:16 -0700188};
189
Greg Kroah-Hartmane55c8792006-09-14 07:30:59 -0700190static ssize_t firmware_loading_show(struct device *dev,
191 struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192{
Dmitry Torokhovf8a4bd32010-06-04 00:54:43 -0700193 struct firmware_priv *fw_priv = to_firmware_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194 int loading = test_bit(FW_STATUS_LOADING, &fw_priv->status);
Dmitry Torokhovf8a4bd32010-06-04 00:54:43 -0700195
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196 return sprintf(buf, "%d\n", loading);
197}
198
David Woodhousedd336c52010-05-02 11:21:21 +0300199static void firmware_free_data(const struct firmware *fw)
200{
201 int i;
202 vunmap(fw->data);
203 if (fw->pages) {
204 for (i = 0; i < PFN_UP(fw->size); i++)
205 __free_page(fw->pages[i]);
206 kfree(fw->pages);
207 }
208}
209
David Woodhouse6e03a202009-04-09 22:04:07 -0700210/* Some architectures don't have PAGE_KERNEL_RO */
211#ifndef PAGE_KERNEL_RO
212#define PAGE_KERNEL_RO PAGE_KERNEL
213#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214/**
Randy Dunlapeb8e3172005-10-30 15:03:01 -0800215 * firmware_loading_store - set value in the 'loading' control file
Greg Kroah-Hartmane55c8792006-09-14 07:30:59 -0700216 * @dev: device pointer
Randy Dunlapaf9997e2006-12-22 01:06:52 -0800217 * @attr: device attribute pointer
Randy Dunlapeb8e3172005-10-30 15:03:01 -0800218 * @buf: buffer to scan for loading control value
219 * @count: number of bytes in @buf
220 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221 * The relevant values are:
222 *
223 * 1: Start a load, discarding any previous partial load.
Randy Dunlapeb8e3172005-10-30 15:03:01 -0800224 * 0: Conclude the load and hand the data to the driver code.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225 * -1: Conclude the load with an error and discard any written data.
226 **/
Greg Kroah-Hartmane55c8792006-09-14 07:30:59 -0700227static ssize_t firmware_loading_store(struct device *dev,
228 struct device_attribute *attr,
229 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230{
Dmitry Torokhovf8a4bd32010-06-04 00:54:43 -0700231 struct firmware_priv *fw_priv = to_firmware_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232 int loading = simple_strtol(buf, NULL, 10);
David Woodhouse6e03a202009-04-09 22:04:07 -0700233 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234
Neil Hormaneea915b2012-01-02 15:31:23 -0500235 mutex_lock(&fw_lock);
236
237 if (!fw_priv->fw)
238 goto out;
239
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240 switch (loading) {
241 case 1:
David Woodhousedd336c52010-05-02 11:21:21 +0300242 firmware_free_data(fw_priv->fw);
243 memset(fw_priv->fw, 0, sizeof(struct firmware));
244 /* If the pages are not owned by 'struct firmware' */
David Woodhouse6e03a202009-04-09 22:04:07 -0700245 for (i = 0; i < fw_priv->nr_pages; i++)
246 __free_page(fw_priv->pages[i]);
247 kfree(fw_priv->pages);
248 fw_priv->pages = NULL;
249 fw_priv->page_array_size = 0;
250 fw_priv->nr_pages = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251 set_bit(FW_STATUS_LOADING, &fw_priv->status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252 break;
253 case 0:
254 if (test_bit(FW_STATUS_LOADING, &fw_priv->status)) {
David Woodhousedd336c52010-05-02 11:21:21 +0300255 vunmap(fw_priv->fw->data);
David Woodhouse6e03a202009-04-09 22:04:07 -0700256 fw_priv->fw->data = vmap(fw_priv->pages,
257 fw_priv->nr_pages,
258 0, PAGE_KERNEL_RO);
259 if (!fw_priv->fw->data) {
260 dev_err(dev, "%s: vmap() failed\n", __func__);
261 goto err;
262 }
David Woodhousedd336c52010-05-02 11:21:21 +0300263 /* Pages are now owned by 'struct firmware' */
264 fw_priv->fw->pages = fw_priv->pages;
265 fw_priv->pages = NULL;
266
David Woodhouse6e03a202009-04-09 22:04:07 -0700267 fw_priv->page_array_size = 0;
268 fw_priv->nr_pages = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269 complete(&fw_priv->completion);
270 clear_bit(FW_STATUS_LOADING, &fw_priv->status);
271 break;
272 }
273 /* fallthrough */
274 default:
Bjorn Helgaas266a8132008-10-15 22:04:20 -0700275 dev_err(dev, "%s: unexpected value (%d)\n", __func__, loading);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276 /* fallthrough */
277 case -1:
David Woodhouse6e03a202009-04-09 22:04:07 -0700278 err:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279 fw_load_abort(fw_priv);
280 break;
281 }
Neil Hormaneea915b2012-01-02 15:31:23 -0500282out:
283 mutex_unlock(&fw_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284 return count;
285}
286
Greg Kroah-Hartmane55c8792006-09-14 07:30:59 -0700287static DEVICE_ATTR(loading, 0644, firmware_loading_show, firmware_loading_store);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288
Dmitry Torokhovf8a4bd32010-06-04 00:54:43 -0700289static ssize_t firmware_data_read(struct file *filp, struct kobject *kobj,
290 struct bin_attribute *bin_attr,
291 char *buffer, loff_t offset, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292{
Greg Kroah-Hartmane55c8792006-09-14 07:30:59 -0700293 struct device *dev = to_dev(kobj);
Dmitry Torokhovf8a4bd32010-06-04 00:54:43 -0700294 struct firmware_priv *fw_priv = to_firmware_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295 struct firmware *fw;
Akinobu Mitaf37e6612008-07-25 01:48:23 -0700296 ssize_t ret_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297
Laura Garciacad1e552006-05-23 23:22:38 +0200298 mutex_lock(&fw_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299 fw = fw_priv->fw;
Stanislaw W. Gruszkab92eac02005-06-28 20:44:51 -0700300 if (!fw || test_bit(FW_STATUS_DONE, &fw_priv->status)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301 ret_count = -ENODEV;
302 goto out;
303 }
Jiri Slaby308975f2009-06-21 23:57:31 +0200304 if (offset > fw->size) {
305 ret_count = 0;
306 goto out;
307 }
David Woodhouse6e03a202009-04-09 22:04:07 -0700308 if (count > fw->size - offset)
309 count = fw->size - offset;
310
311 ret_count = count;
312
313 while (count) {
314 void *page_data;
315 int page_nr = offset >> PAGE_SHIFT;
316 int page_ofs = offset & (PAGE_SIZE-1);
317 int page_cnt = min_t(size_t, PAGE_SIZE - page_ofs, count);
318
319 page_data = kmap(fw_priv->pages[page_nr]);
320
321 memcpy(buffer, page_data + page_ofs, page_cnt);
322
323 kunmap(fw_priv->pages[page_nr]);
324 buffer += page_cnt;
325 offset += page_cnt;
326 count -= page_cnt;
327 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328out:
Laura Garciacad1e552006-05-23 23:22:38 +0200329 mutex_unlock(&fw_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330 return ret_count;
331}
Randy Dunlapeb8e3172005-10-30 15:03:01 -0800332
Dmitry Torokhovf8a4bd32010-06-04 00:54:43 -0700333static int fw_realloc_buffer(struct firmware_priv *fw_priv, int min_size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334{
David Woodhouse6e03a202009-04-09 22:04:07 -0700335 int pages_needed = ALIGN(min_size, PAGE_SIZE) >> PAGE_SHIFT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336
David Woodhouse6e03a202009-04-09 22:04:07 -0700337 /* If the array of pages is too small, grow it... */
338 if (fw_priv->page_array_size < pages_needed) {
339 int new_array_size = max(pages_needed,
340 fw_priv->page_array_size * 2);
341 struct page **new_pages;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342
David Woodhouse6e03a202009-04-09 22:04:07 -0700343 new_pages = kmalloc(new_array_size * sizeof(void *),
344 GFP_KERNEL);
345 if (!new_pages) {
346 fw_load_abort(fw_priv);
347 return -ENOMEM;
348 }
349 memcpy(new_pages, fw_priv->pages,
350 fw_priv->page_array_size * sizeof(void *));
351 memset(&new_pages[fw_priv->page_array_size], 0, sizeof(void *) *
352 (new_array_size - fw_priv->page_array_size));
353 kfree(fw_priv->pages);
354 fw_priv->pages = new_pages;
355 fw_priv->page_array_size = new_array_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356 }
David Woodhouse6e03a202009-04-09 22:04:07 -0700357
358 while (fw_priv->nr_pages < pages_needed) {
359 fw_priv->pages[fw_priv->nr_pages] =
360 alloc_page(GFP_KERNEL | __GFP_HIGHMEM);
361
362 if (!fw_priv->pages[fw_priv->nr_pages]) {
363 fw_load_abort(fw_priv);
364 return -ENOMEM;
365 }
366 fw_priv->nr_pages++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368 return 0;
369}
370
371/**
Randy Dunlapeb8e3172005-10-30 15:03:01 -0800372 * firmware_data_write - write method for firmware
Chris Wright2c3c8be2010-05-12 18:28:57 -0700373 * @filp: open sysfs file
Greg Kroah-Hartmane55c8792006-09-14 07:30:59 -0700374 * @kobj: kobject for the device
Randy Dunlap42e61f42007-07-23 21:42:11 -0700375 * @bin_attr: bin_attr structure
Randy Dunlapeb8e3172005-10-30 15:03:01 -0800376 * @buffer: buffer being written
377 * @offset: buffer offset for write in total data store area
378 * @count: buffer size
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379 *
Randy Dunlapeb8e3172005-10-30 15:03:01 -0800380 * Data written to the 'data' attribute will be later handed to
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381 * the driver as a firmware image.
382 **/
Dmitry Torokhovf8a4bd32010-06-04 00:54:43 -0700383static ssize_t firmware_data_write(struct file *filp, struct kobject *kobj,
384 struct bin_attribute *bin_attr,
385 char *buffer, loff_t offset, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386{
Greg Kroah-Hartmane55c8792006-09-14 07:30:59 -0700387 struct device *dev = to_dev(kobj);
Dmitry Torokhovf8a4bd32010-06-04 00:54:43 -0700388 struct firmware_priv *fw_priv = to_firmware_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389 struct firmware *fw;
390 ssize_t retval;
391
392 if (!capable(CAP_SYS_RAWIO))
393 return -EPERM;
Stanislaw W. Gruszkab92eac02005-06-28 20:44:51 -0700394
Laura Garciacad1e552006-05-23 23:22:38 +0200395 mutex_lock(&fw_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396 fw = fw_priv->fw;
Stanislaw W. Gruszkab92eac02005-06-28 20:44:51 -0700397 if (!fw || test_bit(FW_STATUS_DONE, &fw_priv->status)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398 retval = -ENODEV;
399 goto out;
400 }
401 retval = fw_realloc_buffer(fw_priv, offset + count);
402 if (retval)
403 goto out;
404
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405 retval = count;
David Woodhouse6e03a202009-04-09 22:04:07 -0700406
407 while (count) {
408 void *page_data;
409 int page_nr = offset >> PAGE_SHIFT;
410 int page_ofs = offset & (PAGE_SIZE - 1);
411 int page_cnt = min_t(size_t, PAGE_SIZE - page_ofs, count);
412
413 page_data = kmap(fw_priv->pages[page_nr]);
414
415 memcpy(page_data + page_ofs, buffer, page_cnt);
416
417 kunmap(fw_priv->pages[page_nr]);
418 buffer += page_cnt;
419 offset += page_cnt;
420 count -= page_cnt;
421 }
422
423 fw->size = max_t(size_t, offset, fw->size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424out:
Laura Garciacad1e552006-05-23 23:22:38 +0200425 mutex_unlock(&fw_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426 return retval;
427}
Randy Dunlapeb8e3172005-10-30 15:03:01 -0800428
Dmitry Torokhov0983ca22010-06-04 00:54:37 -0700429static struct bin_attribute firmware_attr_data = {
430 .attr = { .name = "data", .mode = 0644 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431 .size = 0,
432 .read = firmware_data_read,
433 .write = firmware_data_write,
434};
435
Dmitry Torokhovf8a4bd32010-06-04 00:54:43 -0700436static void firmware_class_timeout(u_long data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437{
438 struct firmware_priv *fw_priv = (struct firmware_priv *) data;
Dmitry Torokhovf8a4bd32010-06-04 00:54:43 -0700439
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440 fw_load_abort(fw_priv);
441}
442
Dmitry Torokhovf8a4bd32010-06-04 00:54:43 -0700443static struct firmware_priv *
Stephen Boyddddb5542012-03-28 23:30:43 +0200444fw_create_instance(struct firmware *firmware, const char *fw_name,
Dmitry Torokhovf8a4bd32010-06-04 00:54:43 -0700445 struct device *device, bool uevent, bool nowait)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446{
Dmitry Torokhovf8a4bd32010-06-04 00:54:43 -0700447 struct firmware_priv *fw_priv;
448 struct device *f_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449
Dmitry Torokhovf8a4bd32010-06-04 00:54:43 -0700450 fw_priv = kzalloc(sizeof(*fw_priv) + strlen(fw_name) + 1 , GFP_KERNEL);
451 if (!fw_priv) {
Bjorn Helgaas266a8132008-10-15 22:04:20 -0700452 dev_err(device, "%s: kmalloc failed\n", __func__);
Stephen Boyddddb5542012-03-28 23:30:43 +0200453 return ERR_PTR(-ENOMEM);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455
Stephen Boyddddb5542012-03-28 23:30:43 +0200456 fw_priv->fw = firmware;
Dmitry Torokhovf8a4bd32010-06-04 00:54:43 -0700457 fw_priv->nowait = nowait;
Dmitry Torokhove1771232010-03-13 23:49:23 -0800458 strcpy(fw_priv->fw_id, fw_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459 init_completion(&fw_priv->completion);
Dmitry Torokhovf8a4bd32010-06-04 00:54:43 -0700460 setup_timer(&fw_priv->timeout,
461 firmware_class_timeout, (u_long) fw_priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462
Dmitry Torokhovf8a4bd32010-06-04 00:54:43 -0700463 f_dev = &fw_priv->dev;
464
465 device_initialize(f_dev);
Greg Kroah-Hartmanacc0e902009-06-02 15:39:55 -0700466 dev_set_name(f_dev, "%s", dev_name(device));
Greg Kroah-Hartmane55c8792006-09-14 07:30:59 -0700467 f_dev->parent = device;
468 f_dev->class = &firmware_class;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469
Dmitry Torokhovf8a4bd32010-06-04 00:54:43 -0700470 return fw_priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471}
472
Stephen Boyddddb5542012-03-28 23:30:43 +0200473static struct firmware_priv *
474_request_firmware_prepare(const struct firmware **firmware_p, const char *name,
475 struct device *device, bool uevent, bool nowait)
Dmitry Torokhovf8a4bd32010-06-04 00:54:43 -0700476{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477 struct firmware *firmware;
Stephen Boyddddb5542012-03-28 23:30:43 +0200478 struct firmware_priv *fw_priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479
480 if (!firmware_p)
Stephen Boyddddb5542012-03-28 23:30:43 +0200481 return ERR_PTR(-EINVAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482
Jiri Slaby4aed0642005-09-13 01:25:01 -0700483 *firmware_p = firmware = kzalloc(sizeof(*firmware), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484 if (!firmware) {
Bjorn Helgaas266a8132008-10-15 22:04:20 -0700485 dev_err(device, "%s: kmalloc(struct firmware) failed\n",
486 __func__);
Stephen Boyddddb5542012-03-28 23:30:43 +0200487 return ERR_PTR(-ENOMEM);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489
Dmitry Torokhovbcb9bd12010-03-13 23:49:18 -0800490 if (fw_get_builtin_firmware(firmware, name)) {
Rafael J. Wysocki6f18ff92010-02-27 21:43:22 +0100491 dev_dbg(device, "firmware: using built-in firmware %s\n", name);
Stephen Boyddddb5542012-03-28 23:30:43 +0200492 return NULL;
David Woodhouse5658c762008-05-23 13:52:42 +0100493 }
494
Stephen Boyddddb5542012-03-28 23:30:43 +0200495 fw_priv = fw_create_instance(firmware, name, device, uevent, nowait);
496 if (IS_ERR(fw_priv)) {
497 release_firmware(firmware);
498 *firmware_p = NULL;
499 }
500 return fw_priv;
Rafael J. Wysocki811fa402012-03-28 23:29:55 +0200501}
502
503static void _request_firmware_cleanup(const struct firmware **firmware_p)
504{
505 release_firmware(*firmware_p);
506 *firmware_p = NULL;
507}
508
Stephen Boyddddb5542012-03-28 23:30:43 +0200509static int _request_firmware_load(struct firmware_priv *fw_priv, bool uevent,
510 long timeout)
Rafael J. Wysocki811fa402012-03-28 23:29:55 +0200511{
Rafael J. Wysocki9b78c1d2012-03-28 23:30:02 +0200512 int retval = 0;
Stephen Boyddddb5542012-03-28 23:30:43 +0200513 struct device *f_dev = &fw_priv->dev;
Linus Torvaldscaca9512011-08-24 15:55:30 -0700514
Stephen Boyddddb5542012-03-28 23:30:43 +0200515 dev_set_uevent_suppress(f_dev, true);
David Woodhouse5658c762008-05-23 13:52:42 +0100516
Stephen Boyddddb5542012-03-28 23:30:43 +0200517 /* Need to pin this module until class device is destroyed */
518 __module_get(THIS_MODULE);
519
520 retval = device_add(f_dev);
521 if (retval) {
522 dev_err(f_dev, "%s: device_register failed\n", __func__);
523 goto err_put_dev;
524 }
525
526 retval = device_create_bin_file(f_dev, &firmware_attr_data);
527 if (retval) {
528 dev_err(f_dev, "%s: sysfs_create_bin_file failed\n", __func__);
529 goto err_del_dev;
530 }
531
532 retval = device_create_file(f_dev, &dev_attr_loading);
533 if (retval) {
534 dev_err(f_dev, "%s: device_create_file failed\n", __func__);
535 goto err_del_bin_attr;
536 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537
Kay Sievers312c0042005-11-16 09:00:00 +0100538 if (uevent) {
Stephen Boyddddb5542012-03-28 23:30:43 +0200539 dev_set_uevent_suppress(f_dev, false);
540 dev_dbg(f_dev, "firmware: requesting %s\n", fw_priv->fw_id);
Rafael J. Wysocki9b78c1d2012-03-28 23:30:02 +0200541 if (timeout != MAX_SCHEDULE_TIMEOUT)
Dmitry Torokhovf8a4bd32010-06-04 00:54:43 -0700542 mod_timer(&fw_priv->timeout,
Rafael J. Wysocki9b78c1d2012-03-28 23:30:02 +0200543 round_jiffies_up(jiffies + timeout));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544
Dmitry Torokhovf8a4bd32010-06-04 00:54:43 -0700545 kobject_uevent(&fw_priv->dev.kobj, KOBJ_ADD);
546 }
547
548 wait_for_completion(&fw_priv->completion);
549
550 set_bit(FW_STATUS_DONE, &fw_priv->status);
551 del_timer_sync(&fw_priv->timeout);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552
Laura Garciacad1e552006-05-23 23:22:38 +0200553 mutex_lock(&fw_lock);
Dmitry Torokhovf8a4bd32010-06-04 00:54:43 -0700554 if (!fw_priv->fw->size || test_bit(FW_STATUS_ABORT, &fw_priv->status))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555 retval = -ENOENT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556 fw_priv->fw = NULL;
Laura Garciacad1e552006-05-23 23:22:38 +0200557 mutex_unlock(&fw_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558
Stephen Boyddddb5542012-03-28 23:30:43 +0200559 device_remove_file(f_dev, &dev_attr_loading);
560err_del_bin_attr:
561 device_remove_bin_file(f_dev, &firmware_attr_data);
562err_del_dev:
563 device_del(f_dev);
564err_put_dev:
565 put_device(f_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566 return retval;
567}
568
569/**
Kay Sievers312c0042005-11-16 09:00:00 +0100570 * request_firmware: - send firmware request and wait for it
Randy Dunlapeb8e3172005-10-30 15:03:01 -0800571 * @firmware_p: pointer to firmware image
572 * @name: name of firmware file
573 * @device: device for which firmware is being loaded
574 *
575 * @firmware_p will be used to return a firmware image by the name
Abhay Salunke6e3eaab2005-09-06 15:17:13 -0700576 * of @name for device @device.
577 *
578 * Should be called from user context where sleeping is allowed.
579 *
Kay Sievers312c0042005-11-16 09:00:00 +0100580 * @name will be used as $FIRMWARE in the uevent environment and
Abhay Salunke6e3eaab2005-09-06 15:17:13 -0700581 * should be distinctive enough not to be confused with any other
582 * firmware image for this or any other device.
583 **/
584int
585request_firmware(const struct firmware **firmware_p, const char *name,
586 struct device *device)
587{
Stephen Boyddddb5542012-03-28 23:30:43 +0200588 struct firmware_priv *fw_priv;
Rafael J. Wysocki811fa402012-03-28 23:29:55 +0200589 int ret;
590
Stephen Boyddddb5542012-03-28 23:30:43 +0200591 fw_priv = _request_firmware_prepare(firmware_p, name, device, true,
592 false);
593 if (IS_ERR_OR_NULL(fw_priv))
594 return PTR_RET(fw_priv);
Rafael J. Wysocki811fa402012-03-28 23:29:55 +0200595
Rafael J. Wysocki9b78c1d2012-03-28 23:30:02 +0200596 ret = usermodehelper_read_trylock();
597 if (WARN_ON(ret)) {
598 dev_err(device, "firmware: %s will not be loaded\n", name);
599 } else {
Stephen Boyddddb5542012-03-28 23:30:43 +0200600 ret = _request_firmware_load(fw_priv, true,
Rafael J. Wysocki9b78c1d2012-03-28 23:30:02 +0200601 firmware_loading_timeout());
602 usermodehelper_read_unlock();
603 }
Rafael J. Wysocki811fa402012-03-28 23:29:55 +0200604 if (ret)
605 _request_firmware_cleanup(firmware_p);
606
607 return ret;
Abhay Salunke6e3eaab2005-09-06 15:17:13 -0700608}
609
610/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611 * release_firmware: - release the resource associated with a firmware image
Randy Dunlapeb8e3172005-10-30 15:03:01 -0800612 * @fw: firmware resource to release
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613 **/
Dmitry Torokhovbcb9bd12010-03-13 23:49:18 -0800614void release_firmware(const struct firmware *fw)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615{
616 if (fw) {
Dmitry Torokhovbcb9bd12010-03-13 23:49:18 -0800617 if (!fw_is_builtin_firmware(fw))
618 firmware_free_data(fw);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619 kfree(fw);
620 }
621}
622
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623/* Async support */
624struct firmware_work {
625 struct work_struct work;
626 struct module *module;
627 const char *name;
628 struct device *device;
629 void *context;
630 void (*cont)(const struct firmware *fw, void *context);
Bob Liu072fc8f2011-01-26 18:33:32 +0800631 bool uevent;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632};
633
Stephen Boyda36cf842012-03-28 23:31:00 +0200634static void request_firmware_work_func(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635{
Stephen Boyda36cf842012-03-28 23:31:00 +0200636 struct firmware_work *fw_work;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637 const struct firmware *fw;
Stephen Boyddddb5542012-03-28 23:30:43 +0200638 struct firmware_priv *fw_priv;
Rafael J. Wysocki9b78c1d2012-03-28 23:30:02 +0200639 long timeout;
matthieu castet113fab12005-11-13 16:07:39 -0800640 int ret;
Dmitry Torokhovf8a4bd32010-06-04 00:54:43 -0700641
Stephen Boyda36cf842012-03-28 23:31:00 +0200642 fw_work = container_of(work, struct firmware_work, work);
Stephen Boyddddb5542012-03-28 23:30:43 +0200643 fw_priv = _request_firmware_prepare(&fw, fw_work->name, fw_work->device,
644 fw_work->uevent, true);
645 if (IS_ERR_OR_NULL(fw_priv)) {
646 ret = PTR_RET(fw_priv);
Rafael J. Wysocki811fa402012-03-28 23:29:55 +0200647 goto out;
Stephen Boyddddb5542012-03-28 23:30:43 +0200648 }
Rafael J. Wysocki811fa402012-03-28 23:29:55 +0200649
Rafael J. Wysocki9b78c1d2012-03-28 23:30:02 +0200650 timeout = usermodehelper_read_lock_wait(firmware_loading_timeout());
651 if (timeout) {
Stephen Boyddddb5542012-03-28 23:30:43 +0200652 ret = _request_firmware_load(fw_priv, fw_work->uevent, timeout);
Rafael J. Wysocki9b78c1d2012-03-28 23:30:02 +0200653 usermodehelper_read_unlock();
654 } else {
655 dev_dbg(fw_work->device, "firmware: %s loading timed out\n",
656 fw_work->name);
657 ret = -EAGAIN;
658 }
Rafael J. Wysocki811fa402012-03-28 23:29:55 +0200659 if (ret)
660 _request_firmware_cleanup(&fw);
661
662 out:
Johannes Berg9ebfbd42009-10-29 12:36:02 +0100663 fw_work->cont(fw, fw_work->context);
664
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665 module_put(fw_work->module);
666 kfree(fw_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667}
668
669/**
Ben Hutchings3c31f072010-02-14 14:18:53 +0000670 * request_firmware_nowait - asynchronous version of request_firmware
Randy Dunlapeb8e3172005-10-30 15:03:01 -0800671 * @module: module requesting the firmware
Kay Sievers312c0042005-11-16 09:00:00 +0100672 * @uevent: sends uevent to copy the firmware image if this flag
Randy Dunlapeb8e3172005-10-30 15:03:01 -0800673 * is non-zero else the firmware copy must be done manually.
674 * @name: name of firmware file
675 * @device: device for which firmware is being loaded
Johannes Berg9ebfbd42009-10-29 12:36:02 +0100676 * @gfp: allocation flags
Randy Dunlapeb8e3172005-10-30 15:03:01 -0800677 * @context: will be passed over to @cont, and
678 * @fw may be %NULL if firmware request fails.
679 * @cont: function will be called asynchronously when the firmware
680 * request is over.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681 *
Ming Lei7fcab092009-05-29 11:33:19 +0800682 * Asynchronous variant of request_firmware() for user contexts where
683 * it is not possible to sleep for long time. It can't be called
684 * in atomic contexts.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685 **/
686int
687request_firmware_nowait(
Bob Liu072fc8f2011-01-26 18:33:32 +0800688 struct module *module, bool uevent,
Johannes Berg9ebfbd42009-10-29 12:36:02 +0100689 const char *name, struct device *device, gfp_t gfp, void *context,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690 void (*cont)(const struct firmware *fw, void *context))
691{
Dmitry Torokhovf8a4bd32010-06-04 00:54:43 -0700692 struct firmware_work *fw_work;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693
Dmitry Torokhovf8a4bd32010-06-04 00:54:43 -0700694 fw_work = kzalloc(sizeof (struct firmware_work), gfp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695 if (!fw_work)
696 return -ENOMEM;
Dmitry Torokhovf8a4bd32010-06-04 00:54:43 -0700697
698 fw_work->module = module;
699 fw_work->name = name;
700 fw_work->device = device;
701 fw_work->context = context;
702 fw_work->cont = cont;
703 fw_work->uevent = uevent;
704
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705 if (!try_module_get(module)) {
706 kfree(fw_work);
707 return -EFAULT;
708 }
709
Stephen Boyda36cf842012-03-28 23:31:00 +0200710 INIT_WORK(&fw_work->work, request_firmware_work_func);
711 schedule_work(&fw_work->work);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712 return 0;
713}
714
Dmitry Torokhov673fae92010-03-13 23:49:13 -0800715static int __init firmware_class_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716{
Dmitry Torokhov673fae92010-03-13 23:49:13 -0800717 return class_register(&firmware_class);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718}
Dmitry Torokhov673fae92010-03-13 23:49:13 -0800719
720static void __exit firmware_class_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721{
722 class_unregister(&firmware_class);
723}
724
Shaohua Lia30a6a22006-09-27 01:50:52 -0700725fs_initcall(firmware_class_init);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726module_exit(firmware_class_exit);
727
728EXPORT_SYMBOL(release_firmware);
729EXPORT_SYMBOL(request_firmware);
730EXPORT_SYMBOL(request_firmware_nowait);