Searched defs:mii (Results 1 - 9 of 9) sorted by relevance

/vbox/src/VBox/Devices/PC/ipxe/src/drivers/net/
H A Dskeleton.h20 struct mii_interface mii; member in struct:skeleton_nic
H A Dskeleton.c42 #include <ipxe/mii.h>
61 * @v mii MII interface
65 static int skeleton_mii_read ( struct mii_interface *mii, unsigned int reg ) { argument
67 container_of ( mii, struct skeleton_nic, mii );
77 * @v mii MII interface
82 static int skeleton_mii_write ( struct mii_interface *mii, unsigned int reg, argument
85 container_of ( mii, struct skeleton_nic, mii );
259 mii_init ( &skel->mii,
[all...]
H A Drealtek.c47 #include <ipxe/mii.h>
172 * @v mii MII interface
176 static int realtek_mii_read ( struct mii_interface *mii, unsigned int reg ) { argument
177 struct realtek_nic *rtl = container_of ( mii, struct realtek_nic, mii );
209 * @v mii MII interface
214 static int realtek_mii_write ( struct mii_interface *mii, unsigned int reg, argument
216 struct realtek_nic *rtl = container_of ( mii, struct realtek_nic, mii );
968 mii_init ( &rtl->mii,
[all...]
H A Dpcnet32.c38 #include <mii.h>
159 if ( ! priv->mii )
178 if ( ! priv->mii )
320 int fdx, mii, fset; local
340 fdx = mii = fset = 0;
358 mii = 1;
364 mii = 1;
370 mii = 1;
391 mii = 1;
396 mii
[all...]
H A Dpcnet32.h145 unsigned int mii:1, member in struct:pcnet32_private
H A Dsis900.c123 } mii;
384 /* 630ET : set the mii access mode as software-mode */
390 /* probe for mii transceiver */
391 /* search for total of 32 possible mii phy addresses */
400 /* the mii is not accessable, try next one */
406 /* search our mii table for the current mii */
415 mii.chip_info = &mii_chip_table[i];
416 mii.phy_addr = phy_addr;
417 mii
122 } mii; variable in typeref:struct:mii_phy
[all...]
H A Drealtek.h252 struct mii_interface mii; member in struct:realtek_nic
H A Datl1e.h30 #include <mii.h>
224 struct mii_if_info mii; /* MII interface info */ member in struct:atl1e_adapter
/vbox/src/VBox/Devices/PC/ipxe/src/include/ipxe/
H A Dmii.h12 #include <mii.h>
22 * @v mii MII interface
26 int ( * read ) ( struct mii_interface *mii, unsigned int reg );
30 * @v mii MII interface
35 int ( * write ) ( struct mii_interface *mii, unsigned int reg,
48 * @v mii MII interface
52 mii_init ( struct mii_interface *mii, struct mii_operations *op ) { argument
53 mii->op = op;
59 * @v mii MII interface
64 mii_read ( struct mii_interface *mii, unsigne argument
77 mii_write( struct mii_interface *mii, unsigned int reg, unsigned int data ) argument
[all...]

Completed in 66 milliseconds