“SAI Linux driver”的版本间的差异

来自百问网嵌入式Linux wiki
第19行: 第19行:
  
 
=== Device tree ===
 
=== Device tree ===
Refer to the [[SAI device tree configuration]] article when configuring the SAI Linux kernel driver.
+
配置SAI Linux内核驱动时,请参考[[SAI device tree configuration]] 文章。
  
 
== How to use ==
 
== How to use ==

2020年11月5日 (四) 16:03的版本

Article purpose

本文介绍了适用于SAI internal peripheral的SAI Linux® 驱动程序。

Short Description

SAI[1] Linux驱动程序是在Linux ALSA framework中实现的ASoC CPU DAI驱动程序。

Configuration

Kernel Configuration

使用Linux Menuconfig工具在内核配置中激活SAI [1] Linux驱动程序: Menuconfig or how to configure kernel.

[*] Device Drivers
    [*] Sound card support
        [*] Advanced Linux Sound Architecture
            [*] ALSA for SoC audio support
                STMicroelectronics STM32 SOC audio support
	             [*] STM32 SAI interface (Serial Audio Interface) support

Device tree

配置SAI Linux内核驱动时,请参考SAI device tree configuration 文章。

How to use

The SAI Linux driver can be accessed from userland through an ALSA device. Refer to ALSA overview for information on how to list and use ALSA devices.

How to trace and debug

The 调试文件系统(debugfs) and procfs file system can be checked to get information on the SAI driver and the resources it uses. A non-exhaustive list of these file system entries is provided below. Refer to ALSA overview for more details on debugging tools.

  • debugfs entries:
$ cat /sys/kernel/debug/regmap/xxx.audio-controller/registers
  • procfs entries:
$ cat /proc/interrupts

Source code location

The STM32 SAI peripheral includes two independent audio subblocks that share common resources. The driver source code reflects this architecture.

sound/soc/stm/stm32_sai.c| |}} sound/soc/stm/stm32_sai.c : handles common resources such as clock, interrupt, reset and shared register.

sound/soc/stm/stm32_sai_sub.c| |}} sound/soc/stm/stm32_sai_sub.c : handles the resources dedicated to each subblock.