Home
last modified time | relevance | path

Searched refs:vmin (Results 1 – 17 of 17) sorted by relevance

/linux/drivers/macintosh/ams/
H A Dams-i2c.c159 int vmaj, vmin; in ams_i2c_probe() local
186 vmin = ams_i2c_read(AMS_DATA2); in ams_i2c_probe()
187 if (vmaj != 1 || vmin != 52) { in ams_i2c_probe()
189 vmaj, vmin); in ams_i2c_probe()
196 vmin = ams_i2c_read(AMS_DATA2); in ams_i2c_probe()
197 if (vmaj != 0 || vmin != 1) { in ams_i2c_probe()
199 vmaj, vmin); in ams_i2c_probe()
/linux/drivers/gpu/drm/nouveau/nvkm/subdev/volt/
H A Dgm20b.c72 u32 vmin; in gm20b_volt_new() local
85 vmin = speedo_to_vmin[tdev->gpu_speedo_id]; in gm20b_volt_new()
89 ARRAY_SIZE(gm20b_na_cvb_coef), vmin, volt); in gm20b_volt_new()
92 ARRAY_SIZE(gm20b_cvb_coef), vmin, volt); in gm20b_volt_new()
H A Dgk20a.c149 int vmin, struct gk20a_volt *volt) in gk20a_volt_ctor() argument
166 vmin); in gk20a_volt_ctor()
H A Dgk20a.h42 int vmin, struct gk20a_volt *volt);
/linux/drivers/cpufreq/
H A Dpxa2xx-cpufreq.c52 int vmin; member
112 int vmin, vmax; in pxa_cpufreq_change_voltage() local
117 vmin = pxa_freq->vmin; in pxa_cpufreq_change_voltage()
119 if ((vmin == -1) || (vmax == -1)) in pxa_cpufreq_change_voltage()
122 ret = regulator_set_voltage(vcc_core, vmin, vmax); in pxa_cpufreq_change_voltage()
124 pr_err("Failed to set vcc_core in [%dmV..%dmV]\n", vmin, vmax); in pxa_cpufreq_change_voltage()
/linux/drivers/regulator/
H A Dsc2731-regulator.c131 vstep, vmin, vmax) { \ argument
138 .min_uV = vmin, \
139 .n_voltages = ((vmax) - (vmin)) / (vstep) + 1, \
/linux/drivers/macintosh/
H A Dwindfarm.h69 s32 vmin = ct->ops->get_min(ct); in wf_control_set_min() local
70 return ct->ops->set_value(ct, vmin); in wf_control_set_min()
/linux/drivers/media/dvb-frontends/
H A Dmb86a16.c758 …tic int swp_freq_calcuation(struct mb86a16_state *state, int i, int v, int *V, int vmax, int vmin, in swp_freq_calcuation() argument
765 if ((v - 1 == vmin) && in swp_freq_calcuation()
816 } else if ((i % 2 == 0) && (v >= vmin)) { in swp_freq_calcuation()
835 } else if ((v == vmin) && in swp_freq_calcuation()
879 } else if ((v + 2 == vmin) && in swp_freq_calcuation()
895 } else if ((vmax == 0) && (vmin == 0) && (*(V + 30 + v) > SIGMIN)) { in swp_freq_calcuation()
1025 int v, vmax, vmin; in mb86a16_set_fe() local
1130 vmin = 0 ; in mb86a16_set_fe()
1133 vmin--; in mb86a16_set_fe()
1138 vmin++; in mb86a16_set_fe()
[all …]
/linux/drivers/power/supply/
H A Daxp20x_battery.c962 int vmin = info->voltage_min_design_uv; in axp209_set_battery_info() local
965 if (vmin > 0 && axp20x_set_voltage_min_design(axp_batt, vmin)) in axp209_set_battery_info()
985 int vmin = info->voltage_min_design_uv; in axp717_set_battery_info() local
1008 if (vmin > 0 && axp717_set_voltage_min_design(axp_batt, vmin)) in axp717_set_battery_info()
/linux/Documentation/devicetree/bindings/leds/
H A Dleds-lm3532.txt32 - ti,als-vmin - Minimum ALS voltage defined in Volts
80 ti,als-vmin = <0>;
/linux/include/linux/power/
H A Dmax17042_battery.h260 int vmin; /* in millivolts */ member
/linux/drivers/clk/tegra/
H A Dclk-dfll.c767 unsigned long vmin = td->lut_uv[0]; in dfll_init_out_if() local
770 if ((vinit >= vmin) && vstep) { in dfll_init_out_if()
773 vsel = DIV_ROUND_UP((vinit - vmin), vstep); in dfll_init_out_if()
/linux/drivers/video/fbdev/
H A Datafb.c2877 int vmin, vmax, hmin, hmax; in atafb_setup_mcap() local
2885 vmin = simple_strtoul(p, NULL, 10); in atafb_setup_mcap()
2886 if (vmin <= 0) in atafb_setup_mcap()
2891 if (vmax <= 0 || vmax <= vmin) in atafb_setup_mcap()
2904 fb_info.monspecs.vfmin = vmin; in atafb_setup_mcap()
H A Damifb.c2314 int vmin, vmax, hmin, hmax; in amifb_setup_mcap() local
2323 vmin = simple_strtoul(p, NULL, 10); in amifb_setup_mcap()
2324 if (vmin <= 0) in amifb_setup_mcap()
2329 if (vmax <= 0 || vmax <= vmin) in amifb_setup_mcap()
2344 amifb_vfmin = vmin; in amifb_setup_mcap()
/linux/Documentation/arch/m68k/
H A Dkernel-options.rst524 :Syntax: monitorcap:<vmin>;<vmax>;<hmin>;<hmax>
530 <vmin> and <vmax> are the minimum and maximum, resp., vertical frequencies
784 :Syntax: monitorcap:<vmin>;<vmax>;<hmin>;<hmax>
789 <vmin> and <vmax> are the minimum and maximum, resp., vertical frequencies
/linux/drivers/gpu/drm/i915/display/
H A Dintel_display_types.h1359 u16 flipline, vmin, vmax, guardband; member
H A Dintel_display.c923 old_crtc_state->vrr.vmin != new_crtc_state->vrr.vmin || in vrr_params_changed()
5477 PIPE_CONF_CHECK_I(vrr.vmin); in intel_pipe_config_compare()