Searched refs:nvram (Results 1 - 23 of 23) sorted by relevance

/freebsd-11-stable/usr.sbin/
H A DMakefile.powerpc3 SUBDIR+= nvram
/freebsd-11-stable/sys/modules/nvram/
H A DMakefile1 # $FreeBSD: stable/11/sys/modules/nvram/Makefile 319182 2017-05-30 04:11:12Z ngie $
3 .PATH: ${SRCTOP}/sys/dev/nvram
5 KMOD= nvram
6 SRCS= nvram.c
/freebsd-11-stable/usr.sbin/nvram/
H A DMakefile3 PROG= nvram
4 MAN= nvram.8
/freebsd-11-stable/sys/dev/bhnd/cores/chipc/
H A Dchipc.h36 #include <dev/bhnd/nvram/bhnd_nvram.h>
H A Dbhnd_sprom_chipc.c46 #include <dev/bhnd/nvram/bhnd_nvram.h>
47 #include <dev/bhnd/nvram/bhnd_spromvar.h>
H A Dchipcvar.h38 #include <dev/bhnd/nvram/bhnd_spromvar.h>
/freebsd-11-stable/sys/dev/sfxge/
H A Dsfxge_nvram.c60 size_t total_size = ip->u.nvram.size;
69 rc = copyout(fake_dynamic_cfg_nvram, ip->u.nvram.data,
84 rc = copyin(ip->u.nvram.data + off, buf, len);
88 ip->u.nvram.offset + off, buf, len);
93 ip->u.nvram.offset + off, buf, len);
96 rc = copyout(buf, ip->u.nvram.data + off, len);
153 if (ip->u.nvram.type > SFXGE_NVRAM_TYPE_DYNAMIC_CFG)
155 type = nvram_types[ip->u.nvram.type];
157 (ip->u.nvram.op == SFXGE_NVRAM_OP_WRITE ||
158 ip->u.nvram
[all...]
H A Dsfxge_ioc.h97 } nvram; member in union:sfxge_ioc_s::__anon11636
/freebsd-11-stable/sys/dev/qlnx/qlnxe/
H A Dqlnx_ioctl.c591 qlnx_write_nvram(qlnx_host_t *ha, qlnx_nvram_t *nvram, uint32_t cmd) argument
596 if ((nvram->data == NULL) || (nvram->data_len == 0))
599 buf = qlnx_zalloc(nvram->data_len);
601 ret = copyin(nvram->data, buf, nvram->data_len);
605 cmd, nvram->data, nvram->data_len, ret);
609 nvram->offset, buf, nvram
622 qlnx_read_nvram(qlnx_host_t *ha, qlnx_nvram_t *nvram) argument
649 qlnx_get_nvram_resp(qlnx_host_t *ha, qlnx_nvram_t *nvram) argument
676 qlnx_nvram(qlnx_host_t *ha, qlnx_nvram_t *nvram) argument
[all...]
/freebsd-11-stable/sys/modules/bhnd/
H A DMakefile4 .PATH: ${SRCTOP}/sys/dev/bhnd/nvram
/freebsd-11-stable/sys/dev/bhnd/bhndb/
H A Dbhndb_pci_sprom.c53 #include <dev/bhnd/nvram/bhnd_spromvar.h>
H A Dbhndb.c54 #include <dev/bhnd/nvram/bhnd_nvram.h>
/freebsd-11-stable/sys/dev/bhnd/
H A Dbhnd_subr.c44 #include "nvram/bhnd_nvram.h"
937 /* nvram board_info population macros for bhnd_bus_generic_read_board_info() */
1003 device_t chipc, nvram; local
1006 nvram = device_find_child(dev, "bhnd_nvram", 0);
1007 if (nvram != NULL)
1008 return (nvram);
1017 nvram = device_find_child(chipc, "bhnd_nvram", 0);
1018 if (nvram != NULL)
1019 return (nvram);
1042 device_t nvram; local
[all...]
/freebsd-11-stable/sys/dev/sym/
H A Dsym_hipd.c2186 static int sym_prepare_setting (hcb_p np, struct sym_nvram *nvram);
2268 static void sym_nvram_setup_host (hcb_p np, struct sym_nvram *nvram);
2481 static int sym_prepare_setting(hcb_p np, struct sym_nvram *nvram) argument
2652 sym_nvram_setup_host (np, nvram);
2688 else if (nvram->type == SYM_SYMBIOS_NVRAM) {
2706 (nvram->type == SYM_SYMBIOS_NVRAM ||
2707 (nvram->type == SYM_TEKRAM_NVRAM &&
2743 sym_nvram_setup_target (np, i, nvram);
2765 i = nvram->type;
8404 struct sym_nvram nvram; local
8963 sym_nvram_setup_host(hcb_p np, struct sym_nvram *nvram) argument
9021 sym_Symbios_setup_target(hcb_p np, int target, Symbios_nvram *nvram) argument
9043 sym_Tekram_setup_target(hcb_p np, int target, Tekram_nvram *nvram) argument
9073 sym_display_Symbios_nvram(hcb_p np, Symbios_nvram *nvram) argument
9106 sym_display_Tekram_nvram(hcb_p np, Tekram_nvram *nvram) argument
9407 sym_read_Symbios_nvram(hcb_p np, Symbios_nvram *nvram) argument
9553 sym_read_T93C46_nvram(hcb_p np, Tekram_nvram *nvram) argument
9585 sym_read_Tekram_nvram(hcb_p np, Tekram_nvram *nvram) argument
[all...]
/freebsd-11-stable/sys/dev/ips/
H A Dips_commands.c487 ips_nvram_page5 *nvram; local
498 nvram = command->data_buffer;
500 sc->adapter_type = nvram->adapter_type;
502 strncpy(nvram->driver_high, IPS_VERSION_MAJOR, 4);
503 strncpy(nvram->driver_low, IPS_VERSION_MINOR, 4);
504 nvram->operating_system = IPS_OS_FREEBSD;
560 printf("ips: can't alloc dma tag for nvram\n");
590 device_printf(sc->dev, "ERROR: unable to get a command! can't update nvram\n");
595 device_printf(sc->dev, "ERROR: nvram update command failed!\n");
/freebsd-11-stable/sys/dev/nvram/
H A Dnvram.c43 * Linux-style /dev/nvram driver
75 .d_name = "nvram",
155 sx_init(&nvram_lock, "nvram");
157 UID_ROOT, GID_KMEM, 0640, "nvram");
169 DEV_MODULE(nvram, nvram_modevent, NULL);
/freebsd-11-stable/sys/dev/nvram2env/
H A Dnvram2env.c83 #define NVRAM_FLAGS_BROADCOM 0x0004 /* Format Broadcom, use struct nvram */
99 for (i = 0; !resource_int_value("nvram", i, "base", &ivar); i++)
110 if (resource_int_value("nvram", device_get_unit(dev), "sig",
114 if (resource_int_value("nvram", device_get_unit(dev), "maxsize",
118 if (resource_int_value("nvram", device_get_unit(dev), "flags",
125 if (resource_int_value("nvram", device_get_unit(dev),
175 struct nvram { struct
197 struct nvram *nv;
264 /* hint.nvram.0. */
/freebsd-11-stable/sys/conf/
H A Dkmod.mk425 ${SYSDIR}/dev/bhnd/nvram/nvram_map
428 ${SYSDIR}/dev/bhnd/nvram/nvram_map -h
435 ${SYSDIR}/dev/bhnd/nvram/nvram_map
438 ${SYSDIR}/dev/bhnd/nvram/nvram_map -d
/freebsd-11-stable/sys/amd64/vmm/io/
H A Dvrtc.c67 uint8_t nvram[36]; member in struct:rtcdev
795 if (offset < offsetof(struct rtcdev, nvram[0]) ||
797 VM_CTR1(vrtc->vm, "RTC nvram write to invalid offset %d",
805 VM_CTR2(vrtc->vm, "RTC nvram write %#x to offset %#x", value, offset);
/freebsd-11-stable/sys/modules/
H A DMakefile705 _nvram= nvram
/freebsd-11-stable/share/man/man4/
H A DMakefile851 _nvram.4= nvram.4
/freebsd-11-stable/targets/pseudo/userland/
H A DMakefile.depend899 usr.sbin/nvram \
/freebsd-11-stable/sys/dev/mrsas/
H A Dmrsas.h2006 u_int32_t nvram:1; member in struct:mrsas_ctrl_info::__anon5101

Completed in 197 milliseconds