Lines Matching refs:dword

136 						  u32 offset, u32 dword);
3511 u32 dword = 0;
3547 &dword);
3551 data[i] = (u16)(dword & 0xFFFF);
3553 data[i] = (u16)((dword >> 16) & 0xFFFF);
3562 &dword);
3569 data[i] = (u16) (dword & 0xFFFF);
3574 data[i+1] = (u16) (dword >> 16 & 0xFFFF);
3778 * e1000_read_flash_dword_ich8lan - Read dword from flash
3783 * Reads the flash dword at offset into data. Offset is converted
3930 * e1000_read_flash_data32_ich8lan - Read dword from NVM
3932 * @offset: The offset (in bytes) of the dword to read.
3933 * @data: Pointer to the dword to store the value read.
4060 u32 dword = 0;
4103 &dword);
4106 dword &= 0xffff0000;
4107 dword |= (dev_spec->shadow_ram[i].value & 0xffff);
4110 dword &= 0x0000ffff;
4111 dword |= ((dev_spec->shadow_ram[i + 1].value & 0xffff)
4125 dword |= E1000_ICH_NVM_SIG_MASK << 16;
4135 dword);
4155 /*offset in words but we read dword*/
4157 ret_val = e1000_read_flash_dword_ich8lan(hw, act_offset, &dword);
4162 dword &= 0xBFFFFFFF;
4163 ret_val = e1000_retry_write_flash_dword_ich8lan(hw, act_offset, dword);
4175 /* offset in words but we read dword*/
4177 ret_val = e1000_read_flash_dword_ich8lan(hw, act_offset, &dword);
4182 dword &= 0x00FFFFFF;
4183 ret_val = e1000_retry_write_flash_dword_ich8lan(hw, act_offset, dword);
4622 * e1000_retry_write_flash_dword_ich8lan - Writes a dword to NVM
4625 * @dword: The dword to write to the NVM.
4627 * Writes a single dword to the NVM using the flash access registers.
4631 u32 offset, u32 dword)
4641 ret_val = e1000_write_flash_data32_ich8lan(hw, offset, dword);
4646 DEBUGOUT2("Retrying Byte %8.8X at offset %u\n", dword, offset);
4648 ret_val = e1000_write_flash_data32_ich8lan(hw, offset, dword);