Home
last modified time | relevance | path

Searched defs:o (Results 1 – 25 of 341) sorted by relevance

12345678910>>...14

/linux-6.3-rc2/arch/mips/include/asm/mach-bcm63xx/
A Dbcm63xx_io.h69 #define bcm_rset_writeb(s, v, o) bcm_writeb((v), \ argument
71 #define bcm_rset_writew(s, v, o) bcm_writew((v), \ argument
73 #define bcm_rset_writel(s, v, o) bcm_writel((v), \ argument
79 #define bcm_perf_readl(o) bcm_rset_readl(RSET_PERF, (o)) argument
83 #define bcm_wdt_readl(o) bcm_rset_readl(RSET_WDT, (o)) argument
85 #define bcm_gpio_readl(o) bcm_rset_readl(RSET_GPIO, (o)) argument
89 #define bcm_mpi_readl(o) bcm_rset_readl(RSET_MPI, (o)) argument
93 #define bcm_pcie_readl(o) bcm_rset_readl(RSET_PCIE, (o)) argument
97 #define bcm_memc_readl(o) bcm_rset_readl(RSET_MEMC, (o)) argument
99 #define bcm_ddr_readl(o) bcm_rset_readl(RSET_DDR, (o)) argument
[all …]
/linux-6.3-rc2/drivers/net/ethernet/broadcom/bnx2x/
A Dbnx2x_sp.c51 struct bnx2x_exe_queue_obj *o, in bnx2x_exe_queue_init()
153 struct bnx2x_exe_queue_obj *o) in __bnx2x_exe_queue_reset_pending()
525 struct bnx2x_vlan_mac_obj *o) in __bnx2x_vlan_mac_h_read_lock()
601 struct bnx2x_vlan_mac_obj *o) in bnx2x_vlan_mac_h_read_unlock()
662 struct bnx2x_vlan_mac_obj *o, in bnx2x_check_vlan_add()
732 struct bnx2x_vlan_mac_obj *o, in bnx2x_check_vlan_mac_del()
884 struct bnx2x_vlan_mac_obj *o, in bnx2x_set_one_mac_e2()
1273 struct bnx2x_exe_queue_obj *o, in bnx2x_exeq_get_mac()
1290 struct bnx2x_exe_queue_obj *o, in bnx2x_exeq_get_vlan()
1307 struct bnx2x_exe_queue_obj *o, in bnx2x_exeq_get_vlan_mac()
[all …]
/linux-6.3-rc2/drivers/gpu/drm/nouveau/include/nvhw/
A Ddrf.h37 #define DRF_MW_SIZE(o) (sizeof((o)[0]) * 8) argument
39 #define DRF_LW_IDX(o,drf) (DRF_LO(DRF_MW(drf)) / DRF_MW_SIZE(o)) argument
40 #define DRF_LW_LO(o,drf) (DRF_LO(DRF_MW(drf)) % DRF_MW_SIZE(o)) argument
43 #define DRF_LW_MASK(o,drf) (~0ULL >> (64 - DRF_LW_BITS((o),drf))) argument
50 #define DRF_HW_IDX(o,drf) (DRF_HI(DRF_MW(drf)) / DRF_MW_SIZE(o)) argument
51 #define DRF_HW_LO(o,drf) 0 argument
74 #define NVVAL_GET_N(X,o,d,r,f ) NVVAL_GET_X(o, d##_##r##_##f) argument
126 #define DRF_RD_X(e,p,o,dr) e((p), (o), dr) argument
127 #define DRF_RD_N(X,e,p,o,d,r ) DRF_RD_X(e, (p), (o), d##_##r) argument
133 #define DRF_WR_X(e,p,o,dr,v) e((p), (o), dr, (v)) argument
[all …]
/linux-6.3-rc2/drivers/gpu/host1x/
A Ddebug.c28 void host1x_debug_output(struct output *o, const char *fmt, ...) in host1x_debug_output()
40 void host1x_debug_cont(struct output *o, const char *fmt, ...) in host1x_debug_cont()
55 struct output *o = data; in show_channel() local
78 static void show_syncpts(struct host1x *m, struct output *o, bool show_all) in show_syncpts()
126 static void show_all(struct host1x *m, struct output *o, bool show_fifo) in show_all()
146 struct output o = { in host1x_debug_all_show() local
159 struct output o = { in host1x_debug_show() local
213 struct output o = { in host1x_debug_dump() local
222 struct output o = { in host1x_debug_dump_syncpts() local
/linux-6.3-rc2/drivers/gpu/drm/nouveau/include/nvkm/core/
A Dmemory.h65 #define nvkm_memory_map(p,o,vm,va,av,ac) \ argument
72 #define nvkm_kmap(o) (o)->func->acquire(o) argument
73 #define nvkm_done(o) (o)->func->release(o) argument
75 #define nvkm_ro32(o,a) (o)->ptrs->rd32((o), (a)) argument
76 #define nvkm_wo32(o,a,d) (o)->ptrs->wr32((o), (a), (d)) argument
77 #define nvkm_mo32(o,a,m,d) ({ \ argument
83 #define nvkm_wo64(o,a,d) do { \ argument
89 #define nvkm_robj(o,a,p,s) do { \ argument
97 #define nvkm_wobj(o,a,p,s) do { \ argument
121 #define nvkm_fo32(o,a,d,c) nvkm_fill(32, 2, (o), (a), (d), (c)) argument
[all …]
A Dclient.h27 #define nvif_printk(o,l,p,f,a...) do { \ argument
34 #define nvif_fatal(o,f,a...) nvif_printk((o), FATAL, CRIT, f, ##a) argument
35 #define nvif_error(o,f,a...) nvif_printk((o), ERROR, ERR, f, ##a) argument
36 #define nvif_debug(o,f,a...) nvif_printk((o), DEBUG, INFO, f, ##a) argument
37 #define nvif_trace(o,f,a...) nvif_printk((o), TRACE, INFO, f, ##a) argument
38 #define nvif_info(o,f,a...) nvif_printk((o), INFO, INFO, f, ##a) argument
39 #define nvif_ioctl(o,f,a...) nvif_trace((o), "ioctl: "f, ##a) argument
/linux-6.3-rc2/drivers/clk/bcm/
A Dclk-cygnus.c16 #define REG_VAL(o, s, w) { .offset = o, .shift = s, .width = w, } argument
18 #define AON_VAL(o, pw, ps, is) { .offset = o, .pwr_width = pw, \ argument
21 #define SW_CTRL_VAL(o, s) { .offset = o, .shift = s, } argument
23 #define ASIU_DIV_VAL(o, es, hs, hw, ls, lw) \ argument
27 #define RESET_VAL(o, rs, prs) { .offset = o, .reset_shift = rs, \ argument
30 #define DF_VAL(o, kis, kiw, kps, kpw, kas, kaw) { .offset = o, .ki_shift = kis,\ argument
36 #define ENABLE_VAL(o, es, hs, bs) { .offset = o, .enable_shift = es, \ argument
39 #define ASIU_GATE_VAL(o, es) { .offset = o, .en_shift = es } argument
A Dclk-nsp.c14 #define REG_VAL(o, s, w) { .offset = o, .shift = s, .width = w, } argument
16 #define AON_VAL(o, pw, ps, is) { .offset = o, .pwr_width = pw, \ argument
19 #define RESET_VAL(o, rs, prs) { .offset = o, .reset_shift = rs, \ argument
22 #define DF_VAL(o, kis, kiw, kps, kpw, kas, kaw) { .offset = o, .ki_shift = kis,\ argument
26 #define ENABLE_VAL(o, es, hs, bs) { .offset = o, .enable_shift = es, \ argument
A Dclk-ns2.c14 #define REG_VAL(o, s, w) { .offset = o, .shift = s, .width = w, } argument
16 #define AON_VAL(o, pw, ps, is) { .offset = o, .pwr_width = pw, \ argument
19 #define RESET_VAL(o, rs, prs) { .offset = o, .reset_shift = rs, \ argument
22 #define DF_VAL(o, kis, kiw, kps, kpw, kas, kaw) { .offset = o, .ki_shift = kis,\ argument
28 #define ENABLE_VAL(o, es, hs, bs) { .offset = o, .enable_shift = es, \ argument
A Dclk-sr.c14 #define REG_VAL(o, s, w) { .offset = o, .shift = s, .width = w, } argument
16 #define AON_VAL(o, pw, ps, is) { .offset = o, .pwr_width = pw, \ argument
19 #define SW_CTRL_VAL(o, s) { .offset = o, .shift = s, } argument
21 #define RESET_VAL(o, rs, prs) { .offset = o, .reset_shift = rs, \ argument
24 #define DF_VAL(o, kis, kiw, kps, kpw, kas, kaw) { .offset = o, \ argument
30 #define ENABLE_VAL(o, es, hs, bs) { .offset = o, .enable_shift = es, \ argument
/linux-6.3-rc2/include/media/
A Dv4l2-device.h292 #define __v4l2_device_call_subdevs_p(v4l2_dev, sd, cond, o, f, args...) \ argument
317 #define __v4l2_device_call_subdevs(v4l2_dev, cond, o, f, args...) \ argument
349 #define __v4l2_device_call_subdevs_until_err_p(v4l2_dev, sd, cond, o, f, args...) \ argument
384 #define __v4l2_device_call_subdevs_until_err(v4l2_dev, cond, o, f, args...) \ argument
411 #define v4l2_device_call_all(v4l2_dev, grpid, o, f, args...) \ argument
444 #define v4l2_device_call_until_err(v4l2_dev, grpid, o, f, args...) \ argument
471 #define v4l2_device_mask_call_all(v4l2_dev, grpmsk, o, f, args...) \ argument
503 #define v4l2_device_mask_call_until_err(v4l2_dev, grpmsk, o, f, args...) \ argument
525 #define v4l2_device_has_op(v4l2_dev, grpid, o, f) \ argument
553 #define v4l2_device_mask_has_op(v4l2_dev, grpmsk, o, f) \ argument
/linux-6.3-rc2/drivers/gpu/drm/nouveau/include/nvif/
A Dprintf.h7 #define NVIF_PRINT(l,o,f,a...) do { \ argument
14 #define NVIF_DEBUG(o,f,a...) NVIF_PRINT(debugf, (o), f, ##a) argument
16 #define NVIF_DEBUG(o,f,a...) argument
19 #define NVIF_ERROR(o,f,a...) NVIF_PRINT(errorf, (o), f, ##a) argument
20 #define NVIF_ERRON(c,o,f,a...) do { \ argument
A Dpush.h176 #define PUSH_1D(X,o,p,s,mA,dA) \ argument
178 #define PUSH_2D(X,o,p,s,mA,dA,mB,dB) \ argument
181 #define PUSH_3D(X,o,p,s,mA,dA,mB,dB,mC,dC) \ argument
185 #define PUSH_4D(X,o,p,s,mA,dA,mB,dB,mC,dC,mD,dD) \ argument
190 #define PUSH_5D(X,o,p,s,mA,dA,mB,dB,mC,dC,mD,dD,mE,dE) \ argument
242 #define PUSH_1P(X,o,p,s,mA,dp,ds) \ argument
244 #define PUSH_2P(X,o,p,s,mA,dA,mB,dp,ds) \ argument
277 #define PUSH_NV_1(X,o,p,c,mA,d...) \ argument
279 #define PUSH_NV_2(X,o,p,c,mA,dA,mB,d...) \ argument
282 #define PUSH_NV_3(X,o,p,c,mA,dA,mB,dB,mC,d...) \ argument
[all …]
/linux-6.3-rc2/arch/arm/include/asm/
A Dcmpxchg.h137 #define arch_cmpxchg_local(ptr, o, n) ({ \ argument
144 #define arch_cmpxchg64_local(ptr, o, n) __generic_cmpxchg64_local((ptr), (o), (n)) argument
210 #define arch_cmpxchg_relaxed(ptr,o,n) ({ \ argument
237 #define arch_cmpxchg_local(ptr, o, n) ({ \ argument
269 #define arch_cmpxchg64_relaxed(ptr, o, n) ({ \ argument
275 #define arch_cmpxchg64_local(ptr, o, n) arch_cmpxchg64_relaxed((ptr), (o), (n)) argument
/linux-6.3-rc2/arch/parisc/include/asm/
A Dcmpxchg.h81 #define arch_cmpxchg(ptr, o, n) \ argument
109 #define arch_cmpxchg_local(ptr, o, n) \ argument
113 #define arch_cmpxchg64_local(ptr, o, n) \ argument
119 #define arch_cmpxchg64_local(ptr, o, n) __generic_cmpxchg64_local((ptr), (o), (n)) argument
122 #define arch_cmpxchg64(ptr, o, n) __cmpxchg_u64(ptr, o, n) argument
/linux-6.3-rc2/arch/riscv/include/asm/
A Dcmpxchg.h202 #define arch_cmpxchg_relaxed(ptr, o, n) \ argument
248 #define arch_cmpxchg_acquire(ptr, o, n) \ argument
294 #define arch_cmpxchg_release(ptr, o, n) \ argument
340 #define arch_cmpxchg(ptr, o, n) \ argument
348 #define arch_cmpxchg_local(ptr, o, n) \ argument
351 #define arch_cmpxchg64(ptr, o, n) \ argument
357 #define arch_cmpxchg64_local(ptr, o, n) \ argument
/linux-6.3-rc2/arch/mips/include/asm/
A Dcmpxchg.h210 #define arch_cmpxchg64_local(ptr, o, n) \ argument
216 #define arch_cmpxchg64(ptr, o, n) \ argument
224 # define arch_cmpxchg64_local(ptr, o, n) __generic_cmpxchg64_local((ptr), (o), (n)) argument
299 # define arch_cmpxchg64(ptr, o, n) ({ \ argument
322 # define arch_cmpxchg64(ptr, o, n) arch_cmpxchg64_local((ptr), (o), (n)) argument
/linux-6.3-rc2/arch/alpha/include/asm/
A Dcmpxchg.h20 #define arch_cmpxchg_local(ptr, o, n) \ argument
29 #define arch_cmpxchg64_local(ptr, o, n) \ argument
56 #define arch_cmpxchg(ptr, o, n) \ argument
68 #define arch_cmpxchg64(ptr, o, n) \ argument
/linux-6.3-rc2/arch/x86/include/asm/
A Dcmpxchg_32.h11 #define arch_cmpxchg64(ptr, o, n) \ argument
14 #define arch_cmpxchg64_local(ptr, o, n) \ argument
72 #define arch_cmpxchg64(ptr, o, n) \ argument
89 #define arch_cmpxchg64_local(ptr, o, n) \ argument
/linux-6.3-rc2/arch/ia64/include/uapi/asm/
A Dcmpxchg.h113 #define cmpxchg_acq(ptr, o, n) \ argument
115 #define cmpxchg_rel(ptr, o, n) \ argument
129 #define cmpxchg(ptr, o, n) cmpxchg_acq((ptr), (o), (n)) argument
130 #define cmpxchg64(ptr, o, n) cmpxchg_acq((ptr), (o), (n)) argument
/linux-6.3-rc2/arch/m68k/include/asm/
A Dcmpxchg.h82 #define arch_cmpxchg64_local(ptr, o, n) __generic_cmpxchg64_local((ptr), (o), (n)) argument
120 #define arch_cmpxchg(ptr, o, n) \ argument
123 #define arch_cmpxchg_local(ptr, o, n) \ argument
127 #define arch_cmpxchg64(ptr, o, n) arch_cmpxchg64_local((ptr), (o), (n)) argument
/linux-6.3-rc2/arch/csky/include/asm/
A Dcmpxchg.h83 #define arch_cmpxchg_relaxed(ptr, o, n) \ argument
114 #define arch_cmpxchg_acquire(ptr, o, n) \ argument
146 #define arch_cmpxchg(ptr, o, n) \ argument
149 #define arch_cmpxchg_local(ptr, o, n) \ argument
/linux-6.3-rc2/arch/x86/tools/
A Drelocs_64.c14 #define ELF_ST_TYPE(o) ELF64_ST_TYPE(o) argument
15 #define ELF_ST_BIND(o) ELF64_ST_BIND(o) argument
16 #define ELF_ST_VISIBILITY(o) ELF64_ST_VISIBILITY(o) argument
A Drelocs_32.c14 #define ELF_ST_TYPE(o) ELF32_ST_TYPE(o) argument
15 #define ELF_ST_BIND(o) ELF32_ST_BIND(o) argument
16 #define ELF_ST_VISIBILITY(o) ELF32_ST_VISIBILITY(o) argument
/linux-6.3-rc2/arch/mips/boot/tools/
A Drelocs_32.c14 #define ELF_ST_TYPE(o) ELF32_ST_TYPE(o) argument
15 #define ELF_ST_BIND(o) ELF32_ST_BIND(o) argument
16 #define ELF_ST_VISIBILITY(o) ELF32_ST_VISIBILITY(o) argument

Completed in 42 milliseconds

12345678910>>...14