Searched refs:readq_relaxed (Results 1 - 25 of 39) sorted by relevance

12

/linux-master/arch/arm64/include/asm/
H A Darch_gicv3.h143 #define gic_read_typer(c) readq_relaxed(c)
145 #define gic_read_lpir(c) readq_relaxed(c)
151 #define gits_read_baser(c) readq_relaxed(c)
154 #define gits_read_cbaser(c) readq_relaxed(c)
159 #define gicr_read_propbaser(c) readq_relaxed(c)
163 #define gicr_read_pendbaser(c) readq_relaxed(c)
166 #define gicr_read_vpropbaser(c) readq_relaxed(c)
169 #define gicr_read_vpendbaser(c) readq_relaxed(c)
/linux-master/drivers/net/ethernet/cavium/thunder/
H A Dthunder_xcv.c70 cfg = readq_relaxed(xcv->reg_base + XCV_RESET);
75 cfg = readq_relaxed(xcv->reg_base + XCV_RESET);
84 cfg = readq_relaxed(xcv->reg_base + XCV_DLL_CTL);
92 cfg = readq_relaxed(xcv->reg_base + XCV_RESET);
95 readq_relaxed(xcv->reg_base + XCV_RESET);
100 cfg = readq_relaxed(xcv->reg_base + XCV_RESET);
104 cfg = readq_relaxed(xcv->reg_base + XCV_RESET);
127 cfg = readq_relaxed(xcv->reg_base + XCV_CTL);
133 cfg = readq_relaxed(xcv->reg_base + XCV_RESET);
138 cfg = readq_relaxed(xc
[all...]
/linux-master/arch/riscv/include/asm/
H A Dtimex.h20 return readq_relaxed(clint_time_val);
H A Dmmio.h124 #define readq_relaxed(c) ({ u64 __v; __io_rbr(); __v = readq_cpu(c); __io_rar(); __v; }) macro
/linux-master/include/linux/
H A Dio-64-nonatomic-hi-lo.h50 #ifndef readq_relaxed
51 #define readq_relaxed hi_lo_readq_relaxed macro
H A Dio-64-nonatomic-lo-hi.h50 #ifndef readq_relaxed
51 #define readq_relaxed lo_hi_readq_relaxed macro
H A Diopoll.h200 readx_poll_timeout(readq_relaxed, addr, val, cond, delay_us, timeout_us)
203 readx_poll_timeout_atomic(readq_relaxed, addr, val, cond, delay_us, timeout_us)
H A Dcoresight.h514 return readq_relaxed(csa->base + offset);
/linux-master/drivers/bus/fsl-mc/
H A Dmc-sys.c132 resp->header = cpu_to_le64(readq_relaxed(&portal->header));
145 cpu_to_le64(readq_relaxed(&portal->params[i]));
/linux-master/arch/arm64/kernel/
H A Dacpi_parking_protocol.c118 entry_point = readq_relaxed(&mailbox->entry_point);
/linux-master/drivers/perf/
H A Dmarvell_cn10k_ddr_pmu.c367 val = readq_relaxed(pmu->base + reg);
376 val = readq_relaxed(pmu->base + DDRC_PERF_CNT_FREERUN_EN);
397 return readq_relaxed(pmu->base + DDRC_PERF_CNT_VALUE_RD_OP);
400 return readq_relaxed(pmu->base + DDRC_PERF_CNT_VALUE_WR_OP);
402 val = readq_relaxed(pmu->base + DDRC_PERF_CNT_VALUE(counter));
H A Darm-cmn.c1404 reg = readq_relaxed(dtm->base + offset);
1414 u64 val = readq_relaxed(dtc->base + CMN_DT_PMCCNTR);
2140 u64 reg = readq_relaxed(cmn->base + offset + CMN_NODE_INFO);
2190 reg = readq_relaxed(cfg_region + CMN_CFGM_PERIPH_ID_01);
2204 reg = readq_relaxed(cfg_region + CMN_CFGM_INFO_GLOBAL);
2209 reg = readq_relaxed(cfg_region + CMN_CFGM_INFO_GLOBAL_1);
2213 reg = readq_relaxed(cfg_region + CMN_CHILD_INFO);
2222 reg = readq_relaxed(cfg_region + child_poff + i * 8);
2225 reg = readq_relaxed(cmn->base + xp_offset[i] + CMN_CHILD_INFO);
2290 reg = readq_relaxed(xp_regio
[all...]
/linux-master/drivers/crypto/marvell/octeontx2/
H A Dotx2_cpt_common.h142 return readq_relaxed(reg_base +
/linux-master/arch/alpha/include/asm/
H A Dio.h556 extern u64 readq_relaxed(const volatile void __iomem *addr);
560 #define readq_relaxed readq_relaxed macro
583 extern inline u64 readq_relaxed(const volatile void __iomem *addr) function
/linux-master/drivers/iommu/arm/arm-smmu/
H A Darm-smmu-nvidia.c81 return readq_relaxed(reg);
207 iova = readq_relaxed(cb_base + ARM_SMMU_CB_FAR);
/linux-master/drivers/cpufreq/
H A Dapple-soc-cpufreq.c112 u64 reg = readq_relaxed(priv->reg_base + APPLE_DVFS_STATUS);
120 u64 reg = readq_relaxed(priv->reg_base + APPLE_DVFS_CMD);
/linux-master/drivers/soc/apple/
H A Dmailbox.c190 msg.msg0 = readq_relaxed(mbox->regs + mbox->hw->i2a_recv0);
193 readq_relaxed(mbox->regs + mbox->hw->i2a_recv1));
/linux-master/arch/alpha/kernel/
H A Dio.c263 u64 readq_relaxed(const volatile void __iomem *addr) function
272 EXPORT_SYMBOL(readq_relaxed); variable
/linux-master/arch/sh/include/asm/
H A Dio.h42 #define readq_relaxed(c) ({ u64 __v = ioswabq(__raw_readq(c)); __v; }) macro
52 #define readq(a) ({ u64 r_ = readq_relaxed(a); rmb(); r_; })
/linux-master/include/asm-generic/
H A Dio.h341 #if defined(readq) && !defined(readq_relaxed)
342 #define readq_relaxed readq_relaxed macro
343 static inline u64 readq_relaxed(const volatile void __iomem *addr) function
/linux-master/arch/x86/include/asm/
H A Dio.h99 #define readq_relaxed(a) __readq(a) macro
/linux-master/drivers/clocksource/
H A Dtimer-clint.c73 #define clint_get_cycles() readq_relaxed(clint_timer_val)
/linux-master/drivers/mmc/host/
H A Ddw_mmc.h489 readq_relaxed((dev)->regs + SDMMC_##reg)
/linux-master/arch/sparc/include/asm/
H A Dio_64.h144 #define readq_relaxed readq macro
/linux-master/arch/mips/include/asm/
H A Dio.h364 #define readq_relaxed __relaxed_readq macro

Completed in 228 milliseconds

12