Lines Matching refs:data

232  * Shift data bits out to the EEPROM.
235 * data - data to send to the EEPROM
240 uint16_t data,
248 * "data" parameter will be shifted out to the EEPROM one bit at a time.
249 * In order to do this, "data" must be broken down into bits.
266 if(data & mask)
287 * Shift data bits in from the EEPROM
297 uint16_t data;
309 data = 0;
312 data = data << 1;
319 data |= 1;
324 return data;
525 * data - word read from the EEPROM
532 uint16_t *data)
571 /* Read the data. The address of the eeprom internally increments with
578 data[i] = (word_in >> 8) | (word_in << 8);
588 /* Read the data. For microwire, each word requires the overhead
590 data[i] = e1000_shift_in_ee_bits(hw, 16);
2053 * mii_reg - data to write to the MII control register
2526 * idles or data), we need to force link up. We also need to give
2704 * Shifts data bits out to the PHY
2707 * data - Data to send out to the PHY
2714 uint32_t data,
2721 * in the "data" parameter will be shifted out to the PHY one bit at a
2722 * time. In order to do this, "data" must be broken down into bits.
2738 if(data & mask) ctrl |= E1000_CTRL_MDIO;
2754 * Shifts data bits in from the PHY
2764 uint16_t data = 0;
2783 /* Raise and Lower the clock before reading in the data. This accounts for
2790 for(data = 0, i = 0; i < 16; i++) {
2791 data = data << 1;
2795 if(ctrl & E1000_CTRL_MDIO) data |= 1;
2802 return data;
2853 * PHY to retrieve the desired data.
2892 * followed by a shift in of 16 bits which contains the desired data.
2913 * data - data to write to the PHY
2954 /* Set up Op-code, Phy Address, register address, and data intended
2956 * care of interfacing with the PHY to send the desired data.
3287 * e1000_sw_init initializes the Adapter private data structure.
3441 /* nic->packet should contain data on return */
3442 /* nic->packetlen should contain length of data */
3487 txhd->lower.data = sizeof (hdr);
3488 txhd->upper.data = 0;
3491 txp->lower.data = E1000_TXD_CMD_RPS | E1000_TXD_CMD_EOP | E1000_TXD_CMD_IFCS | size;
3492 txp->upper.data = 0;
3495 while (!(txp->upper.data & E1000_TXD_STAT_DD)) {