[alsa-devel] [PATCH][ASoC v2] Update Freescale MPC8610HPCD fabric driver to support multiple codecs

Jon Smirl jonsmirl at gmail.com
Fri Jun 13 21:25:13 CEST 2008


On 6/13/08, Mark Brown <broonie at opensource.wolfsonmicro.com> wrote:
> On Fri, Jun 13, 2008 at 12:59:44PM -0400, Jon Smirl wrote:
>
>  > In the PowerPC world the ssi drivers are loaded based on the device
>  > tree. When the ssi driver loads it gets passed in it's device tree
>  > node and can see what codecs are on its bus.
>  > Codecs get loaded two ways, if they are i2c based the i2c subsystem
>  > loaded them. That's because of the PowerPC rule that the controlling
>  > bus should load the driver. If it is an AC97/HDA codec, the ssi code
>  > needs to trigger the loading since the AC97/HDA bus is the controlling
>  > bus.
>
>
> This is no different to any other system.
>
>
>  > After the codec is loaded it may need parameters from the device tree.
>  > My though was to have two mechanisms. First a very simple one where
>  > the SSI driver just copies the parameters from the device tree into
>  > the codec. That removes the need for platform specific code from the
>  > codec driver.  The simple copy should be enough for AC97/HDA.
>
>  > In the second case the SSI would have a call out into the fabric code.
>  > If the simple copy isn't enough the fabric code can do whatever
>  > complicated things it needs to do. This is the case in my hardware,
>  > the fabric driver needs to set up the external clock chip.
>
>
> I'm not seeing much substantial difference between the two cases here:
>  in both of them you look at the system and load a machine driver, it's
>  just that in the first case the machine driver happens to be a generic
>  one that gets more of what it needs from the device tree.

The idea was to allow the fabric driver to be optional for very simple
hard. For example the Efika has simple hardware. It is a STAC9766
hooked to a PSC. No GPIOs or special clocks are involved.  AC97 has
registers for allowing the BIOS to indicate jack presence. Efika
shouldn't need a fabric driver.

Everything except for the most basic system will need a fabric driver.
I think being able to run with an optional fabric driver is a good
test of having the design right.
>
>
>  > The basic concept is that there is one SSI driver per device and a
>  > single global fabric driver. So anything that needs to be done on a
>  > per ssi case needs to go into the ssi driver. Making the soc
>  > structures and attaching the codec is a per ssi task, so the code
>
>
> Remember that if there's more than one SSI<->codec link they may not be
>  independant of each other.  For example, a six channel DAC could be
>  connected to three stereo I2S ports on the SoC with shared clock
>  signals.  You can also get codec<->codec links (for example, separate
>  ADC and DAC parts or Bluetooth devices) which bypass the SoC entirely.
>
>  It may be that you just intend to wrap all these cases up in your "or
>  load a machine driver" case, I'm not clear.

Yes, anything but the most basic configuration ends up in the loading
a fabric driver. I suspect all i2s setups will need one. AC97 and HDA
may not.

BTW, the fabric terminology came form the Mac drivers in the aoa directory.

>
>
>  > should go into the ssi driver. There's on a single, global fabric
>  > driver, that's why Timur had to add a loop initializing the ssi
>  > drivers.
>
>
> There's one machine driver per system in V1, but one of the intentions
>  going forward is to remove that limitation.  IIRC it may already be
>  possible to have more than one SoC card in V2 but I don't know if anyone
>  actually did that yet.

I would find it confusing to have more than one machine/fabric driver
in a system.

-- 
Jon Smirl
jonsmirl at gmail.com


More information about the Alsa-devel mailing list