1 // SPDX-License-Identifier: GPL-2.0
3 * PC-Speaker driver for Linux
5 * Copyright (C) 1993-1997 Michael Beck
6 * Copyright (C) 1997-2001 David Woodhouse
7 * Copyright (C) 2001-2008 Stas Sergeev
10 #include <linux/module.h>
11 #include <linux/gfp.h>
12 #include <linux/moduleparam.h>
13 #include <linux/interrupt.h>
15 #include <sound/core.h>
16 #include <sound/pcm.h>
19 static bool nforce_wa
;
20 module_param(nforce_wa
, bool, 0444);
21 MODULE_PARM_DESC(nforce_wa
, "Apply NForce chipset workaround "
22 "(expect bad sound)");
24 #define DMIX_WANTS_S16 1
27 * Call snd_pcm_period_elapsed in a work
28 * This avoids spinlock messes and long-running irq contexts
30 static void pcsp_call_pcm_elapsed(struct work_struct
*work
)
32 if (atomic_read(&pcsp_chip
.timer_active
)) {
33 struct snd_pcm_substream
*substream
;
34 substream
= pcsp_chip
.playback_substream
;
36 snd_pcm_period_elapsed(substream
);
40 static DECLARE_WORK(pcsp_pcm_work
, pcsp_call_pcm_elapsed
);
42 /* write the port and returns the next expire time in ns;
43 * called at the trigger-start and in hrtimer callback
45 static u64
pcsp_timer_update(struct snd_pcsp
*chip
)
47 unsigned char timer_cnt
, val
;
49 struct snd_pcm_substream
*substream
;
50 struct snd_pcm_runtime
*runtime
;
54 outb(chip
->val61
, 0x61);
59 substream
= chip
->playback_substream
;
63 runtime
= substream
->runtime
;
64 /* assume it is mono! */
65 val
= runtime
->dma_area
[chip
->playback_ptr
+ chip
->fmt_size
- 1];
68 timer_cnt
= val
* CUR_DIV() / 256;
70 if (timer_cnt
&& chip
->enable
) {
71 raw_spin_lock_irqsave(&i8253_lock
, flags
);
73 outb_p(chip
->val61
, 0x61);
74 outb_p(timer_cnt
, 0x42);
75 outb(chip
->val61
^ 1, 0x61);
77 outb(chip
->val61
^ 2, 0x61);
80 raw_spin_unlock_irqrestore(&i8253_lock
, flags
);
83 chip
->ns_rem
= PCSP_PERIOD_NS();
84 ns
= (chip
->thalf
? PCSP_CALC_NS(timer_cnt
) : chip
->ns_rem
);
89 static void pcsp_pointer_update(struct snd_pcsp
*chip
)
91 struct snd_pcm_substream
*substream
;
92 size_t period_bytes
, buffer_bytes
;
96 /* update the playback position */
97 substream
= chip
->playback_substream
;
101 period_bytes
= snd_pcm_lib_period_bytes(substream
);
102 buffer_bytes
= snd_pcm_lib_buffer_bytes(substream
);
104 spin_lock_irqsave(&chip
->substream_lock
, flags
);
105 chip
->playback_ptr
+= PCSP_INDEX_INC() * chip
->fmt_size
;
106 periods_elapsed
= chip
->playback_ptr
- chip
->period_ptr
;
107 if (periods_elapsed
< 0) {
109 dev_dbg(chip
->card
->dev
,
110 "PCSP: buffer_bytes mod period_bytes != 0 ? (%zi %zi %zi)\n",
111 chip
->playback_ptr
, period_bytes
, buffer_bytes
);
113 periods_elapsed
+= buffer_bytes
;
115 periods_elapsed
/= period_bytes
;
116 /* wrap the pointer _before_ calling snd_pcm_period_elapsed(),
117 * or ALSA will BUG on us. */
118 chip
->playback_ptr
%= buffer_bytes
;
120 if (periods_elapsed
) {
121 chip
->period_ptr
+= periods_elapsed
* period_bytes
;
122 chip
->period_ptr
%= buffer_bytes
;
123 queue_work(system_highpri_wq
, &pcsp_pcm_work
);
125 spin_unlock_irqrestore(&chip
->substream_lock
, flags
);
128 enum hrtimer_restart
pcsp_do_timer(struct hrtimer
*handle
)
130 struct snd_pcsp
*chip
= container_of(handle
, struct snd_pcsp
, timer
);
134 if (!atomic_read(&chip
->timer_active
) || !chip
->playback_substream
)
135 return HRTIMER_NORESTART
;
137 pointer_update
= !chip
->thalf
;
138 ns
= pcsp_timer_update(chip
);
140 dev_warn(chip
->card
->dev
, "PCSP: unexpected stop\n");
141 return HRTIMER_NORESTART
;
145 pcsp_pointer_update(chip
);
147 hrtimer_forward_now(handle
, ns_to_ktime(ns
));
149 return HRTIMER_RESTART
;
152 static int pcsp_start_playing(struct snd_pcsp
*chip
)
155 dev_dbg(chip
->card
->dev
, "PCSP: start_playing called\n");
157 if (atomic_read(&chip
->timer_active
)) {
158 dev_err(chip
->card
->dev
, "PCSP: Timer already active\n");
162 raw_spin_lock(&i8253_lock
);
163 chip
->val61
= inb(0x61) | 0x03;
164 outb_p(0x92, 0x43); /* binary, mode 1, LSB only, ch 2 */
165 raw_spin_unlock(&i8253_lock
);
166 atomic_set(&chip
->timer_active
, 1);
169 hrtimer_start(&pcsp_chip
.timer
, 0, HRTIMER_MODE_REL
);
173 static void pcsp_stop_playing(struct snd_pcsp
*chip
)
176 dev_dbg(chip
->card
->dev
, "PCSP: stop_playing called\n");
178 if (!atomic_read(&chip
->timer_active
))
181 atomic_set(&chip
->timer_active
, 0);
182 raw_spin_lock(&i8253_lock
);
183 /* restore the timer */
184 outb_p(0xb6, 0x43); /* binary, mode 3, LSB/MSB, ch 2 */
185 outb(chip
->val61
& 0xFC, 0x61);
186 raw_spin_unlock(&i8253_lock
);
190 * Force to stop and sync the stream
192 void pcsp_sync_stop(struct snd_pcsp
*chip
)
195 pcsp_stop_playing(chip
);
197 hrtimer_cancel(&chip
->timer
);
198 cancel_work_sync(&pcsp_pcm_work
);
201 static int snd_pcsp_playback_close(struct snd_pcm_substream
*substream
)
203 struct snd_pcsp
*chip
= snd_pcm_substream_chip(substream
);
205 dev_dbg(chip
->card
->dev
, "PCSP: close called\n");
207 pcsp_sync_stop(chip
);
208 chip
->playback_substream
= NULL
;
212 static int snd_pcsp_playback_hw_params(struct snd_pcm_substream
*substream
,
213 struct snd_pcm_hw_params
*hw_params
)
215 struct snd_pcsp
*chip
= snd_pcm_substream_chip(substream
);
216 pcsp_sync_stop(chip
);
220 static int snd_pcsp_playback_hw_free(struct snd_pcm_substream
*substream
)
222 struct snd_pcsp
*chip
= snd_pcm_substream_chip(substream
);
224 dev_dbg(chip
->card
->dev
, "PCSP: hw_free called\n");
226 pcsp_sync_stop(chip
);
230 static int snd_pcsp_playback_prepare(struct snd_pcm_substream
*substream
)
232 struct snd_pcsp
*chip
= snd_pcm_substream_chip(substream
);
233 pcsp_sync_stop(chip
);
234 chip
->playback_ptr
= 0;
235 chip
->period_ptr
= 0;
237 snd_pcm_format_physical_width(substream
->runtime
->format
) >> 3;
238 chip
->is_signed
= snd_pcm_format_signed(substream
->runtime
->format
);
240 dev_dbg(chip
->card
->dev
, "PCSP: prepare called, 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
,
251 static int snd_pcsp_trigger(struct snd_pcm_substream
*substream
, int cmd
)
253 struct snd_pcsp
*chip
= snd_pcm_substream_chip(substream
);
255 dev_dbg(chip
->card
->dev
, "PCSP: trigger called\n");
258 case SNDRV_PCM_TRIGGER_START
:
259 case SNDRV_PCM_TRIGGER_RESUME
:
260 return pcsp_start_playing(chip
);
261 case SNDRV_PCM_TRIGGER_STOP
:
262 case SNDRV_PCM_TRIGGER_SUSPEND
:
263 pcsp_stop_playing(chip
);
271 static snd_pcm_uframes_t
snd_pcsp_playback_pointer(struct snd_pcm_substream
274 struct snd_pcsp
*chip
= snd_pcm_substream_chip(substream
);
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
);
282 static const struct snd_pcm_hardware snd_pcsp_playback
= {
283 .info
= (SNDRV_PCM_INFO_INTERLEAVED
|
284 SNDRV_PCM_INFO_HALF_DUPLEX
|
285 SNDRV_PCM_INFO_MMAP
| SNDRV_PCM_INFO_MMAP_VALID
),
286 .formats
= (SNDRV_PCM_FMTBIT_U8
288 | SNDRV_PCM_FMTBIT_S16_LE
291 .rates
= SNDRV_PCM_RATE_KNOT
,
292 .rate_min
= PCSP_DEFAULT_SRATE
,
293 .rate_max
= PCSP_DEFAULT_SRATE
,
296 .buffer_bytes_max
= PCSP_BUFFER_SIZE
,
297 .period_bytes_min
= 64,
298 .period_bytes_max
= PCSP_MAX_PERIOD_SIZE
,
300 .periods_max
= PCSP_MAX_PERIODS
,
304 static int snd_pcsp_playback_open(struct snd_pcm_substream
*substream
)
306 struct snd_pcsp
*chip
= snd_pcm_substream_chip(substream
);
307 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
309 dev_dbg(chip
->card
->dev
, "PCSP: open called\n");
311 if (atomic_read(&chip
->timer_active
)) {
312 dev_err(chip
->card
->dev
, "PCSP: still active!!\n");
315 runtime
->hw
= snd_pcsp_playback
;
316 chip
->playback_substream
= substream
;
320 static const struct snd_pcm_ops snd_pcsp_playback_ops
= {
321 .open
= snd_pcsp_playback_open
,
322 .close
= snd_pcsp_playback_close
,
323 .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
,
330 int snd_pcsp_new_pcm(struct snd_pcsp
*chip
)
334 err
= snd_pcm_new(chip
->card
, "pcspeaker", 0, 1, 0, &chip
->pcm
);
338 snd_pcm_set_ops(chip
->pcm
, SNDRV_PCM_STREAM_PLAYBACK
,
339 &snd_pcsp_playback_ops
);
341 chip
->pcm
->private_data
= chip
;
342 chip
->pcm
->info_flags
= SNDRV_PCM_INFO_HALF_DUPLEX
;
343 strcpy(chip
->pcm
->name
, "pcsp");
345 snd_pcm_set_managed_buffer_all(chip
->pcm
,
346 SNDRV_DMA_TYPE_CONTINUOUS
,