This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

TAS5805M: 关于TAS5805M在RK3566-Android11的相关驱动问题

Part Number: TAS5805M

我司在RK3566-Android11上调试功放ICTAS5805M,发现该平台上只有老款的tas571x芯片的驱动,如附件:

tas571x.h

tas571x.c
Fullscreen
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/*
* TAS571x amplifier audio driver
*
* Copyright (C) 2015 Google, Inc.
* Copyright (c) 2013 Daniel Mack <zonque@gmail.com>
*
* TAS5721 support:
* Copyright (C) 2016 Petr Kulhavy, Barix AG <petr@barix.com>
*
* TAS5707 support:
* Copyright (C) 2018 Jerome Brunet, Baylibre SAS <jbrunet@baylibre.com>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*/
#include <linux/clk.h>
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

我们询问瑞芯微原厂,那边只有在老的kernel4.4版本的平台上调试过tas5805m,如附件:

3326.tas5805m.h

tas5805m.c
Fullscreen
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/*
* sound/soc/codecs/amlogic/tas5805m.c
*
* Copyright (C) 2019 Amlogic, Inc. All rights reserved.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
* more details.
*
*/
#include <linux/module.h>
#include <linux/init.h>
#include <linux/delay.h>
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

该驱动因为版本问题,代码中的snd_soc_codec方法被弃用,我们尝试修改代码,但是修改依旧有很多函数报错无法编译通过拿来使用。

而后我们在github上找了一份tas5805m的驱动,如下:

TAS5805m-main.zip

这份驱动可以编译通过,我们将TAS5805M通过I2C挂着之后,驱动proble成功,有如下打印:

[ 2.269386] tas5805m:>>>>>>>>>>>> tas5805m_i2c_probe start <<<<<<<<<<<<<<<<
[ 2.269454] tas5805m:>>>>>>>>>>>> tas5805m_i2c_probe1 <<<<<<<<<<<<<<<<
[ 2.269535] tas5805m 2-002e: Linked as a consumer to regulator.2
[ 2.269560] tas5805m:>>>>>>>>>>>> tas5805m_i2c_probe2 <<<<<<<<<<<<<<<<
[ 2.269596] tas5805m:>>>>>>>>>>>> tas5805m_i2c_probe3 <<<<<<<<<<<<<<<<
[ 2.269616] tas5805m:>>>>>>>>>>>> tas5805m_i2c_probe3-1 <<<<<<<<<<<<<<<<
[ 2.269631] tas5805m:>>>>>>>>>>>> tas5805m_i2c_probe3-2 <<<<<<<<<<<<<<<<
[ 2.269642] tas5805m:>>>>>>>>>>>> tas5805m_i2c_probe3-3 <<<<<<<<<<<<<<<<
[ 2.269724] tas5805m:>>>>>>>>>>>> tas5805m_i2c_probe3-4 <<<<<<<<<<<<<<<<
[ 2.269737] tas5805m:>>>>>>>>>>>> tas5805m_i2c_probe3-5 <<<<<<<<<<<<<<<<
[ 2.269750] tas5805m 2-002e: firmware not found, using minimal 88.2kHz config for PVDD=24V
[ 2.269765] tas5805m:>>>>>>>>>>>> tas5805m_i2c_probe3-3 <<<<<<<<<<<<<<<<
[ 2.269808] tas5805m:>>>>>>>>>>>> tas5805m_i2c_probe3-4 <<<<<<<<<<<<<<<<
[ 2.269821] tas5805m:>>>>>>>>>>>> tas5805m_i2c_probe3-5 <<<<<<<<<<<<<<<<
[ 2.269829] tas5805m 2-002e: firmware not found, using minimal 96kHz config for PVDD=24V
[ 2.269837] tas5805m:>>>>>>>>>>>> tas5805m_i2c_probe3-3 <<<<<<<<<<<<<<<<
[ 2.269875] tas5805m:>>>>>>>>>>>> tas5805m_i2c_probe3-4 <<<<<<<<<<<<<<<<
[ 2.269889] tas5805m:>>>>>>>>>>>> tas5805m_i2c_probe3-5 <<<<<<<<<<<<<<<<
[ 2.269901] tas5805m 2-002e: firmware not found, using minimal 192kHz config for PVDD=24V
[ 2.269916] tas5805m:>>>>>>>>>>>> tas5805m_i2c_probe4 <<<<<<<<<<<<<<<<
[ 2.435031] tas5805m:>>>>>>>>>>>> snd_soc_register_component ret: 0
[ 2.435064] tas5805m:>>>>>>>>>>>> tas5805m_i2c_probe end <<<<<<<<<<<<<<<<


通过命令查看TAS5805M在RK3566上被成功注册为声卡。如下:

console:/ # cat /proc/asound/cards
0 [rockchiphdmi ]: rockchip_hdmi - rockchip,hdmi
rockchip,hdmi
1 [rockchiptas5805]: rockchip_tas580 - rockchip,tas5805m
rockchip,tas5805m
2 [ROCKCHIPSPDIF ]: ROCKCHIP_SPDIF - ROCKCHIP,SPDIF
ROCKCHIP,SPDIF
但是喇叭并没有声音出来,我们量了TAS5805M的供电都正常。硬件设计如下:

想请问是否有在RK3566-Android11平台上使用的TAS5805M驱动,或者能否仿照老版本tas5805m的驱动帮忙修改一份能在RK3566上使用的TAS5805M的驱动出来。

我们因为对音频驱动不是很熟悉,尝试修改无法解决,能否帮忙支持一下。

x 出现错误。请重试或与管理员联系。