Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

undiload.c 5.6KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184
  1. /*
  2. * Copyright (C) 2007 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., 51 Franklin Street, Fifth Floor, Boston, MA
  17. * 02110-1301, USA.
  18. *
  19. * You can also choose to distribute this program under the terms of
  20. * the Unmodified Binary Distribution Licence (as given in the file
  21. * COPYING.UBDL), provided that you have satisfied its requirements.
  22. */
  23. FILE_LICENCE ( GPL2_OR_LATER_OR_UBDL );
  24. #include <stdint.h>
  25. #include <stdlib.h>
  26. #include <string.h>
  27. #include <pxe.h>
  28. #include <realmode.h>
  29. #include <bios.h>
  30. #include <pnpbios.h>
  31. #include <basemem.h>
  32. #include <ipxe/pci.h>
  33. #include <undi.h>
  34. #include <undirom.h>
  35. #include <undiload.h>
  36. /** @file
  37. *
  38. * UNDI load/unload
  39. *
  40. */
  41. /* Disambiguate the various error causes */
  42. #define EINFO_EUNDILOAD \
  43. __einfo_uniqify ( EINFO_EPLATFORM, 0x01, \
  44. "UNDI loader error" )
  45. #define EUNDILOAD( status ) EPLATFORM ( EINFO_EUNDILOAD, status )
  46. /** Parameter block for calling UNDI loader */
  47. static struct s_UNDI_LOADER __bss16 ( undi_loader );
  48. #define undi_loader __use_data16 ( undi_loader )
  49. /** UNDI loader entry point */
  50. static SEGOFF16_t __bss16 ( undi_loader_entry );
  51. #define undi_loader_entry __use_data16 ( undi_loader_entry )
  52. /**
  53. * Call UNDI loader to create a pixie
  54. *
  55. * @v undi UNDI device
  56. * @v undirom UNDI ROM
  57. * @ret rc Return status code
  58. */
  59. int undi_load ( struct undi_device *undi, struct undi_rom *undirom ) {
  60. struct s_PXE ppxe;
  61. unsigned int fbms_seg;
  62. uint16_t exit;
  63. int rc;
  64. /* Only one UNDI instance may be loaded at any given time */
  65. if ( undi_loader_entry.segment ) {
  66. DBG ( "UNDI %p cannot load multiple instances\n", undi );
  67. return -EBUSY;
  68. }
  69. /* Set up START_UNDI parameters */
  70. memset ( &undi_loader, 0, sizeof ( undi_loader ) );
  71. undi_loader.AX = undi->pci_busdevfn;
  72. undi_loader.BX = undi->isapnp_csn;
  73. undi_loader.DX = undi->isapnp_read_port;
  74. undi_loader.ES = BIOS_SEG;
  75. undi_loader.DI = find_pnp_bios();
  76. /* Allocate base memory for PXE stack */
  77. undi->restore_fbms = get_fbms();
  78. fbms_seg = ( undi->restore_fbms << 6 );
  79. fbms_seg -= ( ( undirom->code_size + 0x0f ) >> 4 );
  80. undi_loader.UNDI_CS = fbms_seg;
  81. fbms_seg -= ( ( undirom->data_size + 0x0f ) >> 4 );
  82. undi_loader.UNDI_DS = fbms_seg;
  83. /* Debug info */
  84. DBGC ( undi, "UNDI %p loading UNDI ROM %p to CS %04x DS %04x for ",
  85. undi, undirom, undi_loader.UNDI_CS, undi_loader.UNDI_DS );
  86. if ( undi->pci_busdevfn != UNDI_NO_PCI_BUSDEVFN ) {
  87. unsigned int bus = ( undi->pci_busdevfn >> 8 );
  88. unsigned int devfn = ( undi->pci_busdevfn & 0xff );
  89. DBGC ( undi, "PCI %02x:%02x.%x\n",
  90. bus, PCI_SLOT ( devfn ), PCI_FUNC ( devfn ) );
  91. }
  92. if ( undi->isapnp_csn != UNDI_NO_ISAPNP_CSN ) {
  93. DBGC ( undi, "ISAPnP(%04x) CSN %04x\n",
  94. undi->isapnp_read_port, undi->isapnp_csn );
  95. }
  96. /* Call loader */
  97. undi_loader_entry = undirom->loader_entry;
  98. __asm__ __volatile__ ( REAL_CODE ( "pushl %%ebp\n\t" /* gcc bug */
  99. "pushw %%ds\n\t"
  100. "pushw %%ax\n\t"
  101. "lcall *undi_loader_entry\n\t"
  102. "popl %%ebp\n\t" /* discard */
  103. "popl %%ebp\n\t" /* gcc bug */ )
  104. : "=a" ( exit )
  105. : "a" ( __from_data16 ( &undi_loader ) )
  106. : "ebx", "ecx", "edx", "esi", "edi" );
  107. if ( exit != PXENV_EXIT_SUCCESS ) {
  108. /* Clear entry point */
  109. memset ( &undi_loader_entry, 0, sizeof ( undi_loader_entry ) );
  110. rc = -EUNDILOAD ( undi_loader.Status );
  111. DBGC ( undi, "UNDI %p loader failed: %s\n",
  112. undi, strerror ( rc ) );
  113. return rc;
  114. }
  115. /* Populate PXE device structure */
  116. undi->pxenv = undi_loader.PXENVptr;
  117. undi->ppxe = undi_loader.PXEptr;
  118. copy_from_real ( &ppxe, undi->ppxe.segment, undi->ppxe.offset,
  119. sizeof ( ppxe ) );
  120. undi->entry = ppxe.EntryPointSP;
  121. DBGC ( undi, "UNDI %p loaded PXENV+ %04x:%04x !PXE %04x:%04x "
  122. "entry %04x:%04x\n", undi, undi->pxenv.segment,
  123. undi->pxenv.offset, undi->ppxe.segment, undi->ppxe.offset,
  124. undi->entry.segment, undi->entry.offset );
  125. /* Update free base memory counter */
  126. undi->fbms = ( fbms_seg >> 6 );
  127. set_fbms ( undi->fbms );
  128. DBGC ( undi, "UNDI %p using [%d,%d) kB of base memory\n",
  129. undi, undi->fbms, undi->restore_fbms );
  130. return 0;
  131. }
  132. /**
  133. * Unload a pixie
  134. *
  135. * @v undi UNDI device
  136. * @ret rc Return status code
  137. *
  138. * Erases the PXENV+ and !PXE signatures, and frees the used base
  139. * memory (if possible).
  140. */
  141. int undi_unload ( struct undi_device *undi ) {
  142. static uint32_t dead = 0xdeaddead;
  143. DBGC ( undi, "UNDI %p unloading\n", undi );
  144. /* Clear entry point */
  145. memset ( &undi_loader_entry, 0, sizeof ( undi_loader_entry ) );
  146. /* Erase signatures */
  147. if ( undi->pxenv.segment )
  148. put_real ( dead, undi->pxenv.segment, undi->pxenv.offset );
  149. if ( undi->ppxe.segment )
  150. put_real ( dead, undi->ppxe.segment, undi->ppxe.offset );
  151. /* Free base memory, if possible */
  152. if ( undi->fbms == get_fbms() ) {
  153. DBGC ( undi, "UNDI %p freeing [%d,%d) kB of base memory\n",
  154. undi, undi->fbms, undi->restore_fbms );
  155. set_fbms ( undi->restore_fbms );
  156. return 0;
  157. } else {
  158. DBGC ( undi, "UNDI %p leaking [%d,%d) kB of base memory\n",
  159. undi, undi->fbms, undi->restore_fbms );
  160. return -EBUSY;
  161. }
  162. }