Lines Matching defs:dword

115 						 u32 offset, u32 dword);
3293 u32 dword = 0;
3328 &dword);
3332 data[i] = (u16)(dword & 0xFFFF);
3334 data[i] = (u16)((dword >> 16) & 0xFFFF);
3343 &dword);
3351 data[i] = (u16)(dword & 0xFFFF);
3356 data[i + 1] = (u16)(dword >> 16 & 0xFFFF);
3548 * e1000_read_flash_dword_ich8lan - Read dword from flash
3553 * Reads the flash dword at offset into data. Offset is converted
3689 * e1000_read_flash_data32_ich8lan - Read dword from NVM
3691 * @offset: The offset (in bytes) of the dword to read.
3692 * @data: Pointer to the dword to store the value read.
3814 u32 dword = 0;
3855 &dword);
3858 dword &= 0xffff0000;
3859 dword |= (dev_spec->shadow_ram[i].value & 0xffff);
3862 dword &= 0x0000ffff;
3863 dword |= ((dev_spec->shadow_ram[i + 1].value & 0xffff)
3877 dword |= E1000_ICH_NVM_SIG_MASK << 16;
3887 dword);
3908 /*offset in words but we read dword */
3910 ret_val = e1000_read_flash_dword_ich8lan(hw, act_offset, &dword);
3915 dword &= 0xBFFFFFFF;
3916 ret_val = e1000_retry_write_flash_dword_ich8lan(hw, act_offset, dword);
3921 /* offset in words but we read dword */
3923 ret_val = e1000_read_flash_dword_ich8lan(hw, act_offset, &dword);
3928 dword &= 0x00FFFFFF;
3929 ret_val = e1000_retry_write_flash_dword_ich8lan(hw, act_offset, dword);
4402 * e1000_retry_write_flash_dword_ich8lan - Writes a dword to NVM
4405 * @dword: The dword to write to the NVM.
4407 * Writes a single dword to the NVM using the flash access registers.
4411 u32 offset, u32 dword)
4418 ret_val = e1000_write_flash_data32_ich8lan(hw, offset, dword);
4423 e_dbg("Retrying Byte %8.8X at offset %u\n", dword, offset);
4425 ret_val = e1000_write_flash_data32_ich8lan(hw, offset, dword);