2005-04-16 22:20:36 +00:00
|
|
|
#ifndef _LINUX_FIRMWARE_H
|
|
|
|
#define _LINUX_FIRMWARE_H
|
2008-05-23 12:52:42 +00:00
|
|
|
|
2005-04-16 22:20:36 +00:00
|
|
|
#include <linux/types.h>
|
2008-05-23 12:52:42 +00:00
|
|
|
#include <linux/compiler.h>
|
2009-10-29 11:36:02 +00:00
|
|
|
#include <linux/gfp.h>
|
2008-05-23 12:52:42 +00:00
|
|
|
|
2005-09-06 22:17:13 +00:00
|
|
|
#define FW_ACTION_NOHOTPLUG 0
|
|
|
|
#define FW_ACTION_HOTPLUG 1
|
|
|
|
|
2005-04-16 22:20:36 +00:00
|
|
|
struct firmware {
|
|
|
|
size_t size;
|
2008-05-23 17:38:49 +00:00
|
|
|
const u8 *data;
|
2010-05-02 08:21:21 +00:00
|
|
|
struct page **pages;
|
2012-08-04 04:01:21 +00:00
|
|
|
|
|
|
|
/* firmware loader private fields */
|
|
|
|
void *priv;
|
2005-04-16 22:20:36 +00:00
|
|
|
};
|
2008-03-07 14:57:54 +00:00
|
|
|
|
2011-05-26 17:46:22 +00:00
|
|
|
struct module;
|
2005-04-16 22:20:36 +00:00
|
|
|
struct device;
|
2008-03-07 14:57:54 +00:00
|
|
|
|
2008-05-23 12:52:42 +00:00
|
|
|
struct builtin_fw {
|
|
|
|
char *name;
|
|
|
|
void *data;
|
|
|
|
unsigned long size;
|
|
|
|
};
|
|
|
|
|
|
|
|
/* We have to play tricks here much like stringify() to get the
|
|
|
|
__COUNTER__ macro to be expanded as we want it */
|
|
|
|
#define __fw_concat1(x, y) x##y
|
|
|
|
#define __fw_concat(x, y) __fw_concat1(x, y)
|
|
|
|
|
|
|
|
#define DECLARE_BUILTIN_FIRMWARE(name, blob) \
|
|
|
|
DECLARE_BUILTIN_FIRMWARE_SIZE(name, &(blob), sizeof(blob))
|
|
|
|
|
|
|
|
#define DECLARE_BUILTIN_FIRMWARE_SIZE(name, blob, size) \
|
|
|
|
static const struct builtin_fw __fw_concat(__builtin_fw,__COUNTER__) \
|
|
|
|
__used __section(.builtin_fw) = { name, blob, size }
|
|
|
|
|
2008-07-04 16:59:27 +00:00
|
|
|
#if defined(CONFIG_FW_LOADER) || (defined(CONFIG_FW_LOADER_MODULE) && defined(MODULE))
|
2005-04-16 22:20:36 +00:00
|
|
|
int request_firmware(const struct firmware **fw, const char *name,
|
|
|
|
struct device *device);
|
|
|
|
int request_firmware_nowait(
|
2011-01-26 10:33:32 +00:00
|
|
|
struct module *module, bool uevent,
|
2009-10-29 11:36:02 +00:00
|
|
|
const char *name, struct device *device, gfp_t gfp, void *context,
|
2005-04-16 22:20:36 +00:00
|
|
|
void (*cont)(const struct firmware *fw, void *context));
|
2014-07-02 16:55:05 +00:00
|
|
|
int request_firmware_direct(const struct firmware **fw, const char *name,
|
|
|
|
struct device *device);
|
2016-08-02 21:04:28 +00:00
|
|
|
int request_firmware_into_buf(const struct firmware **firmware_p,
|
|
|
|
const char *name, struct device *device, void *buf, size_t size);
|
2005-04-16 22:20:36 +00:00
|
|
|
|
|
|
|
void release_firmware(const struct firmware *fw);
|
2008-03-07 14:57:54 +00:00
|
|
|
#else
|
|
|
|
static inline int request_firmware(const struct firmware **fw,
|
|
|
|
const char *name,
|
|
|
|
struct device *device)
|
|
|
|
{
|
|
|
|
return -EINVAL;
|
|
|
|
}
|
|
|
|
static inline int request_firmware_nowait(
|
2011-01-26 10:33:32 +00:00
|
|
|
struct module *module, bool uevent,
|
2009-10-29 11:36:02 +00:00
|
|
|
const char *name, struct device *device, gfp_t gfp, void *context,
|
2008-03-07 14:57:54 +00:00
|
|
|
void (*cont)(const struct firmware *fw, void *context))
|
|
|
|
{
|
|
|
|
return -EINVAL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void release_firmware(const struct firmware *fw)
|
|
|
|
{
|
|
|
|
}
|
2012-08-04 04:01:22 +00:00
|
|
|
|
2014-07-02 16:55:05 +00:00
|
|
|
static inline int request_firmware_direct(const struct firmware **fw,
|
|
|
|
const char *name,
|
|
|
|
struct device *device)
|
|
|
|
{
|
|
|
|
return -EINVAL;
|
|
|
|
}
|
2008-03-07 14:57:54 +00:00
|
|
|
|
2016-08-02 21:04:28 +00:00
|
|
|
static inline int request_firmware_into_buf(const struct firmware **firmware_p,
|
|
|
|
const char *name, struct device *device, void *buf, size_t size)
|
|
|
|
{
|
|
|
|
return -EINVAL;
|
|
|
|
}
|
|
|
|
|
2013-12-02 14:38:16 +00:00
|
|
|
#endif
|
2005-04-16 22:20:36 +00:00
|
|
|
#endif
|