amisound.c
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:3k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * linux/arch/m68k/amiga/amisound.c
  3.  *
  4.  * amiga sound driver for Linux/m68k
  5.  *
  6.  * This file is subject to the terms and conditions of the GNU General Public
  7.  * License.  See the file COPYING in the main directory of this archive
  8.  * for more details.
  9.  */
  10. #include <linux/config.h>
  11. #include <linux/sched.h>
  12. #include <linux/timer.h>
  13. #include <linux/init.h>
  14. #include <asm/system.h>
  15. #include <asm/amigahw.h>
  16. static unsigned short *snd_data = NULL;
  17. static const signed char sine_data[] = {
  18. 0,  39,  75,  103,  121,  127,  121,  103,  75,  39,
  19. 0, -39, -75, -103, -121, -127, -121, -103, -75, -39
  20. };
  21. #define DATA_SIZE (sizeof(sine_data)/sizeof(sine_data[0]))
  22.     /*
  23.      * The minimum period for audio may be modified by the frame buffer
  24.      * device since it depends on htotal (for OCS/ECS/AGA)
  25.      */
  26. volatile unsigned short amiga_audio_min_period = 124; /* Default for pre-OCS */
  27. #define MAX_PERIOD (65535)
  28.     /*
  29.      * Current period (set by dmasound.c)
  30.      */
  31. unsigned short amiga_audio_period = MAX_PERIOD;
  32. static unsigned long clock_constant;
  33. void __init amiga_init_sound(void)
  34. {
  35. static struct resource beep_res = { "Beep" };
  36. snd_data = amiga_chip_alloc_res(sizeof(sine_data), &beep_res);
  37. if (!snd_data) {
  38. printk (KERN_CRIT "amiga init_sound: failed to allocate chipmemn");
  39. return;
  40. }
  41. memcpy (snd_data, sine_data, sizeof(sine_data));
  42. /* setup divisor */
  43. clock_constant = (amiga_colorclock+DATA_SIZE/2)/DATA_SIZE;
  44. /* without amifb, turn video off and enable high quality sound */
  45. #ifndef CONFIG_FB_AMIGA
  46. amifb_video_off();
  47. #endif
  48. }
  49. static void nosound( unsigned long ignored );
  50. static struct timer_list sound_timer = { function: nosound };
  51. void amiga_mksound( unsigned int hz, unsigned int ticks )
  52. {
  53. unsigned long flags;
  54. if (!snd_data)
  55. return;
  56. save_flags(flags);
  57. cli();
  58. del_timer( &sound_timer );
  59. if (hz > 20 && hz < 32767) {
  60. unsigned long period = (clock_constant / hz);
  61. if (period < amiga_audio_min_period)
  62. period = amiga_audio_min_period;
  63. if (period > MAX_PERIOD)
  64. period = MAX_PERIOD;
  65. /* setup pointer to data, period, length and volume */
  66. custom.aud[2].audlc = snd_data;
  67. custom.aud[2].audlen = sizeof(sine_data)/2;
  68. custom.aud[2].audper = (unsigned short)period;
  69. custom.aud[2].audvol = 32; /* 50% of maxvol */
  70. if (ticks) {
  71. sound_timer.expires = jiffies + ticks;
  72. add_timer( &sound_timer );
  73. }
  74. /* turn on DMA for audio channel 2 */
  75. custom.dmacon = DMAF_SETCLR | DMAF_AUD2;
  76. } else
  77. nosound( 0 );
  78. restore_flags(flags);
  79. }
  80. static void nosound( unsigned long ignored )
  81. {
  82. /* turn off DMA for audio channel 2 */
  83. custom.dmacon = DMAF_AUD2;
  84. /* restore period to previous value after beeping */
  85. custom.aud[2].audper = amiga_audio_period;
  86. }