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.

pci_autoboot.c 1.6KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. /*
  2. * Copyright (C) 2014 Red Hat Inc.
  3. * Alex Williamson <alex.williamson@redhat.com>
  4. *
  5. * This program is free software; you can redistribute it and/or
  6. * modify it under the terms of the GNU General Public License as
  7. * published by the Free Software Foundation; either version 2 of the
  8. * License, or any later version.
  9. *
  10. * This program is distributed in the hope that it will be useful, but
  11. * WITHOUT ANY WARRANTY; without even the implied warranty of
  12. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  13. * General Public License for more details.
  14. *
  15. * You should have received a copy of the GNU General Public License
  16. * along with this program; if not, write to the Free Software
  17. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
  18. * 02110-1301, USA.
  19. *
  20. * You can also choose to distribute this program under the terms of
  21. * the Unmodified Binary Distribution Licence (as given in the file
  22. * COPYING.UBDL), provided that you have satisfied its requirements.
  23. */
  24. FILE_LICENCE ( GPL2_OR_LATER_OR_UBDL );
  25. #include <stdint.h>
  26. #include <ipxe/device.h>
  27. #include <ipxe/init.h>
  28. #include <realmode.h>
  29. #include <usr/autoboot.h>
  30. uint16_t __bss16 ( autoboot_busdevfn );
  31. #define autoboot_busdevfn __use_data16 ( autoboot_busdevfn )
  32. /**
  33. * Initialise PCI autoboot device
  34. */
  35. static void pci_autoboot_init ( void ) {
  36. if ( autoboot_busdevfn )
  37. set_autoboot_busloc ( BUS_TYPE_PCI, autoboot_busdevfn );
  38. }
  39. /** PCI autoboot device initialisation function */
  40. struct init_fn pci_autoboot_init_fn __init_fn ( INIT_NORMAL ) = {
  41. .initialise = pci_autoboot_init,
  42. };