• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /freebsd-12-stable/sys/dev/e1000/

Lines Matching refs:dword

137 						  u32 offset, u32 dword);
3525 u32 dword = 0;
3561 &dword);
3565 data[i] = (u16)(dword & 0xFFFF);
3567 data[i] = (u16)((dword >> 16) & 0xFFFF);
3576 &dword);
3583 data[i] = (u16) (dword & 0xFFFF);
3588 data[i+1] = (u16) (dword >> 16 & 0xFFFF);
3792 * e1000_read_flash_dword_ich8lan - Read dword from flash
3797 * Reads the flash dword at offset into data. Offset is converted
3944 * e1000_read_flash_data32_ich8lan - Read dword from NVM
3946 * @offset: The offset (in bytes) of the dword to read.
3947 * @data: Pointer to the dword to store the value read.
4074 u32 dword = 0;
4117 &dword);
4120 dword &= 0xffff0000;
4121 dword |= (dev_spec->shadow_ram[i].value & 0xffff);
4124 dword &= 0x0000ffff;
4125 dword |= ((dev_spec->shadow_ram[i + 1].value & 0xffff)
4139 dword |= E1000_ICH_NVM_SIG_MASK << 16;
4149 dword);
4169 /*offset in words but we read dword*/
4171 ret_val = e1000_read_flash_dword_ich8lan(hw, act_offset, &dword);
4176 dword &= 0xBFFFFFFF;
4177 ret_val = e1000_retry_write_flash_dword_ich8lan(hw, act_offset, dword);
4182 /* offset in words but we read dword*/
4184 ret_val = e1000_read_flash_dword_ich8lan(hw, act_offset, &dword);
4189 dword &= 0x00FFFFFF;
4190 ret_val = e1000_retry_write_flash_dword_ich8lan(hw, act_offset, dword);
4633 * e1000_retry_write_flash_dword_ich8lan - Writes a dword to NVM
4636 * @dword: The dword to write to the NVM.
4638 * Writes a single dword to the NVM using the flash access registers.
4642 u32 offset, u32 dword)
4652 ret_val = e1000_write_flash_data32_ich8lan(hw, offset, dword);
4657 DEBUGOUT2("Retrying Byte %8.8X at offset %u\n", dword, offset);
4659 ret_val = e1000_write_flash_data32_ich8lan(hw, offset, dword);