Searched refs:config (Results 26 - 50 of 3122) sorted by path

1234567891011>>

/linux-master/arch/sparc/include/asm/
H A Dleon_amba.h89 #define LEON3_GPTIMER_CONFIG_NRTIMERS(c) ((c)->config & 0x7)
134 u32 config; member in struct:leon3_gptimer_regs_map
/linux-master/arch/x86/events/intel/
H A Dknc.c182 val = hwc->config;
193 val = hwc->config;
275 PMU_FORMAT_ATTR(event, "config:0-7" );
276 PMU_FORMAT_ATTR(umask, "config:8-15" );
277 PMU_FORMAT_ATTR(edge, "config:18" );
278 PMU_FORMAT_ATTR(inv, "config:23" );
279 PMU_FORMAT_ATTR(cmask, "config:24-31" );
H A Dp6.c172 val = hwc->config;
184 PMU_FORMAT_ATTR(event, "config:0-7" );
185 PMU_FORMAT_ATTR(umask, "config:8-15" );
186 PMU_FORMAT_ATTR(edge, "config:18" );
187 PMU_FORMAT_ATTR(pc, "config:19" );
188 PMU_FORMAT_ATTR(inv, "config:23" );
189 PMU_FORMAT_ATTR(cmask, "config:24-31" );
/linux-master/arch/x86/platform/scx200/
H A Dscx200_32.c97 u32 config, new_config; local
102 config = inl(scx200_gpio_base + 0x24);
104 new_config = (config & mask) | bits;
109 return config;
/linux-master/drivers/base/regmap/
H A Dregmap-ac97.c70 const struct regmap_config *config,
74 return __regmap_init(&ac97->dev, &ac97_regmap_bus, ac97, config,
80 const struct regmap_config *config,
84 return __devm_regmap_init(&ac97->dev, &ac97_regmap_bus, ac97, config,
69 __regmap_init_ac97(struct snd_ac97 *ac97, const struct regmap_config *config, struct lock_class_key *lock_key, const char *lock_name) argument
79 __devm_regmap_init_ac97(struct snd_ac97 *ac97, const struct regmap_config *config, struct lock_class_key *lock_key, const char *lock_name) argument
H A Dregmap-spmi.c86 const struct regmap_config *config,
90 return __regmap_init(&sdev->dev, &regmap_spmi_base, sdev, config,
96 const struct regmap_config *config,
100 return __devm_regmap_init(&sdev->dev, &regmap_spmi_base, sdev, config,
206 const struct regmap_config *config,
210 return __regmap_init(&sdev->dev, &regmap_spmi_ext, sdev, config,
216 const struct regmap_config *config,
220 return __devm_regmap_init(&sdev->dev, &regmap_spmi_ext, sdev, config,
85 __regmap_init_spmi_base(struct spmi_device *sdev, const struct regmap_config *config, struct lock_class_key *lock_key, const char *lock_name) argument
95 __devm_regmap_init_spmi_base(struct spmi_device *sdev, const struct regmap_config *config, struct lock_class_key *lock_key, const char *lock_name) argument
205 __regmap_init_spmi_ext(struct spmi_device *sdev, const struct regmap_config *config, struct lock_class_key *lock_key, const char *lock_name) argument
215 __devm_regmap_init_spmi_ext(struct spmi_device *sdev, const struct regmap_config *config, struct lock_class_key *lock_key, const char *lock_name) argument
/linux-master/drivers/char/
H A Dnsc_gpio.c25 /* retrieve current config w/o changing it */
26 u32 config = amp->gpio_config(index, ~0, 0); local
30 index, config,
31 (config & 1) ? "OE" : "TS", /* output-enabled/tristate */
32 (config & 2) ? "PP" : "OD", /* push pull / open drain */
33 (config & 4) ? "PUE" : "PUD", /* pull up enabled/disabled */
34 (config & 8) ? "LOCKED" : "", /* locked / unlocked */
35 (config & 16) ? "LEVEL" : "EDGE",/* level/edge input */
36 (config & 32) ? "HI" : "LO", /* trigger on rise/fall edge */
37 (config
[all...]
H A Dpc8736x_gpio.c47 #define SIO_CF1 0x21 /* chip config, bit0 is chip enable */
58 /* config-space addrs to read/write each unit's runtime addr */
62 /* GPIO config-space pin-control addresses */
128 u32 config, new_config; local
135 /* read current config value */
136 config = superio_inb(func_slct);
138 /* set new config */
139 new_config = (config & mask) | bits;
144 return config;
/linux-master/drivers/char/xilinx_hwicap/
H A Dxilinx_hwicap.h56 const struct hwicap_driver_config *config; member in struct:hwicap_drvdata
/linux-master/drivers/clk/qcom/
H A Dclk-pll.c83 u32 l, m, n, config; local
103 regmap_read(pll->clkr.regmap, pll->config_reg, &config);
104 config >>= pll->post_div_shift;
105 config &= BIT(pll->post_div_width) - 1;
106 rate /= config + 1;
219 const struct pll_config *config)
224 regmap_write(regmap, pll->l_reg, config->l);
225 regmap_write(regmap, pll->m_reg, config->m);
226 regmap_write(regmap, pll->n_reg, config->n);
228 val = config
218 clk_pll_configure(struct clk_pll *pll, struct regmap *regmap, const struct pll_config *config) argument
245 clk_pll_configure_sr(struct clk_pll *pll, struct regmap *regmap, const struct pll_config *config, bool fsm_mode) argument
254 clk_pll_configure_sr_hpm_lp(struct clk_pll *pll, struct regmap *regmap, const struct pll_config *config, bool fsm_mode) argument
[all...]
H A Dclk-pll.h32 * @config_reg: config register
77 const struct pll_config *config, bool fsm_mode);
79 const struct pll_config *config, bool fsm_mode);
/linux-master/drivers/clk/sunxi/
H A Dclk-factors.c47 const struct clk_factors_config *config = factors->config; local
53 if (config->nwidth != SUNXI_FACTORS_NOT_APPLICABLE)
54 n = FACTOR_GET(config->nshift, config->nwidth, reg);
55 if (config->kwidth != SUNXI_FACTORS_NOT_APPLICABLE)
56 k = FACTOR_GET(config->kshift, config->kwidth, reg);
57 if (config->mwidth != SUNXI_FACTORS_NOT_APPLICABLE)
58 m = FACTOR_GET(config
141 const struct clk_factors_config *config = factors->config; local
[all...]
H A Dclk-factors.h45 const struct clk_factors_config *config; member in struct:clk_factors
/linux-master/drivers/dma/
H A Didma64.h135 struct dma_slave_config config; member in struct:idma64_chan
/linux-master/drivers/gpu/drm/amd/display/include/
H A Dgpio_types.h268 * GPIO config
329 } config; member in struct:gpio_config_data
/linux-master/drivers/gpu/drm/arm/display/komeda/
H A Dkomeda_private_obj.c427 struct drm_mode_config *config = &kms->base.mode_config; local
430 list_for_each_entry_safe(obj, next, &config->privobj_list, head)
/linux-master/drivers/gpu/drm/exynos/
H A Dexynos_drm_plane.h9 const struct exynos_drm_plane_config *config);
/linux-master/drivers/gpu/drm/nouveau/include/nvkm/subdev/bios/
H A Diccsense.h14 u16 config; member in struct:pwr_rail_t
/linux-master/drivers/gpu/drm/nouveau/nvkm/subdev/bios/
H A Diccsense.c125 rail->config = nvbios_rd16(bios, entry + res_start + rail->resistor_count * 2);
/linux-master/drivers/infiniband/hw/ocrdma/
H A Docrdma_hw.h112 struct ocrdma_mbx_query_config *config);
/linux-master/drivers/media/dvb-frontends/
H A Datbm8830.h51 extern struct dvb_frontend *atbm8830_attach(const struct atbm8830_config *config,
55 struct dvb_frontend *atbm8830_attach(const struct atbm8830_config *config, argument
H A Datbm8830_priv.h15 const struct atbm8830_config *config; member in struct:atbm_state
H A Dau8522.h52 extern struct dvb_frontend *au8522_attach(const struct au8522_config *config,
56 struct dvb_frontend *au8522_attach(const struct au8522_config *config, argument
H A Dau8522_common.c35 struct i2c_msg msg = { .addr = state->config.demod_address,
55 { .addr = state->config.demod_address, .flags = 0,
57 { .addr = state->config.demod_address, .flags = I2C_M_RD,
131 struct au8522_led_config *led_config = state->config.led_cfg;
161 struct au8522_led_config *led_config = state->config.led_cfg;
H A Dau8522_priv.h49 struct au8522_config config; member in struct:au8522_state

Completed in 265 milliseconds

1234567891011>>