Lines Matching defs:dword
115 u32 offset, u32 dword);
3273 u32 dword = 0;
3308 &dword);
3312 data[i] = (u16)(dword & 0xFFFF);
3314 data[i] = (u16)((dword >> 16) & 0xFFFF);
3323 &dword);
3331 data[i] = (u16)(dword & 0xFFFF);
3336 data[i + 1] = (u16)(dword >> 16 & 0xFFFF);
3528 * e1000_read_flash_dword_ich8lan - Read dword from flash
3533 * Reads the flash dword at offset into data. Offset is converted
3669 * e1000_read_flash_data32_ich8lan - Read dword from NVM
3671 * @offset: The offset (in bytes) of the dword to read.
3672 * @data: Pointer to the dword to store the value read.
3794 u32 dword = 0;
3835 &dword);
3838 dword &= 0xffff0000;
3839 dword |= (dev_spec->shadow_ram[i].value & 0xffff);
3842 dword &= 0x0000ffff;
3843 dword |= ((dev_spec->shadow_ram[i + 1].value & 0xffff)
3857 dword |= E1000_ICH_NVM_SIG_MASK << 16;
3867 dword);
3888 /*offset in words but we read dword */
3890 ret_val = e1000_read_flash_dword_ich8lan(hw, act_offset, &dword);
3895 dword &= 0xBFFFFFFF;
3896 ret_val = e1000_retry_write_flash_dword_ich8lan(hw, act_offset, dword);
3908 /* offset in words but we read dword */
3910 ret_val = e1000_read_flash_dword_ich8lan(hw, act_offset, &dword);
3915 dword &= 0x00FFFFFF;
3916 ret_val = e1000_retry_write_flash_dword_ich8lan(hw, act_offset, dword);
4386 * e1000_retry_write_flash_dword_ich8lan - Writes a dword to NVM
4389 * @dword: The dword to write to the NVM.
4391 * Writes a single dword to the NVM using the flash access registers.
4395 u32 offset, u32 dword)
4402 ret_val = e1000_write_flash_data32_ich8lan(hw, offset, dword);
4407 e_dbg("Retrying Byte %8.8X at offset %u\n", dword, offset);
4409 ret_val = e1000_write_flash_data32_ich8lan(hw, offset, dword);