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.

undiload.c 5.1KB

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