Thomas Gleixner | 1a59d1b8 | 2019-05-27 08:55:05 +0200 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0-or-later */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2 | #ifndef __SOUND_PCM_H |
| 3 | #define __SOUND_PCM_H |
| 4 | |
| 5 | /* |
| 6 | * Digital Audio (PCM) abstract layer |
Jaroslav Kysela | c1017a4 | 2007-10-15 09:50:19 +0200 | [diff] [blame] | 7 | * Copyright (c) by Jaroslav Kysela <perex@perex.cz> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 8 | * Abramo Bagnara <abramo@alsa-project.org> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 9 | */ |
| 10 | |
| 11 | #include <sound/asound.h> |
| 12 | #include <sound/memalloc.h> |
Pawel MOLL | f90c06a | 2008-07-30 12:46:40 +0100 | [diff] [blame] | 13 | #include <sound/minors.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 14 | #include <linux/poll.h> |
Al Viro | f23f6e0 | 2006-10-20 15:17:02 -0400 | [diff] [blame] | 15 | #include <linux/mm.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 16 | #include <linux/bitops.h> |
Jean Pihet | e8db0be | 2011-08-25 15:35:03 +0200 | [diff] [blame] | 17 | #include <linux/pm_qos.h> |
Takashi Iwai | f57f3df | 2019-01-13 09:50:33 +0100 | [diff] [blame] | 18 | #include <linux/refcount.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 19 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 20 | #define snd_pcm_substream_chip(substream) ((substream)->private_data) |
| 21 | #define snd_pcm_chip(pcm) ((pcm)->private_data) |
| 22 | |
Takashi Iwai | 6d2412b | 2017-05-12 11:44:03 +0200 | [diff] [blame] | 23 | #if IS_ENABLED(CONFIG_SND_PCM_OSS) |
David Howells | a1ce392 | 2012-10-02 18:01:25 +0100 | [diff] [blame] | 24 | #include <sound/pcm_oss.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 25 | #endif |
| 26 | |
| 27 | /* |
| 28 | * Hardware (lowlevel) section |
| 29 | */ |
| 30 | |
Takashi Iwai | 877211f | 2005-11-17 13:59:38 +0100 | [diff] [blame] | 31 | struct snd_pcm_hardware { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 32 | unsigned int info; /* SNDRV_PCM_INFO_* */ |
| 33 | u64 formats; /* SNDRV_PCM_FMTBIT_* */ |
| 34 | unsigned int rates; /* SNDRV_PCM_RATE_* */ |
| 35 | unsigned int rate_min; /* min rate */ |
| 36 | unsigned int rate_max; /* max rate */ |
| 37 | unsigned int channels_min; /* min channels */ |
| 38 | unsigned int channels_max; /* max channels */ |
| 39 | size_t buffer_bytes_max; /* max buffer size */ |
| 40 | size_t period_bytes_min; /* min period size */ |
| 41 | size_t period_bytes_max; /* max period size */ |
| 42 | unsigned int periods_min; /* min # of periods */ |
| 43 | unsigned int periods_max; /* max # of periods */ |
| 44 | size_t fifo_size; /* fifo size in bytes */ |
Takashi Iwai | 877211f | 2005-11-17 13:59:38 +0100 | [diff] [blame] | 45 | }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 46 | |
Baolin Wang | 3ddee7f | 2018-04-24 20:06:11 +0800 | [diff] [blame] | 47 | struct snd_pcm_status64; |
Randy Dunlap | e0e6ce0 | 2006-12-07 08:22:50 +0100 | [diff] [blame] | 48 | struct snd_pcm_substream; |
| 49 | |
Pierre-Louis Bossart | 229d043 | 2015-02-13 15:14:03 -0600 | [diff] [blame] | 50 | struct snd_pcm_audio_tstamp_config; /* definitions further down */ |
| 51 | struct snd_pcm_audio_tstamp_report; |
| 52 | |
Takashi Iwai | 877211f | 2005-11-17 13:59:38 +0100 | [diff] [blame] | 53 | struct snd_pcm_ops { |
| 54 | int (*open)(struct snd_pcm_substream *substream); |
| 55 | int (*close)(struct snd_pcm_substream *substream); |
| 56 | int (*ioctl)(struct snd_pcm_substream * substream, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 57 | unsigned int cmd, void *arg); |
Takashi Iwai | 877211f | 2005-11-17 13:59:38 +0100 | [diff] [blame] | 58 | int (*hw_params)(struct snd_pcm_substream *substream, |
| 59 | struct snd_pcm_hw_params *params); |
| 60 | int (*hw_free)(struct snd_pcm_substream *substream); |
| 61 | int (*prepare)(struct snd_pcm_substream *substream); |
| 62 | int (*trigger)(struct snd_pcm_substream *substream, int cmd); |
Takashi Iwai | 1e850be | 2019-11-17 09:53:06 +0100 | [diff] [blame] | 63 | int (*sync_stop)(struct snd_pcm_substream *substream); |
Takashi Iwai | 877211f | 2005-11-17 13:59:38 +0100 | [diff] [blame] | 64 | snd_pcm_uframes_t (*pointer)(struct snd_pcm_substream *substream); |
Pierre-Louis Bossart | 3179f62 | 2015-02-13 15:14:06 -0600 | [diff] [blame] | 65 | int (*get_time_info)(struct snd_pcm_substream *substream, |
Baolin Wang | fcae40c | 2018-04-24 20:06:08 +0800 | [diff] [blame] | 66 | struct timespec64 *system_ts, struct timespec64 *audio_ts, |
Pierre-Louis Bossart | 3179f62 | 2015-02-13 15:14:06 -0600 | [diff] [blame] | 67 | struct snd_pcm_audio_tstamp_config *audio_tstamp_config, |
| 68 | struct snd_pcm_audio_tstamp_report *audio_tstamp_report); |
Takashi Iwai | 29d1a87 | 2017-05-10 20:02:35 +0200 | [diff] [blame] | 69 | int (*fill_silence)(struct snd_pcm_substream *substream, int channel, |
| 70 | unsigned long pos, unsigned long bytes); |
| 71 | int (*copy_user)(struct snd_pcm_substream *substream, int channel, |
| 72 | unsigned long pos, void __user *buf, |
| 73 | unsigned long bytes); |
| 74 | int (*copy_kernel)(struct snd_pcm_substream *substream, int channel, |
| 75 | unsigned long pos, void *buf, unsigned long bytes); |
Takashi Iwai | 877211f | 2005-11-17 13:59:38 +0100 | [diff] [blame] | 76 | struct page *(*page)(struct snd_pcm_substream *substream, |
| 77 | unsigned long offset); |
| 78 | int (*mmap)(struct snd_pcm_substream *substream, struct vm_area_struct *vma); |
| 79 | int (*ack)(struct snd_pcm_substream *substream); |
| 80 | }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 81 | |
| 82 | /* |
| 83 | * |
| 84 | */ |
| 85 | |
Pawel MOLL | f90c06a | 2008-07-30 12:46:40 +0100 | [diff] [blame] | 86 | #if defined(CONFIG_SND_DYNAMIC_MINORS) |
| 87 | #define SNDRV_PCM_DEVICES (SNDRV_OS_MINORS-2) |
| 88 | #else |
| 89 | #define SNDRV_PCM_DEVICES 8 |
| 90 | #endif |
Jaroslav Kysela | 896e6cc | 2008-08-01 13:36:04 +0200 | [diff] [blame] | 91 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 92 | #define SNDRV_PCM_IOCTL1_RESET 0 |
Takashi Sakamoto | e11f0f9 | 2017-06-14 19:30:03 +0900 | [diff] [blame] | 93 | /* 1 is absent slot. */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 94 | #define SNDRV_PCM_IOCTL1_CHANNEL_INFO 2 |
Takashi Sakamoto | ba61faf | 2017-06-14 19:30:04 +0900 | [diff] [blame] | 95 | /* 3 is absent slot. */ |
Jaroslav Kysela | 8bea869 | 2009-04-27 09:44:40 +0200 | [diff] [blame] | 96 | #define SNDRV_PCM_IOCTL1_FIFO_SIZE 4 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 97 | |
| 98 | #define SNDRV_PCM_TRIGGER_STOP 0 |
| 99 | #define SNDRV_PCM_TRIGGER_START 1 |
| 100 | #define SNDRV_PCM_TRIGGER_PAUSE_PUSH 3 |
| 101 | #define SNDRV_PCM_TRIGGER_PAUSE_RELEASE 4 |
| 102 | #define SNDRV_PCM_TRIGGER_SUSPEND 5 |
| 103 | #define SNDRV_PCM_TRIGGER_RESUME 6 |
Libin Yang | 48d8829 | 2014-12-31 22:09:54 +0800 | [diff] [blame] | 104 | #define SNDRV_PCM_TRIGGER_DRAIN 7 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 105 | |
| 106 | #define SNDRV_PCM_POS_XRUN ((snd_pcm_uframes_t)-1) |
| 107 | |
| 108 | /* If you change this don't forget to change rates[] table in pcm_native.c */ |
| 109 | #define SNDRV_PCM_RATE_5512 (1<<0) /* 5512Hz */ |
| 110 | #define SNDRV_PCM_RATE_8000 (1<<1) /* 8000Hz */ |
| 111 | #define SNDRV_PCM_RATE_11025 (1<<2) /* 11025Hz */ |
| 112 | #define SNDRV_PCM_RATE_16000 (1<<3) /* 16000Hz */ |
| 113 | #define SNDRV_PCM_RATE_22050 (1<<4) /* 22050Hz */ |
| 114 | #define SNDRV_PCM_RATE_32000 (1<<5) /* 32000Hz */ |
| 115 | #define SNDRV_PCM_RATE_44100 (1<<6) /* 44100Hz */ |
| 116 | #define SNDRV_PCM_RATE_48000 (1<<7) /* 48000Hz */ |
| 117 | #define SNDRV_PCM_RATE_64000 (1<<8) /* 64000Hz */ |
| 118 | #define SNDRV_PCM_RATE_88200 (1<<9) /* 88200Hz */ |
| 119 | #define SNDRV_PCM_RATE_96000 (1<<10) /* 96000Hz */ |
| 120 | #define SNDRV_PCM_RATE_176400 (1<<11) /* 176400Hz */ |
| 121 | #define SNDRV_PCM_RATE_192000 (1<<12) /* 192000Hz */ |
Vidyakumar Athota | 4cc4531 | 2019-08-22 10:56:50 +0100 | [diff] [blame] | 122 | #define SNDRV_PCM_RATE_352800 (1<<13) /* 352800Hz */ |
| 123 | #define SNDRV_PCM_RATE_384000 (1<<14) /* 384000Hz */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 124 | |
| 125 | #define SNDRV_PCM_RATE_CONTINUOUS (1<<30) /* continuous range */ |
| 126 | #define SNDRV_PCM_RATE_KNOT (1<<31) /* supports more non-continuos rates */ |
| 127 | |
| 128 | #define SNDRV_PCM_RATE_8000_44100 (SNDRV_PCM_RATE_8000|SNDRV_PCM_RATE_11025|\ |
| 129 | SNDRV_PCM_RATE_16000|SNDRV_PCM_RATE_22050|\ |
| 130 | SNDRV_PCM_RATE_32000|SNDRV_PCM_RATE_44100) |
| 131 | #define SNDRV_PCM_RATE_8000_48000 (SNDRV_PCM_RATE_8000_44100|SNDRV_PCM_RATE_48000) |
| 132 | #define SNDRV_PCM_RATE_8000_96000 (SNDRV_PCM_RATE_8000_48000|SNDRV_PCM_RATE_64000|\ |
| 133 | SNDRV_PCM_RATE_88200|SNDRV_PCM_RATE_96000) |
| 134 | #define SNDRV_PCM_RATE_8000_192000 (SNDRV_PCM_RATE_8000_96000|SNDRV_PCM_RATE_176400|\ |
| 135 | SNDRV_PCM_RATE_192000) |
Vidyakumar Athota | 4cc4531 | 2019-08-22 10:56:50 +0100 | [diff] [blame] | 136 | #define SNDRV_PCM_RATE_8000_384000 (SNDRV_PCM_RATE_8000_192000|\ |
| 137 | SNDRV_PCM_RATE_352800|\ |
| 138 | SNDRV_PCM_RATE_384000) |
Clemens Ladisch | fea952e | 2011-02-14 11:00:47 +0100 | [diff] [blame] | 139 | #define _SNDRV_PCM_FMTBIT(fmt) (1ULL << (__force int)SNDRV_PCM_FORMAT_##fmt) |
| 140 | #define SNDRV_PCM_FMTBIT_S8 _SNDRV_PCM_FMTBIT(S8) |
| 141 | #define SNDRV_PCM_FMTBIT_U8 _SNDRV_PCM_FMTBIT(U8) |
| 142 | #define SNDRV_PCM_FMTBIT_S16_LE _SNDRV_PCM_FMTBIT(S16_LE) |
| 143 | #define SNDRV_PCM_FMTBIT_S16_BE _SNDRV_PCM_FMTBIT(S16_BE) |
| 144 | #define SNDRV_PCM_FMTBIT_U16_LE _SNDRV_PCM_FMTBIT(U16_LE) |
| 145 | #define SNDRV_PCM_FMTBIT_U16_BE _SNDRV_PCM_FMTBIT(U16_BE) |
| 146 | #define SNDRV_PCM_FMTBIT_S24_LE _SNDRV_PCM_FMTBIT(S24_LE) |
| 147 | #define SNDRV_PCM_FMTBIT_S24_BE _SNDRV_PCM_FMTBIT(S24_BE) |
| 148 | #define SNDRV_PCM_FMTBIT_U24_LE _SNDRV_PCM_FMTBIT(U24_LE) |
| 149 | #define SNDRV_PCM_FMTBIT_U24_BE _SNDRV_PCM_FMTBIT(U24_BE) |
| 150 | #define SNDRV_PCM_FMTBIT_S32_LE _SNDRV_PCM_FMTBIT(S32_LE) |
| 151 | #define SNDRV_PCM_FMTBIT_S32_BE _SNDRV_PCM_FMTBIT(S32_BE) |
| 152 | #define SNDRV_PCM_FMTBIT_U32_LE _SNDRV_PCM_FMTBIT(U32_LE) |
| 153 | #define SNDRV_PCM_FMTBIT_U32_BE _SNDRV_PCM_FMTBIT(U32_BE) |
| 154 | #define SNDRV_PCM_FMTBIT_FLOAT_LE _SNDRV_PCM_FMTBIT(FLOAT_LE) |
| 155 | #define SNDRV_PCM_FMTBIT_FLOAT_BE _SNDRV_PCM_FMTBIT(FLOAT_BE) |
| 156 | #define SNDRV_PCM_FMTBIT_FLOAT64_LE _SNDRV_PCM_FMTBIT(FLOAT64_LE) |
| 157 | #define SNDRV_PCM_FMTBIT_FLOAT64_BE _SNDRV_PCM_FMTBIT(FLOAT64_BE) |
| 158 | #define SNDRV_PCM_FMTBIT_IEC958_SUBFRAME_LE _SNDRV_PCM_FMTBIT(IEC958_SUBFRAME_LE) |
| 159 | #define SNDRV_PCM_FMTBIT_IEC958_SUBFRAME_BE _SNDRV_PCM_FMTBIT(IEC958_SUBFRAME_BE) |
| 160 | #define SNDRV_PCM_FMTBIT_MU_LAW _SNDRV_PCM_FMTBIT(MU_LAW) |
| 161 | #define SNDRV_PCM_FMTBIT_A_LAW _SNDRV_PCM_FMTBIT(A_LAW) |
| 162 | #define SNDRV_PCM_FMTBIT_IMA_ADPCM _SNDRV_PCM_FMTBIT(IMA_ADPCM) |
| 163 | #define SNDRV_PCM_FMTBIT_MPEG _SNDRV_PCM_FMTBIT(MPEG) |
| 164 | #define SNDRV_PCM_FMTBIT_GSM _SNDRV_PCM_FMTBIT(GSM) |
Maciej S. Szmigiero | 823dbb6 | 2017-11-27 23:33:29 +0100 | [diff] [blame] | 165 | #define SNDRV_PCM_FMTBIT_S20_LE _SNDRV_PCM_FMTBIT(S20_LE) |
| 166 | #define SNDRV_PCM_FMTBIT_U20_LE _SNDRV_PCM_FMTBIT(U20_LE) |
| 167 | #define SNDRV_PCM_FMTBIT_S20_BE _SNDRV_PCM_FMTBIT(S20_BE) |
| 168 | #define SNDRV_PCM_FMTBIT_U20_BE _SNDRV_PCM_FMTBIT(U20_BE) |
Clemens Ladisch | fea952e | 2011-02-14 11:00:47 +0100 | [diff] [blame] | 169 | #define SNDRV_PCM_FMTBIT_SPECIAL _SNDRV_PCM_FMTBIT(SPECIAL) |
| 170 | #define SNDRV_PCM_FMTBIT_S24_3LE _SNDRV_PCM_FMTBIT(S24_3LE) |
| 171 | #define SNDRV_PCM_FMTBIT_U24_3LE _SNDRV_PCM_FMTBIT(U24_3LE) |
| 172 | #define SNDRV_PCM_FMTBIT_S24_3BE _SNDRV_PCM_FMTBIT(S24_3BE) |
| 173 | #define SNDRV_PCM_FMTBIT_U24_3BE _SNDRV_PCM_FMTBIT(U24_3BE) |
| 174 | #define SNDRV_PCM_FMTBIT_S20_3LE _SNDRV_PCM_FMTBIT(S20_3LE) |
| 175 | #define SNDRV_PCM_FMTBIT_U20_3LE _SNDRV_PCM_FMTBIT(U20_3LE) |
| 176 | #define SNDRV_PCM_FMTBIT_S20_3BE _SNDRV_PCM_FMTBIT(S20_3BE) |
| 177 | #define SNDRV_PCM_FMTBIT_U20_3BE _SNDRV_PCM_FMTBIT(U20_3BE) |
| 178 | #define SNDRV_PCM_FMTBIT_S18_3LE _SNDRV_PCM_FMTBIT(S18_3LE) |
| 179 | #define SNDRV_PCM_FMTBIT_U18_3LE _SNDRV_PCM_FMTBIT(U18_3LE) |
| 180 | #define SNDRV_PCM_FMTBIT_S18_3BE _SNDRV_PCM_FMTBIT(S18_3BE) |
| 181 | #define SNDRV_PCM_FMTBIT_U18_3BE _SNDRV_PCM_FMTBIT(U18_3BE) |
| 182 | #define SNDRV_PCM_FMTBIT_G723_24 _SNDRV_PCM_FMTBIT(G723_24) |
| 183 | #define SNDRV_PCM_FMTBIT_G723_24_1B _SNDRV_PCM_FMTBIT(G723_24_1B) |
| 184 | #define SNDRV_PCM_FMTBIT_G723_40 _SNDRV_PCM_FMTBIT(G723_40) |
| 185 | #define SNDRV_PCM_FMTBIT_G723_40_1B _SNDRV_PCM_FMTBIT(G723_40_1B) |
Daniel Mack | ef7a4f9 | 2013-04-17 00:01:36 +0800 | [diff] [blame] | 186 | #define SNDRV_PCM_FMTBIT_DSD_U8 _SNDRV_PCM_FMTBIT(DSD_U8) |
| 187 | #define SNDRV_PCM_FMTBIT_DSD_U16_LE _SNDRV_PCM_FMTBIT(DSD_U16_LE) |
Jurgen Kramer | d4288d3 | 2014-09-05 10:47:56 +0200 | [diff] [blame] | 188 | #define SNDRV_PCM_FMTBIT_DSD_U32_LE _SNDRV_PCM_FMTBIT(DSD_U32_LE) |
Jussi Laako | d42472e | 2014-11-21 16:04:46 +0200 | [diff] [blame] | 189 | #define SNDRV_PCM_FMTBIT_DSD_U16_BE _SNDRV_PCM_FMTBIT(DSD_U16_BE) |
| 190 | #define SNDRV_PCM_FMTBIT_DSD_U32_BE _SNDRV_PCM_FMTBIT(DSD_U32_BE) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 191 | |
| 192 | #ifdef SNDRV_LITTLE_ENDIAN |
| 193 | #define SNDRV_PCM_FMTBIT_S16 SNDRV_PCM_FMTBIT_S16_LE |
| 194 | #define SNDRV_PCM_FMTBIT_U16 SNDRV_PCM_FMTBIT_U16_LE |
| 195 | #define SNDRV_PCM_FMTBIT_S24 SNDRV_PCM_FMTBIT_S24_LE |
| 196 | #define SNDRV_PCM_FMTBIT_U24 SNDRV_PCM_FMTBIT_U24_LE |
| 197 | #define SNDRV_PCM_FMTBIT_S32 SNDRV_PCM_FMTBIT_S32_LE |
| 198 | #define SNDRV_PCM_FMTBIT_U32 SNDRV_PCM_FMTBIT_U32_LE |
| 199 | #define SNDRV_PCM_FMTBIT_FLOAT SNDRV_PCM_FMTBIT_FLOAT_LE |
| 200 | #define SNDRV_PCM_FMTBIT_FLOAT64 SNDRV_PCM_FMTBIT_FLOAT64_LE |
| 201 | #define SNDRV_PCM_FMTBIT_IEC958_SUBFRAME SNDRV_PCM_FMTBIT_IEC958_SUBFRAME_LE |
Maciej S. Szmigiero | 823dbb6 | 2017-11-27 23:33:29 +0100 | [diff] [blame] | 202 | #define SNDRV_PCM_FMTBIT_S20 SNDRV_PCM_FMTBIT_S20_LE |
| 203 | #define SNDRV_PCM_FMTBIT_U20 SNDRV_PCM_FMTBIT_U20_LE |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 204 | #endif |
| 205 | #ifdef SNDRV_BIG_ENDIAN |
| 206 | #define SNDRV_PCM_FMTBIT_S16 SNDRV_PCM_FMTBIT_S16_BE |
| 207 | #define SNDRV_PCM_FMTBIT_U16 SNDRV_PCM_FMTBIT_U16_BE |
| 208 | #define SNDRV_PCM_FMTBIT_S24 SNDRV_PCM_FMTBIT_S24_BE |
| 209 | #define SNDRV_PCM_FMTBIT_U24 SNDRV_PCM_FMTBIT_U24_BE |
| 210 | #define SNDRV_PCM_FMTBIT_S32 SNDRV_PCM_FMTBIT_S32_BE |
| 211 | #define SNDRV_PCM_FMTBIT_U32 SNDRV_PCM_FMTBIT_U32_BE |
| 212 | #define SNDRV_PCM_FMTBIT_FLOAT SNDRV_PCM_FMTBIT_FLOAT_BE |
| 213 | #define SNDRV_PCM_FMTBIT_FLOAT64 SNDRV_PCM_FMTBIT_FLOAT64_BE |
| 214 | #define SNDRV_PCM_FMTBIT_IEC958_SUBFRAME SNDRV_PCM_FMTBIT_IEC958_SUBFRAME_BE |
Maciej S. Szmigiero | 823dbb6 | 2017-11-27 23:33:29 +0100 | [diff] [blame] | 215 | #define SNDRV_PCM_FMTBIT_S20 SNDRV_PCM_FMTBIT_S20_BE |
| 216 | #define SNDRV_PCM_FMTBIT_U20 SNDRV_PCM_FMTBIT_U20_BE |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 217 | #endif |
| 218 | |
Takashi Iwai | 877211f | 2005-11-17 13:59:38 +0100 | [diff] [blame] | 219 | struct snd_pcm_file { |
| 220 | struct snd_pcm_substream *substream; |
Takashi Iwai | 548a648 | 2006-07-31 16:51:51 +0200 | [diff] [blame] | 221 | int no_compat_mmap; |
Takashi Iwai | 4b671f5 | 2017-06-19 23:11:54 +0200 | [diff] [blame] | 222 | unsigned int user_pversion; /* supported protocol version */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 223 | }; |
| 224 | |
Takashi Iwai | 877211f | 2005-11-17 13:59:38 +0100 | [diff] [blame] | 225 | struct snd_pcm_hw_rule; |
| 226 | typedef int (*snd_pcm_hw_rule_func_t)(struct snd_pcm_hw_params *params, |
| 227 | struct snd_pcm_hw_rule *rule); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 228 | |
Takashi Iwai | 877211f | 2005-11-17 13:59:38 +0100 | [diff] [blame] | 229 | struct snd_pcm_hw_rule { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 230 | unsigned int cond; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 231 | int var; |
| 232 | int deps[4]; |
Lars-Peter Clausen | d16efa0 | 2015-04-27 12:20:28 +0200 | [diff] [blame] | 233 | |
| 234 | snd_pcm_hw_rule_func_t func; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 235 | void *private; |
| 236 | }; |
| 237 | |
Takashi Iwai | 877211f | 2005-11-17 13:59:38 +0100 | [diff] [blame] | 238 | struct snd_pcm_hw_constraints { |
| 239 | struct snd_mask masks[SNDRV_PCM_HW_PARAM_LAST_MASK - |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 240 | SNDRV_PCM_HW_PARAM_FIRST_MASK + 1]; |
Takashi Iwai | 877211f | 2005-11-17 13:59:38 +0100 | [diff] [blame] | 241 | struct snd_interval intervals[SNDRV_PCM_HW_PARAM_LAST_INTERVAL - |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 242 | SNDRV_PCM_HW_PARAM_FIRST_INTERVAL + 1]; |
| 243 | unsigned int rules_num; |
| 244 | unsigned int rules_all; |
Takashi Iwai | 877211f | 2005-11-17 13:59:38 +0100 | [diff] [blame] | 245 | struct snd_pcm_hw_rule *rules; |
| 246 | }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 247 | |
Takashi Iwai | 877211f | 2005-11-17 13:59:38 +0100 | [diff] [blame] | 248 | static inline struct snd_mask *constrs_mask(struct snd_pcm_hw_constraints *constrs, |
| 249 | snd_pcm_hw_param_t var) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 250 | { |
| 251 | return &constrs->masks[var - SNDRV_PCM_HW_PARAM_FIRST_MASK]; |
| 252 | } |
| 253 | |
Takashi Iwai | 877211f | 2005-11-17 13:59:38 +0100 | [diff] [blame] | 254 | static inline struct snd_interval *constrs_interval(struct snd_pcm_hw_constraints *constrs, |
| 255 | snd_pcm_hw_param_t var) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 256 | { |
| 257 | return &constrs->intervals[var - SNDRV_PCM_HW_PARAM_FIRST_INTERVAL]; |
| 258 | } |
| 259 | |
Takashi Iwai | 877211f | 2005-11-17 13:59:38 +0100 | [diff] [blame] | 260 | struct snd_ratnum { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 261 | unsigned int num; |
| 262 | unsigned int den_min, den_max, den_step; |
Takashi Iwai | 877211f | 2005-11-17 13:59:38 +0100 | [diff] [blame] | 263 | }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 264 | |
Takashi Iwai | 877211f | 2005-11-17 13:59:38 +0100 | [diff] [blame] | 265 | struct snd_ratden { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 266 | unsigned int num_min, num_max, num_step; |
| 267 | unsigned int den; |
Takashi Iwai | 877211f | 2005-11-17 13:59:38 +0100 | [diff] [blame] | 268 | }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 269 | |
Takashi Iwai | 877211f | 2005-11-17 13:59:38 +0100 | [diff] [blame] | 270 | struct snd_pcm_hw_constraint_ratnums { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 271 | int nrats; |
Lars-Peter Clausen | e5e113c | 2015-10-28 11:37:53 +0100 | [diff] [blame] | 272 | const struct snd_ratnum *rats; |
Takashi Iwai | 877211f | 2005-11-17 13:59:38 +0100 | [diff] [blame] | 273 | }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 274 | |
Takashi Iwai | 877211f | 2005-11-17 13:59:38 +0100 | [diff] [blame] | 275 | struct snd_pcm_hw_constraint_ratdens { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 276 | int nrats; |
Lars-Peter Clausen | e5e113c | 2015-10-28 11:37:53 +0100 | [diff] [blame] | 277 | const struct snd_ratden *rats; |
Takashi Iwai | 877211f | 2005-11-17 13:59:38 +0100 | [diff] [blame] | 278 | }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 279 | |
Takashi Iwai | 877211f | 2005-11-17 13:59:38 +0100 | [diff] [blame] | 280 | struct snd_pcm_hw_constraint_list { |
Mark Brown | 4af87a9 | 2012-03-14 19:48:43 +0000 | [diff] [blame] | 281 | const unsigned int *list; |
Lars-Peter Clausen | 782e50e | 2015-04-27 12:20:29 +0200 | [diff] [blame] | 282 | unsigned int count; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 283 | unsigned int mask; |
Takashi Iwai | 877211f | 2005-11-17 13:59:38 +0100 | [diff] [blame] | 284 | }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 285 | |
Peter Rosin | f66f898 | 2015-01-28 15:16:06 +0100 | [diff] [blame] | 286 | struct snd_pcm_hw_constraint_ranges { |
| 287 | unsigned int count; |
| 288 | const struct snd_interval *ranges; |
| 289 | unsigned int mask; |
| 290 | }; |
| 291 | |
Pierre-Louis Bossart | 229d043 | 2015-02-13 15:14:03 -0600 | [diff] [blame] | 292 | /* |
| 293 | * userspace-provided audio timestamp config to kernel, |
| 294 | * structure is for internal use only and filled with dedicated unpack routine |
| 295 | */ |
| 296 | struct snd_pcm_audio_tstamp_config { |
| 297 | /* 5 of max 16 bits used */ |
| 298 | u32 type_requested:4; |
| 299 | u32 report_delay:1; /* add total delay to A/D or D/A */ |
| 300 | }; |
| 301 | |
| 302 | static inline void snd_pcm_unpack_audio_tstamp_config(__u32 data, |
| 303 | struct snd_pcm_audio_tstamp_config *config) |
| 304 | { |
| 305 | config->type_requested = data & 0xF; |
| 306 | config->report_delay = (data >> 4) & 1; |
| 307 | } |
| 308 | |
| 309 | /* |
| 310 | * kernel-provided audio timestamp report to user-space |
| 311 | * structure is for internal use only and read by dedicated pack routine |
| 312 | */ |
| 313 | struct snd_pcm_audio_tstamp_report { |
| 314 | /* 6 of max 16 bits used for bit-fields */ |
| 315 | |
| 316 | /* for backwards compatibility */ |
| 317 | u32 valid:1; |
| 318 | |
| 319 | /* actual type if hardware could not support requested timestamp */ |
| 320 | u32 actual_type:4; |
| 321 | |
| 322 | /* accuracy represented in ns units */ |
| 323 | u32 accuracy_report:1; /* 0 if accuracy unknown, 1 if accuracy field is valid */ |
| 324 | u32 accuracy; /* up to 4.29s, will be packed in separate field */ |
| 325 | }; |
| 326 | |
| 327 | static inline void snd_pcm_pack_audio_tstamp_report(__u32 *data, __u32 *accuracy, |
| 328 | const struct snd_pcm_audio_tstamp_report *report) |
| 329 | { |
| 330 | u32 tmp; |
| 331 | |
| 332 | tmp = report->accuracy_report; |
| 333 | tmp <<= 4; |
| 334 | tmp |= report->actual_type; |
| 335 | tmp <<= 1; |
| 336 | tmp |= report->valid; |
| 337 | |
| 338 | *data &= 0xffff; /* zero-clear MSBs */ |
| 339 | *data |= (tmp << 16); |
| 340 | *accuracy = report->accuracy; |
| 341 | } |
| 342 | |
| 343 | |
Takashi Iwai | 877211f | 2005-11-17 13:59:38 +0100 | [diff] [blame] | 344 | struct snd_pcm_runtime { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 345 | /* -- Status -- */ |
Takashi Iwai | 877211f | 2005-11-17 13:59:38 +0100 | [diff] [blame] | 346 | struct snd_pcm_substream *trigger_master; |
Baolin Wang | fcae40c | 2018-04-24 20:06:08 +0800 | [diff] [blame] | 347 | struct timespec64 trigger_tstamp; /* trigger timestamp */ |
Pierre-Louis Bossart | 2b79d7a | 2015-02-06 15:55:51 -0600 | [diff] [blame] | 348 | bool trigger_tstamp_latched; /* trigger timestamp latched in low-level driver/hardware */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 349 | int overrange; |
| 350 | snd_pcm_uframes_t avail_max; |
| 351 | snd_pcm_uframes_t hw_ptr_base; /* Position at buffer restart */ |
Jaroslav Kysela | e763692 | 2010-01-26 17:08:24 +0100 | [diff] [blame] | 352 | snd_pcm_uframes_t hw_ptr_interrupt; /* Position at interrupt time */ |
Jaroslav Kysela | bbf6ad1 | 2009-04-10 12:28:58 +0200 | [diff] [blame] | 353 | unsigned long hw_ptr_jiffies; /* Time when hw_ptr is updated */ |
Jaroslav Kysela | bd76af0 | 2010-08-18 14:16:54 +0200 | [diff] [blame] | 354 | unsigned long hw_ptr_buffer_jiffies; /* buffer time in jiffies */ |
Takashi Iwai | 4bbe1dd | 2008-10-13 03:07:14 +0200 | [diff] [blame] | 355 | snd_pcm_sframes_t delay; /* extra delay; typically FIFO size */ |
Pierre-Louis Bossart | 0e8014d | 2012-10-22 16:42:14 -0500 | [diff] [blame] | 356 | u64 hw_ptr_wrap; /* offset for hw_ptr due to boundary wrap-around */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 357 | |
| 358 | /* -- HW params -- */ |
| 359 | snd_pcm_access_t access; /* access mode */ |
| 360 | snd_pcm_format_t format; /* SNDRV_PCM_FORMAT_* */ |
| 361 | snd_pcm_subformat_t subformat; /* subformat */ |
| 362 | unsigned int rate; /* rate in Hz */ |
| 363 | unsigned int channels; /* channels */ |
| 364 | snd_pcm_uframes_t period_size; /* period size */ |
| 365 | unsigned int periods; /* periods */ |
| 366 | snd_pcm_uframes_t buffer_size; /* buffer size */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 367 | snd_pcm_uframes_t min_align; /* Min alignment for the format */ |
| 368 | size_t byte_align; |
| 369 | unsigned int frame_bits; |
| 370 | unsigned int sample_bits; |
| 371 | unsigned int info; |
| 372 | unsigned int rate_num; |
| 373 | unsigned int rate_den; |
Clemens Ladisch | ab69a49 | 2010-11-15 10:46:23 +0100 | [diff] [blame] | 374 | unsigned int no_period_wakeup: 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 375 | |
| 376 | /* -- SW params -- */ |
Takashi Iwai | 877211f | 2005-11-17 13:59:38 +0100 | [diff] [blame] | 377 | int tstamp_mode; /* mmap timestamp is updated */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 378 | unsigned int period_step; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 379 | snd_pcm_uframes_t start_threshold; |
| 380 | snd_pcm_uframes_t stop_threshold; |
| 381 | snd_pcm_uframes_t silence_threshold; /* Silence filling happens when |
| 382 | noise is nearest than this */ |
| 383 | snd_pcm_uframes_t silence_size; /* Silence filling size */ |
| 384 | snd_pcm_uframes_t boundary; /* pointers wrap point */ |
| 385 | |
| 386 | snd_pcm_uframes_t silence_start; /* starting pointer to silence area */ |
| 387 | snd_pcm_uframes_t silence_filled; /* size filled with silence */ |
| 388 | |
Takashi Iwai | 877211f | 2005-11-17 13:59:38 +0100 | [diff] [blame] | 389 | union snd_pcm_sync_id sync; /* hardware synchronization ID */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 390 | |
| 391 | /* -- mmap -- */ |
Takashi Iwai | 503fc85a | 2007-09-11 00:35:06 +0200 | [diff] [blame] | 392 | struct snd_pcm_mmap_status *status; |
| 393 | struct snd_pcm_mmap_control *control; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 394 | |
| 395 | /* -- locking / scheduling -- */ |
David Dillow | 5daeba3 | 2010-06-27 00:13:20 +0200 | [diff] [blame] | 396 | snd_pcm_uframes_t twake; /* do transfer (!poll) wakeup if non-zero */ |
Jaroslav Kysela | c91a988 | 2010-01-21 10:32:15 +0100 | [diff] [blame] | 397 | wait_queue_head_t sleep; /* poll sleep */ |
| 398 | wait_queue_head_t tsleep; /* transfer sleep */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 399 | struct fasync_struct *fasync; |
Takashi Iwai | 1e850be | 2019-11-17 09:53:06 +0100 | [diff] [blame] | 400 | bool stop_operating; /* sync_stop will be called */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 401 | |
| 402 | /* -- private section -- */ |
| 403 | void *private_data; |
Takashi Iwai | 877211f | 2005-11-17 13:59:38 +0100 | [diff] [blame] | 404 | void (*private_free)(struct snd_pcm_runtime *runtime); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 405 | |
| 406 | /* -- hardware description -- */ |
Takashi Iwai | 877211f | 2005-11-17 13:59:38 +0100 | [diff] [blame] | 407 | struct snd_pcm_hardware hw; |
| 408 | struct snd_pcm_hw_constraints hw_constraints; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 409 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 410 | /* -- timer -- */ |
| 411 | unsigned int timer_resolution; /* timer resolution */ |
Jaroslav Kysela | b751eef | 2007-12-13 10:19:42 +0100 | [diff] [blame] | 412 | int tstamp_type; /* timestamp type */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 413 | |
| 414 | /* -- DMA -- */ |
| 415 | unsigned char *dma_area; /* DMA area */ |
| 416 | dma_addr_t dma_addr; /* physical bus address (not accessible from main CPU) */ |
| 417 | size_t dma_bytes; /* size of DMA area */ |
| 418 | |
| 419 | struct snd_dma_buffer *dma_buffer_p; /* allocated buffer */ |
Takashi Iwai | 0dba808 | 2019-11-17 09:53:01 +0100 | [diff] [blame] | 420 | unsigned int buffer_changed:1; /* buffer allocation changed; set only in managed mode */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 421 | |
Pierre-Louis Bossart | 229d043 | 2015-02-13 15:14:03 -0600 | [diff] [blame] | 422 | /* -- audio timestamp config -- */ |
| 423 | struct snd_pcm_audio_tstamp_config audio_tstamp_config; |
| 424 | struct snd_pcm_audio_tstamp_report audio_tstamp_report; |
Baolin Wang | fcae40c | 2018-04-24 20:06:08 +0800 | [diff] [blame] | 425 | struct timespec64 driver_tstamp; |
Pierre-Louis Bossart | 229d043 | 2015-02-13 15:14:03 -0600 | [diff] [blame] | 426 | |
Takashi Iwai | 6d2412b | 2017-05-12 11:44:03 +0200 | [diff] [blame] | 427 | #if IS_ENABLED(CONFIG_SND_PCM_OSS) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 428 | /* -- OSS things -- */ |
Takashi Iwai | 877211f | 2005-11-17 13:59:38 +0100 | [diff] [blame] | 429 | struct snd_pcm_oss_runtime oss; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 430 | #endif |
| 431 | }; |
| 432 | |
Takashi Iwai | 877211f | 2005-11-17 13:59:38 +0100 | [diff] [blame] | 433 | struct snd_pcm_group { /* keep linked substreams */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 434 | spinlock_t lock; |
Takashi Iwai | 257f8cc | 2014-08-29 15:32:29 +0200 | [diff] [blame] | 435 | struct mutex mutex; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 436 | struct list_head substreams; |
Takashi Iwai | f57f3df | 2019-01-13 09:50:33 +0100 | [diff] [blame] | 437 | refcount_t refs; |
Takashi Iwai | 877211f | 2005-11-17 13:59:38 +0100 | [diff] [blame] | 438 | }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 439 | |
Clemens Ladisch | e7373b7 | 2009-11-10 10:13:30 +0100 | [diff] [blame] | 440 | struct pid; |
| 441 | |
Takashi Iwai | 877211f | 2005-11-17 13:59:38 +0100 | [diff] [blame] | 442 | struct snd_pcm_substream { |
| 443 | struct snd_pcm *pcm; |
| 444 | struct snd_pcm_str *pstr; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 445 | void *private_data; /* copied from pcm->private_data */ |
| 446 | int number; |
| 447 | char name[32]; /* substream name */ |
| 448 | int stream; /* stream (direction) */ |
Jean Pihet | cc74998 | 2011-08-25 15:35:12 +0200 | [diff] [blame] | 449 | struct pm_qos_request latency_pm_qos_req; /* pm_qos request */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 450 | size_t buffer_bytes_max; /* limit ring buffer size */ |
| 451 | struct snd_dma_buffer dma_buffer; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 452 | size_t dma_max; |
| 453 | /* -- hardware operations -- */ |
Lars-Peter Clausen | e6c2e7e | 2013-05-24 15:18:10 +0200 | [diff] [blame] | 454 | const struct snd_pcm_ops *ops; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 455 | /* -- runtime information -- */ |
Takashi Iwai | 877211f | 2005-11-17 13:59:38 +0100 | [diff] [blame] | 456 | struct snd_pcm_runtime *runtime; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 457 | /* -- timer section -- */ |
Takashi Iwai | 877211f | 2005-11-17 13:59:38 +0100 | [diff] [blame] | 458 | struct snd_timer *timer; /* timer */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 459 | unsigned timer_running: 1; /* time is running */ |
Liam Girdwood | d64c5cf | 2018-07-06 13:50:36 +0100 | [diff] [blame] | 460 | long wait_time; /* time in ms for R/W to wait for avail */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 461 | /* -- next substream -- */ |
Takashi Iwai | 877211f | 2005-11-17 13:59:38 +0100 | [diff] [blame] | 462 | struct snd_pcm_substream *next; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 463 | /* -- linked substreams -- */ |
| 464 | struct list_head link_list; /* linked list member */ |
Takashi Iwai | 877211f | 2005-11-17 13:59:38 +0100 | [diff] [blame] | 465 | struct snd_pcm_group self_group; /* fake group for non linked substream (with substream lock inside) */ |
| 466 | struct snd_pcm_group *group; /* pointer to current group */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 467 | /* -- assigned files -- */ |
Takashi Iwai | 0df63e4 | 2006-04-28 15:13:41 +0200 | [diff] [blame] | 468 | int ref_count; |
Takashi Iwai | 9c323fc | 2006-04-28 15:13:41 +0200 | [diff] [blame] | 469 | atomic_t mmap_count; |
Takashi Iwai | 0df63e4 | 2006-04-28 15:13:41 +0200 | [diff] [blame] | 470 | unsigned int f_flags; |
Takashi Iwai | 3bf75f9 | 2006-03-27 16:40:49 +0200 | [diff] [blame] | 471 | void (*pcm_release)(struct snd_pcm_substream *); |
Clemens Ladisch | e7373b7 | 2009-11-10 10:13:30 +0100 | [diff] [blame] | 472 | struct pid *pid; |
Takashi Iwai | 6d2412b | 2017-05-12 11:44:03 +0200 | [diff] [blame] | 473 | #if IS_ENABLED(CONFIG_SND_PCM_OSS) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 474 | /* -- OSS things -- */ |
Takashi Iwai | 877211f | 2005-11-17 13:59:38 +0100 | [diff] [blame] | 475 | struct snd_pcm_oss_substream oss; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 476 | #endif |
Takashi Iwai | b7d90a3 | 2006-04-25 12:56:04 +0200 | [diff] [blame] | 477 | #ifdef CONFIG_SND_VERBOSE_PROCFS |
Takashi Iwai | 877211f | 2005-11-17 13:59:38 +0100 | [diff] [blame] | 478 | struct snd_info_entry *proc_root; |
Takashi Iwai | 2b30d41 | 2014-11-04 14:02:40 +0100 | [diff] [blame] | 479 | #endif /* CONFIG_SND_VERBOSE_PROCFS */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 480 | /* misc flags */ |
Takashi Iwai | 3bf75f9 | 2006-03-27 16:40:49 +0200 | [diff] [blame] | 481 | unsigned int hw_opened: 1; |
Takashi Iwai | 0dba808 | 2019-11-17 09:53:01 +0100 | [diff] [blame] | 482 | unsigned int managed_buffer_alloc:1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 483 | }; |
| 484 | |
Takashi Iwai | 0df63e4 | 2006-04-28 15:13:41 +0200 | [diff] [blame] | 485 | #define SUBSTREAM_BUSY(substream) ((substream)->ref_count > 0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 486 | |
| 487 | |
Takashi Iwai | 877211f | 2005-11-17 13:59:38 +0100 | [diff] [blame] | 488 | struct snd_pcm_str { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 489 | int stream; /* stream (direction) */ |
Takashi Iwai | 877211f | 2005-11-17 13:59:38 +0100 | [diff] [blame] | 490 | struct snd_pcm *pcm; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 491 | /* -- substreams -- */ |
| 492 | unsigned int substream_count; |
| 493 | unsigned int substream_opened; |
Takashi Iwai | 877211f | 2005-11-17 13:59:38 +0100 | [diff] [blame] | 494 | struct snd_pcm_substream *substream; |
Takashi Iwai | 6d2412b | 2017-05-12 11:44:03 +0200 | [diff] [blame] | 495 | #if IS_ENABLED(CONFIG_SND_PCM_OSS) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 496 | /* -- OSS things -- */ |
Takashi Iwai | 877211f | 2005-11-17 13:59:38 +0100 | [diff] [blame] | 497 | struct snd_pcm_oss_stream oss; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 498 | #endif |
Takashi Iwai | b7d90a3 | 2006-04-25 12:56:04 +0200 | [diff] [blame] | 499 | #ifdef CONFIG_SND_VERBOSE_PROCFS |
Takashi Iwai | 877211f | 2005-11-17 13:59:38 +0100 | [diff] [blame] | 500 | struct snd_info_entry *proc_root; |
Takashi Iwai | b7d90a3 | 2006-04-25 12:56:04 +0200 | [diff] [blame] | 501 | #ifdef CONFIG_SND_PCM_XRUN_DEBUG |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 502 | unsigned int xrun_debug; /* 0 = disabled, 1 = verbose, 2 = stacktrace */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 503 | #endif |
Takashi Iwai | b7d90a3 | 2006-04-25 12:56:04 +0200 | [diff] [blame] | 504 | #endif |
Takashi Iwai | 2d3391e | 2012-07-27 18:27:00 +0200 | [diff] [blame] | 505 | struct snd_kcontrol *chmap_kctl; /* channel-mapping controls */ |
Takashi Iwai | ef46c7a | 2015-01-29 17:32:26 +0100 | [diff] [blame] | 506 | struct device dev; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 507 | }; |
| 508 | |
Takashi Iwai | 877211f | 2005-11-17 13:59:38 +0100 | [diff] [blame] | 509 | struct snd_pcm { |
| 510 | struct snd_card *card; |
Clemens Ladisch | f87135f | 2005-11-20 14:06:59 +0100 | [diff] [blame] | 511 | struct list_head list; |
Pawel MOLL | f90c06a | 2008-07-30 12:46:40 +0100 | [diff] [blame] | 512 | int device; /* device number */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 513 | unsigned int info_flags; |
| 514 | unsigned short dev_class; |
| 515 | unsigned short dev_subclass; |
| 516 | char id[64]; |
| 517 | char name[80]; |
Takashi Iwai | 877211f | 2005-11-17 13:59:38 +0100 | [diff] [blame] | 518 | struct snd_pcm_str streams[2]; |
Ingo Molnar | 1a60d4c | 2006-01-16 16:29:08 +0100 | [diff] [blame] | 519 | struct mutex open_mutex; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 520 | wait_queue_head_t open_wait; |
| 521 | void *private_data; |
Takashi Iwai | 877211f | 2005-11-17 13:59:38 +0100 | [diff] [blame] | 522 | void (*private_free) (struct snd_pcm *pcm); |
Liam Girdwood | 945e503 | 2012-02-08 20:33:31 +0000 | [diff] [blame] | 523 | bool internal; /* pcm is for internal use only */ |
Takashi Iwai | 257f8cc | 2014-08-29 15:32:29 +0200 | [diff] [blame] | 524 | bool nonatomic; /* whole PCM operations are in non-atomic context */ |
Takashi Iwai | 3d21ef0 | 2019-01-11 15:58:39 +0100 | [diff] [blame] | 525 | bool no_device_suspend; /* don't invoke device PM suspend */ |
Takashi Iwai | 6d2412b | 2017-05-12 11:44:03 +0200 | [diff] [blame] | 526 | #if IS_ENABLED(CONFIG_SND_PCM_OSS) |
Takashi Iwai | 877211f | 2005-11-17 13:59:38 +0100 | [diff] [blame] | 527 | struct snd_pcm_oss oss; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 528 | #endif |
| 529 | }; |
| 530 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 531 | /* |
| 532 | * Registering |
| 533 | */ |
| 534 | |
Arjan van de Ven | 5404732 | 2007-02-12 00:55:28 -0800 | [diff] [blame] | 535 | extern const struct file_operations snd_pcm_f_ops[2]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 536 | |
Tim Blechmann | e616165 | 2009-02-05 13:01:54 +0100 | [diff] [blame] | 537 | int snd_pcm_new(struct snd_card *card, const char *id, int device, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 538 | int playback_count, int capture_count, |
Takashi Iwai | 877211f | 2005-11-17 13:59:38 +0100 | [diff] [blame] | 539 | struct snd_pcm **rpcm); |
Liam Girdwood | 945e503 | 2012-02-08 20:33:31 +0000 | [diff] [blame] | 540 | int snd_pcm_new_internal(struct snd_card *card, const char *id, int device, |
| 541 | int playback_count, int capture_count, |
| 542 | struct snd_pcm **rpcm); |
Takashi Iwai | 877211f | 2005-11-17 13:59:38 +0100 | [diff] [blame] | 543 | int snd_pcm_new_stream(struct snd_pcm *pcm, int stream, int substream_count); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 544 | |
Takashi Iwai | 58f30d6 | 2017-05-12 11:35:17 +0200 | [diff] [blame] | 545 | #if IS_ENABLED(CONFIG_SND_PCM_OSS) |
| 546 | struct snd_pcm_notify { |
| 547 | int (*n_register) (struct snd_pcm * pcm); |
| 548 | int (*n_disconnect) (struct snd_pcm * pcm); |
| 549 | int (*n_unregister) (struct snd_pcm * pcm); |
| 550 | struct list_head list; |
| 551 | }; |
Takashi Iwai | 877211f | 2005-11-17 13:59:38 +0100 | [diff] [blame] | 552 | int snd_pcm_notify(struct snd_pcm_notify *notify, int nfree); |
Takashi Iwai | 58f30d6 | 2017-05-12 11:35:17 +0200 | [diff] [blame] | 553 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 554 | |
| 555 | /* |
| 556 | * Native I/O |
| 557 | */ |
| 558 | |
Takashi Iwai | 877211f | 2005-11-17 13:59:38 +0100 | [diff] [blame] | 559 | int snd_pcm_info(struct snd_pcm_substream *substream, struct snd_pcm_info *info); |
| 560 | int snd_pcm_info_user(struct snd_pcm_substream *substream, |
| 561 | struct snd_pcm_info __user *info); |
Baolin Wang | 3ddee7f | 2018-04-24 20:06:11 +0800 | [diff] [blame] | 562 | int snd_pcm_status64(struct snd_pcm_substream *substream, |
| 563 | struct snd_pcm_status64 *status); |
Takashi Iwai | 877211f | 2005-11-17 13:59:38 +0100 | [diff] [blame] | 564 | int snd_pcm_start(struct snd_pcm_substream *substream); |
Clemens Ladisch | fea952e | 2011-02-14 11:00:47 +0100 | [diff] [blame] | 565 | int snd_pcm_stop(struct snd_pcm_substream *substream, snd_pcm_state_t status); |
Takashi Iwai | 877211f | 2005-11-17 13:59:38 +0100 | [diff] [blame] | 566 | int snd_pcm_drain_done(struct snd_pcm_substream *substream); |
Takashi Iwai | 1fb8510 | 2014-11-07 17:08:28 +0100 | [diff] [blame] | 567 | int snd_pcm_stop_xrun(struct snd_pcm_substream *substream); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 568 | #ifdef CONFIG_PM |
Takashi Iwai | 877211f | 2005-11-17 13:59:38 +0100 | [diff] [blame] | 569 | int snd_pcm_suspend_all(struct snd_pcm *pcm); |
Takashi Iwai | 1cf05ba | 2017-02-05 08:58:46 +0100 | [diff] [blame] | 570 | #else |
Takashi Iwai | 1cf05ba | 2017-02-05 08:58:46 +0100 | [diff] [blame] | 571 | static inline int snd_pcm_suspend_all(struct snd_pcm *pcm) |
| 572 | { |
| 573 | return 0; |
| 574 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 575 | #endif |
Takashi Iwai | 877211f | 2005-11-17 13:59:38 +0100 | [diff] [blame] | 576 | int snd_pcm_kernel_ioctl(struct snd_pcm_substream *substream, unsigned int cmd, void *arg); |
Takashi Iwai | 3bf75f9 | 2006-03-27 16:40:49 +0200 | [diff] [blame] | 577 | int snd_pcm_open_substream(struct snd_pcm *pcm, int stream, struct file *file, |
| 578 | struct snd_pcm_substream **rsubstream); |
Takashi Iwai | 877211f | 2005-11-17 13:59:38 +0100 | [diff] [blame] | 579 | void snd_pcm_release_substream(struct snd_pcm_substream *substream); |
Takashi Iwai | 3bf75f9 | 2006-03-27 16:40:49 +0200 | [diff] [blame] | 580 | int snd_pcm_attach_substream(struct snd_pcm *pcm, int stream, struct file *file, |
| 581 | struct snd_pcm_substream **rsubstream); |
| 582 | void snd_pcm_detach_substream(struct snd_pcm_substream *substream); |
Takashi Iwai | 877211f | 2005-11-17 13:59:38 +0100 | [diff] [blame] | 583 | int snd_pcm_mmap_data(struct snd_pcm_substream *substream, struct file *file, struct vm_area_struct *area); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 584 | |
Eliot Blennerhassett | acb03d4 | 2011-07-23 12:36:25 +1200 | [diff] [blame] | 585 | |
| 586 | #ifdef CONFIG_SND_DEBUG |
| 587 | void snd_pcm_debug_name(struct snd_pcm_substream *substream, |
| 588 | char *name, size_t len); |
| 589 | #else |
| 590 | static inline void |
| 591 | snd_pcm_debug_name(struct snd_pcm_substream *substream, char *buf, size_t size) |
| 592 | { |
| 593 | *buf = 0; |
| 594 | } |
| 595 | #endif |
| 596 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 597 | /* |
| 598 | * PCM library |
| 599 | */ |
| 600 | |
Takashi Iwai | 30b771c | 2014-10-30 15:02:50 +0100 | [diff] [blame] | 601 | /** |
| 602 | * snd_pcm_stream_linked - Check whether the substream is linked with others |
| 603 | * @substream: substream to check |
| 604 | * |
| 605 | * Returns true if the given substream is being linked with others. |
| 606 | */ |
Takashi Iwai | 877211f | 2005-11-17 13:59:38 +0100 | [diff] [blame] | 607 | static inline int snd_pcm_stream_linked(struct snd_pcm_substream *substream) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 608 | { |
| 609 | return substream->group != &substream->self_group; |
| 610 | } |
| 611 | |
Takashi Iwai | 7af142f | 2014-09-01 11:19:37 +0200 | [diff] [blame] | 612 | void snd_pcm_stream_lock(struct snd_pcm_substream *substream); |
| 613 | void snd_pcm_stream_unlock(struct snd_pcm_substream *substream); |
| 614 | void snd_pcm_stream_lock_irq(struct snd_pcm_substream *substream); |
| 615 | void snd_pcm_stream_unlock_irq(struct snd_pcm_substream *substream); |
| 616 | unsigned long _snd_pcm_stream_lock_irqsave(struct snd_pcm_substream *substream); |
Takashi Iwai | 30b771c | 2014-10-30 15:02:50 +0100 | [diff] [blame] | 617 | |
| 618 | /** |
| 619 | * snd_pcm_stream_lock_irqsave - Lock the PCM stream |
| 620 | * @substream: PCM substream |
| 621 | * @flags: irq flags |
| 622 | * |
| 623 | * This locks the PCM stream like snd_pcm_stream_lock() but with the local |
| 624 | * IRQ (only when nonatomic is false). In nonatomic case, this is identical |
| 625 | * as snd_pcm_stream_lock(). |
| 626 | */ |
Takashi Iwai | 7af142f | 2014-09-01 11:19:37 +0200 | [diff] [blame] | 627 | #define snd_pcm_stream_lock_irqsave(substream, flags) \ |
| 628 | do { \ |
| 629 | typecheck(unsigned long, flags); \ |
| 630 | flags = _snd_pcm_stream_lock_irqsave(substream); \ |
| 631 | } while (0) |
| 632 | void snd_pcm_stream_unlock_irqrestore(struct snd_pcm_substream *substream, |
| 633 | unsigned long flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 634 | |
Takashi Iwai | 30b771c | 2014-10-30 15:02:50 +0100 | [diff] [blame] | 635 | /** |
| 636 | * snd_pcm_group_for_each_entry - iterate over the linked substreams |
| 637 | * @s: the iterator |
| 638 | * @substream: the substream |
| 639 | * |
| 640 | * Iterate over the all linked substreams to the given @substream. |
| 641 | * When @substream isn't linked with any others, this gives returns @substream |
| 642 | * itself once. |
| 643 | */ |
Takashi Iwai | ef991b9 | 2007-02-22 12:52:53 +0100 | [diff] [blame] | 644 | #define snd_pcm_group_for_each_entry(s, substream) \ |
| 645 | list_for_each_entry(s, &substream->group->substreams, link_list) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 646 | |
Takashi Iwai | 30b771c | 2014-10-30 15:02:50 +0100 | [diff] [blame] | 647 | /** |
| 648 | * snd_pcm_running - Check whether the substream is in a running state |
| 649 | * @substream: substream to check |
| 650 | * |
| 651 | * Returns true if the given substream is in the state RUNNING, or in the |
| 652 | * state DRAINING for playback. |
| 653 | */ |
Takashi Iwai | 877211f | 2005-11-17 13:59:38 +0100 | [diff] [blame] | 654 | static inline int snd_pcm_running(struct snd_pcm_substream *substream) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 655 | { |
| 656 | return (substream->runtime->status->state == SNDRV_PCM_STATE_RUNNING || |
| 657 | (substream->runtime->status->state == SNDRV_PCM_STATE_DRAINING && |
| 658 | substream->stream == SNDRV_PCM_STREAM_PLAYBACK)); |
| 659 | } |
| 660 | |
Takashi Iwai | 30b771c | 2014-10-30 15:02:50 +0100 | [diff] [blame] | 661 | /** |
| 662 | * bytes_to_samples - Unit conversion of the size from bytes to samples |
| 663 | * @runtime: PCM runtime instance |
| 664 | * @size: size in bytes |
| 665 | */ |
Takashi Iwai | 877211f | 2005-11-17 13:59:38 +0100 | [diff] [blame] | 666 | static inline ssize_t bytes_to_samples(struct snd_pcm_runtime *runtime, ssize_t size) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 667 | { |
| 668 | return size * 8 / runtime->sample_bits; |
| 669 | } |
| 670 | |
Takashi Iwai | 30b771c | 2014-10-30 15:02:50 +0100 | [diff] [blame] | 671 | /** |
| 672 | * bytes_to_frames - Unit conversion of the size from bytes to frames |
| 673 | * @runtime: PCM runtime instance |
| 674 | * @size: size in bytes |
| 675 | */ |
Takashi Iwai | 877211f | 2005-11-17 13:59:38 +0100 | [diff] [blame] | 676 | static inline snd_pcm_sframes_t bytes_to_frames(struct snd_pcm_runtime *runtime, ssize_t size) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 677 | { |
| 678 | return size * 8 / runtime->frame_bits; |
| 679 | } |
| 680 | |
Takashi Iwai | 30b771c | 2014-10-30 15:02:50 +0100 | [diff] [blame] | 681 | /** |
| 682 | * samples_to_bytes - Unit conversion of the size from samples to bytes |
| 683 | * @runtime: PCM runtime instance |
| 684 | * @size: size in samples |
| 685 | */ |
Takashi Iwai | 877211f | 2005-11-17 13:59:38 +0100 | [diff] [blame] | 686 | static inline ssize_t samples_to_bytes(struct snd_pcm_runtime *runtime, ssize_t size) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 687 | { |
| 688 | return size * runtime->sample_bits / 8; |
| 689 | } |
| 690 | |
Takashi Iwai | 30b771c | 2014-10-30 15:02:50 +0100 | [diff] [blame] | 691 | /** |
| 692 | * frames_to_bytes - Unit conversion of the size from frames to bytes |
| 693 | * @runtime: PCM runtime instance |
| 694 | * @size: size in frames |
| 695 | */ |
Takashi Iwai | 877211f | 2005-11-17 13:59:38 +0100 | [diff] [blame] | 696 | static inline ssize_t frames_to_bytes(struct snd_pcm_runtime *runtime, snd_pcm_sframes_t size) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 697 | { |
| 698 | return size * runtime->frame_bits / 8; |
| 699 | } |
| 700 | |
Takashi Iwai | 30b771c | 2014-10-30 15:02:50 +0100 | [diff] [blame] | 701 | /** |
| 702 | * frame_aligned - Check whether the byte size is aligned to frames |
| 703 | * @runtime: PCM runtime instance |
| 704 | * @bytes: size in bytes |
| 705 | */ |
Takashi Iwai | 877211f | 2005-11-17 13:59:38 +0100 | [diff] [blame] | 706 | static inline int frame_aligned(struct snd_pcm_runtime *runtime, ssize_t bytes) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 707 | { |
| 708 | return bytes % runtime->byte_align == 0; |
| 709 | } |
| 710 | |
Takashi Iwai | 30b771c | 2014-10-30 15:02:50 +0100 | [diff] [blame] | 711 | /** |
| 712 | * snd_pcm_lib_buffer_bytes - Get the buffer size of the current PCM in bytes |
| 713 | * @substream: PCM substream |
| 714 | */ |
Takashi Iwai | 877211f | 2005-11-17 13:59:38 +0100 | [diff] [blame] | 715 | static inline size_t snd_pcm_lib_buffer_bytes(struct snd_pcm_substream *substream) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 716 | { |
Takashi Iwai | 877211f | 2005-11-17 13:59:38 +0100 | [diff] [blame] | 717 | struct snd_pcm_runtime *runtime = substream->runtime; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 718 | return frames_to_bytes(runtime, runtime->buffer_size); |
| 719 | } |
| 720 | |
Takashi Iwai | 30b771c | 2014-10-30 15:02:50 +0100 | [diff] [blame] | 721 | /** |
| 722 | * snd_pcm_lib_period_bytes - Get the period size of the current PCM in bytes |
| 723 | * @substream: PCM substream |
| 724 | */ |
Takashi Iwai | 877211f | 2005-11-17 13:59:38 +0100 | [diff] [blame] | 725 | static inline size_t snd_pcm_lib_period_bytes(struct snd_pcm_substream *substream) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 726 | { |
Takashi Iwai | 877211f | 2005-11-17 13:59:38 +0100 | [diff] [blame] | 727 | struct snd_pcm_runtime *runtime = substream->runtime; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 728 | return frames_to_bytes(runtime, runtime->period_size); |
| 729 | } |
| 730 | |
Takashi Iwai | 30b771c | 2014-10-30 15:02:50 +0100 | [diff] [blame] | 731 | /** |
| 732 | * snd_pcm_playback_avail - Get the available (writable) space for playback |
| 733 | * @runtime: PCM runtime instance |
| 734 | * |
| 735 | * Result is between 0 ... (boundary - 1) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 736 | */ |
Takashi Iwai | 877211f | 2005-11-17 13:59:38 +0100 | [diff] [blame] | 737 | static inline snd_pcm_uframes_t snd_pcm_playback_avail(struct snd_pcm_runtime *runtime) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 738 | { |
| 739 | snd_pcm_sframes_t avail = runtime->status->hw_ptr + runtime->buffer_size - runtime->control->appl_ptr; |
| 740 | if (avail < 0) |
| 741 | avail += runtime->boundary; |
| 742 | else if ((snd_pcm_uframes_t) avail >= runtime->boundary) |
| 743 | avail -= runtime->boundary; |
| 744 | return avail; |
| 745 | } |
| 746 | |
Takashi Iwai | 30b771c | 2014-10-30 15:02:50 +0100 | [diff] [blame] | 747 | /** |
Ricardo Biehl Pasquali | c24a126 | 2019-03-13 16:06:48 -0300 | [diff] [blame] | 748 | * snd_pcm_capture_avail - Get the available (readable) space for capture |
Takashi Iwai | 30b771c | 2014-10-30 15:02:50 +0100 | [diff] [blame] | 749 | * @runtime: PCM runtime instance |
| 750 | * |
| 751 | * Result is between 0 ... (boundary - 1) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 752 | */ |
Takashi Iwai | 877211f | 2005-11-17 13:59:38 +0100 | [diff] [blame] | 753 | static inline snd_pcm_uframes_t snd_pcm_capture_avail(struct snd_pcm_runtime *runtime) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 754 | { |
| 755 | snd_pcm_sframes_t avail = runtime->status->hw_ptr - runtime->control->appl_ptr; |
| 756 | if (avail < 0) |
| 757 | avail += runtime->boundary; |
| 758 | return avail; |
| 759 | } |
| 760 | |
Takashi Iwai | 30b771c | 2014-10-30 15:02:50 +0100 | [diff] [blame] | 761 | /** |
| 762 | * snd_pcm_playback_hw_avail - Get the queued space for playback |
| 763 | * @runtime: PCM runtime instance |
| 764 | */ |
Takashi Iwai | 877211f | 2005-11-17 13:59:38 +0100 | [diff] [blame] | 765 | static inline snd_pcm_sframes_t snd_pcm_playback_hw_avail(struct snd_pcm_runtime *runtime) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 766 | { |
| 767 | return runtime->buffer_size - snd_pcm_playback_avail(runtime); |
| 768 | } |
| 769 | |
Takashi Iwai | 30b771c | 2014-10-30 15:02:50 +0100 | [diff] [blame] | 770 | /** |
| 771 | * snd_pcm_capture_hw_avail - Get the free space for capture |
| 772 | * @runtime: PCM runtime instance |
| 773 | */ |
Takashi Iwai | 877211f | 2005-11-17 13:59:38 +0100 | [diff] [blame] | 774 | static inline snd_pcm_sframes_t snd_pcm_capture_hw_avail(struct snd_pcm_runtime *runtime) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 775 | { |
| 776 | return runtime->buffer_size - snd_pcm_capture_avail(runtime); |
| 777 | } |
| 778 | |
| 779 | /** |
| 780 | * snd_pcm_playback_ready - check whether the playback buffer is available |
| 781 | * @substream: the pcm substream instance |
| 782 | * |
| 783 | * Checks whether enough free space is available on the playback buffer. |
| 784 | * |
Yacine Belkadi | eb7c06e | 2013-03-11 22:05:14 +0100 | [diff] [blame] | 785 | * Return: Non-zero if available, or zero if not. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 786 | */ |
Takashi Iwai | 877211f | 2005-11-17 13:59:38 +0100 | [diff] [blame] | 787 | static inline int snd_pcm_playback_ready(struct snd_pcm_substream *substream) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 788 | { |
Takashi Iwai | 877211f | 2005-11-17 13:59:38 +0100 | [diff] [blame] | 789 | struct snd_pcm_runtime *runtime = substream->runtime; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 790 | return snd_pcm_playback_avail(runtime) >= runtime->control->avail_min; |
| 791 | } |
| 792 | |
| 793 | /** |
| 794 | * snd_pcm_capture_ready - check whether the capture buffer is available |
| 795 | * @substream: the pcm substream instance |
| 796 | * |
| 797 | * Checks whether enough capture data is available on the capture buffer. |
| 798 | * |
Yacine Belkadi | eb7c06e | 2013-03-11 22:05:14 +0100 | [diff] [blame] | 799 | * Return: Non-zero if available, or zero if not. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 800 | */ |
Takashi Iwai | 877211f | 2005-11-17 13:59:38 +0100 | [diff] [blame] | 801 | static inline int snd_pcm_capture_ready(struct snd_pcm_substream *substream) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 802 | { |
Takashi Iwai | 877211f | 2005-11-17 13:59:38 +0100 | [diff] [blame] | 803 | struct snd_pcm_runtime *runtime = substream->runtime; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 804 | return snd_pcm_capture_avail(runtime) >= runtime->control->avail_min; |
| 805 | } |
| 806 | |
| 807 | /** |
| 808 | * snd_pcm_playback_data - check whether any data exists on the playback buffer |
| 809 | * @substream: the pcm substream instance |
| 810 | * |
Yacine Belkadi | eb7c06e | 2013-03-11 22:05:14 +0100 | [diff] [blame] | 811 | * Checks whether any data exists on the playback buffer. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 812 | * |
Yacine Belkadi | eb7c06e | 2013-03-11 22:05:14 +0100 | [diff] [blame] | 813 | * Return: Non-zero if any data exists, or zero if not. If stop_threshold |
| 814 | * is bigger or equal to boundary, then this function returns always non-zero. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 815 | */ |
Takashi Iwai | 877211f | 2005-11-17 13:59:38 +0100 | [diff] [blame] | 816 | static inline int snd_pcm_playback_data(struct snd_pcm_substream *substream) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 817 | { |
Takashi Iwai | 877211f | 2005-11-17 13:59:38 +0100 | [diff] [blame] | 818 | struct snd_pcm_runtime *runtime = substream->runtime; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 819 | |
| 820 | if (runtime->stop_threshold >= runtime->boundary) |
| 821 | return 1; |
| 822 | return snd_pcm_playback_avail(runtime) < runtime->buffer_size; |
| 823 | } |
| 824 | |
| 825 | /** |
| 826 | * snd_pcm_playback_empty - check whether the playback buffer is empty |
| 827 | * @substream: the pcm substream instance |
| 828 | * |
| 829 | * Checks whether the playback buffer is empty. |
| 830 | * |
Yacine Belkadi | eb7c06e | 2013-03-11 22:05:14 +0100 | [diff] [blame] | 831 | * Return: Non-zero if empty, or zero if not. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 832 | */ |
Takashi Iwai | 877211f | 2005-11-17 13:59:38 +0100 | [diff] [blame] | 833 | static inline int snd_pcm_playback_empty(struct snd_pcm_substream *substream) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 834 | { |
Takashi Iwai | 877211f | 2005-11-17 13:59:38 +0100 | [diff] [blame] | 835 | struct snd_pcm_runtime *runtime = substream->runtime; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 836 | return snd_pcm_playback_avail(runtime) >= runtime->buffer_size; |
| 837 | } |
| 838 | |
| 839 | /** |
| 840 | * snd_pcm_capture_empty - check whether the capture buffer is empty |
| 841 | * @substream: the pcm substream instance |
| 842 | * |
| 843 | * Checks whether the capture buffer is empty. |
| 844 | * |
Yacine Belkadi | eb7c06e | 2013-03-11 22:05:14 +0100 | [diff] [blame] | 845 | * Return: Non-zero if empty, or zero if not. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 846 | */ |
Takashi Iwai | 877211f | 2005-11-17 13:59:38 +0100 | [diff] [blame] | 847 | static inline int snd_pcm_capture_empty(struct snd_pcm_substream *substream) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 848 | { |
Takashi Iwai | 877211f | 2005-11-17 13:59:38 +0100 | [diff] [blame] | 849 | struct snd_pcm_runtime *runtime = substream->runtime; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 850 | return snd_pcm_capture_avail(runtime) == 0; |
| 851 | } |
| 852 | |
Takashi Iwai | 30b771c | 2014-10-30 15:02:50 +0100 | [diff] [blame] | 853 | /** |
| 854 | * snd_pcm_trigger_done - Mark the master substream |
| 855 | * @substream: the pcm substream instance |
| 856 | * @master: the linked master substream |
| 857 | * |
| 858 | * When multiple substreams of the same card are linked and the hardware |
| 859 | * supports the single-shot operation, the driver calls this in the loop |
| 860 | * in snd_pcm_group_for_each_entry() for marking the substream as "done". |
| 861 | * Then most of trigger operations are performed only to the given master |
| 862 | * substream. |
| 863 | * |
| 864 | * The trigger_master mark is cleared at timestamp updates at the end |
| 865 | * of trigger operations. |
| 866 | */ |
Takashi Iwai | 877211f | 2005-11-17 13:59:38 +0100 | [diff] [blame] | 867 | static inline void snd_pcm_trigger_done(struct snd_pcm_substream *substream, |
| 868 | struct snd_pcm_substream *master) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 869 | { |
| 870 | substream->runtime->trigger_master = master; |
| 871 | } |
| 872 | |
| 873 | static inline int hw_is_mask(int var) |
| 874 | { |
| 875 | return var >= SNDRV_PCM_HW_PARAM_FIRST_MASK && |
| 876 | var <= SNDRV_PCM_HW_PARAM_LAST_MASK; |
| 877 | } |
| 878 | |
| 879 | static inline int hw_is_interval(int var) |
| 880 | { |
| 881 | return var >= SNDRV_PCM_HW_PARAM_FIRST_INTERVAL && |
| 882 | var <= SNDRV_PCM_HW_PARAM_LAST_INTERVAL; |
| 883 | } |
| 884 | |
Takashi Iwai | 877211f | 2005-11-17 13:59:38 +0100 | [diff] [blame] | 885 | static inline struct snd_mask *hw_param_mask(struct snd_pcm_hw_params *params, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 886 | snd_pcm_hw_param_t var) |
| 887 | { |
| 888 | return ¶ms->masks[var - SNDRV_PCM_HW_PARAM_FIRST_MASK]; |
| 889 | } |
| 890 | |
Takashi Iwai | 877211f | 2005-11-17 13:59:38 +0100 | [diff] [blame] | 891 | static inline struct snd_interval *hw_param_interval(struct snd_pcm_hw_params *params, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 892 | snd_pcm_hw_param_t var) |
| 893 | { |
| 894 | return ¶ms->intervals[var - SNDRV_PCM_HW_PARAM_FIRST_INTERVAL]; |
| 895 | } |
| 896 | |
Takashi Iwai | 877211f | 2005-11-17 13:59:38 +0100 | [diff] [blame] | 897 | static inline const struct snd_mask *hw_param_mask_c(const struct snd_pcm_hw_params *params, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 898 | snd_pcm_hw_param_t var) |
| 899 | { |
Takashi Iwai | b9f09a4 | 2007-09-11 00:33:48 +0200 | [diff] [blame] | 900 | return ¶ms->masks[var - SNDRV_PCM_HW_PARAM_FIRST_MASK]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 901 | } |
| 902 | |
Takashi Iwai | 877211f | 2005-11-17 13:59:38 +0100 | [diff] [blame] | 903 | static inline const struct snd_interval *hw_param_interval_c(const struct snd_pcm_hw_params *params, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 904 | snd_pcm_hw_param_t var) |
| 905 | { |
Takashi Iwai | b9f09a4 | 2007-09-11 00:33:48 +0200 | [diff] [blame] | 906 | return ¶ms->intervals[var - SNDRV_PCM_HW_PARAM_FIRST_INTERVAL]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 907 | } |
| 908 | |
Takashi Iwai | 85926e0 | 2014-10-30 15:06:13 +0100 | [diff] [blame] | 909 | /** |
| 910 | * params_channels - Get the number of channels from the hw params |
| 911 | * @p: hw params |
| 912 | */ |
| 913 | static inline unsigned int params_channels(const struct snd_pcm_hw_params *p) |
| 914 | { |
| 915 | return hw_param_interval_c(p, SNDRV_PCM_HW_PARAM_CHANNELS)->min; |
| 916 | } |
| 917 | |
| 918 | /** |
Lars-Peter Clausen | 62f64a8 | 2014-12-29 19:41:40 +0100 | [diff] [blame] | 919 | * params_rate - Get the sample rate from the hw params |
Takashi Iwai | 85926e0 | 2014-10-30 15:06:13 +0100 | [diff] [blame] | 920 | * @p: hw params |
| 921 | */ |
| 922 | static inline unsigned int params_rate(const struct snd_pcm_hw_params *p) |
| 923 | { |
| 924 | return hw_param_interval_c(p, SNDRV_PCM_HW_PARAM_RATE)->min; |
| 925 | } |
| 926 | |
| 927 | /** |
Lars-Peter Clausen | 62f64a8 | 2014-12-29 19:41:40 +0100 | [diff] [blame] | 928 | * params_period_size - Get the period size (in frames) from the hw params |
Takashi Iwai | 85926e0 | 2014-10-30 15:06:13 +0100 | [diff] [blame] | 929 | * @p: hw params |
| 930 | */ |
| 931 | static inline unsigned int params_period_size(const struct snd_pcm_hw_params *p) |
| 932 | { |
| 933 | return hw_param_interval_c(p, SNDRV_PCM_HW_PARAM_PERIOD_SIZE)->min; |
| 934 | } |
| 935 | |
| 936 | /** |
Lars-Peter Clausen | 62f64a8 | 2014-12-29 19:41:40 +0100 | [diff] [blame] | 937 | * params_periods - Get the number of periods from the hw params |
Takashi Iwai | 85926e0 | 2014-10-30 15:06:13 +0100 | [diff] [blame] | 938 | * @p: hw params |
| 939 | */ |
| 940 | static inline unsigned int params_periods(const struct snd_pcm_hw_params *p) |
| 941 | { |
| 942 | return hw_param_interval_c(p, SNDRV_PCM_HW_PARAM_PERIODS)->min; |
| 943 | } |
| 944 | |
| 945 | /** |
Lars-Peter Clausen | 62f64a8 | 2014-12-29 19:41:40 +0100 | [diff] [blame] | 946 | * params_buffer_size - Get the buffer size (in frames) from the hw params |
Takashi Iwai | 85926e0 | 2014-10-30 15:06:13 +0100 | [diff] [blame] | 947 | * @p: hw params |
| 948 | */ |
| 949 | static inline unsigned int params_buffer_size(const struct snd_pcm_hw_params *p) |
| 950 | { |
| 951 | return hw_param_interval_c(p, SNDRV_PCM_HW_PARAM_BUFFER_SIZE)->min; |
| 952 | } |
| 953 | |
| 954 | /** |
Lars-Peter Clausen | 62f64a8 | 2014-12-29 19:41:40 +0100 | [diff] [blame] | 955 | * params_buffer_bytes - Get the buffer size (in bytes) from the hw params |
Takashi Iwai | 85926e0 | 2014-10-30 15:06:13 +0100 | [diff] [blame] | 956 | * @p: hw params |
| 957 | */ |
| 958 | static inline unsigned int params_buffer_bytes(const struct snd_pcm_hw_params *p) |
| 959 | { |
| 960 | return hw_param_interval_c(p, SNDRV_PCM_HW_PARAM_BUFFER_BYTES)->min; |
| 961 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 962 | |
Takashi Iwai | 877211f | 2005-11-17 13:59:38 +0100 | [diff] [blame] | 963 | int snd_interval_refine(struct snd_interval *i, const struct snd_interval *v); |
Mark Brown | 4af87a9 | 2012-03-14 19:48:43 +0000 | [diff] [blame] | 964 | int snd_interval_list(struct snd_interval *i, unsigned int count, |
| 965 | const unsigned int *list, unsigned int mask); |
Peter Rosin | f66f898 | 2015-01-28 15:16:06 +0100 | [diff] [blame] | 966 | int snd_interval_ranges(struct snd_interval *i, unsigned int count, |
| 967 | const struct snd_interval *list, unsigned int mask); |
Takashi Iwai | 877211f | 2005-11-17 13:59:38 +0100 | [diff] [blame] | 968 | int snd_interval_ratnum(struct snd_interval *i, |
Lars-Peter Clausen | e5e113c | 2015-10-28 11:37:53 +0100 | [diff] [blame] | 969 | unsigned int rats_count, const struct snd_ratnum *rats, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 970 | unsigned int *nump, unsigned int *denp); |
| 971 | |
Takashi Iwai | 877211f | 2005-11-17 13:59:38 +0100 | [diff] [blame] | 972 | void _snd_pcm_hw_params_any(struct snd_pcm_hw_params *params); |
| 973 | void _snd_pcm_hw_param_setempty(struct snd_pcm_hw_params *params, snd_pcm_hw_param_t var); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 974 | |
Takashi Iwai | 877211f | 2005-11-17 13:59:38 +0100 | [diff] [blame] | 975 | int snd_pcm_hw_refine(struct snd_pcm_substream *substream, struct snd_pcm_hw_params *params); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 976 | |
Takashi Iwai | 877211f | 2005-11-17 13:59:38 +0100 | [diff] [blame] | 977 | int snd_pcm_hw_constraint_mask64(struct snd_pcm_runtime *runtime, snd_pcm_hw_param_t var, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 978 | u_int64_t mask); |
Takashi Iwai | 877211f | 2005-11-17 13:59:38 +0100 | [diff] [blame] | 979 | int snd_pcm_hw_constraint_minmax(struct snd_pcm_runtime *runtime, snd_pcm_hw_param_t var, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 980 | unsigned int min, unsigned int max); |
Takashi Iwai | 877211f | 2005-11-17 13:59:38 +0100 | [diff] [blame] | 981 | int snd_pcm_hw_constraint_integer(struct snd_pcm_runtime *runtime, snd_pcm_hw_param_t var); |
| 982 | int snd_pcm_hw_constraint_list(struct snd_pcm_runtime *runtime, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 983 | unsigned int cond, |
| 984 | snd_pcm_hw_param_t var, |
Mark Brown | 1464189 | 2012-07-05 12:15:01 +0100 | [diff] [blame] | 985 | const struct snd_pcm_hw_constraint_list *l); |
Peter Rosin | f66f898 | 2015-01-28 15:16:06 +0100 | [diff] [blame] | 986 | int snd_pcm_hw_constraint_ranges(struct snd_pcm_runtime *runtime, |
| 987 | unsigned int cond, |
| 988 | snd_pcm_hw_param_t var, |
| 989 | const struct snd_pcm_hw_constraint_ranges *r); |
Takashi Iwai | 877211f | 2005-11-17 13:59:38 +0100 | [diff] [blame] | 990 | int snd_pcm_hw_constraint_ratnums(struct snd_pcm_runtime *runtime, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 991 | unsigned int cond, |
| 992 | snd_pcm_hw_param_t var, |
Lars-Peter Clausen | e5e113c | 2015-10-28 11:37:53 +0100 | [diff] [blame] | 993 | const struct snd_pcm_hw_constraint_ratnums *r); |
Takashi Iwai | 877211f | 2005-11-17 13:59:38 +0100 | [diff] [blame] | 994 | int snd_pcm_hw_constraint_ratdens(struct snd_pcm_runtime *runtime, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 995 | unsigned int cond, |
| 996 | snd_pcm_hw_param_t var, |
Lars-Peter Clausen | e5e113c | 2015-10-28 11:37:53 +0100 | [diff] [blame] | 997 | const struct snd_pcm_hw_constraint_ratdens *r); |
Takashi Iwai | 877211f | 2005-11-17 13:59:38 +0100 | [diff] [blame] | 998 | int snd_pcm_hw_constraint_msbits(struct snd_pcm_runtime *runtime, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 999 | unsigned int cond, |
| 1000 | unsigned int width, |
| 1001 | unsigned int msbits); |
Takashi Iwai | 877211f | 2005-11-17 13:59:38 +0100 | [diff] [blame] | 1002 | int snd_pcm_hw_constraint_step(struct snd_pcm_runtime *runtime, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1003 | unsigned int cond, |
| 1004 | snd_pcm_hw_param_t var, |
| 1005 | unsigned long step); |
Takashi Iwai | 877211f | 2005-11-17 13:59:38 +0100 | [diff] [blame] | 1006 | int snd_pcm_hw_constraint_pow2(struct snd_pcm_runtime *runtime, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1007 | unsigned int cond, |
| 1008 | snd_pcm_hw_param_t var); |
Clemens Ladisch | d5b702a | 2011-09-16 23:03:02 +0200 | [diff] [blame] | 1009 | int snd_pcm_hw_rule_noresample(struct snd_pcm_runtime *runtime, |
| 1010 | unsigned int base_rate); |
Takashi Iwai | 877211f | 2005-11-17 13:59:38 +0100 | [diff] [blame] | 1011 | int snd_pcm_hw_rule_add(struct snd_pcm_runtime *runtime, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1012 | unsigned int cond, |
| 1013 | int var, |
| 1014 | snd_pcm_hw_rule_func_t func, void *private, |
| 1015 | int dep, ...); |
| 1016 | |
Lars-Peter Clausen | bc1043c | 2015-10-18 15:39:16 +0200 | [diff] [blame] | 1017 | /** |
| 1018 | * snd_pcm_hw_constraint_single() - Constrain parameter to a single value |
| 1019 | * @runtime: PCM runtime instance |
| 1020 | * @var: The hw_params variable to constrain |
| 1021 | * @val: The value to constrain to |
| 1022 | * |
| 1023 | * Return: Positive if the value is changed, zero if it's not changed, or a |
| 1024 | * negative error code. |
| 1025 | */ |
| 1026 | static inline int snd_pcm_hw_constraint_single( |
| 1027 | struct snd_pcm_runtime *runtime, snd_pcm_hw_param_t var, |
| 1028 | unsigned int val) |
| 1029 | { |
| 1030 | return snd_pcm_hw_constraint_minmax(runtime, var, val, val); |
| 1031 | } |
| 1032 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1033 | int snd_pcm_format_signed(snd_pcm_format_t format); |
| 1034 | int snd_pcm_format_unsigned(snd_pcm_format_t format); |
| 1035 | int snd_pcm_format_linear(snd_pcm_format_t format); |
| 1036 | int snd_pcm_format_little_endian(snd_pcm_format_t format); |
| 1037 | int snd_pcm_format_big_endian(snd_pcm_format_t format); |
Mauro Carvalho Chehab | 5220471 | 2017-05-14 12:38:44 -0300 | [diff] [blame] | 1038 | #if 0 /* just for kernel-doc */ |
Takashi Iwai | 1b44c28 | 2005-09-09 15:05:33 +0200 | [diff] [blame] | 1039 | /** |
Takashi Iwai | 9502dca | 2005-05-18 16:25:46 +0200 | [diff] [blame] | 1040 | * snd_pcm_format_cpu_endian - Check the PCM format is CPU-endian |
| 1041 | * @format: the format to check |
| 1042 | * |
Yacine Belkadi | eb7c06e | 2013-03-11 22:05:14 +0100 | [diff] [blame] | 1043 | * Return: 1 if the given PCM format is CPU-endian, 0 if |
Takashi Iwai | 9502dca | 2005-05-18 16:25:46 +0200 | [diff] [blame] | 1044 | * opposite, or a negative error code if endian not specified. |
| 1045 | */ |
Takashi Iwai | 8cdfd25 | 2005-09-07 14:08:11 +0200 | [diff] [blame] | 1046 | int snd_pcm_format_cpu_endian(snd_pcm_format_t format); |
Takashi Iwai | 1b44c28 | 2005-09-09 15:05:33 +0200 | [diff] [blame] | 1047 | #endif /* DocBook */ |
Takashi Iwai | 9502dca | 2005-05-18 16:25:46 +0200 | [diff] [blame] | 1048 | #ifdef SNDRV_LITTLE_ENDIAN |
Martin Waitz | 9d01a82 | 2005-09-09 13:10:17 -0700 | [diff] [blame] | 1049 | #define snd_pcm_format_cpu_endian(format) snd_pcm_format_little_endian(format) |
Takashi Iwai | 9502dca | 2005-05-18 16:25:46 +0200 | [diff] [blame] | 1050 | #else |
Martin Waitz | 9d01a82 | 2005-09-09 13:10:17 -0700 | [diff] [blame] | 1051 | #define snd_pcm_format_cpu_endian(format) snd_pcm_format_big_endian(format) |
Takashi Iwai | 9502dca | 2005-05-18 16:25:46 +0200 | [diff] [blame] | 1052 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1053 | int snd_pcm_format_width(snd_pcm_format_t format); /* in bits */ |
| 1054 | int snd_pcm_format_physical_width(snd_pcm_format_t format); /* in bits */ |
Takashi Iwai | 9502dca | 2005-05-18 16:25:46 +0200 | [diff] [blame] | 1055 | ssize_t snd_pcm_format_size(snd_pcm_format_t format, size_t samples); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1056 | const unsigned char *snd_pcm_format_silence_64(snd_pcm_format_t format); |
| 1057 | int snd_pcm_format_set_silence(snd_pcm_format_t format, void *buf, unsigned int frames); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1058 | |
Lars-Peter Clausen | e6c2e7e | 2013-05-24 15:18:10 +0200 | [diff] [blame] | 1059 | void snd_pcm_set_ops(struct snd_pcm * pcm, int direction, |
| 1060 | const struct snd_pcm_ops *ops); |
Takashi Iwai | 877211f | 2005-11-17 13:59:38 +0100 | [diff] [blame] | 1061 | void snd_pcm_set_sync(struct snd_pcm_substream *substream); |
Takashi Iwai | 877211f | 2005-11-17 13:59:38 +0100 | [diff] [blame] | 1062 | int snd_pcm_lib_ioctl(struct snd_pcm_substream *substream, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1063 | unsigned int cmd, void *arg); |
Takashi Iwai | 877211f | 2005-11-17 13:59:38 +0100 | [diff] [blame] | 1064 | void snd_pcm_period_elapsed(struct snd_pcm_substream *substream); |
Takashi Iwai | 5c7264c | 2017-05-24 22:36:23 +0200 | [diff] [blame] | 1065 | snd_pcm_sframes_t __snd_pcm_lib_xfer(struct snd_pcm_substream *substream, |
Takashi Iwai | c48f12ee | 2017-05-21 09:35:21 +0200 | [diff] [blame] | 1066 | void *buf, bool interleaved, |
Takashi Iwai | 6854121 | 2017-05-24 18:23:20 +0200 | [diff] [blame] | 1067 | snd_pcm_uframes_t frames, bool in_kernel); |
Takashi Iwai | c48f12ee | 2017-05-21 09:35:21 +0200 | [diff] [blame] | 1068 | |
| 1069 | static inline snd_pcm_sframes_t |
| 1070 | snd_pcm_lib_write(struct snd_pcm_substream *substream, |
| 1071 | const void __user *buf, snd_pcm_uframes_t frames) |
| 1072 | { |
Takashi Iwai | 95a48b7 | 2018-07-25 23:00:54 +0200 | [diff] [blame] | 1073 | return __snd_pcm_lib_xfer(substream, (void __force *)buf, true, frames, false); |
Takashi Iwai | c48f12ee | 2017-05-21 09:35:21 +0200 | [diff] [blame] | 1074 | } |
| 1075 | |
| 1076 | static inline snd_pcm_sframes_t |
| 1077 | snd_pcm_lib_read(struct snd_pcm_substream *substream, |
| 1078 | void __user *buf, snd_pcm_uframes_t frames) |
| 1079 | { |
Takashi Iwai | 95a48b7 | 2018-07-25 23:00:54 +0200 | [diff] [blame] | 1080 | return __snd_pcm_lib_xfer(substream, (void __force *)buf, true, frames, false); |
Takashi Iwai | c48f12ee | 2017-05-21 09:35:21 +0200 | [diff] [blame] | 1081 | } |
| 1082 | |
| 1083 | static inline snd_pcm_sframes_t |
| 1084 | snd_pcm_lib_writev(struct snd_pcm_substream *substream, |
| 1085 | void __user **bufs, snd_pcm_uframes_t frames) |
| 1086 | { |
Takashi Iwai | 6854121 | 2017-05-24 18:23:20 +0200 | [diff] [blame] | 1087 | return __snd_pcm_lib_xfer(substream, (void *)bufs, false, frames, false); |
Takashi Iwai | c48f12ee | 2017-05-21 09:35:21 +0200 | [diff] [blame] | 1088 | } |
| 1089 | |
| 1090 | static inline snd_pcm_sframes_t |
| 1091 | snd_pcm_lib_readv(struct snd_pcm_substream *substream, |
| 1092 | void __user **bufs, snd_pcm_uframes_t frames) |
| 1093 | { |
Takashi Iwai | 6854121 | 2017-05-24 18:23:20 +0200 | [diff] [blame] | 1094 | return __snd_pcm_lib_xfer(substream, (void *)bufs, false, frames, false); |
| 1095 | } |
| 1096 | |
| 1097 | static inline snd_pcm_sframes_t |
| 1098 | snd_pcm_kernel_write(struct snd_pcm_substream *substream, |
| 1099 | const void *buf, snd_pcm_uframes_t frames) |
| 1100 | { |
| 1101 | return __snd_pcm_lib_xfer(substream, (void *)buf, true, frames, true); |
| 1102 | } |
| 1103 | |
| 1104 | static inline snd_pcm_sframes_t |
| 1105 | snd_pcm_kernel_read(struct snd_pcm_substream *substream, |
| 1106 | void *buf, snd_pcm_uframes_t frames) |
| 1107 | { |
| 1108 | return __snd_pcm_lib_xfer(substream, buf, true, frames, true); |
| 1109 | } |
| 1110 | |
| 1111 | static inline snd_pcm_sframes_t |
| 1112 | snd_pcm_kernel_writev(struct snd_pcm_substream *substream, |
| 1113 | void **bufs, snd_pcm_uframes_t frames) |
| 1114 | { |
| 1115 | return __snd_pcm_lib_xfer(substream, bufs, false, frames, true); |
| 1116 | } |
| 1117 | |
| 1118 | static inline snd_pcm_sframes_t |
| 1119 | snd_pcm_kernel_readv(struct snd_pcm_substream *substream, |
| 1120 | void **bufs, snd_pcm_uframes_t frames) |
| 1121 | { |
| 1122 | return __snd_pcm_lib_xfer(substream, bufs, false, frames, true); |
Takashi Iwai | c48f12ee | 2017-05-21 09:35:21 +0200 | [diff] [blame] | 1123 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1124 | |
Takashi Iwai | 877211f | 2005-11-17 13:59:38 +0100 | [diff] [blame] | 1125 | int snd_pcm_limit_hw_rates(struct snd_pcm_runtime *runtime); |
Clemens Ladisch | 918f3a0 | 2007-08-13 17:40:54 +0200 | [diff] [blame] | 1126 | unsigned int snd_pcm_rate_to_rate_bit(unsigned int rate); |
Dimitris Papastamos | 4be77a5 | 2012-06-15 16:35:28 +0100 | [diff] [blame] | 1127 | unsigned int snd_pcm_rate_bit_to_rate(unsigned int rate_bit); |
Lars-Peter Clausen | e3a9269 | 2014-01-11 10:24:43 +0100 | [diff] [blame] | 1128 | unsigned int snd_pcm_rate_mask_intersect(unsigned int rates_a, |
| 1129 | unsigned int rates_b); |
Mengdong Lin | 3bdff24 | 2016-01-15 16:13:10 +0800 | [diff] [blame] | 1130 | unsigned int snd_pcm_rate_range_to_bits(unsigned int rate_min, |
| 1131 | unsigned int rate_max); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1132 | |
Takashi Iwai | 30b771c | 2014-10-30 15:02:50 +0100 | [diff] [blame] | 1133 | /** |
| 1134 | * snd_pcm_set_runtime_buffer - Set the PCM runtime buffer |
| 1135 | * @substream: PCM substream to set |
| 1136 | * @bufp: the buffer information, NULL to clear |
| 1137 | * |
| 1138 | * Copy the buffer information to runtime->dma_buffer when @bufp is non-NULL. |
| 1139 | * Otherwise it clears the current buffer information. |
| 1140 | */ |
Takashi Iwai | 877211f | 2005-11-17 13:59:38 +0100 | [diff] [blame] | 1141 | static inline void snd_pcm_set_runtime_buffer(struct snd_pcm_substream *substream, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1142 | struct snd_dma_buffer *bufp) |
| 1143 | { |
Takashi Iwai | 877211f | 2005-11-17 13:59:38 +0100 | [diff] [blame] | 1144 | struct snd_pcm_runtime *runtime = substream->runtime; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1145 | if (bufp) { |
| 1146 | runtime->dma_buffer_p = bufp; |
| 1147 | runtime->dma_area = bufp->area; |
| 1148 | runtime->dma_addr = bufp->addr; |
| 1149 | runtime->dma_bytes = bufp->bytes; |
| 1150 | } else { |
| 1151 | runtime->dma_buffer_p = NULL; |
| 1152 | runtime->dma_area = NULL; |
| 1153 | runtime->dma_addr = 0; |
| 1154 | runtime->dma_bytes = 0; |
| 1155 | } |
| 1156 | } |
| 1157 | |
Takashi Iwai | 30b771c | 2014-10-30 15:02:50 +0100 | [diff] [blame] | 1158 | /** |
Baolin Wang | fcae40c | 2018-04-24 20:06:08 +0800 | [diff] [blame] | 1159 | * snd_pcm_gettime - Fill the timespec64 depending on the timestamp mode |
Takashi Iwai | 30b771c | 2014-10-30 15:02:50 +0100 | [diff] [blame] | 1160 | * @runtime: PCM runtime instance |
Baolin Wang | fcae40c | 2018-04-24 20:06:08 +0800 | [diff] [blame] | 1161 | * @tv: timespec64 to fill |
Takashi Iwai | 30b771c | 2014-10-30 15:02:50 +0100 | [diff] [blame] | 1162 | */ |
Jaroslav Kysela | b751eef | 2007-12-13 10:19:42 +0100 | [diff] [blame] | 1163 | static inline void snd_pcm_gettime(struct snd_pcm_runtime *runtime, |
Baolin Wang | fcae40c | 2018-04-24 20:06:08 +0800 | [diff] [blame] | 1164 | struct timespec64 *tv) |
Jaroslav Kysela | b751eef | 2007-12-13 10:19:42 +0100 | [diff] [blame] | 1165 | { |
Mark Brown | 0ac8a52 | 2014-07-08 16:51:49 +0200 | [diff] [blame] | 1166 | switch (runtime->tstamp_type) { |
| 1167 | case SNDRV_PCM_TSTAMP_TYPE_MONOTONIC: |
Baolin Wang | fcae40c | 2018-04-24 20:06:08 +0800 | [diff] [blame] | 1168 | ktime_get_ts64(tv); |
Mark Brown | 0ac8a52 | 2014-07-08 16:51:49 +0200 | [diff] [blame] | 1169 | break; |
| 1170 | case SNDRV_PCM_TSTAMP_TYPE_MONOTONIC_RAW: |
Baolin Wang | fcae40c | 2018-04-24 20:06:08 +0800 | [diff] [blame] | 1171 | ktime_get_raw_ts64(tv); |
Mark Brown | 0ac8a52 | 2014-07-08 16:51:49 +0200 | [diff] [blame] | 1172 | break; |
| 1173 | default: |
Baolin Wang | fcae40c | 2018-04-24 20:06:08 +0800 | [diff] [blame] | 1174 | ktime_get_real_ts64(tv); |
Mark Brown | 0ac8a52 | 2014-07-08 16:51:49 +0200 | [diff] [blame] | 1175 | break; |
| 1176 | } |
Jaroslav Kysela | b751eef | 2007-12-13 10:19:42 +0100 | [diff] [blame] | 1177 | } |
| 1178 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1179 | /* |
| 1180 | * Memory |
| 1181 | */ |
| 1182 | |
Takashi Iwai | bb58060 | 2019-02-04 16:42:24 +0100 | [diff] [blame] | 1183 | void snd_pcm_lib_preallocate_free(struct snd_pcm_substream *substream); |
| 1184 | void snd_pcm_lib_preallocate_free_for_all(struct snd_pcm *pcm); |
| 1185 | void snd_pcm_lib_preallocate_pages(struct snd_pcm_substream *substream, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1186 | int type, struct device *data, |
| 1187 | size_t size, size_t max); |
Takashi Iwai | bb58060 | 2019-02-04 16:42:24 +0100 | [diff] [blame] | 1188 | void snd_pcm_lib_preallocate_pages_for_all(struct snd_pcm *pcm, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1189 | int type, void *data, |
| 1190 | size_t size, size_t max); |
Takashi Iwai | 877211f | 2005-11-17 13:59:38 +0100 | [diff] [blame] | 1191 | int snd_pcm_lib_malloc_pages(struct snd_pcm_substream *substream, size_t size); |
| 1192 | int snd_pcm_lib_free_pages(struct snd_pcm_substream *substream); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1193 | |
Takashi Iwai | 0dba808 | 2019-11-17 09:53:01 +0100 | [diff] [blame] | 1194 | void snd_pcm_set_managed_buffer(struct snd_pcm_substream *substream, int type, |
| 1195 | struct device *data, size_t size, size_t max); |
| 1196 | void snd_pcm_set_managed_buffer_all(struct snd_pcm *pcm, int type, |
| 1197 | struct device *data, |
| 1198 | size_t size, size_t max); |
| 1199 | |
Clemens Ladisch | 681b84e | 2009-12-18 09:29:00 +0100 | [diff] [blame] | 1200 | int _snd_pcm_lib_alloc_vmalloc_buffer(struct snd_pcm_substream *substream, |
| 1201 | size_t size, gfp_t gfp_flags); |
| 1202 | int snd_pcm_lib_free_vmalloc_buffer(struct snd_pcm_substream *substream); |
| 1203 | struct page *snd_pcm_lib_get_vmalloc_page(struct snd_pcm_substream *substream, |
| 1204 | unsigned long offset); |
Clemens Ladisch | 681b84e | 2009-12-18 09:29:00 +0100 | [diff] [blame] | 1205 | /** |
| 1206 | * snd_pcm_lib_alloc_vmalloc_buffer - allocate virtual DMA buffer |
| 1207 | * @substream: the substream to allocate the buffer to |
| 1208 | * @size: the requested buffer size, in bytes |
| 1209 | * |
| 1210 | * Allocates the PCM substream buffer using vmalloc(), i.e., the memory is |
| 1211 | * contiguous in kernel virtual space, but not in physical memory. Use this |
| 1212 | * if the buffer is accessed by kernel code but not by device DMA. |
| 1213 | * |
Yacine Belkadi | eb7c06e | 2013-03-11 22:05:14 +0100 | [diff] [blame] | 1214 | * Return: 1 if the buffer was changed, 0 if not changed, or a negative error |
Clemens Ladisch | 681b84e | 2009-12-18 09:29:00 +0100 | [diff] [blame] | 1215 | * code. |
| 1216 | */ |
Takashi Iwai | f213d8f | 2014-10-30 13:45:58 +0100 | [diff] [blame] | 1217 | static inline int snd_pcm_lib_alloc_vmalloc_buffer |
| 1218 | (struct snd_pcm_substream *substream, size_t size) |
| 1219 | { |
| 1220 | return _snd_pcm_lib_alloc_vmalloc_buffer(substream, size, |
| 1221 | GFP_KERNEL | __GFP_HIGHMEM | __GFP_ZERO); |
| 1222 | } |
| 1223 | |
Clemens Ladisch | 681b84e | 2009-12-18 09:29:00 +0100 | [diff] [blame] | 1224 | /** |
| 1225 | * snd_pcm_lib_alloc_vmalloc_32_buffer - allocate 32-bit-addressable buffer |
| 1226 | * @substream: the substream to allocate the buffer to |
| 1227 | * @size: the requested buffer size, in bytes |
| 1228 | * |
| 1229 | * This function works like snd_pcm_lib_alloc_vmalloc_buffer(), but uses |
| 1230 | * vmalloc_32(), i.e., the pages are allocated from 32-bit-addressable memory. |
Yacine Belkadi | eb7c06e | 2013-03-11 22:05:14 +0100 | [diff] [blame] | 1231 | * |
| 1232 | * Return: 1 if the buffer was changed, 0 if not changed, or a negative error |
| 1233 | * code. |
Clemens Ladisch | 681b84e | 2009-12-18 09:29:00 +0100 | [diff] [blame] | 1234 | */ |
Takashi Iwai | f213d8f | 2014-10-30 13:45:58 +0100 | [diff] [blame] | 1235 | static inline int snd_pcm_lib_alloc_vmalloc_32_buffer |
| 1236 | (struct snd_pcm_substream *substream, size_t size) |
| 1237 | { |
| 1238 | return _snd_pcm_lib_alloc_vmalloc_buffer(substream, size, |
| 1239 | GFP_KERNEL | GFP_DMA32 | __GFP_ZERO); |
| 1240 | } |
Clemens Ladisch | 681b84e | 2009-12-18 09:29:00 +0100 | [diff] [blame] | 1241 | |
Takashi Iwai | 9d069dc | 2012-09-20 20:29:12 -0700 | [diff] [blame] | 1242 | #define snd_pcm_get_dma_buf(substream) ((substream)->runtime->dma_buffer_p) |
| 1243 | |
Takashi Iwai | cc6a8ac | 2008-06-17 16:39:06 +0200 | [diff] [blame] | 1244 | #ifdef CONFIG_SND_DMA_SGBUF |
Takashi Iwai | 77a23f2 | 2008-08-21 13:00:13 +0200 | [diff] [blame] | 1245 | /* |
| 1246 | * SG-buffer handling |
| 1247 | */ |
| 1248 | #define snd_pcm_substream_sgbuf(substream) \ |
Takashi Iwai | 9d069dc | 2012-09-20 20:29:12 -0700 | [diff] [blame] | 1249 | snd_pcm_get_dma_buf(substream)->private_data |
Takashi Iwai | 9d069dc | 2012-09-20 20:29:12 -0700 | [diff] [blame] | 1250 | #endif /* SND_DMA_SGBUF */ |
| 1251 | |
Takashi Iwai | 30b771c | 2014-10-30 15:02:50 +0100 | [diff] [blame] | 1252 | /** |
| 1253 | * snd_pcm_sgbuf_get_addr - Get the DMA address at the corresponding offset |
| 1254 | * @substream: PCM substream |
| 1255 | * @ofs: byte offset |
| 1256 | */ |
Takashi Iwai | cc6a8ac | 2008-06-17 16:39:06 +0200 | [diff] [blame] | 1257 | static inline dma_addr_t |
| 1258 | snd_pcm_sgbuf_get_addr(struct snd_pcm_substream *substream, unsigned int ofs) |
| 1259 | { |
Takashi Iwai | 9d069dc | 2012-09-20 20:29:12 -0700 | [diff] [blame] | 1260 | return snd_sgbuf_get_addr(snd_pcm_get_dma_buf(substream), ofs); |
Takashi Iwai | cc6a8ac | 2008-06-17 16:39:06 +0200 | [diff] [blame] | 1261 | } |
| 1262 | |
Takashi Iwai | 30b771c | 2014-10-30 15:02:50 +0100 | [diff] [blame] | 1263 | /** |
| 1264 | * snd_pcm_sgbuf_get_ptr - Get the virtual address at the corresponding offset |
| 1265 | * @substream: PCM substream |
| 1266 | * @ofs: byte offset |
| 1267 | */ |
Takashi Iwai | cc6a8ac | 2008-06-17 16:39:06 +0200 | [diff] [blame] | 1268 | static inline void * |
| 1269 | snd_pcm_sgbuf_get_ptr(struct snd_pcm_substream *substream, unsigned int ofs) |
| 1270 | { |
Takashi Iwai | 9d069dc | 2012-09-20 20:29:12 -0700 | [diff] [blame] | 1271 | return snd_sgbuf_get_ptr(snd_pcm_get_dma_buf(substream), ofs); |
Takashi Iwai | cc6a8ac | 2008-06-17 16:39:06 +0200 | [diff] [blame] | 1272 | } |
| 1273 | |
Takashi Iwai | 30b771c | 2014-10-30 15:02:50 +0100 | [diff] [blame] | 1274 | /** |
| 1275 | * snd_pcm_sgbuf_chunk_size - Compute the max size that fits within the contig. |
| 1276 | * page from the given size |
| 1277 | * @substream: PCM substream |
| 1278 | * @ofs: byte offset |
| 1279 | * @size: byte size to examine |
| 1280 | */ |
Takashi Iwai | 9d069dc | 2012-09-20 20:29:12 -0700 | [diff] [blame] | 1281 | static inline unsigned int |
| 1282 | snd_pcm_sgbuf_get_chunk_size(struct snd_pcm_substream *substream, |
| 1283 | unsigned int ofs, unsigned int size) |
| 1284 | { |
| 1285 | return snd_sgbuf_get_chunk_size(snd_pcm_get_dma_buf(substream), ofs, size); |
| 1286 | } |
Takashi Iwai | cc6a8ac | 2008-06-17 16:39:06 +0200 | [diff] [blame] | 1287 | |
Takashi Iwai | 30b771c | 2014-10-30 15:02:50 +0100 | [diff] [blame] | 1288 | /** |
| 1289 | * snd_pcm_mmap_data_open - increase the mmap counter |
| 1290 | * @area: VMA |
| 1291 | * |
| 1292 | * PCM mmap callback should handle this counter properly |
| 1293 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1294 | static inline void snd_pcm_mmap_data_open(struct vm_area_struct *area) |
| 1295 | { |
Takashi Iwai | 877211f | 2005-11-17 13:59:38 +0100 | [diff] [blame] | 1296 | struct snd_pcm_substream *substream = (struct snd_pcm_substream *)area->vm_private_data; |
Takashi Iwai | 9c323fc | 2006-04-28 15:13:41 +0200 | [diff] [blame] | 1297 | atomic_inc(&substream->mmap_count); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1298 | } |
| 1299 | |
Takashi Iwai | 30b771c | 2014-10-30 15:02:50 +0100 | [diff] [blame] | 1300 | /** |
| 1301 | * snd_pcm_mmap_data_close - decrease the mmap counter |
| 1302 | * @area: VMA |
| 1303 | * |
| 1304 | * PCM mmap callback should handle this counter properly |
| 1305 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1306 | static inline void snd_pcm_mmap_data_close(struct vm_area_struct *area) |
| 1307 | { |
Takashi Iwai | 877211f | 2005-11-17 13:59:38 +0100 | [diff] [blame] | 1308 | struct snd_pcm_substream *substream = (struct snd_pcm_substream *)area->vm_private_data; |
Takashi Iwai | 9c323fc | 2006-04-28 15:13:41 +0200 | [diff] [blame] | 1309 | atomic_dec(&substream->mmap_count); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1310 | } |
| 1311 | |
Takashi Iwai | 18a2b96 | 2011-09-28 17:12:59 +0200 | [diff] [blame] | 1312 | int snd_pcm_lib_default_mmap(struct snd_pcm_substream *substream, |
| 1313 | struct vm_area_struct *area); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1314 | /* mmap for io-memory area */ |
| 1315 | #if defined(CONFIG_X86) || defined(CONFIG_PPC) || defined(CONFIG_ALPHA) |
| 1316 | #define SNDRV_PCM_INFO_MMAP_IOMEM SNDRV_PCM_INFO_MMAP |
Takashi Iwai | 877211f | 2005-11-17 13:59:38 +0100 | [diff] [blame] | 1317 | int snd_pcm_lib_mmap_iomem(struct snd_pcm_substream *substream, struct vm_area_struct *area); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1318 | #else |
| 1319 | #define SNDRV_PCM_INFO_MMAP_IOMEM 0 |
| 1320 | #define snd_pcm_lib_mmap_iomem NULL |
| 1321 | #endif |
| 1322 | |
Takashi Iwai | 30b771c | 2014-10-30 15:02:50 +0100 | [diff] [blame] | 1323 | /** |
| 1324 | * snd_pcm_limit_isa_dma_size - Get the max size fitting with ISA DMA transfer |
| 1325 | * @dma: DMA number |
| 1326 | * @max: pointer to store the max size |
| 1327 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1328 | static inline void snd_pcm_limit_isa_dma_size(int dma, size_t *max) |
| 1329 | { |
| 1330 | *max = dma < 4 ? 64 * 1024 : 128 * 1024; |
| 1331 | } |
| 1332 | |
| 1333 | /* |
| 1334 | * Misc |
| 1335 | */ |
| 1336 | |
| 1337 | #define SNDRV_PCM_DEFAULT_CON_SPDIF (IEC958_AES0_CON_EMPHASIS_NONE|\ |
| 1338 | (IEC958_AES1_CON_ORIGINAL<<8)|\ |
| 1339 | (IEC958_AES1_CON_PCM_CODER<<8)|\ |
| 1340 | (IEC958_AES3_CON_FS_48000<<24)) |
| 1341 | |
Takashi Iwai | 6e5265e | 2009-09-08 14:26:51 +0200 | [diff] [blame] | 1342 | const char *snd_pcm_format_name(snd_pcm_format_t format); |
| 1343 | |
Ola Lilja | 1aad779 | 2012-05-24 15:26:03 +0200 | [diff] [blame] | 1344 | /** |
Randy Dunlap | 8513915 | 2012-08-18 17:43:05 -0700 | [diff] [blame] | 1345 | * snd_pcm_stream_str - Get a string naming the direction of a stream |
| 1346 | * @substream: the pcm substream instance |
Yacine Belkadi | eb7c06e | 2013-03-11 22:05:14 +0100 | [diff] [blame] | 1347 | * |
| 1348 | * Return: A string naming the direction of the stream. |
Ola Lilja | 1aad779 | 2012-05-24 15:26:03 +0200 | [diff] [blame] | 1349 | */ |
| 1350 | static inline const char *snd_pcm_stream_str(struct snd_pcm_substream *substream) |
| 1351 | { |
| 1352 | if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK) |
| 1353 | return "Playback"; |
| 1354 | else |
| 1355 | return "Capture"; |
| 1356 | } |
| 1357 | |
Takashi Iwai | 2d3391e | 2012-07-27 18:27:00 +0200 | [diff] [blame] | 1358 | /* |
| 1359 | * PCM channel-mapping control API |
| 1360 | */ |
| 1361 | /* array element of channel maps */ |
| 1362 | struct snd_pcm_chmap_elem { |
| 1363 | unsigned char channels; |
| 1364 | unsigned char map[15]; |
| 1365 | }; |
| 1366 | |
| 1367 | /* channel map information; retrieved via snd_kcontrol_chip() */ |
| 1368 | struct snd_pcm_chmap { |
| 1369 | struct snd_pcm *pcm; /* assigned PCM instance */ |
| 1370 | int stream; /* PLAYBACK or CAPTURE */ |
| 1371 | struct snd_kcontrol *kctl; |
| 1372 | const struct snd_pcm_chmap_elem *chmap; |
| 1373 | unsigned int max_channels; |
| 1374 | unsigned int channel_mask; /* optional: active channels bitmask */ |
| 1375 | void *private_data; /* optional: private data pointer */ |
| 1376 | }; |
| 1377 | |
Takashi Iwai | 30b771c | 2014-10-30 15:02:50 +0100 | [diff] [blame] | 1378 | /** |
| 1379 | * snd_pcm_chmap_substream - get the PCM substream assigned to the given chmap info |
| 1380 | * @info: chmap information |
| 1381 | * @idx: the substream number index |
| 1382 | */ |
Takashi Iwai | 2d3391e | 2012-07-27 18:27:00 +0200 | [diff] [blame] | 1383 | static inline struct snd_pcm_substream * |
| 1384 | snd_pcm_chmap_substream(struct snd_pcm_chmap *info, unsigned int idx) |
| 1385 | { |
| 1386 | struct snd_pcm_substream *s; |
| 1387 | for (s = info->pcm->streams[info->stream].substream; s; s = s->next) |
| 1388 | if (s->number == idx) |
| 1389 | return s; |
| 1390 | return NULL; |
| 1391 | } |
| 1392 | |
| 1393 | /* ALSA-standard channel maps (RL/RR prior to C/LFE) */ |
| 1394 | extern const struct snd_pcm_chmap_elem snd_pcm_std_chmaps[]; |
| 1395 | /* Other world's standard channel maps (C/LFE prior to RL/RR) */ |
| 1396 | extern const struct snd_pcm_chmap_elem snd_pcm_alt_chmaps[]; |
| 1397 | |
| 1398 | /* bit masks to be passed to snd_pcm_chmap.channel_mask field */ |
| 1399 | #define SND_PCM_CHMAP_MASK_24 ((1U << 2) | (1U << 4)) |
| 1400 | #define SND_PCM_CHMAP_MASK_246 (SND_PCM_CHMAP_MASK_24 | (1U << 6)) |
| 1401 | #define SND_PCM_CHMAP_MASK_2468 (SND_PCM_CHMAP_MASK_246 | (1U << 8)) |
| 1402 | |
| 1403 | int snd_pcm_add_chmap_ctls(struct snd_pcm *pcm, int stream, |
| 1404 | const struct snd_pcm_chmap_elem *chmap, |
| 1405 | int max_channels, |
| 1406 | unsigned long private_value, |
| 1407 | struct snd_pcm_chmap **info_ret); |
| 1408 | |
Takashi Iwai | 30b771c | 2014-10-30 15:02:50 +0100 | [diff] [blame] | 1409 | /** |
| 1410 | * pcm_format_to_bits - Strong-typed conversion of pcm_format to bitwise |
| 1411 | * @pcm_format: PCM format |
| 1412 | */ |
Eldad Zack | 74c34ca | 2013-04-23 01:00:41 +0200 | [diff] [blame] | 1413 | static inline u64 pcm_format_to_bits(snd_pcm_format_t pcm_format) |
| 1414 | { |
| 1415 | return 1ULL << (__force int) pcm_format; |
| 1416 | } |
| 1417 | |
Takashi Iwai | b9c7d41 | 2020-02-06 17:39:39 +0100 | [diff] [blame^] | 1418 | /** |
| 1419 | * pcm_for_each_format - helper to iterate for each format type |
| 1420 | * @f: the iterator variable in snd_pcm_format_t type |
| 1421 | */ |
| 1422 | #define pcm_for_each_format(f) \ |
| 1423 | for ((f) = SNDRV_PCM_FORMAT_FIRST; \ |
| 1424 | (__force int)(f) <= (__force int)SNDRV_PCM_FORMAT_LAST; \ |
| 1425 | (f) = (__force snd_pcm_format_t)((__force int)(f) + 1)) |
| 1426 | |
Takashi Iwai | 09e56df | 2014-02-04 18:19:48 +0100 | [diff] [blame] | 1427 | /* printk helpers */ |
| 1428 | #define pcm_err(pcm, fmt, args...) \ |
| 1429 | dev_err((pcm)->card->dev, fmt, ##args) |
| 1430 | #define pcm_warn(pcm, fmt, args...) \ |
| 1431 | dev_warn((pcm)->card->dev, fmt, ##args) |
| 1432 | #define pcm_dbg(pcm, fmt, args...) \ |
| 1433 | dev_dbg((pcm)->card->dev, fmt, ##args) |
| 1434 | |
Baolin Wang | 3ddee7f | 2018-04-24 20:06:11 +0800 | [diff] [blame] | 1435 | struct snd_pcm_status64 { |
| 1436 | snd_pcm_state_t state; /* stream state */ |
| 1437 | u8 rsvd[4]; |
| 1438 | s64 trigger_tstamp_sec; /* time when stream was started/stopped/paused */ |
| 1439 | s64 trigger_tstamp_nsec; |
| 1440 | s64 tstamp_sec; /* reference timestamp */ |
| 1441 | s64 tstamp_nsec; |
| 1442 | snd_pcm_uframes_t appl_ptr; /* appl ptr */ |
| 1443 | snd_pcm_uframes_t hw_ptr; /* hw ptr */ |
| 1444 | snd_pcm_sframes_t delay; /* current delay in frames */ |
| 1445 | snd_pcm_uframes_t avail; /* number of frames available */ |
| 1446 | snd_pcm_uframes_t avail_max; /* max frames available on hw since last status */ |
| 1447 | snd_pcm_uframes_t overrange; /* count of ADC (capture) overrange detections from last status */ |
| 1448 | snd_pcm_state_t suspended_state; /* suspended stream state */ |
| 1449 | __u32 audio_tstamp_data; /* needed for 64-bit alignment, used for configs/report to/from userspace */ |
| 1450 | s64 audio_tstamp_sec; /* sample counter, wall clock, PHC or on-demand sync'ed */ |
| 1451 | s64 audio_tstamp_nsec; |
| 1452 | s64 driver_tstamp_sec; /* useful in case reference system tstamp is reported with delay */ |
| 1453 | s64 driver_tstamp_nsec; |
| 1454 | __u32 audio_tstamp_accuracy; /* in ns units, only valid if indicated in audio_tstamp_data */ |
| 1455 | unsigned char reserved[52-4*sizeof(s64)]; /* must be filled with zero */ |
| 1456 | }; |
| 1457 | |
| 1458 | #define SNDRV_PCM_IOCTL_STATUS64 _IOR('A', 0x20, struct snd_pcm_status64) |
| 1459 | #define SNDRV_PCM_IOCTL_STATUS_EXT64 _IOWR('A', 0x24, struct snd_pcm_status64) |
| 1460 | |
| 1461 | struct snd_pcm_status32 { |
Takashi Iwai | cb639a4 | 2020-01-31 16:22:14 +0100 | [diff] [blame] | 1462 | snd_pcm_state_t state; /* stream state */ |
Baolin Wang | 3ddee7f | 2018-04-24 20:06:11 +0800 | [diff] [blame] | 1463 | s32 trigger_tstamp_sec; /* time when stream was started/stopped/paused */ |
| 1464 | s32 trigger_tstamp_nsec; |
| 1465 | s32 tstamp_sec; /* reference timestamp */ |
| 1466 | s32 tstamp_nsec; |
| 1467 | u32 appl_ptr; /* appl ptr */ |
| 1468 | u32 hw_ptr; /* hw ptr */ |
| 1469 | s32 delay; /* current delay in frames */ |
| 1470 | u32 avail; /* number of frames available */ |
| 1471 | u32 avail_max; /* max frames available on hw since last status */ |
| 1472 | u32 overrange; /* count of ADC (capture) overrange detections from last status */ |
Takashi Iwai | cb639a4 | 2020-01-31 16:22:14 +0100 | [diff] [blame] | 1473 | snd_pcm_state_t suspended_state; /* suspended stream state */ |
Baolin Wang | 3ddee7f | 2018-04-24 20:06:11 +0800 | [diff] [blame] | 1474 | u32 audio_tstamp_data; /* needed for 64-bit alignment, used for configs/report to/from userspace */ |
| 1475 | s32 audio_tstamp_sec; /* sample counter, wall clock, PHC or on-demand sync'ed */ |
| 1476 | s32 audio_tstamp_nsec; |
| 1477 | s32 driver_tstamp_sec; /* useful in case reference system tstamp is reported with delay */ |
| 1478 | s32 driver_tstamp_nsec; |
| 1479 | u32 audio_tstamp_accuracy; /* in ns units, only valid if indicated in audio_tstamp_data */ |
| 1480 | unsigned char reserved[52-4*sizeof(s32)]; /* must be filled with zero */ |
| 1481 | }; |
| 1482 | |
| 1483 | #define SNDRV_PCM_IOCTL_STATUS32 _IOR('A', 0x20, struct snd_pcm_status32) |
| 1484 | #define SNDRV_PCM_IOCTL_STATUS_EXT32 _IOWR('A', 0x24, struct snd_pcm_status32) |
| 1485 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1486 | #endif /* __SOUND_PCM_H */ |