Searched refs:firmware (Results 1 - 25 of 99) sorted by relevance

1234

/freebsd-9.3-release/sys/sys/
H A Dfirmware.h31 * Loadable firmware support.
33 * The firmware abstraction provides an interface for loading firmware
38 * one or more firmware images that are stored as opaque data arrays
40 * firmware by name, and are returned a struct firmware * below on success.
41 * The kernel keeps track of references to firmware images to allow/prevent
51 struct firmware { struct
58 const struct firmware *firmware_register(const char *,
59 const void *, size_t, unsigned int, const struct firmware *);
[all...]
/freebsd-9.3-release/share/examples/kld/firmware/fwimage/
H A DMakefile4 FIRMWS= firmware.img:beastie
6 CLEANFILES= firmware.img
8 firmware.img: firmware.img.uu
/freebsd-9.3-release/share/examples/kld/
H A DMakefile70 SUBDIR= cdev dyn_sysctl firmware khelp syscall
/freebsd-9.3-release/sys/modules/firmware/
H A DMakefile5 KMOD= firmware
/freebsd-9.3-release/share/examples/kld/firmware/fwconsumer/
H A Dfw_consumer.c35 #include <sys/firmware.h>
39 static const struct firmware *fp;
78 MODULE_DEPEND(fw_consumer, firmware, 1, 1, 1);
/freebsd-9.3-release/sys/dev/mxge/
H A Dmxge_eth_z8e.c11 #include <sys/firmware.h>
18 const struct firmware *fp, *parent;
46 MODULE_DEPEND(mxge_eth_z8e_fw, firmware, 1, 1, 1);
H A Dmxge_ethp_z8e.c11 #include <sys/firmware.h>
18 const struct firmware *fp, *parent;
46 MODULE_DEPEND(mxge_ethp_z8e_fw, firmware, 1, 1, 1);
H A Dmxge_rss_eth_z8e.c11 #include <sys/firmware.h>
18 const struct firmware *fp, *parent;
46 MODULE_DEPEND(mxge_rss_eth_z8e_fw, firmware, 1, 1, 1);
H A Dmxge_rss_ethp_z8e.c11 #include <sys/firmware.h>
18 const struct firmware *fp, *parent;
46 MODULE_DEPEND(mxge_rss_ethp_z8e_fw, firmware, 1, 1, 1);
/freebsd-9.3-release/sys/dev/cxgb/
H A Dcxgb_t3fw.c11 #include <sys/firmware.h>
22 const struct firmware *fp, *parent;
50 MODULE_DEPEND(cxgb_t3fw, firmware, 1, 1, 1);
55 const struct firmware *fp, *parent;
83 MODULE_DEPEND(cxgb_t3b_protocol_sram, firmware, 1, 1, 1);
88 const struct firmware *fp, *parent;
116 MODULE_DEPEND(cxgb_t3b_tp_eeprom, firmware, 1, 1, 1);
121 const struct firmware *fp, *parent;
149 MODULE_DEPEND(cxgb_t3c_protocol_sram, firmware, 1, 1, 1);
154 const struct firmware *f
[all...]
/freebsd-9.3-release/usr.sbin/bluetooth/ath3kfw/
H A Dath3kfw.c59 char const *firmware);
70 char const *firmware; local
79 firmware = ATH3KFW_FW;
88 case 'f': /* firmware file */
89 firmware = optarg;
113 if (download_firmware(dev, firmware) < 0) {
115 firmware, bus, addr);
180 * Download firmware
184 download_firmware(struct libusb20_device *dev, char const *firmware) argument
209 if ((fd = open(firmware, O_RDONL
[all...]
/freebsd-9.3-release/sbin/nvmecontrol/
H A DMakefile4 SRCS= nvmecontrol.c devlist.c firmware.c identify.c logpage.c \
H A Dnvmecontrol.h56 " nvmecontrol firmware [-s slot] [-f path_to_firmware] [-a] <controller id>\n"
63 void firmware(int argc, char *argv[]);
H A Didentify.c77 cdata->oacs.firmware ? "Supported" : "Not Supported");
81 if (cdata->oacs.firmware != 0)
86 if (cdata->oacs.firmware != 0)
H A Dfirmware.c82 * The NVMe spec does not explicitly state a maximum firmware image
134 err(1, "firmware download request failed");
137 errx(1, "firmware download request returned error");
155 err(1, "firmware activate request failed");
162 errx(1, "firmware activate request returned error");
176 firmware(int argc, char *argv[]) function
229 "activate ([-a]) firmware image action\n"
244 if (cdata.oacs.firmware == 0)
246 "controller does not support firmware activate/download");
258 "slot %d does not contain valid firmware,\
[all...]
/freebsd-9.3-release/usr.sbin/bluetooth/bt3cfw/
H A Dbt3cfw.c99 uint8_t *firmware = NULL; local
126 firmware = (uint8_t *) calloc(BT3CFW_MAX_FIRMWARE_SIZE,
128 if (firmware == NULL) {
129 syslog(LOG_ERR, "Could not allocate firmware buffer");
134 syslog(LOG_ERR, "Could not open BT3C firmware file %s. %s (%d)",
153 (firmware + firmware_size);
157 syslog(LOG_ERR, "Could not add new firmware " \
174 syslog(LOG_ERR, "Could not add new firmware " \
199 syslog(LOG_ERR, "Invalid firmware file %s. Checksum " \
207 /* Send firmware t
[all...]
/freebsd-9.3-release/sys/modules/cxgbe/t4_firmware/
H A DMakefile5 T4FW = ${.CURDIR}/../../../dev/cxgbe/firmware
/freebsd-9.3-release/sys/modules/cxgbe/t5_firmware/
H A DMakefile5 T5FW = ${.CURDIR}/../../../dev/cxgbe/firmware
/freebsd-9.3-release/sys/kern/
H A Dsubr_firmware.c40 #include <sys/firmware.h>
50 * Loadable firmware support. See sys/sys/firmware.h and firmware(9)
53 * 'struct firmware' is the user-visible part of the firmware table.
108 struct firmware fw; /* externally visible information */
112 * PRIV_FW returns the pointer to the container of struct firmware *x.
135 * This mutex protects accesses to the firmware table.
138 MTX_SYSINIT(firmware,
[all...]
/freebsd-9.3-release/share/examples/
H A DMakefile94 kld/firmware/Makefile \
95 kld/firmware/README \
96 kld/firmware/fwconsumer/Makefile \
97 kld/firmware/fwconsumer/fw_consumer.c \
98 kld/firmware/fwimage/Makefile \
99 kld/firmware/fwimage/firmware.img.uu \
/freebsd-9.3-release/contrib/ntp/ntpd/
H A Drefclock_neoclock4x.c71 * firmware you NeoClock4X device uses.
74 * line to "#if 1" and make sure that the defined firmware
75 * matches the firmware off your NeoClock4X receiver!
83 /* at this time only firmware version A is known */
116 char firmware[80]; member in struct:neoclock4x_unit
319 strlcpy(up->firmware, "?", sizeof(up->firmware));
338 strlcpy(up->firmware, "(c) 2002 NEOL S.A. FRANCE / L0.01 NDF:A:* (compile time)",
339 sizeof(up->firmware));
342 msyslog(LOG_EMERG, "NeoClock4X(%d): unknown firmware define
898 neol_query_firmware(int fd, int unit, char *firmware, size_t maxlen) argument
1032 neol_check_firmware(int unit, const char *firmware, char *firmwaretag) argument
[all...]
/freebsd-9.3-release/sys/dev/bwi/
H A Dif_bwivar.h452 struct firmware;
469 const struct firmware *mac_stub;
470 const struct firmware *mac_ucode;
471 const struct firmware *mac_pcm;
472 const struct firmware *mac_iv;
473 const struct firmware *mac_iv_ext;
/freebsd-9.3-release/sys/dev/malo/
H A Dif_malohal.c41 #include <sys/firmware.h>
181 * Low level firmware cmd block handshake support.
223 device_printf(mh->mh_dev, "firmware hung, skipping cmd 0x%x\n",
287 * Reset internal state after a firmware download.
381 const struct firmware *fw;
391 device_printf(mh->mh_dev, "load %s firmware image (%zu bytes)\n",
441 malo_hal_fwload_main(struct malo_hal *mh, char *firmware) argument
443 const struct firmware *fw;
452 fw = firmware_get(firmware);
454 device_printf(mh->mh_dev, "could not read firmware
488 malo_hal_fwload(struct malo_hal *mh, char *helper, char *firmware) argument
[all...]
/freebsd-9.3-release/sys/dev/ctau/
H A Dctddk.h486 const unsigned char *firmware, long bits,
490 int ct_download (port_t port, const unsigned char *firmware, long bits,
492 int ct_download2 (port_t port, const unsigned char *firmware);
493 int ct_setup_board (ct_board_t *b, const unsigned char *firmware,
/freebsd-9.3-release/sys/dev/ipw/
H A Dif_ipwvar.h115 const struct firmware *sc_firmware;

Completed in 270 milliseconds

1234