Lines Matching full:tone
12 * Real-time tone generation
353 case DSP_TONE_PATT_ON: /* play tone */ in dsp_control_req()
363 printk(KERN_DEBUG "%s: turn tone 0x%x on\n", in dsp_control_req()
370 if (!dsp->tone.tone) in dsp_control_req()
373 case DSP_TONE_PATT_OFF: /* stop tone */ in dsp_control_req()
379 printk(KERN_DEBUG "%s: turn tone off\n", __func__); in dsp_control_req()
893 /* send data to tx-buffer (if no tone is played) */ in dsp_function()
894 if (!dsp->tone.tone) { in dsp_function()
927 dsp->tone.tone = 0; in dsp_function()
928 dsp->tone.hardware = 0; in dsp_function()
929 dsp->tone.software = 0; in dsp_function()
930 if (timer_pending(&dsp->tone.tl)) in dsp_function()
931 del_timer(&dsp->tone.tl); in dsp_function()
977 if (timer_pending(&dsp->tone.tl)) in dsp_ctrl()
978 del_timer(&dsp->tone.tl); in dsp_ctrl()
1092 /* set tone timer */ in dspcreate()
1093 timer_setup(&ndsp->tone.tl, dsp_tone_timeout, 0); in dspcreate()