Home
last modified time | relevance | path

Searched refs:_id (Results 1 – 25 of 215) sorted by relevance

123456789

/Linux-v5.10/arch/arm/mach-pxa/include/mach/
Dhardware.h106 unsigned int _id = (id) & 0xf3f0; \
107 _id == 0x2120; \
112 unsigned int _id = (id) & 0xf3ff; \
113 _id <= 0x2105; \
118 unsigned int _id = (id) & 0xffff; \
119 _id == 0x2d06; \
124 unsigned int _id = (id) & 0xf300; \
125 _id == 0x2100; \
137 unsigned int _id = (id) >> 4 & 0xfff; \
138 _id == 0x411; \
[all …]
/Linux-v5.10/arch/powerpc/include/asm/
Dperf_event_server.h162 #define EVENT_VAR(_id, _suffix) event_attr_##_id##_suffix argument
163 #define EVENT_PTR(_id, _suffix) &EVENT_VAR(_id, _suffix).attr.attr argument
165 #define EVENT_ATTR(_name, _id, _suffix) \ argument
166 PMU_EVENT_ATTR(_name, EVENT_VAR(_id, _suffix), _id, \
169 #define GENERIC_EVENT_ATTR(_name, _id) EVENT_ATTR(_name, _id, _g) argument
170 #define GENERIC_EVENT_PTR(_id) EVENT_PTR(_id, _g) argument
172 #define CACHE_EVENT_ATTR(_name, _id) EVENT_ATTR(_name, _id, _c) argument
173 #define CACHE_EVENT_PTR(_id) EVENT_PTR(_id, _c) argument
175 #define POWER_EVENT_ATTR(_name, _id) EVENT_ATTR(_name, _id, _p) argument
176 #define POWER_EVENT_PTR(_id) EVENT_PTR(_id, _p) argument
/Linux-v5.10/include/linux/
Dmod_devicetable.h421 #define BCMA_CORE(_manuf, _id, _rev, _class) \ argument
422 { .manuf = _manuf, .id = _id, .rev = _rev, .class = _class, }
595 #define MDIO_ID_ARGS(_id) \ argument
596 ((_id)>>31) & 1, ((_id)>>30) & 1, ((_id)>>29) & 1, ((_id)>>28) & 1, \
597 ((_id)>>27) & 1, ((_id)>>26) & 1, ((_id)>>25) & 1, ((_id)>>24) & 1, \
598 ((_id)>>23) & 1, ((_id)>>22) & 1, ((_id)>>21) & 1, ((_id)>>20) & 1, \
599 ((_id)>>19) & 1, ((_id)>>18) & 1, ((_id)>>17) & 1, ((_id)>>16) & 1, \
600 ((_id)>>15) & 1, ((_id)>>14) & 1, ((_id)>>13) & 1, ((_id)>>12) & 1, \
601 ((_id)>>11) & 1, ((_id)>>10) & 1, ((_id)>>9) & 1, ((_id)>>8) & 1, \
602 ((_id)>>7) & 1, ((_id)>>6) & 1, ((_id)>>5) & 1, ((_id)>>4) & 1, \
[all …]
/Linux-v5.10/drivers/clk/samsung/
Dclk.h42 #define ALIAS(_id, dname, a) \ argument
44 .id = _id, \
67 #define FRATE(_id, cname, pname, f, frate) \ argument
69 .id = _id, \
94 #define FFACTOR(_id, cname, pname, m, d, f) \ argument
96 .id = _id, \
128 #define __MUX(_id, cname, pnames, o, s, w, f, mf) \ argument
130 .id = _id, \
141 #define MUX(_id, cname, pnames, o, s, w) \ argument
142 __MUX(_id, cname, pnames, o, s, w, 0, 0)
[all …]
/Linux-v5.10/drivers/clk/renesas/
Drcar-gen3-cpg.h34 #define DEF_GEN3_SD(_name, _id, _parent, _offset) \ argument
35 DEF_BASE(_name, _id, CLK_TYPE_GEN3_SD, _parent, .offset = _offset)
37 #define DEF_GEN3_MDSEL(_name, _id, _md, _parent0, _div0, _parent1, _div1) \ argument
38 DEF_BASE(_name, _id, CLK_TYPE_GEN3_MDSEL, \
42 #define DEF_GEN3_PE(_name, _id, _parent_sscg, _div_sscg, _parent_clean, \ argument
44 DEF_GEN3_MDSEL(_name, _id, 12, _parent_sscg, _div_sscg, \
47 #define DEF_GEN3_OSC(_name, _id, _parent, _div) \ argument
48 DEF_BASE(_name, _id, CLK_TYPE_GEN3_OSC, _parent, .div = _div)
50 #define DEF_GEN3_RCKSEL(_name, _id, _parent0, _div0, _parent1, _div1) \ argument
51 DEF_BASE(_name, _id, CLK_TYPE_GEN3_RCKSEL, \
[all …]
Drenesas-cpg-mssr.h44 #define DEF_TYPE(_name, _id, _type...) \ argument
45 { .name = _name, .id = _id, .type = _type }
46 #define DEF_BASE(_name, _id, _type, _parent...) \ argument
47 DEF_TYPE(_name, _id, _type, .parent = _parent)
49 #define DEF_INPUT(_name, _id) \ argument
50 DEF_TYPE(_name, _id, CLK_TYPE_IN)
51 #define DEF_FIXED(_name, _id, _parent, _div, _mult) \ argument
52 DEF_BASE(_name, _id, CLK_TYPE_FF, _parent, .div = _div, .mult = _mult)
53 #define DEF_DIV6P1(_name, _id, _parent, _offset) \ argument
54 DEF_BASE(_name, _id, CLK_TYPE_DIV6P1, _parent, .offset = _offset)
[all …]
/Linux-v5.10/drivers/clk/pistachio/
Dclk.h19 #define GATE(_id, _name, _pname, _reg, _shift) \ argument
21 .id = _id, \
39 #define MUX(_id, _name, _pnames, _reg, _shift) \ argument
41 .id = _id, \
59 #define DIV(_id, _name, _pname, _reg, _width) \ argument
61 .id = _id, \
69 #define DIV_F(_id, _name, _pname, _reg, _width, _div_flags) \ argument
71 .id = _id, \
86 #define FIXED_FACTOR(_id, _name, _pname, _div) \ argument
88 .id = _id, \
[all …]
/Linux-v5.10/drivers/clk/rockchip/
Dclk.h295 #define PLL(_type, _id, _name, _pnames, _flags, _con, _mode, _mshift, \ argument
298 .id = _id, \
425 #define COMPOSITE(_id, cname, pnames, f, mo, ms, mw, mf, ds, dw,\ argument
428 .id = _id, \
446 #define COMPOSITE_DIV_OFFSET(_id, cname, pnames, f, mo, ms, mw, \ argument
449 .id = _id, \
468 #define COMPOSITE_NOMUX(_id, cname, pname, f, mo, ds, dw, df, \ argument
471 .id = _id, \
486 #define COMPOSITE_NOMUX_DIVTBL(_id, cname, pname, f, mo, ds, dw,\ argument
489 .id = _id, \
[all …]
/Linux-v5.10/drivers/clk/mediatek/
Dclk-mtk.h29 #define FIXED_CLK(_id, _name, _parent, _rate) { \ argument
30 .id = _id, \
47 #define FACTOR(_id, _name, _parent, _mult, _div) { \ argument
48 .id = _id, \
81 #define MUX_GATE_FLAGS_2(_id, _name, _parents, _reg, _shift, \ argument
83 .id = _id, \
101 #define MUX_GATE_FLAGS(_id, _name, _parents, _reg, _shift, _width, \ argument
103 MUX_GATE_FLAGS_2(_id, _name, _parents, _reg, \
110 #define MUX_GATE(_id, _name, _parents, _reg, _shift, _width, _gate) \ argument
111 MUX_GATE_FLAGS(_id, _name, _parents, _reg, _shift, _width, \
[all …]
Dclk-mt8183-ipu_conn.c44 #define GATE_IPU_CONN(_id, _name, _parent, _shift) \ argument
45 GATE_MTK(_id, _name, _parent, &ipu_conn_cg_regs, _shift, \
48 #define GATE_IPU_CONN_APB(_id, _name, _parent, _shift) \ argument
49 GATE_MTK(_id, _name, _parent, &ipu_conn_apb_cg_regs, _shift, \
52 #define GATE_IPU_CONN_AXI_I(_id, _name, _parent, _shift) \ argument
53 GATE_MTK(_id, _name, _parent, &ipu_conn_axi_cg_regs, _shift, \
56 #define GATE_IPU_CONN_AXI1_I(_id, _name, _parent, _shift) \ argument
57 GATE_MTK(_id, _name, _parent, &ipu_conn_axi1_cg_regs, _shift, \
60 #define GATE_IPU_CONN_AXI2_I(_id, _name, _parent, _shift) \ argument
61 GATE_MTK(_id, _name, _parent, &ipu_conn_axi2_cg_regs, _shift, \
Dclk-mt8167.c657 #define DIV_ADJ(_id, _name, _parent, _reg, _shift, _width) { \ argument
658 .id = _id, \
687 #define DIV_ADJ_FLAG(_id, _name, _parent, _reg, _shift, _width, _flag) { \ argument
688 .id = _id, \
738 #define GATE_TOP0(_id, _name, _parent, _shift) { \ argument
739 .id = _id, \
747 #define GATE_TOP0_I(_id, _name, _parent, _shift) { \ argument
748 .id = _id, \
756 #define GATE_TOP1(_id, _name, _parent, _shift) { \ argument
757 .id = _id, \
[all …]
Dclk-mt2701-aud.c18 #define GATE_AUDIO0(_id, _name, _parent, _shift) { \ argument
19 .id = _id, \
27 #define GATE_AUDIO1(_id, _name, _parent, _shift) { \ argument
28 .id = _id, \
36 #define GATE_AUDIO2(_id, _name, _parent, _shift) { \ argument
37 .id = _id, \
45 #define GATE_AUDIO3(_id, _name, _parent, _shift) { \ argument
46 .id = _id, \
/Linux-v5.10/drivers/regulator/
Dmax77826-regulator.c119 #define MAX77826_LDO(_id, _type) \ argument
120 [MAX77826_LDO ## _id] = { \
121 .id = MAX77826_LDO ## _id, \
122 .name = "LDO"#_id, \
123 .of_match = of_match_ptr("LDO"#_id), \
129 .enable_reg = MAX77826_REG_LDO_OPMD1 + (_id - 1) / 4, \
130 .enable_mask = BIT(((_id - 1) % 4) * 2 + 1), \
131 .vsel_reg = MAX77826_REG_LDO1_CFG + (_id - 1), \
136 #define MAX77826_BUCK(_idx, _id, _ops) \ argument
137 [MAX77826_ ## _id] = { \
[all …]
Dmpq7920.c27 #define MPQ7920BUCK(_name, _id, _ilim) \ argument
28 [MPQ7920_BUCK ## _id] = { \
29 .id = MPQ7920_BUCK ## _id, \
40 .csel_reg = MPQ7920_BUCK ##_id## _REG_C, \
44 MPQ7920_BUCK ## _id), \
45 .vsel_reg = MPQ7920_BUCK ##_id## _REG_A, \
48 .active_discharge_reg = MPQ7920_BUCK ##_id## _REG_B, \
50 .soft_start_reg = MPQ7920_BUCK ##_id## _REG_C, \
55 #define MPQ7920LDO(_name, _id, _ops, _ilim, _ilim_sz, _creg, _cmask) \ argument
56 [MPQ7920_LDO ## _id] = { \
[all …]
Dhi6421-regulator.c129 #define HI6421_LDO(_id, _match, v_table, vreg, vmask, ereg, emask, \ argument
131 [HI6421_##_id] = { \
133 .name = #_id, \
138 .id = HI6421_##_id, \
168 #define HI6421_LDO_LINEAR(_id, _match, _min_uV, n_volt, vstep, vreg, vmask,\ argument
170 [HI6421_##_id] = { \
172 .name = #_id, \
177 .id = HI6421_##_id, \
208 #define HI6421_LDO_LINEAR_RANGE(_id, _match, n_volt, volt_ranges, vreg, vmask,\ argument
210 [HI6421_##_id] = { \
[all …]
Dmp5416.c52 #define MP5416BUCK(_name, _id, _ilim, _dreg, _dval, _vsel) \ argument
53 [MP5416_BUCK ## _id] = { \
54 .id = MP5416_BUCK ## _id, \
65 .csel_mask = MP5416_MASK_BUCK ## _id ##_ILIM, \
66 .vsel_reg = MP5416_REG_BUCK ## _id, \
68 .enable_reg = MP5416_REG_BUCK ## _id, \
76 #define MP5416LDO(_name, _id, _dval) \ argument
77 [MP5416_LDO ## _id] = { \
78 .id = MP5416_LDO ## _id, \
86 .vsel_reg = MP5416_REG_LDO ##_id, \
[all …]
Dmt6311-regulator.c49 #define MT6311_BUCK(_id) \ argument
51 .name = #_id,\
53 .of_match = of_match_ptr(#_id),\
56 .id = MT6311_ID_##_id,\
67 #define MT6311_LDO(_id) \ argument
69 .name = #_id,\
71 .of_match = of_match_ptr(#_id),\
74 .id = MT6311_ID_##_id,\
Dmax8925-regulator.c155 #define MAX8925_SDV(_id, min, max, step) \ argument
158 .name = "SDV" #_id, \
159 .of_match = of_match_ptr("SDV" #_id), \
163 .id = MAX8925_ID_SD##_id, \
169 .vol_reg = MAX8925_SDV##_id, \
170 .enable_reg = MAX8925_SDCTL##_id, \
173 #define MAX8925_LDO(_id, min, max, step) \ argument
176 .name = "LDO" #_id, \
177 .of_match = of_match_ptr("LDO" #_id), \
181 .id = MAX8925_ID_LDO##_id, \
[all …]
/Linux-v5.10/include/rdma/
Duverbs_std_types.h19 #define _uobj_check_id(_id) ((_id) * typecheck(u32, _id)) argument
24 #define uobj_get_read(_type, _id, _attrs) \ argument
26 _uobj_check_id(_id), UVERBS_LOOKUP_READ, \
40 #define uobj_get_obj_read(_object, _type, _id, _attrs) \ argument
42 uobj_get_read(_type, _id, _attrs)))
44 #define uobj_get_write(_type, _id, _attrs) \ argument
46 _uobj_check_id(_id), UVERBS_LOOKUP_WRITE, \
51 #define uobj_perform_destroy(_type, _id, _attrs) \ argument
53 _uobj_check_id(_id), _attrs)
58 #define uobj_get_destroy(_type, _id, _attrs) \ argument
[all …]
/Linux-v5.10/drivers/clk/zte/
Dclk.h60 #define GATE(_id, _name, _parent, _reg, _bit, _flag, _gflags) \ argument
72 .id = _id, \
80 #define FFACTOR(_id, _name, _parent, _mult, _div, _flag) \ argument
90 .id = _id, \
98 #define MUX_F(_id, _name, _parent, _reg, _shift, _width, _flag, _mflag) \ argument
111 .id = _id, \
114 #define MUX(_id, _name, _parent, _reg, _shift, _width) \ argument
115 MUX_F(_id, _name, _parent, _reg, _shift, _width, 0, 0)
122 #define DIV_T(_id, _name, _parent, _reg, _shift, _width, _flag, _table) \ argument
136 .id = _id, \
[all …]
/Linux-v5.10/include/linux/mfd/
Dcore.h17 #define MFD_CELL_ALL(_name, _res, _pdata, _pdsize, _id, _compat, _of_reg, _use_of_reg, _match) \ argument
28 .id = (_id), \
31 #define OF_MFD_CELL_REG(_name, _res, _pdata, _pdsize, _id, _compat, _of_reg) \ argument
32 MFD_CELL_ALL(_name, _res, _pdata, _pdsize, _id, _compat, _of_reg, true, NULL)
34 #define OF_MFD_CELL(_name, _res, _pdata, _pdsize, _id, _compat) \ argument
35 MFD_CELL_ALL(_name, _res, _pdata, _pdsize, _id, _compat, 0, false, NULL)
37 #define ACPI_MFD_CELL(_name, _res, _pdata, _pdsize, _id, _match) \ argument
38 MFD_CELL_ALL(_name, _res, _pdata, _pdsize, _id, NULL, 0, false, _match)
40 #define MFD_CELL_BASIC(_name, _res, _pdata, _pdsize, _id) \ argument
41 MFD_CELL_ALL(_name, _res, _pdata, _pdsize, _id, NULL, 0, false, NULL)
/Linux-v5.10/drivers/staging/media/atomisp/include/media/
Dlm3554.h27 #define v4l2_queryctrl_entry_integer(_id, _name,\ argument
31 .id = (_id), \
40 #define v4l2_queryctrl_entry_boolean(_id, _name,\ argument
43 .id = (_id), \
53 #define s_ctrl_id_entry_integer(_id, _name, \ argument
58 .qc = v4l2_queryctrl_entry_integer(_id, _name,\
65 #define s_ctrl_id_entry_boolean(_id, _name, \ argument
69 .qc = v4l2_queryctrl_entry_boolean(_id, _name,\
/Linux-v5.10/drivers/interconnect/imx/
Dimx.h41 #define DEFINE_BUS_INTERCONNECT(_name, _id, _adj, ...) \ argument
43 .id = _id, \
50 #define DEFINE_BUS_MASTER(_name, _id, _dest_id) \ argument
51 DEFINE_BUS_INTERCONNECT(_name, _id, NULL, _dest_id)
53 #define DEFINE_BUS_SLAVE(_name, _id, _adj) \ argument
54 DEFINE_BUS_INTERCONNECT(_name, _id, _adj)
/Linux-v5.10/drivers/clk/x86/
Dclk-cgu.h122 #define LGM_PLL(_id, _name, _pdata, _flags, \ argument
125 .id = _id, \
151 #define LGM_DDIV(_id, _name, _pname, _flags, _reg, \ argument
155 .id = _id, \
206 #define LGM_MUX(_id, _name, _pdata, _f, _reg, \ argument
209 .id = _id, \
222 #define LGM_DIV(_id, _name, _pname, _f, _reg, _shift, _width, \ argument
225 .id = _id, \
244 #define LGM_GATE(_id, _name, _pname, _f, _reg, \ argument
247 .id = _id, \
[all …]
/Linux-v5.10/arch/arm/mach-mmp/
Ddevices.h20 #define PXA168_DEVICE(_name, _drv, _id, _irq, _start, _size, _dma...) \ argument
24 .id = _id, \
31 #define PXA910_DEVICE(_name, _drv, _id, _irq, _start, _size, _dma...) \ argument
35 .id = _id, \
42 #define MMP2_DEVICE(_name, _drv, _id, _irq, _start, _size, _dma...) \ argument
46 .id = _id, \

123456789