pcsp.h 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. /*
  2. * PC-Speaker driver for Linux
  3. *
  4. * Copyright (C) 1993-1997 Michael Beck
  5. * Copyright (C) 1997-2001 David Woodhouse
  6. * Copyright (C) 2001-2008 Stas Sergeev
  7. */
  8. #ifndef __PCSP_H__
  9. #define __PCSP_H__
  10. #include <linux/hrtimer.h>
  11. #include <linux/timex.h>
  12. #if defined(CONFIG_MIPS) || defined(CONFIG_X86)
  13. /* Use the global PIT lock ! */
  14. #include <asm/i8253.h>
  15. #else
  16. #include <asm/8253pit.h>
  17. static DEFINE_SPINLOCK(i8253_lock);
  18. #endif
  19. #define PCSP_SOUND_VERSION 0x400 /* read 4.00 */
  20. #define PCSP_DEBUG 0
  21. /* default timer freq for PC-Speaker: 18643 Hz */
  22. #define DIV_18KHZ 64
  23. #define MAX_DIV DIV_18KHZ
  24. #define CALC_DIV(d) (MAX_DIV >> (d))
  25. #define CUR_DIV() CALC_DIV(chip->treble)
  26. #define PCSP_MAX_TREBLE 1
  27. /* unfortunately, with hrtimers 37KHz does not work very well :( */
  28. #define PCSP_DEFAULT_TREBLE 0
  29. #define MIN_DIV (MAX_DIV >> PCSP_MAX_TREBLE)
  30. /* wild guess */
  31. #define PCSP_MIN_LPJ 1000000
  32. #define PCSP_DEFAULT_SDIV (DIV_18KHZ >> 1)
  33. #define PCSP_DEFAULT_SRATE (PIT_TICK_RATE / PCSP_DEFAULT_SDIV)
  34. #define PCSP_INDEX_INC() (1 << (PCSP_MAX_TREBLE - chip->treble))
  35. #define PCSP_CALC_RATE(i) (PIT_TICK_RATE / CALC_DIV(i))
  36. #define PCSP_RATE() PCSP_CALC_RATE(chip->treble)
  37. #define PCSP_MIN_RATE__1 MAX_DIV/PIT_TICK_RATE
  38. #define PCSP_MAX_RATE__1 MIN_DIV/PIT_TICK_RATE
  39. #define PCSP_MAX_PERIOD_NS (1000000000ULL * PCSP_MIN_RATE__1)
  40. #define PCSP_MIN_PERIOD_NS (1000000000ULL * PCSP_MAX_RATE__1)
  41. #define PCSP_CALC_NS(div) ({ \
  42. u64 __val = 1000000000ULL * (div); \
  43. do_div(__val, PIT_TICK_RATE); \
  44. __val; \
  45. })
  46. #define PCSP_PERIOD_NS() PCSP_CALC_NS(CUR_DIV())
  47. #define PCSP_MAX_PERIOD_SIZE (64*1024)
  48. #define PCSP_MAX_PERIODS 512
  49. #define PCSP_BUFFER_SIZE (128*1024)
  50. struct snd_pcsp {
  51. struct snd_card *card;
  52. struct snd_pcm *pcm;
  53. struct input_dev *input_dev;
  54. struct hrtimer timer;
  55. unsigned short port, irq, dma;
  56. spinlock_t substream_lock;
  57. struct snd_pcm_substream *playback_substream;
  58. unsigned int fmt_size;
  59. unsigned int is_signed;
  60. size_t playback_ptr;
  61. size_t period_ptr;
  62. atomic_t timer_active;
  63. int thalf;
  64. u64 ns_rem;
  65. unsigned char val61;
  66. int enable;
  67. int max_treble;
  68. int treble;
  69. int pcspkr;
  70. };
  71. extern struct snd_pcsp pcsp_chip;
  72. extern enum hrtimer_restart pcsp_do_timer(struct hrtimer *handle);
  73. extern void pcsp_sync_stop(struct snd_pcsp *chip);
  74. extern int snd_pcsp_new_pcm(struct snd_pcsp *chip);
  75. extern int snd_pcsp_new_mixer(struct snd_pcsp *chip, int nopcm);
  76. #endif