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

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * linux/arch/m68k/atari/atasound.c
  3.  *
  4.  * ++Geert: Moved almost all stuff to linux/drivers/sound/
  5.  *
  6.  * The author of atari_nosound, atari_mksound and atari_microwire_cmd is
  7.  * unknown. (++roman: That's me... :-)
  8.  *
  9.  * This file is subject to the terms and conditions of the GNU General Public
  10.  * License.  See the file COPYING in the main directory of this archive
  11.  * for more details.
  12.  *
  13.  * 1998-05-31 ++andreas: atari_mksound rewritten to always use the envelope,
  14.  *  no timer, atari_nosound removed.
  15.  *
  16.  */
  17. #include <linux/sched.h>
  18. #include <linux/timer.h>
  19. #include <linux/major.h>
  20. #include <linux/fcntl.h>
  21. #include <linux/errno.h>
  22. #include <linux/mm.h>
  23. #include <asm/atarihw.h>
  24. #include <asm/system.h>
  25. #include <asm/irq.h>
  26. #include <asm/pgtable.h>
  27. #include <asm/atariints.h>
  28. /*
  29.  * stuff from the old atasound.c
  30.  */
  31. void atari_microwire_cmd (int cmd)
  32. {
  33. tt_microwire.mask = 0x7ff;
  34. tt_microwire.data = MW_LM1992_ADDR | cmd;
  35. /* Busy wait for data being completely sent :-( */
  36. while( tt_microwire.mask != 0x7ff)
  37. ;
  38. }
  39. /* PSG base frequency */
  40. #define PSG_FREQ 125000
  41. /* PSG envelope base frequency times 10 */
  42. #define PSG_ENV_FREQ_10 78125
  43. void atari_mksound (unsigned int hz, unsigned int ticks)
  44. {
  45. /* Generates sound of some frequency for some number of clock
  46.    ticks.  */
  47. unsigned long flags;
  48. unsigned char tmp;
  49. int period;
  50. save_flags(flags);
  51. cli();
  52. /* Disable generator A in mixer control.  */
  53. sound_ym.rd_data_reg_sel = 7;
  54. tmp = sound_ym.rd_data_reg_sel;
  55. tmp |= 011;
  56. sound_ym.wd_data = tmp;
  57. if (hz) {
  58.     /* Convert from frequency value to PSG period value (base
  59.        frequency 125 kHz).  */
  60.     period = PSG_FREQ / hz;
  61.     if (period > 0xfff) period = 0xfff;
  62. /* Set generator A frequency to hz.  */
  63. sound_ym.rd_data_reg_sel = 0;
  64. sound_ym.wd_data = period & 0xff;
  65. sound_ym.rd_data_reg_sel = 1;
  66. sound_ym.wd_data = (period >> 8) & 0xf;
  67. if (ticks) {
  68. /* Set length of envelope (max 8 sec).  */
  69. int length = (ticks * PSG_ENV_FREQ_10) / HZ / 10;
  70. if (length > 0xffff) length = 0xffff;
  71. sound_ym.rd_data_reg_sel = 11;
  72. sound_ym.wd_data = length & 0xff;
  73. sound_ym.rd_data_reg_sel = 12;
  74. sound_ym.wd_data = length >> 8;
  75. /* Envelope form: max -> min single.  */
  76. sound_ym.rd_data_reg_sel = 13;
  77. sound_ym.wd_data = 0;
  78. /* Use envelope for generator A.  */
  79. sound_ym.rd_data_reg_sel = 8;
  80. sound_ym.wd_data = 0x10;
  81. } else {
  82. /* Set generator A level to maximum, no envelope.  */
  83. sound_ym.rd_data_reg_sel = 8;
  84. sound_ym.wd_data = 15;
  85. }
  86. /* Turn on generator A in mixer control.  */
  87. sound_ym.rd_data_reg_sel = 7;
  88. tmp &= ~1;
  89. sound_ym.wd_data = tmp;
  90. }
  91. restore_flags(flags);
  92. }