MFC r202127, r202156:

Add multichannel (4.0, 5.1 and 7.1) playback support.

Stereo stream is no more duplicated to all ports. If you loose sound, check
you are using right connectors. Front speakers connector is usually green,
center/LFE - orange, rear - black, side - gray.
This commit is contained in:
Alexander Motin 2010-01-22 11:37:19 +00:00
parent 858bc163b7
commit 320cdf733e
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/stable/8/; revision=202802
2 changed files with 107 additions and 44 deletions

View File

@ -86,7 +86,7 @@
#include "mixer_if.h"
#define HDA_DRV_TEST_REV "20091113_0138"
#define HDA_DRV_TEST_REV "20100112_0140"
SND_DECLARE_FILE("$FreeBSD$");
@ -3455,7 +3455,11 @@ hdac_stream_setup(struct hdac_chan *ch)
int i, chn, totalchn, c;
nid_t cad = ch->devinfo->codec->cad;
uint16_t fmt, dfmt;
uint16_t chmap[2][5] = {{ 0x0010, 0x0001, 0x0201, 0x0231, 0x0231 }, /* 5.1 */
{ 0x0010, 0x0001, 0x2001, 0x2031, 0x2431 }};/* 7.1 */
int map = -1;
totalchn = AFMT_CHANNEL(ch->fmt);
HDA_BOOTHVERBOSE(
device_printf(ch->pdevinfo->dev,
"PCMDIR_%s: Stream setup fmt=%08x speed=%d\n",
@ -3469,7 +3473,6 @@ hdac_stream_setup(struct hdac_chan *ch)
fmt |= ch->bit32 << 4;
else
fmt |= 1 << 4;
for (i = 0; i < HDA_RATE_TAB_LEN; i++) {
if (hda_rate_tab[i].valid && ch->spd == hda_rate_tab[i].rate) {
fmt |= hda_rate_tab[i].base;
@ -3478,10 +3481,13 @@ hdac_stream_setup(struct hdac_chan *ch)
break;
}
}
fmt |= (totalchn - 1);
totalchn = AFMT_CHANNEL(ch->fmt);
if (totalchn > 1)
fmt |= 1;
/* Set channel mapping for known speaker setups. */
if (as->pinset == 0x0007 || as->pinset == 0x0013) /* Standard 5.1 */
map = 0;
else if (as->pinset == 0x0017) /* Standard 7.1 */
map = 1;
HDAC_WRITE_2(&sc->mem, ch->off + HDAC_SDFMT, fmt);
@ -3495,14 +3501,26 @@ hdac_stream_setup(struct hdac_chan *ch)
if (w == NULL)
continue;
if (as->hpredir >= 0 && i == as->pincnt)
chn = 0;
/* If HP redirection is enabled, but failed to use same
DAC, make last DAC to duplicate first one. */
if (as->hpredir >= 0 && i == as->pincnt) {
c = (ch->sid << 4);
} else {
if (map >= 0) /* Map known speaker setups. */
chn = (((chmap[map][totalchn / 2] >> i * 4) &
0xf) - 1) * 2;
if (chn < 0 || chn >= totalchn) {
c = 0;
} else {
c = (ch->sid << 4) | chn;
}
}
HDA_BOOTHVERBOSE(
device_printf(ch->pdevinfo->dev,
"PCMDIR_%s: Stream setup nid=%d: "
"fmt=0x%04x, dfmt=0x%04x\n",
"fmt=0x%04x, dfmt=0x%04x, chan=0x%04x\n",
(ch->dir == PCMDIR_PLAY) ? "PLAY" : "REC",
ch->io[i], fmt, dfmt);
ch->io[i], fmt, dfmt, c);
);
hdac_command(sc,
HDA_CMD_SET_CONV_FMT(cad, ch->io[i], fmt), cad);
@ -3511,17 +3529,6 @@ hdac_stream_setup(struct hdac_chan *ch)
HDA_CMD_SET_DIGITAL_CONV_FMT1(cad, ch->io[i], dfmt),
cad);
}
/* If HP redirection is enabled, but failed to use same
DAC make last DAC one to duplicate first one. */
if (as->hpredir >= 0 && i == as->pincnt) {
c = (ch->sid << 4);
} else if (chn >= totalchn) {
/* This is until OSS will support multichannel.
Should be: c = 0; to disable unused DAC */
c = (ch->sid << 4);
}else {
c = (ch->sid << 4) | chn;
}
hdac_command(sc,
HDA_CMD_SET_CONV_STREAM_CHAN(cad, ch->io[i], c), cad);
#if 0
@ -3532,12 +3539,36 @@ hdac_stream_setup(struct hdac_chan *ch)
hdac_command(sc,
HDA_CMD_SET_HDMI_CHAN_SLOT(cad, ch->io[i], 0x11), cad);
#endif
chn +=
HDA_PARAM_AUDIO_WIDGET_CAP_STEREO(w->param.widget_cap) ?
2 : 1;
chn += HDA_PARAM_AUDIO_WIDGET_CAP_CC(w->param.widget_cap) + 1;
}
}
/*
* Greatest Common Divisor.
*/
static unsigned
gcd(unsigned a, unsigned b)
{
u_int c;
while (b != 0) {
c = a;
a = b;
b = (c % b);
}
return (a);
}
/*
* Least Common Multiple.
*/
static unsigned
lcm(unsigned a, unsigned b)
{
return ((a * b) / gcd(a, b));
}
static int
hdac_channel_setfragments(kobj_t obj, void *data,
uint32_t blksz, uint32_t blkcnt)
@ -3545,7 +3576,7 @@ hdac_channel_setfragments(kobj_t obj, void *data,
struct hdac_chan *ch = data;
struct hdac_softc *sc = ch->devinfo->codec->sc;
blksz &= HDA_BLK_ALIGN;
blksz -= blksz % lcm(HDAC_DMA_ALIGNMENT, sndbuf_getalign(ch->b));
if (blksz > (sndbuf_getmaxsize(ch->b) / HDA_BDL_MIN))
blksz = sndbuf_getmaxsize(ch->b) / HDA_BDL_MIN;
@ -6436,7 +6467,8 @@ hdac_pcmchannel_setup(struct hdac_chan *ch)
struct hdac_audio_as *as = devinfo->function.audio.as;
struct hdac_widget *w;
uint32_t cap, fmtcap, pcmcap;
int i, j, ret, max;
int i, j, ret, channels, onlystereo;
uint16_t pinset;
ch->caps = hdac_caps;
ch->caps.fmtlist = ch->fmtlist;
@ -6446,11 +6478,13 @@ hdac_pcmchannel_setup(struct hdac_chan *ch)
ch->pcmrates[1] = 0;
ret = 0;
channels = 0;
onlystereo = 1;
pinset = 0;
fmtcap = devinfo->function.audio.supp_stream_formats;
pcmcap = devinfo->function.audio.supp_pcm_size_rate;
max = (sizeof(ch->io) / sizeof(ch->io[0])) - 1;
for (i = 0; i < 16 && ret < max; i++) {
for (i = 0; i < 16; i++) {
/* Check as is correct */
if (ch->as < 0)
break;
@ -6468,15 +6502,11 @@ hdac_pcmchannel_setup(struct hdac_chan *ch)
w = hdac_widget_get(devinfo, as[ch->as].dacs[i]);
if (w == NULL || w->enable == 0)
continue;
if (!HDA_PARAM_AUDIO_WIDGET_CAP_STEREO(w->param.widget_cap))
continue;
cap = w->param.supp_stream_formats;
/*if (HDA_PARAM_SUPP_STREAM_FORMATS_FLOAT32(cap)) {
}*/
if (!HDA_PARAM_SUPP_STREAM_FORMATS_PCM(cap) &&
!HDA_PARAM_SUPP_STREAM_FORMATS_AC3(cap))
continue;
/* Many codec does not declare AC3 support on SPDIF.
/* Many CODECs does not declare AC3 support on SPDIF.
I don't beleave that they doesn't support it! */
if (HDA_PARAM_AUDIO_WIDGET_CAP_DIGITAL(w->param.widget_cap))
cap |= HDA_PARAM_SUPP_STREAM_FORMATS_AC3_MASK;
@ -6488,9 +6518,24 @@ hdac_pcmchannel_setup(struct hdac_chan *ch)
pcmcap &= w->param.supp_pcm_size_rate;
}
ch->io[ret++] = as[ch->as].dacs[i];
/* Do not count redirection pin/dac channels. */
if (i == 15 && as[ch->as].hpredir >= 0)
continue;
channels += HDA_PARAM_AUDIO_WIDGET_CAP_CC(w->param.widget_cap) + 1;
if (HDA_PARAM_AUDIO_WIDGET_CAP_CC(w->param.widget_cap) != 1)
onlystereo = 0;
pinset |= (1 << i);
}
ch->io[ret] = -1;
if (as[ch->as].fakeredir)
ret--;
/* Standard speaks only about stereo pins and playback, ... */
if ((!onlystereo) || as[ch->as].dir != HDA_CTL_OUT)
pinset = 0;
/* ..., but there it gives us info about speakers layout. */
as[ch->as].pinset = pinset;
ch->supp_stream_formats = fmtcap;
ch->supp_pcm_size_rate = pcmcap;
@ -6514,17 +6559,34 @@ hdac_pcmchannel_setup(struct hdac_chan *ch)
ch->bit32 = 3;
else if (HDA_PARAM_SUPP_PCM_SIZE_RATE_20BIT(pcmcap))
ch->bit32 = 2;
if (!(devinfo->function.audio.quirks & HDA_QUIRK_FORCESTEREO))
ch->fmtlist[i++] =
SND_FORMAT(AFMT_S16_LE, 1, 0);
ch->fmtlist[i++] = SND_FORMAT(AFMT_S16_LE, 2, 0);
if (ch->bit32 > 0) {
if (!(devinfo->function.audio.quirks &
HDA_QUIRK_FORCESTEREO))
ch->fmtlist[i++] =
SND_FORMAT(AFMT_S32_LE, 1, 0);
ch->fmtlist[i++] =
SND_FORMAT(AFMT_S32_LE, 2, 0);
if (!(devinfo->function.audio.quirks & HDA_QUIRK_FORCESTEREO)) {
ch->fmtlist[i++] = SND_FORMAT(AFMT_S16_LE, 1, 0);
if (ch->bit32)
ch->fmtlist[i++] = SND_FORMAT(AFMT_S32_LE, 1, 0);
}
if (channels >= 2) {
ch->fmtlist[i++] = SND_FORMAT(AFMT_S16_LE, 2, 0);
if (ch->bit32)
ch->fmtlist[i++] = SND_FORMAT(AFMT_S32_LE, 2, 0);
}
if (channels == 4 || /* Any 4-channel */
pinset == 0x0007 || /* 5.1 */
pinset == 0x0013 || /* 5.1 */
pinset == 0x0017) { /* 7.1 */
ch->fmtlist[i++] = SND_FORMAT(AFMT_S16_LE, 4, 0);
if (ch->bit32)
ch->fmtlist[i++] = SND_FORMAT(AFMT_S32_LE, 4, 0);
}
if (channels == 6 || /* Any 6-channel */
pinset == 0x0017) { /* 7.1 */
ch->fmtlist[i++] = SND_FORMAT(AFMT_S16_LE, 6, 1);
if (ch->bit32)
ch->fmtlist[i++] = SND_FORMAT(AFMT_S32_LE, 6, 1);
}
if (channels == 8) { /* Any 8-channel */
ch->fmtlist[i++] = SND_FORMAT(AFMT_S16_LE, 8, 1);
if (ch->bit32)
ch->fmtlist[i++] = SND_FORMAT(AFMT_S32_LE, 8, 1);
}
}
if (HDA_PARAM_SUPP_STREAM_FORMATS_AC3(fmtcap)) {

View File

@ -221,6 +221,7 @@ struct hdac_audio_as {
u_char pincnt;
u_char fakeredir;
u_char digital;
uint16_t pinset;
nid_t hpredir;
nid_t pins[16];
nid_t dacs[16];
@ -281,7 +282,7 @@ struct hdac_chan {
struct hdac_devinfo *devinfo;
struct hdac_pcm_devinfo *pdevinfo;
struct hdac_dma bdl_dma;
uint32_t spd, fmt, fmtlist[8], pcmrates[16];
uint32_t spd, fmt, fmtlist[16], pcmrates[16];
uint32_t supp_stream_formats, supp_pcm_size_rate;
uint32_t ptr, prevptr, blkcnt, blksz;
uint32_t *dmapos;