Home
last modified time | relevance | path

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

/linux-2.6.39/sound/soc/codecs/
Dtwl6040.c68 u16 ramp; member
317 if (headset->ramp == TWL6040_RAMP_UP) { in twl6040_hs_ramp_step()
327 } else if (headset->ramp == TWL6040_RAMP_DOWN) { in twl6040_hs_ramp_step()
344 if (headset->ramp == TWL6040_RAMP_UP) { in twl6040_hs_ramp_step()
354 } else if (headset->ramp == TWL6040_RAMP_DOWN) { in twl6040_hs_ramp_step()
385 if (handsfree->ramp == TWL6040_RAMP_UP) { in twl6040_hf_ramp_step()
395 } else if (handsfree->ramp == TWL6040_RAMP_DOWN) { in twl6040_hf_ramp_step()
412 if (handsfree->ramp == TWL6040_RAMP_UP) { in twl6040_hf_ramp_step()
422 } else if (handsfree->ramp == TWL6040_RAMP_DOWN) { in twl6040_hf_ramp_step()
449 if (headset->ramp == TWL6040_RAMP_NONE) in twl6040_pga_hs_work()
[all …]
Dwm8350.c51 u16 ramp; member
110 if (out1->ramp == WM8350_RAMP_UP) { in wm8350_out1_ramp_step()
119 } else if (out1->ramp == WM8350_RAMP_DOWN) { in wm8350_out1_ramp_step()
134 if (out1->ramp == WM8350_RAMP_UP) { in wm8350_out1_ramp_step()
143 } else if (out1->ramp == WM8350_RAMP_DOWN) { in wm8350_out1_ramp_step()
175 if (out2->ramp == WM8350_RAMP_UP) { in wm8350_out2_ramp_step()
184 } else if (out2->ramp == WM8350_RAMP_DOWN) { in wm8350_out2_ramp_step()
199 if (out2->ramp == WM8350_RAMP_UP) { in wm8350_out2_ramp_step()
208 } else if (out2->ramp == WM8350_RAMP_DOWN) { in wm8350_out2_ramp_step()
243 if (out1->ramp == WM8350_RAMP_NONE && out2->ramp == WM8350_RAMP_NONE) in wm8350_pga_work()
[all …]
Dtwl4030.c630 static void handsfree_ramp(struct snd_soc_codec *codec, int reg, int ramp) in handsfree_ramp() argument
636 if (ramp) { in handsfree_ramp()
734 static void headset_ramp(struct snd_soc_codec *codec, int ramp) in headset_ramp() argument
761 if (ramp) { in headset_ramp()
/linux-2.6.39/drivers/hid/
Dhid-lg3ff.c82 x = effect->u.ramp.start_level; in hid_lg3ff_play()
83 y = effect->u.ramp.end_level; in hid_lg3ff_play()
Dhid-lgff.c93 x = effect->u.ramp.start_level + 0x7f; /* 0x7f is center */ in hid_lgff_play()
94 y = effect->u.ramp.end_level + 0x7f; in hid_lgff_play()
Dhid-tmff.c95 x = tmff_scale_s8(effect->u.ramp.start_level, in tmff_play()
98 y = tmff_scale_s8(effect->u.ramp.end_level, in tmff_play()
Dhid-lg4ff.c55 x = effect->u.ramp.start_level + 0x80; /* 0x80 is no force */ in hid_lg4ff_play()
/linux-2.6.39/drivers/hid/usbhid/
Dhid-pidff.c440 effect->u.ramp.start_level); in pidff_set_ramp_force_report()
442 effect->u.ramp.end_level); in pidff_set_ramp_force_report()
452 return effect->u.ramp.start_level != old->u.ramp.start_level || in pidff_needs_set_ramp()
453 effect->u.ramp.end_level != old->u.ramp.end_level; in pidff_needs_set_ramp()
641 pidff_needs_set_envelope(&effect->u.ramp.envelope, in pidff_upload_effect()
642 &old->u.ramp.envelope)) in pidff_upload_effect()
644 &effect->u.ramp.envelope); in pidff_upload_effect()
/linux-2.6.39/drivers/input/
Dff-memless.c264 effect->u.ramp.start_level = in ml_combine_effects()
265 clamp_val(effect->u.ramp.start_level + x, -0x80, 0x7f); in ml_combine_effects()
266 effect->u.ramp.end_level = in ml_combine_effects()
267 clamp_val(effect->u.ramp.end_level + y, -0x80, 0x7f); in ml_combine_effects()
Dinput-compat.h61 struct ff_ramp_effect ramp; member
/linux-2.6.39/drivers/hwmon/
Dlm93.c659 static u8 LM93_RAMP_TO_REG(int ramp) in LM93_RAMP_TO_REG() argument
661 ramp = SENSORS_LIMIT(ramp, LM93_RAMP_MIN, LM93_RAMP_MAX); in LM93_RAMP_TO_REG()
662 return (u8)((ramp + 2) / 5); in LM93_RAMP_TO_REG()
2033 u8 ramp; in store_pwm_auto_prochot_ramp() local
2036 ramp = lm93_read_byte(client, LM93_REG_PWM_RAMP_CTL); in store_pwm_auto_prochot_ramp()
2037 ramp = (ramp & 0x0f) | (LM93_RAMP_TO_REG(val) << 4 & 0xf0); in store_pwm_auto_prochot_ramp()
2038 lm93_write_byte(client, LM93_REG_PWM_RAMP_CTL, ramp); in store_pwm_auto_prochot_ramp()
2062 u8 ramp; in store_pwm_auto_vrdhot_ramp() local
2065 ramp = lm93_read_byte(client, LM93_REG_PWM_RAMP_CTL); in store_pwm_auto_vrdhot_ramp()
2066 ramp = (ramp & 0xf0) | (LM93_RAMP_TO_REG(val) & 0x0f); in store_pwm_auto_vrdhot_ramp()
[all …]
/linux-2.6.39/arch/mips/include/asm/txx9/
Dtx4927.h100 u64 ramp; member
Dtx4938.h57 u64 ramp; member
Dtx4939.h71 __u64 ramp; member
/linux-2.6.39/Documentation/hwmon/
Dlm93234 channel, the LM93 will ramp the PWM output up to 100% duty cycle in discrete
237 The available ramp times are constrained by the hardware. Selecting a value
292 pwm_auto_prochot_ramp ramp time per step when #PROCHOT asserted
294 pwm_auto_vrdhot_ramp ramp time per step when #VRDHOT asserted
Ddme1737160 In automatic mode, the chip supports the setting of the PWM ramp rate which
/linux-2.6.39/drivers/staging/iio/Documentation/
Dsysfs-bus-iio-dds85 (sine, triangle, ramp, square, ...)
/linux-2.6.39/include/linux/mfd/wm8350/
Dpmic.h767 u16 ilim, u16 ramp, u16 feedback);
/linux-2.6.39/drivers/regulator/
Dwm8350-regulator.c926 u16 ilim, u16 ramp, u16 feedback) in wm8350_dcdc25_set_mode() argument
941 (ramp << WM8350_DC2_RMP_SHIFT) | in wm8350_dcdc25_set_mode()
951 (ramp << WM8350_DC5_RMP_SHIFT) | in wm8350_dcdc25_set_mode()
/linux-2.6.39/Documentation/laptops/
Ddisk-shock-protection.txt25 the internal hard drive and park its heads on the ramp when critical
Dthinkpad-acpi.txt1223 commands. The full-speed level may take up to two minutes to ramp up to
/linux-2.6.39/Documentation/input/
Dff.txt69 - FF_RAMP can render ramp effects
/linux-2.6.39/drivers/scsi/
Dscsi_debug.c2607 static void __init sdebug_build_parts(unsigned char *ramp, in sdebug_build_parts() argument
2634 ramp[510] = 0x55; /* magic partition markings */ in sdebug_build_parts()
2635 ramp[511] = 0xAA; in sdebug_build_parts()
2636 pp = (struct partition *)(ramp + 0x1be); in sdebug_build_parts()
/linux-2.6.39/include/linux/
Dinput.h1079 struct ff_ramp_effect ramp; member
/linux-2.6.39/sound/pci/au88x0/
Dau88x0_core.c259 int ramp) in vortex_mix_disableinput() argument
261 if (ramp) { in vortex_mix_disableinput()