You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

efi_smbios.c 1.8KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. /*
  2. * Copyright (C) 2008 Michael Brown <mbrown@fensystems.co.uk>.
  3. *
  4. * This program is free software; you can redistribute it and/or
  5. * modify it under the terms of the GNU General Public License as
  6. * published by the Free Software Foundation; either version 2 of the
  7. * License, or any later version.
  8. *
  9. * This program is distributed in the hope that it will be useful, but
  10. * WITHOUT ANY WARRANTY; without even the implied warranty of
  11. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  12. * General Public License for more details.
  13. *
  14. * You should have received a copy of the GNU General Public License
  15. * along with this program; if not, write to the Free Software
  16. * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  17. */
  18. FILE_LICENCE ( GPL2_OR_LATER );
  19. #include <errno.h>
  20. #include <ipxe/smbios.h>
  21. #include <ipxe/efi/efi.h>
  22. #include <ipxe/efi/Guid/SmBios.h>
  23. /** @file
  24. *
  25. * iPXE SMBIOS API for EFI
  26. *
  27. */
  28. /** SMBIOS configuration table */
  29. static struct smbios_entry *smbios_entry;
  30. EFI_USE_TABLE ( SMBIOS_TABLE, &smbios_entry, 0 );
  31. /**
  32. * Find SMBIOS
  33. *
  34. * @v smbios SMBIOS entry point descriptor structure to fill in
  35. * @ret rc Return status code
  36. */
  37. static int efi_find_smbios ( struct smbios *smbios ) {
  38. if ( ! smbios_entry ) {
  39. DBG ( "No SMBIOS table provided\n" );
  40. return -ENODEV;
  41. }
  42. if ( smbios_entry->signature != SMBIOS_SIGNATURE ) {
  43. DBG ( "Invalid SMBIOS signature\n" );
  44. return -ENODEV;
  45. }
  46. smbios->address = phys_to_user ( smbios_entry->smbios_address );
  47. smbios->len = smbios_entry->smbios_len;
  48. smbios->count = smbios_entry->smbios_count;
  49. DBG ( "Found SMBIOS v%d.%d entry point at %p (%x+%zx)\n",
  50. smbios_entry->major, smbios_entry->minor, smbios_entry,
  51. smbios_entry->smbios_address, smbios->len );
  52. return 0;
  53. }
  54. PROVIDE_SMBIOS ( efi, find_smbios, efi_find_smbios );