* patch for dmasound bug
@ 1999-06-02 20:05 Ryan Nielsen
1999-06-10 22:56 ` Alvin Brattli
0 siblings, 1 reply; 4+ messages in thread
From: Ryan Nielsen @ 1999-06-02 20:05 UTC (permalink / raw)
To: linuxppc-dev
This restores the rate/byteswap to normal after playing a beep
if you for example stop timidity, make a beep, resume, the sound
will be slower than normal (without this patch).
--- linux/drivers/sound/dmasound.c 1999/02/05 05:45:42 1.41
+++ linux/drivers/sound/dmasound.c 1999/06/02 19:42:08
@@ -3255,6 +3255,11 @@
save_flags(flags); cli();
if (beep_playing) {
st_le16(&beep_dbdma_cmd->command, DBDMA_STOP);
+ out_le32(&awacs_txdma->control, (RUN|PAUSE|FLUSH|WAKE) << 16);
+ out_le32(&awacs->control,
+ (in_le32(&awacs->control) & ~0x1f00)
+ | (awacs_rate_index << 8));
+ out_le32(&awacs->byteswap, sound.hard.format != AFMT_S16_BE);
beep_playing = 0;
}
restore_flags(flags);
[[ This message was sent via the linuxppc-dev mailing list. Replies are ]]
[[ not forced back to the list, so be sure to Cc linuxppc-dev if your ]]
[[ reply is of general interest. Please check http://lists.linuxppc.org/ ]]
[[ and http://www.linuxppc.org/ for useful information before posting. ]]
^ permalink raw reply [flat|nested] 4+ messages in thread* Re: patch for dmasound bug 1999-06-02 20:05 patch for dmasound bug Ryan Nielsen @ 1999-06-10 22:56 ` Alvin Brattli 1999-06-11 20:07 ` Ryan Nielsen 0 siblings, 1 reply; 4+ messages in thread From: Alvin Brattli @ 1999-06-10 22:56 UTC (permalink / raw) To: Ryan Nielsen; +Cc: linuxppc-dev OK, this reply comes a bit late, but I didn't try the patch until now, so here goes: Ryan Nielsen: > >This restores the rate/byteswap to normal after playing a beep >if you for example stop timidity, make a beep, resume, the sound >will be slower than normal (without this patch). Although this patch might do what it was intended for, it has some unwanted consequences on the PowerBook G3 Series, namely that one gets a constant, really annoying hiss from the loudspeakers, most notably during the boot sequence. Without this patch, the hiss stops after a system beep (like when you do an "echo ^G" in a shell), but now even this does not help. So, if this patch is included in the standard distribution, I suspect we will hear a lot of complaints from PowerBook G3 users. To me, it seems like there is something wrong in the dmasound driver that causes this hiss; it just doesn't switch off all sound when it's supposed to. I don't know enough about the workings of the audio controller to go bug hunting here myself, so all I can do is just point out that there is a problem here :( >--- linux/drivers/sound/dmasound.c 1999/02/05 05:45:42 1.41 >+++ linux/drivers/sound/dmasound.c 1999/06/02 19:42:08 >@@ -3255,6 +3255,11 @@ > save_flags(flags); cli(); > if (beep_playing) { > st_le16(&beep_dbdma_cmd->command, DBDMA_STOP); >+ out_le32(&awacs_txdma->control, (RUN|PAUSE|FLUSH|WAKE) << 16); >+ out_le32(&awacs->control, >+ (in_le32(&awacs->control) & ~0x1f00) >+ | (awacs_rate_index << 8)); >+ out_le32(&awacs->byteswap, sound.hard.format != AFMT_S16_BE); > beep_playing = 0; > } > restore_flags(flags); aLViN -- :r .signature [[ This message was sent via the linuxppc-dev mailing list. Replies are ]] [[ not forced back to the list, so be sure to Cc linuxppc-dev if your ]] [[ reply is of general interest. Please check http://lists.linuxppc.org/ ]] [[ and http://www.linuxppc.org/ for useful information before posting. ]] ^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: patch for dmasound bug 1999-06-10 22:56 ` Alvin Brattli @ 1999-06-11 20:07 ` Ryan Nielsen 1999-06-11 22:54 ` Alvin Brattli 0 siblings, 1 reply; 4+ messages in thread From: Ryan Nielsen @ 1999-06-11 20:07 UTC (permalink / raw) To: Alvin Brattli; +Cc: linuxppc-dev Alvin Brattli wrote: > >This restores the rate/byteswap to normal after playing a beep > >if you for example stop timidity, make a beep, resume, the sound > >will be slower than normal (without this patch). > > Although this patch might do what it was intended for, it has some > unwanted consequences on the PowerBook G3 Series, namely that one gets a > constant, really annoying hiss from the loudspeakers, most notably > during the boot sequence. Without this patch, the hiss stops after a > system beep (like when you do an "echo ^G" in a shell), but now even > this does not help. So, if this patch is included in the standard > distribution, I suspect we will hear a lot of complaints from PowerBook > G3 users. is this better? --- dmasound.c 1999/02/05 05:45:42 1.41 +++ dmasound.c 1999/06/11 20:04:43 @@ -3255,6 +3255,11 @@ save_flags(flags); cli(); if (beep_playing) { st_le16(&beep_dbdma_cmd->command, DBDMA_STOP); + out_le32(&awacs_txdma->control, (RUN|PAUSE|FLUSH|WAKE) << 16); + out_le32(&awacs->control, MASK_IEPC + | (awacs_rate_index << 8) | 0x11 + | (awacs_revision < AWACS_BURGUNDY? MASK_IEE: 0)); + out_le32(&awacs->byteswap, sound.hard.format != AFMT_S16_BE); beep_playing = 0; } restore_flags(flags); [[ This message was sent via the linuxppc-dev mailing list. Replies are ]] [[ not forced back to the list, so be sure to Cc linuxppc-dev if your ]] [[ reply is of general interest. Please check http://lists.linuxppc.org/ ]] [[ and http://www.linuxppc.org/ for useful information before posting. ]] ^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: patch for dmasound bug 1999-06-11 20:07 ` Ryan Nielsen @ 1999-06-11 22:54 ` Alvin Brattli 0 siblings, 0 replies; 4+ messages in thread From: Alvin Brattli @ 1999-06-11 22:54 UTC (permalink / raw) To: Ryan Nielsen; +Cc: linuxppc-dev Ryan Nielsen: >Alvin Brattli wrote: >> Although this patch might do what it was intended for, it has some >> unwanted consequences on the PowerBook G3 Series, namely that one gets a >> constant, really annoying hiss from the loudspeakers, most notably >> during the boot sequence. Without this patch, the hiss stops after a >> system beep (like when you do an "echo ^G" in a shell), but now even >> this does not help. So, if this patch is included in the standard >> distribution, I suspect we will hear a lot of complaints from PowerBook >> G3 users. > >is this better? >--- dmasound.c 1999/02/05 05:45:42 1.41 >+++ dmasound.c 1999/06/11 20:04:43 >@@ -3255,6 +3255,11 @@ > save_flags(flags); cli(); > if (beep_playing) { > st_le16(&beep_dbdma_cmd->command, DBDMA_STOP); >+ out_le32(&awacs_txdma->control, (RUN|PAUSE|FLUSH|WAKE) << 16); >+ out_le32(&awacs->control, MASK_IEPC >+ | (awacs_rate_index << 8) | 0x11 >+ | (awacs_revision < AWACS_BURGUNDY? MASK_IEE: 0)); >+ out_le32(&awacs->byteswap, sound.hard.format != AFMT_S16_BE); > beep_playing = 0; > } > restore_flags(flags); Nope. The hiss is still there, and won't go away. If it can be of any help, the patch below removes the hiss during boot-time when your patch is not applied. The patch simply makes a very short beep with zero volume. However, after playing certain sounds, the hiss comes back, and can then be stopped with a system beep (like with "echo ^G" in a terminal window). --- linux-2.2.8-orig/drivers/sound/dmasound.c Fri May 14 22:24:46 1999 +++ linux-2.2.8/drivers/sound/dmasound.c Sat Jun 12 00:49:44 1999 @@ -4840,6 +4840,7 @@ int has_sound = 0; #ifdef CONFIG_PPC struct device_node *np; + int beep_volume_tmp; #endif #if defined(__mc68000__) || defined(CONFIG_APUS) @@ -4974,6 +4975,14 @@ #ifdef MODULE irq_installed = 1; #endif + +#ifdef CONFIG_PPC + /* Remove hiss from PowerBook speakers (very ad hoc) */ + beep_volume_tmp = beep_volume; + beep_volume = 0; + awacs_mksound(750, 1); + beep_volume = beep_volume_tmp; +#endif /* CONFIG_PPC */ printk(KERN_INFO "DMA sound driver installed, using %d buffers of %dk.\n", numBufs, bufSize); aLViN -- :r .signature [[ This message was sent via the linuxppc-dev mailing list. Replies are ]] [[ not forced back to the list, so be sure to Cc linuxppc-dev if your ]] [[ reply is of general interest. Please check http://lists.linuxppc.org/ ]] [[ and http://www.linuxppc.org/ for useful information before posting. ]] ^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~1999-06-11 22:54 UTC | newest] Thread overview: 4+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 1999-06-02 20:05 patch for dmasound bug Ryan Nielsen 1999-06-10 22:56 ` Alvin Brattli 1999-06-11 20:07 ` Ryan Nielsen 1999-06-11 22:54 ` Alvin Brattli
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox; as well as URLs for NNTP newsgroup(s).