undinet.c 21KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716
  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., 675 Mass Ave, Cambridge, MA 02139, USA.
  17. */
  18. #include <string.h>
  19. #include <pxe.h>
  20. #include <realmode.h>
  21. #include <pic8259.h>
  22. #include <biosint.h>
  23. #include <pnpbios.h>
  24. #include <gpxe/iobuf.h>
  25. #include <gpxe/netdevice.h>
  26. #include <gpxe/if_ether.h>
  27. #include <gpxe/ethernet.h>
  28. #include <undi.h>
  29. #include <undinet.h>
  30. /** @file
  31. *
  32. * UNDI network device driver
  33. *
  34. */
  35. /** An UNDI NIC */
  36. struct undi_nic {
  37. /** Entry point */
  38. SEGOFF16_t entry;
  39. /** Assigned IRQ number */
  40. unsigned int irq;
  41. /** Currently processing ISR */
  42. int isr_processing;
  43. };
  44. static void undinet_close ( struct net_device *netdev );
  45. /*****************************************************************************
  46. *
  47. * UNDI API call
  48. *
  49. *****************************************************************************
  50. */
  51. /**
  52. * Name UNDI API call
  53. *
  54. * @v function API call number
  55. * @ret name API call name
  56. */
  57. static inline __attribute__ (( always_inline )) const char *
  58. undinet_function_name ( unsigned int function ) {
  59. switch ( function ) {
  60. case PXENV_START_UNDI:
  61. return "PXENV_START_UNDI";
  62. case PXENV_STOP_UNDI:
  63. return "PXENV_STOP_UNDI";
  64. case PXENV_UNDI_STARTUP:
  65. return "PXENV_UNDI_STARTUP";
  66. case PXENV_UNDI_CLEANUP:
  67. return "PXENV_UNDI_CLEANUP";
  68. case PXENV_UNDI_INITIALIZE:
  69. return "PXENV_UNDI_INITIALIZE";
  70. case PXENV_UNDI_RESET_ADAPTER:
  71. return "PXENV_UNDI_RESET_ADAPTER";
  72. case PXENV_UNDI_SHUTDOWN:
  73. return "PXENV_UNDI_SHUTDOWN";
  74. case PXENV_UNDI_OPEN:
  75. return "PXENV_UNDI_OPEN";
  76. case PXENV_UNDI_CLOSE:
  77. return "PXENV_UNDI_CLOSE";
  78. case PXENV_UNDI_TRANSMIT:
  79. return "PXENV_UNDI_TRANSMIT";
  80. case PXENV_UNDI_SET_MCAST_ADDRESS:
  81. return "PXENV_UNDI_SET_MCAST_ADDRESS";
  82. case PXENV_UNDI_SET_STATION_ADDRESS:
  83. return "PXENV_UNDI_SET_STATION_ADDRESS";
  84. case PXENV_UNDI_SET_PACKET_FILTER:
  85. return "PXENV_UNDI_SET_PACKET_FILTER";
  86. case PXENV_UNDI_GET_INFORMATION:
  87. return "PXENV_UNDI_GET_INFORMATION";
  88. case PXENV_UNDI_GET_STATISTICS:
  89. return "PXENV_UNDI_GET_STATISTICS";
  90. case PXENV_UNDI_CLEAR_STATISTICS:
  91. return "PXENV_UNDI_CLEAR_STATISTICS";
  92. case PXENV_UNDI_INITIATE_DIAGS:
  93. return "PXENV_UNDI_INITIATE_DIAGS";
  94. case PXENV_UNDI_FORCE_INTERRUPT:
  95. return "PXENV_UNDI_FORCE_INTERRUPT";
  96. case PXENV_UNDI_GET_MCAST_ADDRESS:
  97. return "PXENV_UNDI_GET_MCAST_ADDRESS";
  98. case PXENV_UNDI_GET_NIC_TYPE:
  99. return "PXENV_UNDI_GET_NIC_TYPE";
  100. case PXENV_UNDI_GET_IFACE_INFO:
  101. return "PXENV_UNDI_GET_IFACE_INFO";
  102. /*
  103. * Duplicate case value; this is a bug in the PXE specification.
  104. *
  105. * case PXENV_UNDI_GET_STATE:
  106. * return "PXENV_UNDI_GET_STATE";
  107. */
  108. case PXENV_UNDI_ISR:
  109. return "PXENV_UNDI_ISR";
  110. default:
  111. return "UNKNOWN API CALL";
  112. }
  113. }
  114. /**
  115. * UNDI parameter block
  116. *
  117. * Used as the paramter block for all UNDI API calls. Resides in base
  118. * memory.
  119. */
  120. static union u_PXENV_ANY __data16 ( undinet_params );
  121. #define undinet_params __use_data16 ( undinet_params )
  122. /** UNDI entry point
  123. *
  124. * Used as the indirection vector for all UNDI API calls. Resides in
  125. * base memory.
  126. */
  127. static SEGOFF16_t __data16 ( undinet_entry_point );
  128. #define undinet_entry_point __use_data16 ( undinet_entry_point )
  129. /**
  130. * Issue UNDI API call
  131. *
  132. * @v undinic UNDI NIC
  133. * @v function API call number
  134. * @v params UNDI parameter block
  135. * @v params_len Length of UNDI parameter block
  136. * @ret rc Return status code
  137. */
  138. static int undinet_call ( struct undi_nic *undinic, unsigned int function,
  139. void *params, size_t params_len ) {
  140. PXENV_EXIT_t exit;
  141. int discard_b, discard_D;
  142. int rc;
  143. /* Copy parameter block and entry point */
  144. assert ( params_len <= sizeof ( undinet_params ) );
  145. memcpy ( &undinet_params, params, params_len );
  146. undinet_entry_point = undinic->entry;
  147. /* Call real-mode entry point. This calling convention will
  148. * work with both the !PXE and the PXENV+ entry points.
  149. */
  150. __asm__ __volatile__ ( REAL_CODE ( "pushw %%es\n\t"
  151. "pushw %%di\n\t"
  152. "pushw %%bx\n\t"
  153. "lcall *%c3\n\t"
  154. "addw $6, %%sp\n\t" )
  155. : "=a" ( exit ), "=b" ( discard_b ),
  156. "=D" ( discard_D )
  157. : "p" ( &__from_data16 ( undinet_entry_point )),
  158. "b" ( function ),
  159. "D" ( &__from_data16 ( undinet_params ) )
  160. : "ecx", "edx", "esi", "ebp" );
  161. /* UNDI API calls may rudely change the status of A20 and not
  162. * bother to restore it afterwards. Intel is known to be
  163. * guilty of this.
  164. *
  165. * Note that we will return to this point even if A20 gets
  166. * screwed up by the UNDI driver, because Etherboot always
  167. * resides in an even megabyte of RAM.
  168. */
  169. gateA20_set();
  170. /* Determine return status code based on PXENV_EXIT and
  171. * PXENV_STATUS
  172. */
  173. if ( exit == PXENV_EXIT_SUCCESS ) {
  174. rc = 0;
  175. } else {
  176. rc = -undinet_params.Status;
  177. /* Paranoia; don't return success for the combination
  178. * of PXENV_EXIT_FAILURE but PXENV_STATUS_SUCCESS
  179. */
  180. if ( rc == 0 )
  181. rc = -EIO;
  182. }
  183. /* If anything goes wrong, print as much debug information as
  184. * it's possible to give.
  185. */
  186. if ( rc != 0 ) {
  187. SEGOFF16_t rm_params = {
  188. .segment = rm_ds,
  189. .offset = (intptr_t) &__from_data16 ( undinet_params ),
  190. };
  191. DBGC ( undinic, "UNDINIC %p %s failed: %s\n", undinic,
  192. undinet_function_name ( function ), strerror ( rc ) );
  193. DBGC ( undinic, "UNDINIC %p parameters at %04x:%04x length "
  194. "%#02x, entry point at %04x:%04x\n", undinic,
  195. rm_params.segment, rm_params.offset, params_len,
  196. undinic->entry.segment, undinic->entry.offset );
  197. DBGC ( undinic, "UNDINIC %p parameters provided:\n", undinic );
  198. DBGC_HDA ( undinic, rm_params, params, params_len );
  199. DBGC ( undinic, "UNDINIC %p parameters returned:\n", undinic );
  200. DBGC_HDA ( undinic, rm_params, &undinet_params, params_len );
  201. }
  202. /* Copy parameter block back */
  203. memcpy ( params, &undinet_params, params_len );
  204. return rc;
  205. }
  206. /*****************************************************************************
  207. *
  208. * UNDI interrupt service routine
  209. *
  210. *****************************************************************************
  211. */
  212. /**
  213. * UNDI interrupt service routine
  214. *
  215. * The UNDI ISR simply increments a counter (@c trigger_count) and
  216. * exits.
  217. */
  218. extern void undinet_isr ( void );
  219. /** Dummy chain vector */
  220. static struct segoff prev_handler[ IRQ_MAX + 1 ];
  221. /** IRQ trigger count */
  222. static volatile uint8_t __text16 ( trigger_count ) = 0;
  223. #define trigger_count __use_text16 ( trigger_count )
  224. /**
  225. * Hook UNDI interrupt service routine
  226. *
  227. * @v irq IRQ number
  228. *
  229. * The UNDI ISR specifically does @b not chain to the previous
  230. * interrupt handler. BIOSes seem to install somewhat perverse
  231. * default interrupt handlers; some do nothing other than an iret (and
  232. * so will cause a screaming interrupt if there really is another
  233. * interrupting device) and some disable the interrupt at the PIC (and
  234. * so will bring our own interrupts to a shuddering halt).
  235. */
  236. static void undinet_hook_isr ( unsigned int irq ) {
  237. assert ( irq <= IRQ_MAX );
  238. __asm__ __volatile__ ( TEXT16_CODE ( "\nundinet_isr:\n\t"
  239. "incb %%cs:%c0\n\t"
  240. "iret\n\t" )
  241. : : "p" ( & __from_text16 ( trigger_count ) ) );
  242. hook_bios_interrupt ( IRQ_INT ( irq ),
  243. ( ( unsigned int ) undinet_isr ),
  244. &prev_handler[irq] );
  245. }
  246. /**
  247. * Unhook UNDI interrupt service routine
  248. *
  249. * @v irq IRQ number
  250. */
  251. static void undinet_unhook_isr ( unsigned int irq ) {
  252. assert ( irq <= IRQ_MAX );
  253. unhook_bios_interrupt ( IRQ_INT ( irq ),
  254. ( ( unsigned int ) undinet_isr ),
  255. &prev_handler[irq] );
  256. }
  257. /**
  258. * Test to see if UNDI ISR has been triggered
  259. *
  260. * @ret triggered ISR has been triggered since last check
  261. */
  262. static int undinet_isr_triggered ( void ) {
  263. static unsigned int last_trigger_count = 0;
  264. unsigned int this_trigger_count;
  265. /* Read trigger_count. Do this only once; it is volatile */
  266. this_trigger_count = trigger_count;
  267. if ( this_trigger_count == last_trigger_count ) {
  268. /* Not triggered */
  269. return 0;
  270. } else {
  271. /* Triggered */
  272. last_trigger_count = this_trigger_count;
  273. return 1;
  274. }
  275. }
  276. /*****************************************************************************
  277. *
  278. * UNDI network device interface
  279. *
  280. *****************************************************************************
  281. */
  282. /** Maximum length of a packet transmitted via the UNDI API */
  283. #define UNDI_IOB_LEN 1514
  284. /** UNDI I/O buffer */
  285. static char __data16_array ( undinet_iob, [UNDI_IOB_LEN] );
  286. #define undinet_iob __use_data16 ( undinet_iob )
  287. /** UNDI transmit buffer descriptor */
  288. static struct s_PXENV_UNDI_TBD __data16 ( undinet_tbd );
  289. #define undinet_tbd __use_data16 ( undinet_tbd )
  290. /**
  291. * Transmit packet
  292. *
  293. * @v netdev Network device
  294. * @v iobuf I/O buffer
  295. * @ret rc Return status code
  296. */
  297. static int undinet_transmit ( struct net_device *netdev,
  298. struct io_buffer *iobuf ) {
  299. struct undi_nic *undinic = netdev->priv;
  300. struct s_PXENV_UNDI_TRANSMIT undi_transmit;
  301. size_t len = iob_len ( iobuf );
  302. int rc;
  303. /* Copy packet to UNDI I/O buffer */
  304. if ( len > sizeof ( undinet_iob ) )
  305. len = sizeof ( undinet_iob );
  306. memcpy ( &undinet_iob, iobuf->data, len );
  307. /* Create PXENV_UNDI_TRANSMIT data structure */
  308. memset ( &undi_transmit, 0, sizeof ( undi_transmit ) );
  309. undi_transmit.DestAddr.segment = rm_ds;
  310. undi_transmit.DestAddr.offset
  311. = ( ( unsigned ) & __from_data16 ( undinet_tbd ) );
  312. undi_transmit.TBD.segment = rm_ds;
  313. undi_transmit.TBD.offset
  314. = ( ( unsigned ) & __from_data16 ( undinet_tbd ) );
  315. /* Create PXENV_UNDI_TBD data structure */
  316. undinet_tbd.ImmedLength = len;
  317. undinet_tbd.Xmit.segment = rm_ds;
  318. undinet_tbd.Xmit.offset
  319. = ( ( unsigned ) & __from_data16 ( undinet_iob ) );
  320. /* Issue PXE API call */
  321. if ( ( rc = undinet_call ( undinic, PXENV_UNDI_TRANSMIT,
  322. &undi_transmit,
  323. sizeof ( undi_transmit ) ) ) != 0 )
  324. goto done;
  325. /* Free I/O buffer */
  326. netdev_tx_complete ( netdev, iobuf );
  327. done:
  328. return rc;
  329. }
  330. /**
  331. * Poll for received packets
  332. *
  333. * @v netdev Network device
  334. * @v rx_quota Maximum number of packets to receive
  335. *
  336. * Fun, fun, fun. UNDI drivers don't use polling; they use
  337. * interrupts. We therefore cheat and pretend that an interrupt has
  338. * occurred every time undinet_poll() is called. This isn't too much
  339. * of a hack; PCI devices share IRQs and so the first thing that a
  340. * proper ISR should do is call PXENV_UNDI_ISR to determine whether or
  341. * not the UNDI NIC generated the interrupt; there is no harm done by
  342. * spurious calls to PXENV_UNDI_ISR. Similarly, we wouldn't be
  343. * handling them any more rapidly than the usual rate of
  344. * undinet_poll() being called even if we did implement a full ISR.
  345. * So it should work. Ha!
  346. *
  347. * Addendum (21/10/03). Some cards don't play nicely with this trick,
  348. * so instead of doing it the easy way we have to go to all the hassle
  349. * of installing a genuine interrupt service routine and dealing with
  350. * the wonderful 8259 Programmable Interrupt Controller. Joy.
  351. */
  352. static void undinet_poll ( struct net_device *netdev, unsigned int rx_quota ) {
  353. struct undi_nic *undinic = netdev->priv;
  354. struct s_PXENV_UNDI_ISR undi_isr;
  355. struct io_buffer *iobuf = NULL;
  356. size_t len;
  357. size_t frag_len;
  358. int rc;
  359. if ( ! undinic->isr_processing ) {
  360. /* Do nothing unless ISR has been triggered */
  361. if ( ! undinet_isr_triggered() )
  362. return;
  363. /* See if this was our interrupt */
  364. memset ( &undi_isr, 0, sizeof ( undi_isr ) );
  365. undi_isr.FuncFlag = PXENV_UNDI_ISR_IN_START;
  366. if ( ( rc = undinet_call ( undinic, PXENV_UNDI_ISR, &undi_isr,
  367. sizeof ( undi_isr ) ) ) != 0 )
  368. return;
  369. /* Send EOI to the PIC. In an ideal world, we'd do
  370. * this only for interrupts which the UNDI stack
  371. * reports as "ours". However, since we don't (can't)
  372. * chain to the previous interrupt handler, we have to
  373. * acknowledge all interrupts. See undinet_hook_isr()
  374. * for more background.
  375. */
  376. send_eoi ( undinic->irq );
  377. /* If this wasn't our interrupt, exit now */
  378. if ( undi_isr.FuncFlag != PXENV_UNDI_ISR_OUT_OURS )
  379. return;
  380. /* Start ISR processing */
  381. undinic->isr_processing = 1;
  382. undi_isr.FuncFlag = PXENV_UNDI_ISR_IN_PROCESS;
  383. } else {
  384. /* Continue ISR processing */
  385. undi_isr.FuncFlag = PXENV_UNDI_ISR_IN_GET_NEXT;
  386. }
  387. /* Run through the ISR loop */
  388. while ( rx_quota ) {
  389. if ( ( rc = undinet_call ( undinic, PXENV_UNDI_ISR, &undi_isr,
  390. sizeof ( undi_isr ) ) ) != 0 )
  391. break;
  392. switch ( undi_isr.FuncFlag ) {
  393. case PXENV_UNDI_ISR_OUT_TRANSMIT:
  394. /* We don't care about transmit completions */
  395. break;
  396. case PXENV_UNDI_ISR_OUT_RECEIVE:
  397. /* Packet fragment received */
  398. len = undi_isr.FrameLength;
  399. frag_len = undi_isr.BufferLength;
  400. if ( ! iobuf )
  401. iobuf = alloc_iob ( len );
  402. if ( ! iobuf ) {
  403. DBGC ( undinic, "UNDINIC %p could not "
  404. "allocate %zd bytes for RX buffer\n",
  405. undinic, len );
  406. /* Fragment will be dropped */
  407. goto done;
  408. }
  409. if ( frag_len > iob_tailroom ( iobuf ) ) {
  410. DBGC ( undinic, "UNDINIC %p fragment too "
  411. "large\n", undinic );
  412. frag_len = iob_tailroom ( iobuf );
  413. }
  414. copy_from_real ( iob_put ( iobuf, frag_len ),
  415. undi_isr.Frame.segment,
  416. undi_isr.Frame.offset, frag_len );
  417. if ( iob_len ( iobuf ) == len ) {
  418. netdev_rx ( netdev, iobuf );
  419. iobuf = NULL;
  420. --rx_quota;
  421. }
  422. break;
  423. case PXENV_UNDI_ISR_OUT_DONE:
  424. /* Processing complete */
  425. undinic->isr_processing = 0;
  426. goto done;
  427. default:
  428. /* Should never happen */
  429. DBGC ( undinic, "UNDINIC %p ISR returned invalid "
  430. "FuncFlag %04x\n", undinic, undi_isr.FuncFlag );
  431. undinic->isr_processing = 0;
  432. goto done;
  433. }
  434. undi_isr.FuncFlag = PXENV_UNDI_ISR_IN_GET_NEXT;
  435. }
  436. done:
  437. if ( iobuf ) {
  438. DBGC ( undinic, "UNDINIC %p returned incomplete packet\n",
  439. undinic );
  440. netdev_rx ( netdev, iobuf );
  441. }
  442. }
  443. /**
  444. * Open NIC
  445. *
  446. * @v netdev Net device
  447. * @ret rc Return status code
  448. */
  449. static int undinet_open ( struct net_device *netdev ) {
  450. struct undi_nic *undinic = netdev->priv;
  451. struct s_PXENV_UNDI_SET_STATION_ADDRESS undi_set_address;
  452. struct s_PXENV_UNDI_OPEN undi_open;
  453. int rc;
  454. /* Hook interrupt service routine and enable interrupt */
  455. undinet_hook_isr ( undinic->irq );
  456. enable_irq ( undinic->irq );
  457. send_eoi ( undinic->irq );
  458. /* Set station address. Required for some PXE stacks; will
  459. * spuriously fail on others. Ignore failures. We only ever
  460. * use it to set the MAC address to the card's permanent value
  461. * anyway.
  462. */
  463. memcpy ( undi_set_address.StationAddress, netdev->ll_addr,
  464. sizeof ( undi_set_address.StationAddress ) );
  465. undinet_call ( undinic, PXENV_UNDI_SET_STATION_ADDRESS,
  466. &undi_set_address, sizeof ( undi_set_address ) );
  467. /* Open NIC */
  468. memset ( &undi_open, 0, sizeof ( undi_open ) );
  469. undi_open.PktFilter = ( FLTR_DIRECTED | FLTR_BRDCST );
  470. if ( ( rc = undinet_call ( undinic, PXENV_UNDI_OPEN, &undi_open,
  471. sizeof ( undi_open ) ) ) != 0 )
  472. goto err;
  473. DBGC ( undinic, "UNDINIC %p opened\n", undinic );
  474. return 0;
  475. err:
  476. undinet_close ( netdev );
  477. return rc;
  478. }
  479. /**
  480. * Close NIC
  481. *
  482. * @v netdev Net device
  483. */
  484. static void undinet_close ( struct net_device *netdev ) {
  485. struct undi_nic *undinic = netdev->priv;
  486. struct s_PXENV_UNDI_ISR undi_isr;
  487. struct s_PXENV_UNDI_CLOSE undi_close;
  488. int rc;
  489. /* Ensure ISR has exited cleanly */
  490. while ( undinic->isr_processing ) {
  491. undi_isr.FuncFlag = PXENV_UNDI_ISR_IN_GET_NEXT;
  492. if ( ( rc = undinet_call ( undinic, PXENV_UNDI_ISR, &undi_isr,
  493. sizeof ( undi_isr ) ) ) != 0 )
  494. break;
  495. switch ( undi_isr.FuncFlag ) {
  496. case PXENV_UNDI_ISR_OUT_TRANSMIT:
  497. case PXENV_UNDI_ISR_OUT_RECEIVE:
  498. /* Continue draining */
  499. break;
  500. default:
  501. /* Stop processing */
  502. undinic->isr_processing = 0;
  503. break;
  504. }
  505. }
  506. /* Close NIC */
  507. undinet_call ( undinic, PXENV_UNDI_CLOSE, &undi_close,
  508. sizeof ( undi_close ) );
  509. /* Disable interrupt and unhook ISR */
  510. disable_irq ( undinic->irq );
  511. undinet_unhook_isr ( undinic->irq );
  512. DBGC ( undinic, "UNDINIC %p closed\n", undinic );
  513. }
  514. /**
  515. * Probe UNDI device
  516. *
  517. * @v undi UNDI device
  518. * @ret rc Return status code
  519. */
  520. int undinet_probe ( struct undi_device *undi ) {
  521. struct net_device *netdev;
  522. struct undi_nic *undinic;
  523. struct s_PXENV_START_UNDI start_undi;
  524. struct s_PXENV_UNDI_STARTUP undi_startup;
  525. struct s_PXENV_UNDI_INITIALIZE undi_initialize;
  526. struct s_PXENV_UNDI_GET_INFORMATION undi_info;
  527. struct s_PXENV_UNDI_SHUTDOWN undi_shutdown;
  528. struct s_PXENV_UNDI_CLEANUP undi_cleanup;
  529. struct s_PXENV_STOP_UNDI stop_undi;
  530. int rc;
  531. /* Allocate net device */
  532. netdev = alloc_etherdev ( sizeof ( *undinic ) );
  533. if ( ! netdev )
  534. return -ENOMEM;
  535. undinic = netdev->priv;
  536. undi_set_drvdata ( undi, netdev );
  537. netdev->dev = &undi->dev;
  538. memset ( undinic, 0, sizeof ( *undinic ) );
  539. undinic->entry = undi->entry;
  540. DBGC ( undinic, "UNDINIC %p using UNDI %p\n", undinic, undi );
  541. /* Hook in UNDI stack */
  542. if ( ! ( undi->flags & UNDI_FL_STARTED ) ) {
  543. memset ( &start_undi, 0, sizeof ( start_undi ) );
  544. start_undi.AX = undi->pci_busdevfn;
  545. start_undi.BX = undi->isapnp_csn;
  546. start_undi.DX = undi->isapnp_read_port;
  547. start_undi.ES = BIOS_SEG;
  548. start_undi.DI = find_pnp_bios();
  549. if ( ( rc = undinet_call ( undinic, PXENV_START_UNDI,
  550. &start_undi,
  551. sizeof ( start_undi ) ) ) != 0 )
  552. goto err_start_undi;
  553. }
  554. undi->flags |= UNDI_FL_STARTED;
  555. /* Bring up UNDI stack */
  556. memset ( &undi_startup, 0, sizeof ( undi_startup ) );
  557. if ( ( rc = undinet_call ( undinic, PXENV_UNDI_STARTUP, &undi_startup,
  558. sizeof ( undi_startup ) ) ) != 0 )
  559. goto err_undi_startup;
  560. memset ( &undi_initialize, 0, sizeof ( undi_initialize ) );
  561. if ( ( rc = undinet_call ( undinic, PXENV_UNDI_INITIALIZE,
  562. &undi_initialize,
  563. sizeof ( undi_initialize ) ) ) != 0 )
  564. goto err_undi_initialize;
  565. /* Get device information */
  566. memset ( &undi_info, 0, sizeof ( undi_info ) );
  567. if ( ( rc = undinet_call ( undinic, PXENV_UNDI_GET_INFORMATION,
  568. &undi_info, sizeof ( undi_info ) ) ) != 0 )
  569. goto err_undi_get_information;
  570. memcpy ( netdev->ll_addr, undi_info.PermNodeAddress, ETH_ALEN );
  571. undinic->irq = undi_info.IntNumber;
  572. if ( undinic->irq > IRQ_MAX ) {
  573. DBGC ( undinic, "UNDINIC %p invalid IRQ %d\n",
  574. undinic, undinic->irq );
  575. goto err_bad_irq;
  576. }
  577. DBGC ( undinic, "UNDINIC %p is %s on IRQ %d\n",
  578. undinic, eth_ntoa ( netdev->ll_addr ), undinic->irq );
  579. /* Point to NIC specific routines */
  580. netdev->open = undinet_open;
  581. netdev->close = undinet_close;
  582. netdev->transmit = undinet_transmit;
  583. netdev->poll = undinet_poll;
  584. /* Register network device */
  585. if ( ( rc = register_netdev ( netdev ) ) != 0 )
  586. goto err_register;
  587. DBGC ( undinic, "UNDINIC %p added\n", undinic );
  588. return 0;
  589. err_register:
  590. err_bad_irq:
  591. err_undi_get_information:
  592. err_undi_initialize:
  593. /* Shut down UNDI stack */
  594. memset ( &undi_shutdown, 0, sizeof ( undi_shutdown ) );
  595. undinet_call ( undinic, PXENV_UNDI_SHUTDOWN, &undi_shutdown,
  596. sizeof ( undi_shutdown ) );
  597. memset ( &undi_cleanup, 0, sizeof ( undi_cleanup ) );
  598. undinet_call ( undinic, PXENV_UNDI_CLEANUP, &undi_cleanup,
  599. sizeof ( undi_cleanup ) );
  600. err_undi_startup:
  601. /* Unhook UNDI stack */
  602. memset ( &stop_undi, 0, sizeof ( stop_undi ) );
  603. undinet_call ( undinic, PXENV_STOP_UNDI, &stop_undi,
  604. sizeof ( stop_undi ) );
  605. err_start_undi:
  606. free_netdev ( netdev );
  607. undi_set_drvdata ( undi, NULL );
  608. return rc;
  609. }
  610. /**
  611. * Remove UNDI device
  612. *
  613. * @v undi UNDI device
  614. */
  615. void undinet_remove ( struct undi_device *undi ) {
  616. struct net_device *netdev = undi_get_drvdata ( undi );
  617. struct undi_nic *undinic = netdev->priv;
  618. struct s_PXENV_UNDI_SHUTDOWN undi_shutdown;
  619. struct s_PXENV_UNDI_CLEANUP undi_cleanup;
  620. struct s_PXENV_STOP_UNDI stop_undi;
  621. /* Unregister net device */
  622. unregister_netdev ( netdev );
  623. /* Shut down UNDI stack */
  624. memset ( &undi_shutdown, 0, sizeof ( undi_shutdown ) );
  625. undinet_call ( undinic, PXENV_UNDI_SHUTDOWN, &undi_shutdown,
  626. sizeof ( undi_shutdown ) );
  627. memset ( &undi_cleanup, 0, sizeof ( undi_cleanup ) );
  628. undinet_call ( undinic, PXENV_UNDI_CLEANUP, &undi_cleanup,
  629. sizeof ( undi_cleanup ) );
  630. /* Unhook UNDI stack */
  631. memset ( &stop_undi, 0, sizeof ( stop_undi ) );
  632. undinet_call ( undinic, PXENV_STOP_UNDI, &stop_undi,
  633. sizeof ( stop_undi ) );
  634. undi->flags &= ~UNDI_FL_STARTED;
  635. /* Free network device */
  636. free_netdev ( netdev );
  637. DBGC ( undinic, "UNDINIC %p removed\n", undinic );
  638. }