blob: ed40d0f7432c8c771c90116aee0761a56c0f21f5 [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001// SPDX-License-Identifier: GPL-2.0
Stas Sergeev9ab4d072008-03-03 10:53:54 +01002/*
3 * PC-Speaker driver for Linux
4 *
5 * Copyright (C) 1993-1997 Michael Beck
6 * Copyright (C) 1997-2001 David Woodhouse
7 * Copyright (C) 2001-2008 Stas Sergeev
8 */
9
10#include <linux/module.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090011#include <linux/gfp.h>
Stas Sergeev9ab4d072008-03-03 10:53:54 +010012#include <linux/moduleparam.h>
Takashi Iwai96c7d472008-08-11 10:18:39 +020013#include <linux/interrupt.h>
Takashi Iwai6cbbfe12015-01-28 16:49:33 +010014#include <linux/io.h>
Stas Sergeev9ab4d072008-03-03 10:53:54 +010015#include <sound/pcm.h>
Stas Sergeev9ab4d072008-03-03 10:53:54 +010016#include "pcsp.h"
17
Rusty Russella67ff6a2011-12-15 13:49:36 +103018static bool nforce_wa;
Stas Sergeev9ab4d072008-03-03 10:53:54 +010019module_param(nforce_wa, bool, 0444);
20MODULE_PARM_DESC(nforce_wa, "Apply NForce chipset workaround "
21 "(expect bad sound)");
22
Stas Sergeev4dfd7952008-05-17 08:44:41 +020023#define DMIX_WANTS_S16 1
24
Takashi Iwai96c7d472008-08-11 10:18:39 +020025/*
Takashi Iwai68f86a92020-09-03 12:41:21 +020026 * Call snd_pcm_period_elapsed in a work
Takashi Iwai96c7d472008-08-11 10:18:39 +020027 * This avoids spinlock messes and long-running irq contexts
28 */
Takashi Iwai68f86a92020-09-03 12:41:21 +020029static void pcsp_call_pcm_elapsed(struct work_struct *work)
Takashi Iwai96c7d472008-08-11 10:18:39 +020030{
31 if (atomic_read(&pcsp_chip.timer_active)) {
32 struct snd_pcm_substream *substream;
33 substream = pcsp_chip.playback_substream;
34 if (substream)
35 snd_pcm_period_elapsed(substream);
36 }
37}
38
Takashi Iwai68f86a92020-09-03 12:41:21 +020039static DECLARE_WORK(pcsp_pcm_work, pcsp_call_pcm_elapsed);
Takashi Iwai96c7d472008-08-11 10:18:39 +020040
Takashi Iwaieea05792008-11-26 14:13:03 +010041/* write the port and returns the next expire time in ns;
42 * called at the trigger-start and in hrtimer callback
43 */
Stas Sergeevb71207e2009-10-30 11:51:24 +010044static u64 pcsp_timer_update(struct snd_pcsp *chip)
Stas Sergeev9ab4d072008-03-03 10:53:54 +010045{
Stas Sergeev9ab4d072008-03-03 10:53:54 +010046 unsigned char timer_cnt, val;
Stas Sergeev9ab4d072008-03-03 10:53:54 +010047 u64 ns;
Stas Sergeev9ab4d072008-03-03 10:53:54 +010048 struct snd_pcm_substream *substream;
49 struct snd_pcm_runtime *runtime;
Takashi Iwai96c7d472008-08-11 10:18:39 +020050 unsigned long flags;
Stas Sergeev9ab4d072008-03-03 10:53:54 +010051
52 if (chip->thalf) {
53 outb(chip->val61, 0x61);
54 chip->thalf = 0;
Takashi Iwaieea05792008-11-26 14:13:03 +010055 return chip->ns_rem;
Stas Sergeev9ab4d072008-03-03 10:53:54 +010056 }
57
Takashi Iwai96c7d472008-08-11 10:18:39 +020058 substream = chip->playback_substream;
59 if (!substream)
Takashi Iwaieea05792008-11-26 14:13:03 +010060 return 0;
Stas Sergeev9ab4d072008-03-03 10:53:54 +010061
62 runtime = substream->runtime;
Stas Sergeev4dfd7952008-05-17 08:44:41 +020063 /* assume it is mono! */
Takashi Iwaieea05792008-11-26 14:13:03 +010064 val = runtime->dma_area[chip->playback_ptr + chip->fmt_size - 1];
65 if (chip->is_signed)
Stas Sergeev4dfd7952008-05-17 08:44:41 +020066 val ^= 0x80;
Stas Sergeev9ab4d072008-03-03 10:53:54 +010067 timer_cnt = val * CUR_DIV() / 256;
68
69 if (timer_cnt && chip->enable) {
Thomas Gleixnerced918e2010-02-17 16:47:10 +000070 raw_spin_lock_irqsave(&i8253_lock, flags);
Stas Sergeev9ab4d072008-03-03 10:53:54 +010071 if (!nforce_wa) {
72 outb_p(chip->val61, 0x61);
73 outb_p(timer_cnt, 0x42);
74 outb(chip->val61 ^ 1, 0x61);
75 } else {
76 outb(chip->val61 ^ 2, 0x61);
77 chip->thalf = 1;
78 }
Thomas Gleixnerced918e2010-02-17 16:47:10 +000079 raw_spin_unlock_irqrestore(&i8253_lock, flags);
Stas Sergeev9ab4d072008-03-03 10:53:54 +010080 }
81
Takashi Iwaieea05792008-11-26 14:13:03 +010082 chip->ns_rem = PCSP_PERIOD_NS();
83 ns = (chip->thalf ? PCSP_CALC_NS(timer_cnt) : chip->ns_rem);
84 chip->ns_rem -= ns;
85 return ns;
86}
87
Stas Sergeevb71207e2009-10-30 11:51:24 +010088static void pcsp_pointer_update(struct snd_pcsp *chip)
Takashi Iwaieea05792008-11-26 14:13:03 +010089{
Takashi Iwaieea05792008-11-26 14:13:03 +010090 struct snd_pcm_substream *substream;
Takashi Iwaieea05792008-11-26 14:13:03 +010091 size_t period_bytes, buffer_bytes;
Stas Sergeevb71207e2009-10-30 11:51:24 +010092 int periods_elapsed;
Takashi Iwaieea05792008-11-26 14:13:03 +010093 unsigned long flags;
94
Takashi Iwaieea05792008-11-26 14:13:03 +010095 /* update the playback position */
96 substream = chip->playback_substream;
97 if (!substream)
Stas Sergeevb71207e2009-10-30 11:51:24 +010098 return;
Takashi Iwaieea05792008-11-26 14:13:03 +010099
Stas Sergeev9ab4d072008-03-03 10:53:54 +0100100 period_bytes = snd_pcm_lib_period_bytes(substream);
101 buffer_bytes = snd_pcm_lib_buffer_bytes(substream);
Takashi Iwai96c7d472008-08-11 10:18:39 +0200102
103 spin_lock_irqsave(&chip->substream_lock, flags);
Takashi Iwaieea05792008-11-26 14:13:03 +0100104 chip->playback_ptr += PCSP_INDEX_INC() * chip->fmt_size;
Stas Sergeev9ab4d072008-03-03 10:53:54 +0100105 periods_elapsed = chip->playback_ptr - chip->period_ptr;
106 if (periods_elapsed < 0) {
Stas Sergeev42ece6c2008-05-18 18:30:03 +0200107#if PCSP_DEBUG
108 printk(KERN_INFO "PCSP: buffer_bytes mod period_bytes != 0 ? "
Stas Sergeev9ab4d072008-03-03 10:53:54 +0100109 "(%zi %zi %zi)\n",
110 chip->playback_ptr, period_bytes, buffer_bytes);
Stas Sergeev42ece6c2008-05-18 18:30:03 +0200111#endif
Stas Sergeev9ab4d072008-03-03 10:53:54 +0100112 periods_elapsed += buffer_bytes;
113 }
114 periods_elapsed /= period_bytes;
115 /* wrap the pointer _before_ calling snd_pcm_period_elapsed(),
116 * or ALSA will BUG on us. */
117 chip->playback_ptr %= buffer_bytes;
118
Stas Sergeev9ab4d072008-03-03 10:53:54 +0100119 if (periods_elapsed) {
Stas Sergeev9ab4d072008-03-03 10:53:54 +0100120 chip->period_ptr += periods_elapsed * period_bytes;
121 chip->period_ptr %= buffer_bytes;
Takashi Iwai68f86a92020-09-03 12:41:21 +0200122 queue_work(system_highpri_wq, &pcsp_pcm_work);
Stas Sergeev9ab4d072008-03-03 10:53:54 +0100123 }
Takashi Iwai96c7d472008-08-11 10:18:39 +0200124 spin_unlock_irqrestore(&chip->substream_lock, flags);
Stas Sergeevb71207e2009-10-30 11:51:24 +0100125}
126
127enum hrtimer_restart pcsp_do_timer(struct hrtimer *handle)
128{
129 struct snd_pcsp *chip = container_of(handle, struct snd_pcsp, timer);
130 int pointer_update;
131 u64 ns;
132
133 if (!atomic_read(&chip->timer_active) || !chip->playback_substream)
134 return HRTIMER_NORESTART;
135
136 pointer_update = !chip->thalf;
137 ns = pcsp_timer_update(chip);
138 if (!ns) {
139 printk(KERN_WARNING "PCSP: unexpected stop\n");
140 return HRTIMER_NORESTART;
141 }
142
143 if (pointer_update)
144 pcsp_pointer_update(chip);
Stas Sergeev9ab4d072008-03-03 10:53:54 +0100145
Takashi Iwaieea05792008-11-26 14:13:03 +0100146 hrtimer_forward(handle, hrtimer_get_expires(handle), ns_to_ktime(ns));
147
Stas Sergeev9ab4d072008-03-03 10:53:54 +0100148 return HRTIMER_RESTART;
Stas Sergeev9ab4d072008-03-03 10:53:54 +0100149}
150
Takashi Iwaieea05792008-11-26 14:13:03 +0100151static int pcsp_start_playing(struct snd_pcsp *chip)
Stas Sergeev9ab4d072008-03-03 10:53:54 +0100152{
153#if PCSP_DEBUG
154 printk(KERN_INFO "PCSP: start_playing called\n");
155#endif
156 if (atomic_read(&chip->timer_active)) {
157 printk(KERN_ERR "PCSP: Timer already active\n");
Takashi Iwaieea05792008-11-26 14:13:03 +0100158 return -EIO;
Stas Sergeev9ab4d072008-03-03 10:53:54 +0100159 }
160
Thomas Gleixnerced918e2010-02-17 16:47:10 +0000161 raw_spin_lock(&i8253_lock);
Stas Sergeev9ab4d072008-03-03 10:53:54 +0100162 chip->val61 = inb(0x61) | 0x03;
163 outb_p(0x92, 0x43); /* binary, mode 1, LSB only, ch 2 */
Thomas Gleixnerced918e2010-02-17 16:47:10 +0000164 raw_spin_unlock(&i8253_lock);
Stas Sergeev9ab4d072008-03-03 10:53:54 +0100165 atomic_set(&chip->timer_active, 1);
166 chip->thalf = 0;
167
Thomas Gleixner8b0e1952016-12-25 12:30:41 +0100168 hrtimer_start(&pcsp_chip.timer, 0, HRTIMER_MODE_REL);
Takashi Iwaieea05792008-11-26 14:13:03 +0100169 return 0;
Stas Sergeev9ab4d072008-03-03 10:53:54 +0100170}
171
172static void pcsp_stop_playing(struct snd_pcsp *chip)
173{
174#if PCSP_DEBUG
175 printk(KERN_INFO "PCSP: stop_playing called\n");
176#endif
177 if (!atomic_read(&chip->timer_active))
178 return;
179
180 atomic_set(&chip->timer_active, 0);
Thomas Gleixnerced918e2010-02-17 16:47:10 +0000181 raw_spin_lock(&i8253_lock);
Stas Sergeev9ab4d072008-03-03 10:53:54 +0100182 /* restore the timer */
183 outb_p(0xb6, 0x43); /* binary, mode 3, LSB/MSB, ch 2 */
184 outb(chip->val61 & 0xFC, 0x61);
Thomas Gleixnerced918e2010-02-17 16:47:10 +0000185 raw_spin_unlock(&i8253_lock);
Stas Sergeev9ab4d072008-03-03 10:53:54 +0100186}
187
Takashi Iwai96c7d472008-08-11 10:18:39 +0200188/*
189 * Force to stop and sync the stream
190 */
191void pcsp_sync_stop(struct snd_pcsp *chip)
192{
193 local_irq_disable();
194 pcsp_stop_playing(chip);
195 local_irq_enable();
196 hrtimer_cancel(&chip->timer);
Takashi Iwai68f86a92020-09-03 12:41:21 +0200197 cancel_work_sync(&pcsp_pcm_work);
Takashi Iwai96c7d472008-08-11 10:18:39 +0200198}
199
Stas Sergeev9ab4d072008-03-03 10:53:54 +0100200static int snd_pcsp_playback_close(struct snd_pcm_substream *substream)
201{
202 struct snd_pcsp *chip = snd_pcm_substream_chip(substream);
203#if PCSP_DEBUG
204 printk(KERN_INFO "PCSP: close called\n");
205#endif
Takashi Iwai96c7d472008-08-11 10:18:39 +0200206 pcsp_sync_stop(chip);
Stas Sergeev9ab4d072008-03-03 10:53:54 +0100207 chip->playback_substream = NULL;
Stas Sergeev9ab4d072008-03-03 10:53:54 +0100208 return 0;
209}
210
211static int snd_pcsp_playback_hw_params(struct snd_pcm_substream *substream,
212 struct snd_pcm_hw_params *hw_params)
213{
Takashi Iwai96c7d472008-08-11 10:18:39 +0200214 struct snd_pcsp *chip = snd_pcm_substream_chip(substream);
Takashi Iwai96c7d472008-08-11 10:18:39 +0200215 pcsp_sync_stop(chip);
Stas Sergeev9ab4d072008-03-03 10:53:54 +0100216 return 0;
217}
218
219static int snd_pcsp_playback_hw_free(struct snd_pcm_substream *substream)
220{
Takashi Iwai96c7d472008-08-11 10:18:39 +0200221 struct snd_pcsp *chip = snd_pcm_substream_chip(substream);
Stas Sergeev9ab4d072008-03-03 10:53:54 +0100222#if PCSP_DEBUG
223 printk(KERN_INFO "PCSP: hw_free called\n");
224#endif
Takashi Iwai96c7d472008-08-11 10:18:39 +0200225 pcsp_sync_stop(chip);
Takashi Iwaid635f092019-12-09 10:48:39 +0100226 return 0;
Stas Sergeev9ab4d072008-03-03 10:53:54 +0100227}
228
229static int snd_pcsp_playback_prepare(struct snd_pcm_substream *substream)
230{
231 struct snd_pcsp *chip = snd_pcm_substream_chip(substream);
Takashi Iwai96c7d472008-08-11 10:18:39 +0200232 pcsp_sync_stop(chip);
Stas Sergeev9ab4d072008-03-03 10:53:54 +0100233 chip->playback_ptr = 0;
234 chip->period_ptr = 0;
Takashi Iwaieea05792008-11-26 14:13:03 +0100235 chip->fmt_size =
236 snd_pcm_format_physical_width(substream->runtime->format) >> 3;
237 chip->is_signed = snd_pcm_format_signed(substream->runtime->format);
Stas Sergeevb71207e2009-10-30 11:51:24 +0100238#if PCSP_DEBUG
239 printk(KERN_INFO "PCSP: prepare called, "
240 "size=%zi psize=%zi f=%zi f1=%i fsize=%i\n",
241 snd_pcm_lib_buffer_bytes(substream),
242 snd_pcm_lib_period_bytes(substream),
243 snd_pcm_lib_buffer_bytes(substream) /
244 snd_pcm_lib_period_bytes(substream),
245 substream->runtime->periods,
246 chip->fmt_size);
247#endif
Stas Sergeev9ab4d072008-03-03 10:53:54 +0100248 return 0;
249}
250
251static int snd_pcsp_trigger(struct snd_pcm_substream *substream, int cmd)
252{
253 struct snd_pcsp *chip = snd_pcm_substream_chip(substream);
254#if PCSP_DEBUG
255 printk(KERN_INFO "PCSP: trigger called\n");
256#endif
257 switch (cmd) {
258 case SNDRV_PCM_TRIGGER_START:
259 case SNDRV_PCM_TRIGGER_RESUME:
Takashi Iwaieea05792008-11-26 14:13:03 +0100260 return pcsp_start_playing(chip);
Stas Sergeev9ab4d072008-03-03 10:53:54 +0100261 case SNDRV_PCM_TRIGGER_STOP:
262 case SNDRV_PCM_TRIGGER_SUSPEND:
263 pcsp_stop_playing(chip);
264 break;
265 default:
266 return -EINVAL;
267 }
268 return 0;
269}
270
271static snd_pcm_uframes_t snd_pcsp_playback_pointer(struct snd_pcm_substream
272 *substream)
273{
274 struct snd_pcsp *chip = snd_pcm_substream_chip(substream);
Takashi Iwai96c7d472008-08-11 10:18:39 +0200275 unsigned int pos;
276 spin_lock(&chip->substream_lock);
277 pos = chip->playback_ptr;
278 spin_unlock(&chip->substream_lock);
279 return bytes_to_frames(substream->runtime, pos);
Stas Sergeev9ab4d072008-03-03 10:53:54 +0100280}
281
Bhumika Goyalb6c0b712017-08-17 14:45:51 +0530282static const struct snd_pcm_hardware snd_pcsp_playback = {
Stas Sergeev9ab4d072008-03-03 10:53:54 +0100283 .info = (SNDRV_PCM_INFO_INTERLEAVED |
284 SNDRV_PCM_INFO_HALF_DUPLEX |
285 SNDRV_PCM_INFO_MMAP | SNDRV_PCM_INFO_MMAP_VALID),
Stas Sergeev4dfd7952008-05-17 08:44:41 +0200286 .formats = (SNDRV_PCM_FMTBIT_U8
287#if DMIX_WANTS_S16
288 | SNDRV_PCM_FMTBIT_S16_LE
289#endif
290 ),
Stas Sergeev9ab4d072008-03-03 10:53:54 +0100291 .rates = SNDRV_PCM_RATE_KNOT,
292 .rate_min = PCSP_DEFAULT_SRATE,
293 .rate_max = PCSP_DEFAULT_SRATE,
294 .channels_min = 1,
295 .channels_max = 1,
296 .buffer_bytes_max = PCSP_BUFFER_SIZE,
297 .period_bytes_min = 64,
298 .period_bytes_max = PCSP_MAX_PERIOD_SIZE,
299 .periods_min = 2,
300 .periods_max = PCSP_MAX_PERIODS,
301 .fifo_size = 0,
302};
303
304static int snd_pcsp_playback_open(struct snd_pcm_substream *substream)
305{
306 struct snd_pcsp *chip = snd_pcm_substream_chip(substream);
307 struct snd_pcm_runtime *runtime = substream->runtime;
308#if PCSP_DEBUG
309 printk(KERN_INFO "PCSP: open called\n");
310#endif
311 if (atomic_read(&chip->timer_active)) {
312 printk(KERN_ERR "PCSP: still active!!\n");
313 return -EBUSY;
314 }
315 runtime->hw = snd_pcsp_playback;
316 chip->playback_substream = substream;
Stas Sergeev9ab4d072008-03-03 10:53:54 +0100317 return 0;
318}
319
Arvind Yadav642b7582017-06-09 11:39:56 +0530320static const struct snd_pcm_ops snd_pcsp_playback_ops = {
Stas Sergeev9ab4d072008-03-03 10:53:54 +0100321 .open = snd_pcsp_playback_open,
322 .close = snd_pcsp_playback_close,
Stas Sergeev9ab4d072008-03-03 10:53:54 +0100323 .hw_params = snd_pcsp_playback_hw_params,
324 .hw_free = snd_pcsp_playback_hw_free,
325 .prepare = snd_pcsp_playback_prepare,
326 .trigger = snd_pcsp_trigger,
327 .pointer = snd_pcsp_playback_pointer,
328};
329
Bill Pembertonfbbb01a2012-12-06 12:35:27 -0500330int snd_pcsp_new_pcm(struct snd_pcsp *chip)
Stas Sergeev9ab4d072008-03-03 10:53:54 +0100331{
332 int err;
333
334 err = snd_pcm_new(chip->card, "pcspeaker", 0, 1, 0, &chip->pcm);
335 if (err < 0)
336 return err;
337
338 snd_pcm_set_ops(chip->pcm, SNDRV_PCM_STREAM_PLAYBACK,
339 &snd_pcsp_playback_ops);
340
341 chip->pcm->private_data = chip;
342 chip->pcm->info_flags = SNDRV_PCM_INFO_HALF_DUPLEX;
343 strcpy(chip->pcm->name, "pcsp");
344
Takashi Iwaid635f092019-12-09 10:48:39 +0100345 snd_pcm_set_managed_buffer_all(chip->pcm,
346 SNDRV_DMA_TYPE_CONTINUOUS,
347 NULL,
348 PCSP_BUFFER_SIZE,
349 PCSP_BUFFER_SIZE);
Stas Sergeev9ab4d072008-03-03 10:53:54 +0100350
351 return 0;
352}