[alsa-devel] HDA HDMI pin to converter mapping

David Henningsson david.henningsson at canonical.com
Thu May 26 11:52:26 CEST 2011


On 2011-05-26 08:56, Takashi Iwai wrote:
> At Wed, 25 May 2011 11:29:35 -0700,
> Stephen Warren wrote:
>>
>> Most cards supported by patch_hdmi.c have the property of a 1:1 mapping
>> or connection between converter widgets and pin widgets. Hence,
>> patch_hdmi.c sets up a PCM for each converter, and occasionally performs
>> some operations on the pin widget as required.
>>
>> However, some new cards don't have this 1:1 mapping. In particular, the
>> new GeForce GT 520 and many future NVIDIA cards, and at least the Intel
>> Ibex Peak (in my wife's laptop), have more pin widgets than converters,
>> and each pin widget has a mux to select which converter to take the
>> audio from.
>>
>> For pretty pictures, see the 4th (and 3rd) diagrams at:
>>
>> ftp://download.nvidia.com/XFree86/gpu-hdmi-audio-document/gpu-hdmi-audio.html#_examples
>
> Wow, nice to see such a good document.

Indeed!

>> I'd like to discuss how best to handle such cards.
>>
>> I'd expect to see a PCM device created for each pin widget. This would
>> create a 1:1 mapping between PCM devices and attached monitors and hence
>> ELD data (with the possible exception of DisplayPort 1.2 daisy-chaining;
>> I have no idea yet how that plays into this).
>>
>> Does this seem like a reasonable approach to everyone?
>
> Sounds reasonable and logical to me.
> It won't break the older chips, and it will work with new chips.

It makes PulseAudio's life harder, if that is to take into account; in 
the startup phase, PulseAudio usually only tries one of the pcm streams 
(which is bad here, it'll effectively rule out all ports but the first), 
if we change to all of the pcm streams, the latter two will fail since 
the former ones are already opened.

So we're effectively breaking some of the older chips by changing the 
PCM device from hw:X to hw:X,1 for a specific pin...?

OTOH, the bigger change here is what's inevitable; that PulseAudio at 
some point must start to take into account that the current capabilities 
of a PCM can change during its lifetime. (And that goes regardless of 
whether have one pcm per pin or converter.) And so the upcoming question 
is, can PulseAudio detect that the PCM capabilities have changed 
somehow, and then reprobe it?

>> The current situation is that we only create a PCM for each converter
>> that is mux'd to a pin by default HW initialization. On both the GeForce
>> 520 and Ibex Peak, this means that only 1 PCM gets created, since all
>> pin widgets' muxes point at the first converter by default. This:
>>
>> a) Doesn't allow usage of both converters at once, since there's only 1
>> PCM object.

So, create a second PCM object for the second converter...?

>> b) Ends up with up to 4 (in NVIDIA's case) pin widgets (and hence ELD
>> information) logically associated with the PCM object. Hence, it'll be
>> confusing for application to know what features they can really use on
>> the PCM. In fact, ALSA actually only enforces the ELD of the first pin
>> associated with the converter, and ignores the rest.

Looks like they should be combined; restricted to whatever formats they 
both support in case both have valid ELD's?

>> The basic mechanics of a-PCM-per-pin would require hdmi_pcm_open to look
>> at the list of converters, find one not in use by a stream, and then
>> dynamically associate the converter with the stream, or fail the open if
>> a converter was not available. We'd also need a custom close or cleanup
>> function to "unassign" the converter from the PCM, and set
>> hda_pcm_stream.nid to an invalid value.

Would it be more difficult for hdmi_pcm_open to open the associated 
converter and dynamically assign a pin?

That said, I think it's great that you brought it up Stephen, and I 
understand this doesn't help you associate PCMs with X screens - and I'm 
not sure I have a better proposal for you (and I don't want to block 
development either), just wanted to add my view to the discussion.

-- 
David Henningsson, Canonical Ltd.
http://launchpad.net/~diwic


More information about the Alsa-devel mailing list