/
githubmirror
/
efivar
Обзор
Документация
Войти
/
githubmirror
/
efivar
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
39
src/dp-hw.c
111 строк
3 KB
Peter Jones
SPDX-ify all the license text in source files.
03 фев 2020, 21:37
03 фев 2020, 21:37
ce42f1d
Код
Авторство
О чём код?
// SPDX-License-Identifier: LGPL-2.1-or-later /* * libefivar - library for the manipulation of EFI variables * Copyright 2012-2015 Red Hat, Inc. */ #include "fix_coverity.h" #include <errno.h> #include <inttypes.h> #include "efivar.h" ssize_t format_edd10_guid(unsigned char *buf, size_t size, const char *dp_type, const_efidp dp) { ssize_t off = 0; efidp_edd10 const *edd_dp = (efidp_edd10 *)dp; format(buf, size, off, dp_type, "EDD10(0x%"PRIx32")", edd_dp->hardware_device); return off; } ssize_t _format_hw_dn(unsigned char *buf, size_t size, const_efidp dp) { efi_guid_t edd10_guid = EDD10_HARDWARE_VENDOR_PATH_GUID; ssize_t off = 0; switch (dp->subtype) { case EFIDP_HW_PCI: format(buf, size, off, "Pci", "Pci(0x%"PRIx32",0x%"PRIx32")", dp->pci.device, dp->pci.function); break; case EFIDP_HW_PCCARD: format(buf, size, off, "PcCard", "PcCard(0x%"PRIx32")", dp->pccard.function); break; case EFIDP_HW_MMIO: format(buf, size, off, "MemoryMapped", "MemoryMapped(%"PRIu32",0x%"PRIx64",0x%"PRIx64")", dp->mmio.memory_type, dp->mmio.starting_address, dp->mmio.ending_address); break; case EFIDP_HW_VENDOR: if (!efi_guid_cmp(&dp->hw_vendor.vendor_guid, &edd10_guid)) { format_helper(format_edd10_guid, buf, size, off, "EDD 1.0", dp); } else { format_vendor(buf, size, off, "VenHw", dp); } break; case EFIDP_HW_CONTROLLER: format(buf, size, off, "Ctrl", "Ctrl(0x%"PRIx32")", dp->controller.controller); break; case EFIDP_HW_BMC: format(buf, size, off, "BMC", "BMC(%d,0x%"PRIx64")", dp->bmc.interface_type, dp->bmc.base_addr); break; default: format(buf, size, off, "Hardware", "HardwarePath(%d,", dp->subtype); format_hex(buf, size, off, "Hardware", (uint8_t *)dp+4, efidp_node_size(dp)-4); format(buf, size, off, "Hardware", ")"); break; } return off; } ssize_t PUBLIC efidp_make_pci(uint8_t *buf, ssize_t size, uint8_t device, uint8_t function) { efidp_pci *pci = (efidp_pci *)buf; ssize_t sz; ssize_t req = sizeof (*pci); sz = efidp_make_generic(buf, size, EFIDP_HARDWARE_TYPE, EFIDP_HW_PCI, req); if (size && sz == req) { pci->device = device; pci->function = function; } if (sz < 0) efi_error("efidp_make_generic failed"); return sz; } ssize_t PUBLIC efidp_make_edd10(uint8_t *buf, ssize_t size, uint32_t hardware_device) { efi_guid_t edd10_guid = EDD10_HARDWARE_VENDOR_PATH_GUID; efidp_edd10 *edd_dp = (efidp_edd10 *)buf; ssize_t sz; ssize_t req = sizeof (*edd_dp); sz = efidp_make_generic(buf, size, EFIDP_HARDWARE_TYPE, EFIDP_HW_VENDOR, req); if (size && sz == req) { memcpy(&edd_dp->vendor_guid, &edd10_guid, sizeof (edd10_guid)); edd_dp->hardware_device = hardware_device; } if (sz < 0) efi_error("efidp_make_generic failed"); return sz; } // vim:fenc=utf-8:tw=75:noet