/openbmc/qemu/hw/nvme/ |
H A D | subsys.c | 149 if (!subsys->params.fdp.runs) { in nvme_subsys_setup_fdp() 150 error_setg(errp, "fdp.runs must be non-zero"); in nvme_subsys_setup_fdp() 154 endgrp->fdp.runs = subsys->params.fdp.runs; in nvme_subsys_setup_fdp() 156 if (!subsys->params.fdp.nrg) { in nvme_subsys_setup_fdp() 157 error_setg(errp, "fdp.nrg must be non-zero"); in nvme_subsys_setup_fdp() 161 endgrp->fdp.nrg = subsys->params.fdp.nrg; in nvme_subsys_setup_fdp() 163 if (!subsys->params.fdp.nruh || in nvme_subsys_setup_fdp() 164 subsys->params.fdp.nruh > NVME_FDP_MAXPIDS) { in nvme_subsys_setup_fdp() 165 error_setg(errp, "fdp.nruh must be non-zero and less than %u", in nvme_subsys_setup_fdp() 170 endgrp->fdp.nruh = subsys->params.fdp.nruh; in nvme_subsys_setup_fdp() [all …]
|
H A D | ns.c | 392 for (uint16_t i = 0; i < endgrp->fdp.nruh; i++) { in nvme_find_ruh_by_attr() 393 NvmeRuHandle *ruh = &endgrp->fdp.ruhs[i]; in nvme_find_ruh_by_attr() 415 if (!ns->params.fdp.ruhs) { in nvme_ns_init_fdp() 416 ns->fdp.nphs = 1; in nvme_ns_init_fdp() 417 ph = ns->fdp.phs = g_new(uint16_t, 1); in nvme_ns_init_fdp() 429 ruh->ruamw = endgrp->fdp.runs >> ns->lbaf.ds; in nvme_ns_init_fdp() 431 for (uint16_t rg = 0; rg < endgrp->fdp.nrg; rg++) { in nvme_ns_init_fdp() 444 ruhid = ruhids = g_new0(unsigned int, endgrp->fdp.nruh); in nvme_ns_init_fdp() 445 r = p = strdup(ns->params.fdp.ruhs); in nvme_ns_init_fdp() 475 if (ns->fdp.nphs++ == endgrp->fdp.nruh) { in nvme_ns_init_fdp() [all …]
|
H A D | nvme.h | 97 } fdp; member 118 } fdp; member 220 } fdp; member 280 } fdp; member
|
H A D | ctrl.c | 329 uint16_t rgif = ns->endgrp->fdp.rgif; in nvme_make_pid() 340 return ph < ns->fdp.nphs; in nvme_ph_valid() 345 return rg < endgrp->fdp.nrg; in nvme_rg_valid() 350 uint16_t rgif = ns->endgrp->fdp.rgif; in nvme_pid2ph() 361 uint16_t rgif = ns->endgrp->fdp.rgif; in nvme_pid2rg() 490 ruhid = ns->fdp.phs[ph]; in nvme_update_ruh() 492 ruh = &endgrp->fdp.ruhs[ruhid]; in nvme_update_ruh() 497 e = nvme_fdp_alloc_event(n, &endgrp->fdp.host_events); in nvme_update_ruh() 507 nvme_fdp_stat_inc(&endgrp->fdp.mbmw, nvme_l2b(ns, ru->ruamw)); in nvme_update_ruh() 3697 ruhid = ns->fdp.phs[ph]; in nvme_do_write_fdp() [all …]
|
/openbmc/linux/drivers/nfc/fdp/ |
H A D | Kconfig | 3 tristate "Intel FDP NFC driver" 12 be called fdp. 16 tristate "NFC FDP i2c support"
|
H A D | Makefile | 3 # Makefile for FDP NCI based NFC driver 6 obj-$(CONFIG_NFC_FDP) += fdp.o
|
H A D | i2c.c | 18 #include "fdp.h" 156 * desynchronization between driver and FDP. Drop the packet in fdp_nci_i2c_read()
|
H A D | fdp.c | 15 #include "fdp.h" 554 * In order to apply the VSC FDP needs a reset in fdp_nci_post_setup()
|
/openbmc/openbmc/meta-openembedded/meta-networking/recipes-daemons/lldpd/ |
H A D | lldpd_1.0.18.bb | 31 PACKAGECONFIG ??= "cdp fdp edp sonmp lldpmed dot1 dot3" 37 PACKAGECONFIG[fdp] = "--enable-fdp,--disable-fdp"
|
/openbmc/qemu/include/hw/xen/interface/hvm/ |
H A D | params.h | 267 * Size of the x87 FPU FIP/FDP registers that the hypervisor needs to 269 * does not allow the full FIP/FDP and FCS/FDS to be restored. 273 * 8: save/restore 64-bit FIP/FDP and clear FCS/FDS (default if CPU 276 * 4: save/restore 32-bit FIP/FDP, FCS/FDS, and clear upper 32-bits of 277 * FIP/FDP. 279 * 0: allow hypervisor to choose based on the value of FIP/FDP
|
/openbmc/qemu/docs/system/devices/ |
H A D | nvme.rst | 226 configuring it (``fdp=on``) on the subsystem:: 228 -device nvme-subsys,id=nvme-subsys-0,nqn=subsys0,fdp=on,fdp.nruh=16 232 slightly from the specification, by always enabling the "FDP Mode" feature on 238 ``fdp.nrg`` (default: ``1``) 241 ``fdp.nruh`` (default: ``0``) 245 ``fdp.runs`` (default: ``96M``) 250 -device nvme-ns,drive=nvm-1,fdp.ruhs=RUHLIST
|
/openbmc/linux/Documentation/devicetree/bindings/media/ |
H A D | renesas,fcp.yaml | 19 FCP for FDP (FCPF). Their configuration and behaviour depend on the module 27 - renesas,fcpf # FCP for FDP
|
/openbmc/qemu/audio/ |
H A D | ossaudio.c | 96 static void oss_anal_close (int *fdp) in oss_anal_close() argument 100 qemu_set_fd_handler (*fdp, NULL, NULL, NULL); in oss_anal_close() 101 err = close (*fdp); in oss_anal_close() 103 oss_logerr (errno, "Failed to close file(fd=%d)\n", *fdp); in oss_anal_close() 105 *fdp = -1; in oss_anal_close()
|
/openbmc/linux/tools/testing/selftests/net/ |
H A D | csum.c | 939 static void do_rx(int fdp, int fdr) in do_rx() argument 950 pfd.fd = fdp; in do_rx() 955 count_pkt += recv_packet(fdp); in do_rx() 965 if (close(fdp)) in do_rx() 982 int fdp = -1, fdr = -1; /* -1 to silence -Wmaybe-uninitialized */ in main() local 988 fdp = recv_prepare_packet(); in main() 996 do_rx(fdp, fdr); in main()
|
/openbmc/linux/drivers/nfc/ |
H A D | Makefile | 6 obj-$(CONFIG_NFC_FDP) += fdp/
|
H A D | Kconfig | 63 source "drivers/nfc/fdp/Kconfig"
|
/openbmc/linux/drivers/media/platform/renesas/ |
H A D | Kconfig | 57 the codec, VSP and FDP modules.
|
/openbmc/linux/net/core/ |
H A D | scm.c | 68 int *fdp = (int*)CMSG_DATA(cmsg); in scm_fp_copy() local 102 int fd = fdp[i]; in scm_fp_copy()
|
/openbmc/linux/fs/jffs2/ |
H A D | gc.c | 898 struct jffs2_full_dirent **fdp = &f->dents; in jffs2_garbage_collect_deletion_dirent() local 996 while (*fdp) { in jffs2_garbage_collect_deletion_dirent() 997 if ((*fdp) == fd) { in jffs2_garbage_collect_deletion_dirent() 999 *fdp = fd->next; in jffs2_garbage_collect_deletion_dirent() 1002 fdp = &(*fdp)->next; in jffs2_garbage_collect_deletion_dirent()
|
/openbmc/u-boot/lib/efi_loader/ |
H A D | efi_file.c | 677 struct efi_device_path_file_path *fdp = in efi_file_from_path() local 687 EFI_CALL(ret = f->open(f, &f2, fdp->str, in efi_file_from_path()
|
/openbmc/libpldm/include/libpldm/ |
H A D | firmware_update.h | 70 * 4 bytes for FDP capabilities during update 352 /** @brief Current state/previous state of the FD or FDP returned in GetStatus 1699 * segment requested by the FD/FDP 1953 * @param[out] aux_state - Pointer to current operation state of FD/FDP
|
/openbmc/qemu/fpu/ |
H A D | softfloat-parts.c.inc | 754 * The 7-bit table gives |e| < 0x1.fdp-9. 769 /* |r*sqrt(m) - 1| < 0x1.FDp-9 */
|
/openbmc/libpldm/tests/dsp/ |
H A D | firmware_update.cpp | 1480 * FDP supports downstream devices dynamically attached [Bit position 0] & in TEST() 1481 * FDP supports downstream devices dynamically removed [Bit position 1] in TEST() 1528 * FDP supports downstream devices dynamically attached [Bit position 0] & in TEST() 1529 * FDP supports downstream devices dynamically removed [Bit position 1] in TEST() 1569 * FDP supports downstream devices dynamically attached [Bit position 0] & in TEST() 1570 * FDP supports downstream devices dynamically removed [Bit position 1] in TEST()
|
/openbmc/linux/arch/x86/kernel/fpu/ |
H A D | core.c | 140 * FDP/FIP/FOP unless an exception is pending. Clear the x87 state in restore_fpregs_from_fpstate()
|
/openbmc/libpldm/src/dsp/ |
H A D | firmware_update.c | 246 * the current operation state of the FD/FDP
|