blob: d45d1e1c40a4fab88a4283f146885cfab41601c8 [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>
Sukadev Bhattiprolu563d0752006-09-29 01:59:31 -070019#include <linux/kthread.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>
Linus Torvalds1da177e2005-04-16 15:20:36 -070023
Greg Kroah-Hartmane55c8792006-09-14 07:30:59 -070024#define to_dev(obj) container_of(obj, struct device, kobj)
25
Markus Rechberger87d37a42007-06-04 18:45:44 +020026MODULE_AUTHOR("Manuel Estrada Sainz");
Linus Torvalds1da177e2005-04-16 15:20:36 -070027MODULE_DESCRIPTION("Multi purpose firmware loading support");
28MODULE_LICENSE("GPL");
29
30enum {
31 FW_STATUS_LOADING,
32 FW_STATUS_DONE,
33 FW_STATUS_ABORT,
Linus Torvalds1da177e2005-04-16 15:20:36 -070034};
35
Dave Jones2f651682007-01-25 15:56:15 -050036static int loading_timeout = 60; /* In seconds */
Linus Torvalds1da177e2005-04-16 15:20:36 -070037
38/* fw_lock could be moved to 'struct firmware_priv' but since it is just
39 * guarding for corner cases a global lock should be OK */
Laura Garciacad1e552006-05-23 23:22:38 +020040static DEFINE_MUTEX(fw_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070041
42struct firmware_priv {
Samuel Ortiz976821d2009-05-27 00:49:31 +020043 char *fw_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -070044 struct completion completion;
45 struct bin_attribute attr_data;
46 struct firmware *fw;
47 unsigned long status;
David Woodhouse6e03a202009-04-09 22:04:07 -070048 struct page **pages;
49 int nr_pages;
50 int page_array_size;
51 const char *vdata;
Linus Torvalds1da177e2005-04-16 15:20:36 -070052 struct timer_list timeout;
Johannes Berge9045f92010-03-29 17:57:20 +020053 bool nowait;
Linus Torvalds1da177e2005-04-16 15:20:36 -070054};
55
David Woodhouse5658c762008-05-23 13:52:42 +010056#ifdef CONFIG_FW_LOADER
57extern struct builtin_fw __start_builtin_fw[];
58extern struct builtin_fw __end_builtin_fw[];
59#else /* Module case. Avoid ifdefs later; it'll all optimise out */
60static struct builtin_fw *__start_builtin_fw;
61static struct builtin_fw *__end_builtin_fw;
62#endif
63
Arjan van de Ven858119e2006-01-14 13:20:43 -080064static void
Linus Torvalds1da177e2005-04-16 15:20:36 -070065fw_load_abort(struct firmware_priv *fw_priv)
66{
67 set_bit(FW_STATUS_ABORT, &fw_priv->status);
68 wmb();
69 complete(&fw_priv->completion);
70}
71
72static ssize_t
Andi Kleen28812fe2010-01-05 12:48:07 +010073firmware_timeout_show(struct class *class,
74 struct class_attribute *attr,
75 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -070076{
77 return sprintf(buf, "%d\n", loading_timeout);
78}
79
80/**
Randy Dunlapeb8e3172005-10-30 15:03:01 -080081 * firmware_timeout_store - set number of seconds to wait for firmware
82 * @class: device class pointer
Randy Dunlape59817b2010-03-10 11:47:58 -080083 * @attr: device attribute pointer
Randy Dunlapeb8e3172005-10-30 15:03:01 -080084 * @buf: buffer to scan for timeout value
85 * @count: number of bytes in @buf
86 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070087 * Sets the number of seconds to wait for the firmware. Once
Randy Dunlapeb8e3172005-10-30 15:03:01 -080088 * this expires an error will be returned to the driver and no
Linus Torvalds1da177e2005-04-16 15:20:36 -070089 * firmware will be provided.
90 *
Randy Dunlapeb8e3172005-10-30 15:03:01 -080091 * Note: zero means 'wait forever'.
Linus Torvalds1da177e2005-04-16 15:20:36 -070092 **/
93static ssize_t
Andi Kleen28812fe2010-01-05 12:48:07 +010094firmware_timeout_store(struct class *class,
95 struct class_attribute *attr,
96 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -070097{
98 loading_timeout = simple_strtol(buf, NULL, 10);
Stanislaw W. Gruszkab92eac02005-06-28 20:44:51 -070099 if (loading_timeout < 0)
100 loading_timeout = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101 return count;
102}
103
104static CLASS_ATTR(timeout, 0644, firmware_timeout_show, firmware_timeout_store);
105
Greg Kroah-Hartmane55c8792006-09-14 07:30:59 -0700106static void fw_dev_release(struct device *dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107
Kay Sievers7eff2e72007-08-14 15:15:12 +0200108static int firmware_uevent(struct device *dev, struct kobj_uevent_env *env)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109{
Greg Kroah-Hartmane55c8792006-09-14 07:30:59 -0700110 struct firmware_priv *fw_priv = dev_get_drvdata(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111
Kay Sievers7eff2e72007-08-14 15:15:12 +0200112 if (add_uevent_var(env, "FIRMWARE=%s", fw_priv->fw_id))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113 return -ENOMEM;
Kay Sievers7eff2e72007-08-14 15:15:12 +0200114 if (add_uevent_var(env, "TIMEOUT=%i", loading_timeout))
kay.sievers@vrfy.org68970892005-04-18 21:57:31 -0700115 return -ENOMEM;
Johannes Berge9045f92010-03-29 17:57:20 +0200116 if (add_uevent_var(env, "ASYNC=%d", fw_priv->nowait))
117 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118
119 return 0;
120}
121
Adrian Bunk1b81d662006-05-20 15:00:16 -0700122static struct class firmware_class = {
123 .name = "firmware",
Greg Kroah-Hartmane55c8792006-09-14 07:30:59 -0700124 .dev_uevent = firmware_uevent,
125 .dev_release = fw_dev_release,
Adrian Bunk1b81d662006-05-20 15:00:16 -0700126};
127
Greg Kroah-Hartmane55c8792006-09-14 07:30:59 -0700128static ssize_t firmware_loading_show(struct device *dev,
129 struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130{
Greg Kroah-Hartmane55c8792006-09-14 07:30:59 -0700131 struct firmware_priv *fw_priv = dev_get_drvdata(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132 int loading = test_bit(FW_STATUS_LOADING, &fw_priv->status);
133 return sprintf(buf, "%d\n", loading);
134}
135
David Woodhousedd336c52010-05-02 11:21:21 +0300136static void firmware_free_data(const struct firmware *fw)
137{
138 int i;
139 vunmap(fw->data);
140 if (fw->pages) {
141 for (i = 0; i < PFN_UP(fw->size); i++)
142 __free_page(fw->pages[i]);
143 kfree(fw->pages);
144 }
145}
146
David Woodhouse6e03a202009-04-09 22:04:07 -0700147/* Some architectures don't have PAGE_KERNEL_RO */
148#ifndef PAGE_KERNEL_RO
149#define PAGE_KERNEL_RO PAGE_KERNEL
150#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151/**
Randy Dunlapeb8e3172005-10-30 15:03:01 -0800152 * firmware_loading_store - set value in the 'loading' control file
Greg Kroah-Hartmane55c8792006-09-14 07:30:59 -0700153 * @dev: device pointer
Randy Dunlapaf9997e2006-12-22 01:06:52 -0800154 * @attr: device attribute pointer
Randy Dunlapeb8e3172005-10-30 15:03:01 -0800155 * @buf: buffer to scan for loading control value
156 * @count: number of bytes in @buf
157 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158 * The relevant values are:
159 *
160 * 1: Start a load, discarding any previous partial load.
Randy Dunlapeb8e3172005-10-30 15:03:01 -0800161 * 0: Conclude the load and hand the data to the driver code.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162 * -1: Conclude the load with an error and discard any written data.
163 **/
Greg Kroah-Hartmane55c8792006-09-14 07:30:59 -0700164static ssize_t firmware_loading_store(struct device *dev,
165 struct device_attribute *attr,
166 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167{
Greg Kroah-Hartmane55c8792006-09-14 07:30:59 -0700168 struct firmware_priv *fw_priv = dev_get_drvdata(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169 int loading = simple_strtol(buf, NULL, 10);
David Woodhouse6e03a202009-04-09 22:04:07 -0700170 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171
172 switch (loading) {
173 case 1:
Laura Garciacad1e552006-05-23 23:22:38 +0200174 mutex_lock(&fw_lock);
Stanislaw W. Gruszkab92eac02005-06-28 20:44:51 -0700175 if (!fw_priv->fw) {
Laura Garciacad1e552006-05-23 23:22:38 +0200176 mutex_unlock(&fw_lock);
Stanislaw W. Gruszkab92eac02005-06-28 20:44:51 -0700177 break;
178 }
David Woodhousedd336c52010-05-02 11:21:21 +0300179 firmware_free_data(fw_priv->fw);
180 memset(fw_priv->fw, 0, sizeof(struct firmware));
181 /* If the pages are not owned by 'struct firmware' */
David Woodhouse6e03a202009-04-09 22:04:07 -0700182 for (i = 0; i < fw_priv->nr_pages; i++)
183 __free_page(fw_priv->pages[i]);
184 kfree(fw_priv->pages);
185 fw_priv->pages = NULL;
186 fw_priv->page_array_size = 0;
187 fw_priv->nr_pages = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188 set_bit(FW_STATUS_LOADING, &fw_priv->status);
Laura Garciacad1e552006-05-23 23:22:38 +0200189 mutex_unlock(&fw_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190 break;
191 case 0:
192 if (test_bit(FW_STATUS_LOADING, &fw_priv->status)) {
David Woodhousedd336c52010-05-02 11:21:21 +0300193 vunmap(fw_priv->fw->data);
David Woodhouse6e03a202009-04-09 22:04:07 -0700194 fw_priv->fw->data = vmap(fw_priv->pages,
195 fw_priv->nr_pages,
196 0, PAGE_KERNEL_RO);
197 if (!fw_priv->fw->data) {
198 dev_err(dev, "%s: vmap() failed\n", __func__);
199 goto err;
200 }
David Woodhousedd336c52010-05-02 11:21:21 +0300201 /* Pages are now owned by 'struct firmware' */
202 fw_priv->fw->pages = fw_priv->pages;
203 fw_priv->pages = NULL;
204
David Woodhouse6e03a202009-04-09 22:04:07 -0700205 fw_priv->page_array_size = 0;
206 fw_priv->nr_pages = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207 complete(&fw_priv->completion);
208 clear_bit(FW_STATUS_LOADING, &fw_priv->status);
209 break;
210 }
211 /* fallthrough */
212 default:
Bjorn Helgaas266a8132008-10-15 22:04:20 -0700213 dev_err(dev, "%s: unexpected value (%d)\n", __func__, loading);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214 /* fallthrough */
215 case -1:
David Woodhouse6e03a202009-04-09 22:04:07 -0700216 err:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217 fw_load_abort(fw_priv);
218 break;
219 }
220
221 return count;
222}
223
Greg Kroah-Hartmane55c8792006-09-14 07:30:59 -0700224static DEVICE_ATTR(loading, 0644, firmware_loading_show, firmware_loading_store);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225
226static ssize_t
Zhang Rui91a69022007-06-09 13:57:22 +0800227firmware_data_read(struct kobject *kobj, struct bin_attribute *bin_attr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228 char *buffer, loff_t offset, size_t count)
229{
Greg Kroah-Hartmane55c8792006-09-14 07:30:59 -0700230 struct device *dev = to_dev(kobj);
231 struct firmware_priv *fw_priv = dev_get_drvdata(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232 struct firmware *fw;
Akinobu Mitaf37e6612008-07-25 01:48:23 -0700233 ssize_t ret_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234
Laura Garciacad1e552006-05-23 23:22:38 +0200235 mutex_lock(&fw_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236 fw = fw_priv->fw;
Stanislaw W. Gruszkab92eac02005-06-28 20:44:51 -0700237 if (!fw || test_bit(FW_STATUS_DONE, &fw_priv->status)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238 ret_count = -ENODEV;
239 goto out;
240 }
Jiri Slaby308975f2009-06-21 23:57:31 +0200241 if (offset > fw->size) {
242 ret_count = 0;
243 goto out;
244 }
David Woodhouse6e03a202009-04-09 22:04:07 -0700245 if (count > fw->size - offset)
246 count = fw->size - offset;
247
248 ret_count = count;
249
250 while (count) {
251 void *page_data;
252 int page_nr = offset >> PAGE_SHIFT;
253 int page_ofs = offset & (PAGE_SIZE-1);
254 int page_cnt = min_t(size_t, PAGE_SIZE - page_ofs, count);
255
256 page_data = kmap(fw_priv->pages[page_nr]);
257
258 memcpy(buffer, page_data + page_ofs, page_cnt);
259
260 kunmap(fw_priv->pages[page_nr]);
261 buffer += page_cnt;
262 offset += page_cnt;
263 count -= page_cnt;
264 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265out:
Laura Garciacad1e552006-05-23 23:22:38 +0200266 mutex_unlock(&fw_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267 return ret_count;
268}
Randy Dunlapeb8e3172005-10-30 15:03:01 -0800269
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270static int
271fw_realloc_buffer(struct firmware_priv *fw_priv, int min_size)
272{
David Woodhouse6e03a202009-04-09 22:04:07 -0700273 int pages_needed = ALIGN(min_size, PAGE_SIZE) >> PAGE_SHIFT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274
David Woodhouse6e03a202009-04-09 22:04:07 -0700275 /* If the array of pages is too small, grow it... */
276 if (fw_priv->page_array_size < pages_needed) {
277 int new_array_size = max(pages_needed,
278 fw_priv->page_array_size * 2);
279 struct page **new_pages;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280
David Woodhouse6e03a202009-04-09 22:04:07 -0700281 new_pages = kmalloc(new_array_size * sizeof(void *),
282 GFP_KERNEL);
283 if (!new_pages) {
284 fw_load_abort(fw_priv);
285 return -ENOMEM;
286 }
287 memcpy(new_pages, fw_priv->pages,
288 fw_priv->page_array_size * sizeof(void *));
289 memset(&new_pages[fw_priv->page_array_size], 0, sizeof(void *) *
290 (new_array_size - fw_priv->page_array_size));
291 kfree(fw_priv->pages);
292 fw_priv->pages = new_pages;
293 fw_priv->page_array_size = new_array_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294 }
David Woodhouse6e03a202009-04-09 22:04:07 -0700295
296 while (fw_priv->nr_pages < pages_needed) {
297 fw_priv->pages[fw_priv->nr_pages] =
298 alloc_page(GFP_KERNEL | __GFP_HIGHMEM);
299
300 if (!fw_priv->pages[fw_priv->nr_pages]) {
301 fw_load_abort(fw_priv);
302 return -ENOMEM;
303 }
304 fw_priv->nr_pages++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306 return 0;
307}
308
309/**
Randy Dunlapeb8e3172005-10-30 15:03:01 -0800310 * firmware_data_write - write method for firmware
Greg Kroah-Hartmane55c8792006-09-14 07:30:59 -0700311 * @kobj: kobject for the device
Randy Dunlap42e61f42007-07-23 21:42:11 -0700312 * @bin_attr: bin_attr structure
Randy Dunlapeb8e3172005-10-30 15:03:01 -0800313 * @buffer: buffer being written
314 * @offset: buffer offset for write in total data store area
315 * @count: buffer size
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316 *
Randy Dunlapeb8e3172005-10-30 15:03:01 -0800317 * Data written to the 'data' attribute will be later handed to
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318 * the driver as a firmware image.
319 **/
320static ssize_t
Zhang Rui91a69022007-06-09 13:57:22 +0800321firmware_data_write(struct kobject *kobj, struct bin_attribute *bin_attr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322 char *buffer, loff_t offset, size_t count)
323{
Greg Kroah-Hartmane55c8792006-09-14 07:30:59 -0700324 struct device *dev = to_dev(kobj);
325 struct firmware_priv *fw_priv = dev_get_drvdata(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326 struct firmware *fw;
327 ssize_t retval;
328
329 if (!capable(CAP_SYS_RAWIO))
330 return -EPERM;
Stanislaw W. Gruszkab92eac02005-06-28 20:44:51 -0700331
Laura Garciacad1e552006-05-23 23:22:38 +0200332 mutex_lock(&fw_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333 fw = fw_priv->fw;
Stanislaw W. Gruszkab92eac02005-06-28 20:44:51 -0700334 if (!fw || test_bit(FW_STATUS_DONE, &fw_priv->status)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335 retval = -ENODEV;
336 goto out;
337 }
338 retval = fw_realloc_buffer(fw_priv, offset + count);
339 if (retval)
340 goto out;
341
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342 retval = count;
David Woodhouse6e03a202009-04-09 22:04:07 -0700343
344 while (count) {
345 void *page_data;
346 int page_nr = offset >> PAGE_SHIFT;
347 int page_ofs = offset & (PAGE_SIZE - 1);
348 int page_cnt = min_t(size_t, PAGE_SIZE - page_ofs, count);
349
350 page_data = kmap(fw_priv->pages[page_nr]);
351
352 memcpy(page_data + page_ofs, buffer, page_cnt);
353
354 kunmap(fw_priv->pages[page_nr]);
355 buffer += page_cnt;
356 offset += page_cnt;
357 count -= page_cnt;
358 }
359
360 fw->size = max_t(size_t, offset, fw->size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361out:
Laura Garciacad1e552006-05-23 23:22:38 +0200362 mutex_unlock(&fw_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363 return retval;
364}
Randy Dunlapeb8e3172005-10-30 15:03:01 -0800365
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366static struct bin_attribute firmware_attr_data_tmpl = {
Tejun Heo7b595752007-06-14 03:45:17 +0900367 .attr = {.name = "data", .mode = 0644},
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368 .size = 0,
369 .read = firmware_data_read,
370 .write = firmware_data_write,
371};
372
Greg Kroah-Hartmane55c8792006-09-14 07:30:59 -0700373static void fw_dev_release(struct device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374{
Greg Kroah-Hartmane55c8792006-09-14 07:30:59 -0700375 struct firmware_priv *fw_priv = dev_get_drvdata(dev);
David Woodhouse6e03a202009-04-09 22:04:07 -0700376 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377
David Woodhouse6e03a202009-04-09 22:04:07 -0700378 for (i = 0; i < fw_priv->nr_pages; i++)
379 __free_page(fw_priv->pages[i]);
380 kfree(fw_priv->pages);
Samuel Ortiz976821d2009-05-27 00:49:31 +0200381 kfree(fw_priv->fw_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382 kfree(fw_priv);
Catalin Marinas0f2f2222009-07-08 11:17:40 +0100383 kfree(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384
385 module_put(THIS_MODULE);
386}
387
388static void
389firmware_class_timeout(u_long data)
390{
391 struct firmware_priv *fw_priv = (struct firmware_priv *) data;
392 fw_load_abort(fw_priv);
393}
394
Greg Kroah-Hartmane55c8792006-09-14 07:30:59 -0700395static int fw_register_device(struct device **dev_p, const char *fw_name,
396 struct device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397{
398 int retval;
Jiri Slaby4aed0642005-09-13 01:25:01 -0700399 struct firmware_priv *fw_priv = kzalloc(sizeof(*fw_priv),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400 GFP_KERNEL);
Greg Kroah-Hartmane55c8792006-09-14 07:30:59 -0700401 struct device *f_dev = kzalloc(sizeof(*f_dev), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402
Greg Kroah-Hartmane55c8792006-09-14 07:30:59 -0700403 *dev_p = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404
Greg Kroah-Hartmane55c8792006-09-14 07:30:59 -0700405 if (!fw_priv || !f_dev) {
Bjorn Helgaas266a8132008-10-15 22:04:20 -0700406 dev_err(device, "%s: kmalloc failed\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407 retval = -ENOMEM;
408 goto error_kfree;
409 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410
411 init_completion(&fw_priv->completion);
412 fw_priv->attr_data = firmware_attr_data_tmpl;
Samuel Ortiz976821d2009-05-27 00:49:31 +0200413 fw_priv->fw_id = kstrdup(fw_name, GFP_KERNEL);
414 if (!fw_priv->fw_id) {
415 dev_err(device, "%s: Firmware name allocation failed\n",
416 __func__);
417 retval = -ENOMEM;
418 goto error_kfree;
419 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420
421 fw_priv->timeout.function = firmware_class_timeout;
422 fw_priv->timeout.data = (u_long) fw_priv;
423 init_timer(&fw_priv->timeout);
424
Greg Kroah-Hartmanacc0e902009-06-02 15:39:55 -0700425 dev_set_name(f_dev, "%s", dev_name(device));
Greg Kroah-Hartmane55c8792006-09-14 07:30:59 -0700426 f_dev->parent = device;
427 f_dev->class = &firmware_class;
428 dev_set_drvdata(f_dev, fw_priv);
Ming Leif67f1292009-03-01 21:10:49 +0800429 dev_set_uevent_suppress(f_dev, 1);
Greg Kroah-Hartmane55c8792006-09-14 07:30:59 -0700430 retval = device_register(f_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431 if (retval) {
Bjorn Helgaas266a8132008-10-15 22:04:20 -0700432 dev_err(device, "%s: device_register failed\n", __func__);
Ming Lei6acf70f2009-04-23 22:31:52 +0800433 put_device(f_dev);
Catalin Marinas0f2f2222009-07-08 11:17:40 +0100434 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435 }
Greg Kroah-Hartmane55c8792006-09-14 07:30:59 -0700436 *dev_p = f_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437 return 0;
438
439error_kfree:
Greg Kroah-Hartmane55c8792006-09-14 07:30:59 -0700440 kfree(f_dev);
Ming Lei6acf70f2009-04-23 22:31:52 +0800441 kfree(fw_priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442 return retval;
443}
444
Greg Kroah-Hartmane55c8792006-09-14 07:30:59 -0700445static int fw_setup_device(struct firmware *fw, struct device **dev_p,
446 const char *fw_name, struct device *device,
Johannes Berge9045f92010-03-29 17:57:20 +0200447 int uevent, bool nowait)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448{
Greg Kroah-Hartmane55c8792006-09-14 07:30:59 -0700449 struct device *f_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450 struct firmware_priv *fw_priv;
451 int retval;
452
Greg Kroah-Hartmane55c8792006-09-14 07:30:59 -0700453 *dev_p = NULL;
454 retval = fw_register_device(&f_dev, fw_name, device);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455 if (retval)
456 goto out;
457
458 /* Need to pin this module until class device is destroyed */
459 __module_get(THIS_MODULE);
460
Greg Kroah-Hartmane55c8792006-09-14 07:30:59 -0700461 fw_priv = dev_get_drvdata(f_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462
Johannes Berge9045f92010-03-29 17:57:20 +0200463 fw_priv->nowait = nowait;
464
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465 fw_priv->fw = fw;
Jiri Kosinae1955ca2010-03-09 19:30:28 +0100466 sysfs_bin_attr_init(&fw_priv->attr_data);
Greg Kroah-Hartmane55c8792006-09-14 07:30:59 -0700467 retval = sysfs_create_bin_file(&f_dev->kobj, &fw_priv->attr_data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468 if (retval) {
Bjorn Helgaas266a8132008-10-15 22:04:20 -0700469 dev_err(device, "%s: sysfs_create_bin_file failed\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470 goto error_unreg;
471 }
472
Greg Kroah-Hartmane55c8792006-09-14 07:30:59 -0700473 retval = device_create_file(f_dev, &dev_attr_loading);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474 if (retval) {
Bjorn Helgaas266a8132008-10-15 22:04:20 -0700475 dev_err(device, "%s: device_create_file failed\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476 goto error_unreg;
477 }
478
Kay Sievers312c0042005-11-16 09:00:00 +0100479 if (uevent)
Ming Leif67f1292009-03-01 21:10:49 +0800480 dev_set_uevent_suppress(f_dev, 0);
Greg Kroah-Hartmane55c8792006-09-14 07:30:59 -0700481 *dev_p = f_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482 goto out;
483
484error_unreg:
Greg Kroah-Hartmane55c8792006-09-14 07:30:59 -0700485 device_unregister(f_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486out:
487 return retval;
488}
489
Abhay Salunke6e3eaab2005-09-06 15:17:13 -0700490static int
491_request_firmware(const struct firmware **firmware_p, const char *name,
Johannes Berge9045f92010-03-29 17:57:20 +0200492 struct device *device, int uevent, bool nowait)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493{
Greg Kroah-Hartmane55c8792006-09-14 07:30:59 -0700494 struct device *f_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495 struct firmware_priv *fw_priv;
496 struct firmware *firmware;
David Woodhouse5658c762008-05-23 13:52:42 +0100497 struct builtin_fw *builtin;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498 int retval;
499
500 if (!firmware_p)
501 return -EINVAL;
502
Jiri Slaby4aed0642005-09-13 01:25:01 -0700503 *firmware_p = firmware = kzalloc(sizeof(*firmware), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504 if (!firmware) {
Bjorn Helgaas266a8132008-10-15 22:04:20 -0700505 dev_err(device, "%s: kmalloc(struct firmware) failed\n",
506 __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507 retval = -ENOMEM;
508 goto out;
509 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510
David Woodhouse5658c762008-05-23 13:52:42 +0100511 for (builtin = __start_builtin_fw; builtin != __end_builtin_fw;
512 builtin++) {
513 if (strcmp(name, builtin->name))
514 continue;
Rafael J. Wysocki6f18ff92010-02-27 21:43:22 +0100515 dev_dbg(device, "firmware: using built-in firmware %s\n", name);
David Woodhouse5658c762008-05-23 13:52:42 +0100516 firmware->size = builtin->size;
517 firmware->data = builtin->data;
518 return 0;
519 }
520
521 if (uevent)
Rafael J. Wysocki6f18ff92010-02-27 21:43:22 +0100522 dev_dbg(device, "firmware: requesting %s\n", name);
David Woodhouse5658c762008-05-23 13:52:42 +0100523
Johannes Berge9045f92010-03-29 17:57:20 +0200524 retval = fw_setup_device(firmware, &f_dev, name, device,
525 uevent, nowait);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526 if (retval)
527 goto error_kfree_fw;
528
Greg Kroah-Hartmane55c8792006-09-14 07:30:59 -0700529 fw_priv = dev_get_drvdata(f_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530
Kay Sievers312c0042005-11-16 09:00:00 +0100531 if (uevent) {
Abhay Salunke6e3eaab2005-09-06 15:17:13 -0700532 if (loading_timeout > 0) {
533 fw_priv->timeout.expires = jiffies + loading_timeout * HZ;
534 add_timer(&fw_priv->timeout);
535 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536
Greg Kroah-Hartmane55c8792006-09-14 07:30:59 -0700537 kobject_uevent(&f_dev->kobj, KOBJ_ADD);
Abhay Salunke6e3eaab2005-09-06 15:17:13 -0700538 wait_for_completion(&fw_priv->completion);
539 set_bit(FW_STATUS_DONE, &fw_priv->status);
540 del_timer_sync(&fw_priv->timeout);
541 } else
542 wait_for_completion(&fw_priv->completion);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543
Laura Garciacad1e552006-05-23 23:22:38 +0200544 mutex_lock(&fw_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545 if (!fw_priv->fw->size || test_bit(FW_STATUS_ABORT, &fw_priv->status)) {
546 retval = -ENOENT;
547 release_firmware(fw_priv->fw);
548 *firmware_p = NULL;
549 }
550 fw_priv->fw = NULL;
Laura Garciacad1e552006-05-23 23:22:38 +0200551 mutex_unlock(&fw_lock);
Greg Kroah-Hartmane55c8792006-09-14 07:30:59 -0700552 device_unregister(f_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553 goto out;
554
555error_kfree_fw:
556 kfree(firmware);
557 *firmware_p = NULL;
558out:
559 return retval;
560}
561
562/**
Kay Sievers312c0042005-11-16 09:00:00 +0100563 * request_firmware: - send firmware request and wait for it
Randy Dunlapeb8e3172005-10-30 15:03:01 -0800564 * @firmware_p: pointer to firmware image
565 * @name: name of firmware file
566 * @device: device for which firmware is being loaded
567 *
568 * @firmware_p will be used to return a firmware image by the name
Abhay Salunke6e3eaab2005-09-06 15:17:13 -0700569 * of @name for device @device.
570 *
571 * Should be called from user context where sleeping is allowed.
572 *
Kay Sievers312c0042005-11-16 09:00:00 +0100573 * @name will be used as $FIRMWARE in the uevent environment and
Abhay Salunke6e3eaab2005-09-06 15:17:13 -0700574 * should be distinctive enough not to be confused with any other
575 * firmware image for this or any other device.
576 **/
577int
578request_firmware(const struct firmware **firmware_p, const char *name,
579 struct device *device)
580{
Kay Sievers312c0042005-11-16 09:00:00 +0100581 int uevent = 1;
Johannes Berge9045f92010-03-29 17:57:20 +0200582 return _request_firmware(firmware_p, name, device, uevent, false);
Abhay Salunke6e3eaab2005-09-06 15:17:13 -0700583}
584
585/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586 * release_firmware: - release the resource associated with a firmware image
Randy Dunlapeb8e3172005-10-30 15:03:01 -0800587 * @fw: firmware resource to release
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588 **/
589void
590release_firmware(const struct firmware *fw)
591{
David Woodhouse5658c762008-05-23 13:52:42 +0100592 struct builtin_fw *builtin;
593
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594 if (fw) {
David Woodhouse5658c762008-05-23 13:52:42 +0100595 for (builtin = __start_builtin_fw; builtin != __end_builtin_fw;
596 builtin++) {
597 if (fw->data == builtin->data)
598 goto free_fw;
599 }
David Woodhousedd336c52010-05-02 11:21:21 +0300600 firmware_free_data(fw);
David Woodhouse5658c762008-05-23 13:52:42 +0100601 free_fw:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602 kfree(fw);
603 }
604}
605
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606/* Async support */
607struct firmware_work {
608 struct work_struct work;
609 struct module *module;
610 const char *name;
611 struct device *device;
612 void *context;
613 void (*cont)(const struct firmware *fw, void *context);
Kay Sievers312c0042005-11-16 09:00:00 +0100614 int uevent;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615};
616
617static int
618request_firmware_work_func(void *arg)
619{
620 struct firmware_work *fw_work = arg;
621 const struct firmware *fw;
matthieu castet113fab12005-11-13 16:07:39 -0800622 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623 if (!arg) {
624 WARN_ON(1);
625 return 0;
626 }
matthieu castet113fab12005-11-13 16:07:39 -0800627 ret = _request_firmware(&fw, fw_work->name, fw_work->device,
Johannes Berge9045f92010-03-29 17:57:20 +0200628 fw_work->uevent, true);
Johannes Berg9ebfbd42009-10-29 12:36:02 +0100629
630 fw_work->cont(fw, fw_work->context);
631
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632 module_put(fw_work->module);
633 kfree(fw_work);
matthieu castet113fab12005-11-13 16:07:39 -0800634 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635}
636
637/**
Ben Hutchings3c31f072010-02-14 14:18:53 +0000638 * request_firmware_nowait - asynchronous version of request_firmware
Randy Dunlapeb8e3172005-10-30 15:03:01 -0800639 * @module: module requesting the firmware
Kay Sievers312c0042005-11-16 09:00:00 +0100640 * @uevent: sends uevent to copy the firmware image if this flag
Randy Dunlapeb8e3172005-10-30 15:03:01 -0800641 * is non-zero else the firmware copy must be done manually.
642 * @name: name of firmware file
643 * @device: device for which firmware is being loaded
Johannes Berg9ebfbd42009-10-29 12:36:02 +0100644 * @gfp: allocation flags
Randy Dunlapeb8e3172005-10-30 15:03:01 -0800645 * @context: will be passed over to @cont, and
646 * @fw may be %NULL if firmware request fails.
647 * @cont: function will be called asynchronously when the firmware
648 * request is over.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649 *
Ming Lei7fcab092009-05-29 11:33:19 +0800650 * Asynchronous variant of request_firmware() for user contexts where
651 * it is not possible to sleep for long time. It can't be called
652 * in atomic contexts.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653 **/
654int
655request_firmware_nowait(
Kay Sievers312c0042005-11-16 09:00:00 +0100656 struct module *module, int uevent,
Johannes Berg9ebfbd42009-10-29 12:36:02 +0100657 const char *name, struct device *device, gfp_t gfp, void *context,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658 void (*cont)(const struct firmware *fw, void *context))
659{
Sukadev Bhattiprolu563d0752006-09-29 01:59:31 -0700660 struct task_struct *task;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661 struct firmware_work *fw_work = kmalloc(sizeof (struct firmware_work),
Johannes Berg9ebfbd42009-10-29 12:36:02 +0100662 gfp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663
664 if (!fw_work)
665 return -ENOMEM;
666 if (!try_module_get(module)) {
667 kfree(fw_work);
668 return -EFAULT;
669 }
670
671 *fw_work = (struct firmware_work) {
672 .module = module,
673 .name = name,
674 .device = device,
675 .context = context,
676 .cont = cont,
Kay Sievers312c0042005-11-16 09:00:00 +0100677 .uevent = uevent,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678 };
679
Sukadev Bhattiprolu563d0752006-09-29 01:59:31 -0700680 task = kthread_run(request_firmware_work_func, fw_work,
681 "firmware/%s", name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682
Sukadev Bhattiprolu563d0752006-09-29 01:59:31 -0700683 if (IS_ERR(task)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684 fw_work->cont(NULL, fw_work->context);
matthieu castet113fab12005-11-13 16:07:39 -0800685 module_put(fw_work->module);
686 kfree(fw_work);
Sukadev Bhattiprolu563d0752006-09-29 01:59:31 -0700687 return PTR_ERR(task);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688 }
689 return 0;
690}
691
692static int __init
693firmware_class_init(void)
694{
695 int error;
696 error = class_register(&firmware_class);
697 if (error) {
Harvey Harrison2b3a3022008-03-04 16:41:05 -0800698 printk(KERN_ERR "%s: class_register failed\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699 return error;
700 }
701 error = class_create_file(&firmware_class, &class_attr_timeout);
702 if (error) {
703 printk(KERN_ERR "%s: class_create_file failed\n",
Harvey Harrison2b3a3022008-03-04 16:41:05 -0800704 __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705 class_unregister(&firmware_class);
706 }
707 return error;
708
709}
710static void __exit
711firmware_class_exit(void)
712{
713 class_unregister(&firmware_class);
714}
715
Shaohua Lia30a6a22006-09-27 01:50:52 -0700716fs_initcall(firmware_class_init);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717module_exit(firmware_class_exit);
718
719EXPORT_SYMBOL(release_firmware);
720EXPORT_SYMBOL(request_firmware);
721EXPORT_SYMBOL(request_firmware_nowait);