intel_hdmi_audio.h 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132
  1. /*
  2. * Copyright (C) 2016 Intel Corporation
  3. * Authors: Sailaja Bandarupalli <sailaja.bandarupalli@intel.com>
  4. * Ramesh Babu K V <ramesh.babu@intel.com>
  5. * Vaibhav Agarwal <vaibhav.agarwal@intel.com>
  6. * Jerome Anand <jerome.anand@intel.com>
  7. *
  8. * Permission is hereby granted, free of charge, to any person obtaining
  9. * a copy of this software and associated documentation files
  10. * (the "Software"), to deal in the Software without restriction,
  11. * including without limitation the rights to use, copy, modify, merge,
  12. * publish, distribute, sublicense, and/or sell copies of the Software,
  13. * and to permit persons to whom the Software is furnished to do so,
  14. * subject to the following conditions:
  15. *
  16. * The above copyright notice and this permission notice (including the
  17. * next paragraph) shall be included in all copies or substantial
  18. * portions of the Software.
  19. *
  20. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
  21. * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
  22. * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
  23. * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
  24. * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
  25. * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
  26. * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
  27. * SOFTWARE.
  28. */
  29. #ifndef _INTEL_HDMI_AUDIO_H_
  30. #define _INTEL_HDMI_AUDIO_H_
  31. #include <linux/types.h>
  32. #include <sound/initval.h>
  33. #include <linux/version.h>
  34. #include <linux/pm_runtime.h>
  35. #include <sound/asoundef.h>
  36. #include <sound/control.h>
  37. #include <sound/pcm.h>
  38. #include <drm/drm_edid.h>
  39. #include "intel_hdmi_lpe_audio.h"
  40. #define PCM_INDEX 0
  41. #define MAX_PB_STREAMS 1
  42. #define MAX_CAP_STREAMS 0
  43. #define HDMI_AUDIO_DRIVER "hdmi-audio"
  44. #define HDMI_INFO_FRAME_WORD1 0x000a0184
  45. #define DP_INFO_FRAME_WORD1 0x00441b84
  46. #define FIFO_THRESHOLD 0xFE
  47. #define DMA_FIFO_THRESHOLD 0x7
  48. #define BYTES_PER_WORD 0x4
  49. /* Sampling rate as per IEC60958 Ver 3 */
  50. #define CH_STATUS_MAP_32KHZ 0x3
  51. #define CH_STATUS_MAP_44KHZ 0x0
  52. #define CH_STATUS_MAP_48KHZ 0x2
  53. #define CH_STATUS_MAP_88KHZ 0x8
  54. #define CH_STATUS_MAP_96KHZ 0xA
  55. #define CH_STATUS_MAP_176KHZ 0xC
  56. #define CH_STATUS_MAP_192KHZ 0xE
  57. #define MAX_SMPL_WIDTH_20 0x0
  58. #define MAX_SMPL_WIDTH_24 0x1
  59. #define SMPL_WIDTH_16BITS 0x1
  60. #define SMPL_WIDTH_24BITS 0x5
  61. #define CHANNEL_ALLOCATION 0x1F
  62. #define MASK_BYTE0 0x000000FF
  63. #define VALID_DIP_WORDS 3
  64. #define LAYOUT0 0
  65. #define LAYOUT1 1
  66. #define SWAP_LFE_CENTER 0x00fac4c8
  67. #define AUD_CONFIG_CH_MASK 0x70
  68. struct pcm_stream_info {
  69. struct snd_pcm_substream *substream;
  70. u64 buffer_rendered;
  71. u32 ring_buf_size;
  72. int substream_refcount;
  73. bool running;
  74. };
  75. struct ring_buf_info {
  76. u32 buf_addr;
  77. u32 buf_size;
  78. u8 is_valid;
  79. };
  80. /**
  81. * struct snd_intelhad - intelhad driver structure
  82. *
  83. * @card: ptr to hold card details
  84. * @drv_status: driver status
  85. * @buf_info: ring buffer info
  86. * @stream_info: stream information
  87. * @eld: holds ELD info
  88. * @curr_buf: pointer to hold current active ring buf
  89. * @valid_buf_cnt: ring buffer count for stream
  90. * @had_spinlock: driver lock
  91. * @aes_bits: IEC958 status bits
  92. * @buff_done: id of current buffer done intr
  93. * @dev: platoform device handle
  94. * @chmap: holds channel map info
  95. * @underrun_count: PCM stream underrun counter
  96. */
  97. struct snd_intelhad {
  98. struct snd_card *card;
  99. enum had_drv_status drv_status;
  100. struct ring_buf_info buf_info[HAD_NUM_OF_RING_BUFS];
  101. struct pcm_stream_info stream_info;
  102. unsigned char eld[HDMI_MAX_ELD_BYTES];
  103. bool dp_output;
  104. enum intel_had_aud_buf_type curr_buf;
  105. int valid_buf_cnt;
  106. unsigned int aes_bits;
  107. spinlock_t had_spinlock;
  108. enum intel_had_aud_buf_type buff_done;
  109. struct device *dev;
  110. struct snd_pcm_chmap *chmap;
  111. int underrun_count;
  112. int tmds_clock_speed;
  113. int link_rate;
  114. /* internal stuff */
  115. int irq;
  116. void __iomem *mmio_start;
  117. unsigned int had_config_offset;
  118. struct work_struct hdmi_audio_wq;
  119. struct mutex mutex; /* for protecting chmap and eld */
  120. };
  121. #endif /* _INTEL_HDMI_AUDIO_ */