Home
last modified time | relevance | path

Searched refs:lo_addr (Results 1 – 11 of 11) sorted by relevance

/drivers/net/ethernet/stmicro/stmmac/
Ddwmac_lib.c278 unsigned int hi_addr, lo_addr; in stmmac_get_mac_addr() local
282 lo_addr = readl(ioaddr + low); in stmmac_get_mac_addr()
285 addr[0] = lo_addr & 0xff; in stmmac_get_mac_addr()
286 addr[1] = (lo_addr >> 8) & 0xff; in stmmac_get_mac_addr()
287 addr[2] = (lo_addr >> 16) & 0xff; in stmmac_get_mac_addr()
288 addr[3] = (lo_addr >> 24) & 0xff; in stmmac_get_mac_addr()
Ddwmac4_lib.c224 unsigned int hi_addr, lo_addr; in stmmac_dwmac4_get_mac_addr() local
228 lo_addr = readl(ioaddr + low); in stmmac_dwmac4_get_mac_addr()
231 addr[0] = lo_addr & 0xff; in stmmac_dwmac4_get_mac_addr()
232 addr[1] = (lo_addr >> 8) & 0xff; in stmmac_dwmac4_get_mac_addr()
233 addr[2] = (lo_addr >> 16) & 0xff; in stmmac_dwmac4_get_mac_addr()
234 addr[3] = (lo_addr >> 24) & 0xff; in stmmac_dwmac4_get_mac_addr()
Ddwxgmac2_core.c355 u32 hi_addr, lo_addr; in dwxgmac2_get_umac_addr() local
359 lo_addr = readl(ioaddr + XGMAC_ADDRx_LOW(reg_n)); in dwxgmac2_get_umac_addr()
362 addr[0] = lo_addr & 0xff; in dwxgmac2_get_umac_addr()
363 addr[1] = (lo_addr >> 8) & 0xff; in dwxgmac2_get_umac_addr()
364 addr[2] = (lo_addr >> 16) & 0xff; in dwxgmac2_get_umac_addr()
365 addr[3] = (lo_addr >> 24) & 0xff; in dwxgmac2_get_umac_addr()
/drivers/gpu/drm/amd/amdgpu/
Ddf_v3_6.c97 uint32_t lo_addr, uint32_t *lo_val, in df_v3_6_perfmon_rreg() argument
106 WREG32(address, lo_addr); in df_v3_6_perfmon_rreg()
119 static void df_v3_6_perfmon_wreg(struct amdgpu_device *adev, uint32_t lo_addr, in df_v3_6_perfmon_wreg() argument
128 WREG32(address, lo_addr); in df_v3_6_perfmon_wreg()
137 uint32_t lo_addr, uint32_t lo_val, in df_v3_6_perfmon_arm_with_status() argument
147 WREG32(address, lo_addr); in df_v3_6_perfmon_arm_with_status()
152 WREG32(address, lo_addr); in df_v3_6_perfmon_arm_with_status()
172 uint32_t lo_addr, uint32_t lo_val, in df_v3_6_perfmon_arm_with_retry() argument
179 if (!df_v3_6_perfmon_arm_with_status(adev, lo_addr, lo_val, in df_v3_6_perfmon_arm_with_retry()
/drivers/net/ethernet/intel/ice/
Dice_ptp_hw.c132 u32 lo_addr, hi_addr, lo, hi; in ice_read_phy_tstamp_e810() local
135 lo_addr = TS_EXT(LOW_TX_MEMORY_BANK_START, lport, idx); in ice_read_phy_tstamp_e810()
138 status = ice_read_phy_reg_e810(hw, lo_addr, &lo); in ice_read_phy_tstamp_e810()
171 u32 lo_addr, hi_addr; in ice_clear_phy_tstamp_e810() local
174 lo_addr = TS_EXT(LOW_TX_MEMORY_BANK_START, lport, idx); in ice_clear_phy_tstamp_e810()
177 status = ice_write_phy_reg_e810(hw, lo_addr, 0); in ice_clear_phy_tstamp_e810()
/drivers/net/ethernet/huawei/hinic/
Dhinic_common.c58 sge->lo_addr = lower_32_bits(addr); in hinic_set_sge()
70 return (dma_addr_t)((((u64)sge->hi_addr) << 32) | sge->lo_addr); in hinic_sge_to_dma()
Dhinic_common.h17 u32 lo_addr; member
Dhinic_hw_qp.c932 sge->lo_addr = be32_to_cpu(rq_wqe->buf_desc.lo_addr); in hinic_rq_get_sge()
963 buf_desc->lo_addr = sge->lo_addr; in hinic_rq_prepare_wqe()
Dhinic_hw_wqe.h436 u32 lo_addr; member
/drivers/net/ethernet/calxeda/
Dxgmac.c629 u32 hi_addr, lo_addr; in xgmac_get_mac_addr() local
633 lo_addr = readl(ioaddr + XGMAC_ADDR_LOW(num)); in xgmac_get_mac_addr()
636 addr[0] = lo_addr & 0xff; in xgmac_get_mac_addr()
637 addr[1] = (lo_addr >> 8) & 0xff; in xgmac_get_mac_addr()
638 addr[2] = (lo_addr >> 16) & 0xff; in xgmac_get_mac_addr()
639 addr[3] = (lo_addr >> 24) & 0xff; in xgmac_get_mac_addr()
/drivers/hwmon/
Demc2103.c101 u8 hi_addr, u8 lo_addr) in read_fan_from_i2c() argument
108 if (read_u8_from_i2c(client, lo_addr, &lo_byte) < 0) in read_fan_from_i2c()