asoc supporting audio on an embedded board
play

ASoC: Supporting Audio on an Embedded Board Alexandre Belloni - PowerPoint PPT Presentation

Embedded Linux Conference Europe 2016 ASoC: Supporting Audio on an Embedded Board Alexandre Belloni alexandre.belloni@free-electrons.com http://free-electrons.com 1/38 free electrons free electrons - Embedded Linux, kernel, drivers -


  1. Embedded Linux Conference Europe 2016 ASoC: Supporting Audio on an Embedded Board Alexandre Belloni alexandre.belloni@free-electrons.com http://free-electrons.com 1/38 free electrons free electrons - Embedded Linux, kernel, drivers - Development, consulting, training and support.

  2. Alexandre Belloni subsystem ARM processors http://free-electrons.com 2/38 ▶ Embedded Linux engineer at free electrons ▶ Embedded Linux expertise ▶ Development , consulting and training ▶ Strong open-source focus ▶ Open-source contributor ▶ Maintainer for the Linux kernel RTC ▶ Co-Maintainer of kernel support for Atmel free electrons Embedded Linux Experts free electrons - Embedded Linux, kernel, drivers - Development, consulting, training and support.

  3. Anatomy http://free-electrons.com 3/38 free electrons - Embedded Linux, kernel, drivers - Development, consulting, training and support.

  4. Anatomy Some SoCs (Allwinner A33, Atmel SAMA5D2) have the codec and the amplifjer on the SoC itself. http://free-electrons.com 4/38 ▶ codec confjguration usually happens on a simple serial bus, I2C or SPI. ▶ SoC DAI: the SoC Digital Audio Interface. ▶ sometimes called synchronous serial interface ▶ provides audio data to the codec ▶ formats are usually AC97, I2S, PCM (TDM, network mode), DSP A/B ▶ Examples: Atmel SSC, NXP SSI, TI McASP. ▶ Some SoCs have a separate SPDIF controller ▶ Amplifjer is optional free electrons - Embedded Linux, kernel, drivers - Development, consulting, training and support.

  5. ASoC ASoC, ALSA System on Chip: is a Linux kernel subsystem created to provide better ALSA support for system-on-chip and portable audio codecs. It allows to reuse codec drivers across multiple architectures and provides an API to integrate them with the SoC audio interface. http://free-electrons.com 5/38 ▶ created for that use case ▶ designed for codec drivers reuse ▶ has an API to write codec drivers ▶ has an API to write SoC interface drivers free electrons - Embedded Linux, kernel, drivers - Development, consulting, training and support.

  6. ASoC components analog inputs and outputs). sets up DMA when applicable. interface driver and the codec driver. It describes how both are connected. If you properly selected your hardware components, this is the only driver that needs to e written. Note: The codec can be part of another IC (Bluetooth or MODEM chips). http://free-electrons.com 6/38 ▶ codec class drivers: defjne the codec capabilities (audio interface, audio controls, ▶ Platform class drivers: defjnes the SoC audio interface (also referred as CPU DAI, ▶ Machine drivers: board specifjc driver that serves as a glue between the SoC free electrons - Embedded Linux, kernel, drivers - Development, consulting, training and support.

  7. Machine driver /* CPU <--> Codec DAI links http://free-electrons.com }; [...] int num_dai_links; struct list_head dai_link_list; /* all links */ /* predefined links only */ int num_links; /* predefined links only */ struct snd_soc_dai_link *dai_link; */ [...] struct snd_card *snd_card; struct device *dev; const char *driver_name; const char *long_name; const char *name; struct snd_soc_card { /* SoC card */ [...] int devm_snd_soc_register_card(struct device *dev, struct snd_soc_card *card); int snd_soc_unregister_card(struct snd_soc_card *card); int snd_soc_register_card(struct snd_soc_card *card); include/sound/soc.h 7/38 The machine driver registers a struct snd_soc_card . free electrons - Embedded Linux, kernel, drivers - Development, consulting, training and support.

  8. struct snd_soc_dai_link * only for codec to codec links, or systems using device tree. http://free-electrons.com const char *cpu_dai_name; */ * only, which only works well when that device exposes a single DAI. * omitted, the CPU-side DAI is matched using .cpu_name/.cpu_of_node * You MAY specify the DAI name of the CPU DAI. If this information is /* struct device_node *cpu_of_node; const char *cpu_name; */ * must be globally unique. These fields are currently typically used * the CPU-side DAI is matched using .cpu_dai_name only, which hence * or by DT/OF node, but not both. If this information is omitted, * You MAY specify the link's CPU-side device, either by device name, /* /* Stream name */ const char *stream_name; /* Codec name */ const char *name; /* config - must be set by machine driver */ struct snd_soc_dai_link { include/sound/soc.h codec DAI. 8/38 struct snd_soc_dai_link is used to create the link between the CPU DAI and the free electrons - Embedded Linux, kernel, drivers - Development, consulting, training and support.

  9. struct snd_soc_dai_link /* * You MUST specify the link's codec, either by device name, or by * DT/OF node, but not both. */ const char *codec_name; struct device_node *codec_of_node; /* You MUST specify the DAI name within the codec */ const char *codec_dai_name; struct snd_soc_dai_link_component *codecs; unsigned int num_codecs; http://free-electrons.com 9/38 free electrons - Embedded Linux, kernel, drivers - Development, consulting, training and support.

  10. struct snd_soc_dai_link /* http://free-electrons.com }; /* format to set on init */ unsigned int dai_fmt; unsigned int num_params; const struct snd_soc_pcm_stream *params; /* optional ID for machine driver link identification */ int id; struct device_node *platform_of_node; const char *platform_name; */ * do not need a platform. * device name, or by DT/OF node, but not both. Some forms of link * You MAY specify the link's platform/PCM/DMA driver, either by 10/38 free electrons - Embedded Linux, kernel, drivers - Development, consulting, training and support.

  11. Example 1 }; http://free-electrons.com }; .num_dapm_widgets = ARRAY_SIZE(atmel_asoc_wm8904_dapm_widgets), .dapm_widgets = atmel_asoc_wm8904_dapm_widgets, .dai_link = &atmel_asoc_wm8904_dailink, .owner = THIS_MODULE, sound/soc/atmel/atmel_wm8904.c static struct snd_soc_card atmel_asoc_wm8904_card = { .ops = &atmel_asoc_wm8904_ops, | SND_SOC_DAIFMT_CBM_CFM, | SND_SOC_DAIFMT_NB_NF .dai_fmt = SND_SOC_DAIFMT_I2S static struct snd_soc_dai_link atmel_asoc_wm8904_dailink = { 11/38 .name = "WM8904", .stream_name = "WM8904 PCM", .codec_dai_name = "wm8904-hifi", .name = "atmel_asoc_wm8904", .num_links = 1, .fully_routed = true, free electrons - Embedded Linux, kernel, drivers - Development, consulting, training and support.

  12. Example 1 return ret; http://free-electrons.com dailink->codec_of_node = codec_np; } return ret; ret = -EINVAL; if (!codec_np) { of_node_put(cpu_np); dailink->platform_of_node = cpu_np; dailink->cpu_of_node = cpu_np; sound/soc/atmel/atmel_wm8904.c } ret = -EINVAL; if (!cpu_np) { [...] struct snd_soc_dai_link *dailink = &atmel_asoc_wm8904_dailink; struct snd_soc_card *card = &atmel_asoc_wm8904_card; struct device_node *codec_np, *cpu_np; struct device_node *np = pdev->dev.of_node; { static int atmel_asoc_wm8904_dt_init(struct platform_device *pdev) 12/38 cpu_np = of_parse_phandle(np, "atmel,ssc-controller", 0); dev_err(&pdev->dev, "failed to get dai and pcm info\n"); codec_np = of_parse_phandle(np, "atmel,audio-codec", 0); dev_err(&pdev->dev, "failed to get codec info\n"); free electrons - Embedded Linux, kernel, drivers - Development, consulting, training and support.

  13. Example 1 sound/soc/atmel/atmel_wm8904.c http://free-electrons.com } [...] ret = snd_soc_register_card(card); } return ret; if (ret != 0) { ret = atmel_ssc_set_audio(id); id = of_alias_get_id((struct device_node *)dailink->cpu_of_node, "ssc"); } return ret; if (ret) { ret = atmel_asoc_wm8904_dt_init(pdev); card->dev = &pdev->dev; int id, ret; struct snd_soc_dai_link *dailink = &atmel_asoc_wm8904_dailink; struct snd_soc_card *card = &atmel_asoc_wm8904_card; { static int atmel_asoc_wm8904_probe(struct platform_device *pdev) 13/38 dev_err(&pdev->dev, "failed to init dt info\n"); dev_err(&pdev->dev, "failed to set SSC %d for audio\n", id); free electrons - Embedded Linux, kernel, drivers - Development, consulting, training and support.

  14. Routing After linking the codec driver with the SoC DAI driver, it is still necessary to defjne what are the codec outputs and inputs that are actually used on the board. This is called routing. struct snd_soc_card int snd_soc_of_parse_audio_routing(struct snd_soc_card *card, const char *propname); http://free-electrons.com 14/38 ▶ statically: using the .dapm_routes and .num_dapm_routes members of ▶ from device tree: free electrons - Embedded Linux, kernel, drivers - Development, consulting, training and support.

Download Presentation
Download Policy: The content available on the website is offered to you 'AS IS' for your personal information and use only. It cannot be commercialized, licensed, or distributed on other websites without prior consent from the author. To download a presentation, simply click this link. If you encounter any difficulties during the download process, it's possible that the publisher has removed the file from their server.

Recommend


More recommend