2018-11-15 21:43:50 +05:30
// SPDX-License-Identifier: GPL-2.0+
//
// AMD ACP PCI Driver
//
//Copyright 2016 Advanced Micro Devices, Inc.
2018-11-12 11:04:53 +05:30
# include <linux/pci.h>
# include <linux/module.h>
# include <linux/io.h>
2018-11-12 11:04:54 +05:30
# include <linux/platform_device.h>
# include <linux/interrupt.h>
2019-12-28 19:10:59 +05:30
# include <linux/pm_runtime.h>
# include <linux/delay.h>
2018-11-12 11:04:53 +05:30
# include "acp3x.h"
struct acp3x_dev_data {
void __iomem * acp3x_base ;
2018-11-12 11:04:54 +05:30
bool acp3x_audio_mode ;
struct resource * res ;
2019-12-05 19:07:26 +05:30
struct platform_device * pdev [ ACP3x_DEVS ] ;
2020-07-25 01:25:52 +05:30
u32 pme_en ;
2018-11-12 11:04:53 +05:30
} ;
2020-07-25 01:25:52 +05:30
static int acp3x_power_on ( struct acp3x_dev_data * adata )
2019-12-28 19:10:59 +05:30
{
2020-07-25 01:25:52 +05:30
void __iomem * acp3x_base = adata - > acp3x_base ;
2019-12-28 19:10:59 +05:30
u32 val ;
int timeout ;
val = rv_readl ( acp3x_base + mmACP_PGFSM_STATUS ) ;
if ( val = = 0 )
return val ;
if ( ! ( ( val & ACP_PGFSM_STATUS_MASK ) = =
ACP_POWER_ON_IN_PROGRESS ) )
rv_writel ( ACP_PGFSM_CNTL_POWER_ON_MASK ,
acp3x_base + mmACP_PGFSM_CONTROL ) ;
timeout = 0 ;
while ( + + timeout < 500 ) {
val = rv_readl ( acp3x_base + mmACP_PGFSM_STATUS ) ;
2020-02-26 16:17:44 +05:30
if ( ! val ) {
2020-07-25 01:25:52 +05:30
/* ACP power On clears PME_EN.
* Restore the value to its prior state
2020-02-26 16:17:44 +05:30
*/
2020-07-25 01:25:52 +05:30
rv_writel ( adata - > pme_en , acp3x_base + mmACP_PME_EN ) ;
2019-12-28 19:10:59 +05:30
return 0 ;
2020-02-26 16:17:44 +05:30
}
2019-12-28 19:10:59 +05:30
udelay ( 1 ) ;
}
return - ETIMEDOUT ;
}
static int acp3x_reset ( void __iomem * acp3x_base )
{
u32 val ;
int timeout ;
rv_writel ( 1 , acp3x_base + mmACP_SOFT_RESET ) ;
timeout = 0 ;
while ( + + timeout < 500 ) {
val = rv_readl ( acp3x_base + mmACP_SOFT_RESET ) ;
if ( val & ACP3x_SOFT_RESET__SoftResetAudDone_MASK )
break ;
cpu_relax ( ) ;
}
rv_writel ( 0 , acp3x_base + mmACP_SOFT_RESET ) ;
timeout = 0 ;
while ( + + timeout < 500 ) {
val = rv_readl ( acp3x_base + mmACP_SOFT_RESET ) ;
if ( ! val )
return 0 ;
cpu_relax ( ) ;
}
return - ETIMEDOUT ;
}
2021-04-28 01:53:31 +05:30
static void acp3x_enable_interrupts ( void __iomem * acp_base )
{
rv_writel ( 0x01 , acp_base + mmACP_EXTERNAL_INTR_ENB ) ;
}
static void acp3x_disable_interrupts ( void __iomem * acp_base )
{
rv_writel ( ACP_EXT_INTR_STAT_CLEAR_MASK , acp_base +
mmACP_EXTERNAL_INTR_STAT ) ;
rv_writel ( 0x00 , acp_base + mmACP_EXTERNAL_INTR_CNTL ) ;
rv_writel ( 0x00 , acp_base + mmACP_EXTERNAL_INTR_ENB ) ;
}
2020-07-25 01:25:52 +05:30
static int acp3x_init ( struct acp3x_dev_data * adata )
2019-12-28 19:10:59 +05:30
{
2020-07-25 01:25:52 +05:30
void __iomem * acp3x_base = adata - > acp3x_base ;
2019-12-28 19:10:59 +05:30
int ret ;
/* power on */
2020-07-25 01:25:52 +05:30
ret = acp3x_power_on ( adata ) ;
2019-12-28 19:10:59 +05:30
if ( ret ) {
pr_err ( " ACP3x power on failed \n " ) ;
return ret ;
}
/* Reset */
ret = acp3x_reset ( acp3x_base ) ;
if ( ret ) {
pr_err ( " ACP3x reset failed \n " ) ;
return ret ;
}
2021-04-28 01:53:31 +05:30
acp3x_enable_interrupts ( acp3x_base ) ;
2019-12-28 19:10:59 +05:30
return 0 ;
}
static int acp3x_deinit ( void __iomem * acp3x_base )
{
int ret ;
2021-04-28 01:53:31 +05:30
acp3x_disable_interrupts ( acp3x_base ) ;
2019-12-28 19:10:59 +05:30
/* Reset */
ret = acp3x_reset ( acp3x_base ) ;
if ( ret ) {
pr_err ( " ACP3x reset failed \n " ) ;
return ret ;
}
return 0 ;
}
2018-11-12 11:04:53 +05:30
static int snd_acp3x_probe ( struct pci_dev * pci ,
const struct pci_device_id * pci_id )
{
struct acp3x_dev_data * adata ;
2019-12-05 19:07:26 +05:30
struct platform_device_info pdevinfo [ ACP3x_DEVS ] ;
2018-11-12 11:04:54 +05:30
unsigned int irqflags ;
2019-12-05 19:07:26 +05:30
int ret , i ;
u32 addr , val ;
2018-11-12 11:04:53 +05:30
2020-12-08 19:12:33 +01:00
/* Raven device detection */
if ( pci - > revision ! = 0x00 )
return - ENODEV ;
2018-11-12 11:04:53 +05:30
if ( pci_enable_device ( pci ) ) {
dev_err ( & pci - > dev , " pci_enable_device failed \n " ) ;
return - ENODEV ;
}
ret = pci_request_regions ( pci , " AMD ACP3x audio " ) ;
if ( ret < 0 ) {
dev_err ( & pci - > dev , " pci_request_regions failed \n " ) ;
goto disable_pci ;
}
adata = devm_kzalloc ( & pci - > dev , sizeof ( struct acp3x_dev_data ) ,
GFP_KERNEL ) ;
if ( ! adata ) {
ret = - ENOMEM ;
goto release_regions ;
}
ASoC: amd: Replacing MSI with Legacy IRQ model
When we try to play and capture simultaneously we see that
interrupts are genrated but our handler is not being acknowledged,
After investigating further more in detail on this issue we found
that IRQ delivery via MSI from the ACP IP is unreliable and so sometimes
interrupt generated will not be acknowledged so MSI model shouldn't be used
and using legacy IRQs will resolve interrupt handling issue.
This patch replaces MSI interrupt handling with legacy IRQ model.
Issue can be reproduced easily by running below python script:
import subprocess
import time
import threading
def do2():
cmd = 'aplay -f dat -D hw:2,1 /dev/zero -d 1'
subprocess.call(cmd, stdin=subprocess.PIPE,
stderr=subprocess.PIPE, shell=True)
print('Play Done')
def run():
for i in range(1000):
do2()
def do(i):
cmd = 'arecord -f dat -D hw:2,2 /dev/null -d 1'
subprocess.call(cmd, stdout=subprocess.PIPE,
stderr=subprocess.PIPE, shell=True)
print(datetime.datetime.now(), i)
t = threading.Thread(target=run)
t.start()
for i in range(1000):
do(i)
t.join()
After applying this patch issue is resolved.
Signed-off-by: Ravulapati Vishnu vardhan rao <Vishnuvardhanrao.Ravulapati@amd.com>
Link: https://lore.kernel.org/r/20201222115929.11222-1-Vishnuvardhanrao.Ravulapati@amd.com
Signed-off-by: Mark Brown <broonie@kernel.org>
2020-12-22 17:29:18 +05:30
irqflags = IRQF_SHARED ;
2018-11-12 11:04:54 +05:30
2018-11-12 11:04:53 +05:30
addr = pci_resource_start ( pci , 0 ) ;
2019-12-05 19:07:26 +05:30
adata - > acp3x_base = devm_ioremap ( & pci - > dev , addr ,
pci_resource_len ( pci , 0 ) ) ;
2018-11-12 11:04:53 +05:30
if ( ! adata - > acp3x_base ) {
ret = - ENOMEM ;
ASoC: amd: Replacing MSI with Legacy IRQ model
When we try to play and capture simultaneously we see that
interrupts are genrated but our handler is not being acknowledged,
After investigating further more in detail on this issue we found
that IRQ delivery via MSI from the ACP IP is unreliable and so sometimes
interrupt generated will not be acknowledged so MSI model shouldn't be used
and using legacy IRQs will resolve interrupt handling issue.
This patch replaces MSI interrupt handling with legacy IRQ model.
Issue can be reproduced easily by running below python script:
import subprocess
import time
import threading
def do2():
cmd = 'aplay -f dat -D hw:2,1 /dev/zero -d 1'
subprocess.call(cmd, stdin=subprocess.PIPE,
stderr=subprocess.PIPE, shell=True)
print('Play Done')
def run():
for i in range(1000):
do2()
def do(i):
cmd = 'arecord -f dat -D hw:2,2 /dev/null -d 1'
subprocess.call(cmd, stdout=subprocess.PIPE,
stderr=subprocess.PIPE, shell=True)
print(datetime.datetime.now(), i)
t = threading.Thread(target=run)
t.start()
for i in range(1000):
do(i)
t.join()
After applying this patch issue is resolved.
Signed-off-by: Ravulapati Vishnu vardhan rao <Vishnuvardhanrao.Ravulapati@amd.com>
Link: https://lore.kernel.org/r/20201222115929.11222-1-Vishnuvardhanrao.Ravulapati@amd.com
Signed-off-by: Mark Brown <broonie@kernel.org>
2020-12-22 17:29:18 +05:30
goto release_regions ;
2018-11-12 11:04:53 +05:30
}
pci_set_master ( pci ) ;
pci_set_drvdata ( pci , adata ) ;
2020-07-25 01:25:52 +05:30
/* Save ACP_PME_EN state */
adata - > pme_en = rv_readl ( adata - > acp3x_base + mmACP_PME_EN ) ;
ret = acp3x_init ( adata ) ;
2019-12-28 19:10:59 +05:30
if ( ret )
ASoC: amd: Replacing MSI with Legacy IRQ model
When we try to play and capture simultaneously we see that
interrupts are genrated but our handler is not being acknowledged,
After investigating further more in detail on this issue we found
that IRQ delivery via MSI from the ACP IP is unreliable and so sometimes
interrupt generated will not be acknowledged so MSI model shouldn't be used
and using legacy IRQs will resolve interrupt handling issue.
This patch replaces MSI interrupt handling with legacy IRQ model.
Issue can be reproduced easily by running below python script:
import subprocess
import time
import threading
def do2():
cmd = 'aplay -f dat -D hw:2,1 /dev/zero -d 1'
subprocess.call(cmd, stdin=subprocess.PIPE,
stderr=subprocess.PIPE, shell=True)
print('Play Done')
def run():
for i in range(1000):
do2()
def do(i):
cmd = 'arecord -f dat -D hw:2,2 /dev/null -d 1'
subprocess.call(cmd, stdout=subprocess.PIPE,
stderr=subprocess.PIPE, shell=True)
print(datetime.datetime.now(), i)
t = threading.Thread(target=run)
t.start()
for i in range(1000):
do(i)
t.join()
After applying this patch issue is resolved.
Signed-off-by: Ravulapati Vishnu vardhan rao <Vishnuvardhanrao.Ravulapati@amd.com>
Link: https://lore.kernel.org/r/20201222115929.11222-1-Vishnuvardhanrao.Ravulapati@amd.com
Signed-off-by: Mark Brown <broonie@kernel.org>
2020-12-22 17:29:18 +05:30
goto release_regions ;
2018-11-12 11:04:54 +05:30
val = rv_readl ( adata - > acp3x_base + mmACP_I2S_PIN_CONFIG ) ;
switch ( val ) {
case I2S_MODE :
adata - > res = devm_kzalloc ( & pci - > dev ,
2019-12-05 19:07:26 +05:30
sizeof ( struct resource ) * 4 ,
2018-11-12 11:04:54 +05:30
GFP_KERNEL ) ;
if ( ! adata - > res ) {
ret = - ENOMEM ;
2019-12-28 19:10:59 +05:30
goto de_init ;
2018-11-12 11:04:54 +05:30
}
adata - > res [ 0 ] . name = " acp3x_i2s_iomem " ;
adata - > res [ 0 ] . flags = IORESOURCE_MEM ;
adata - > res [ 0 ] . start = addr ;
adata - > res [ 0 ] . end = addr + ( ACP3x_REG_END - ACP3x_REG_START ) ;
2019-12-05 19:07:26 +05:30
adata - > res [ 1 ] . name = " acp3x_i2s_sp " ;
adata - > res [ 1 ] . flags = IORESOURCE_MEM ;
adata - > res [ 1 ] . start = addr + ACP3x_I2STDM_REG_START ;
adata - > res [ 1 ] . end = addr + ACP3x_I2STDM_REG_END ;
adata - > res [ 2 ] . name = " acp3x_i2s_bt " ;
adata - > res [ 2 ] . flags = IORESOURCE_MEM ;
adata - > res [ 2 ] . start = addr + ACP3x_BT_TDM_REG_START ;
adata - > res [ 2 ] . end = addr + ACP3x_BT_TDM_REG_END ;
adata - > res [ 3 ] . name = " acp3x_i2s_irq " ;
adata - > res [ 3 ] . flags = IORESOURCE_IRQ ;
adata - > res [ 3 ] . start = pci - > irq ;
adata - > res [ 3 ] . end = adata - > res [ 3 ] . start ;
2018-11-12 11:04:54 +05:30
adata - > acp3x_audio_mode = ACP3x_I2S_MODE ;
memset ( & pdevinfo , 0 , sizeof ( pdevinfo ) ) ;
2019-12-05 19:07:26 +05:30
pdevinfo [ 0 ] . name = " acp3x_rv_i2s_dma " ;
pdevinfo [ 0 ] . id = 0 ;
pdevinfo [ 0 ] . parent = & pci - > dev ;
pdevinfo [ 0 ] . num_res = 4 ;
pdevinfo [ 0 ] . res = & adata - > res [ 0 ] ;
pdevinfo [ 0 ] . data = & irqflags ;
pdevinfo [ 0 ] . size_data = sizeof ( irqflags ) ;
pdevinfo [ 1 ] . name = " acp3x_i2s_playcap " ;
pdevinfo [ 1 ] . id = 0 ;
pdevinfo [ 1 ] . parent = & pci - > dev ;
pdevinfo [ 1 ] . num_res = 1 ;
pdevinfo [ 1 ] . res = & adata - > res [ 1 ] ;
pdevinfo [ 2 ] . name = " acp3x_i2s_playcap " ;
pdevinfo [ 2 ] . id = 1 ;
pdevinfo [ 2 ] . parent = & pci - > dev ;
pdevinfo [ 2 ] . num_res = 1 ;
2020-01-17 17:15:09 +05:30
pdevinfo [ 2 ] . res = & adata - > res [ 1 ] ;
pdevinfo [ 3 ] . name = " acp3x_i2s_playcap " ;
pdevinfo [ 3 ] . id = 2 ;
pdevinfo [ 3 ] . parent = & pci - > dev ;
pdevinfo [ 3 ] . num_res = 1 ;
pdevinfo [ 3 ] . res = & adata - > res [ 2 ] ;
2019-12-28 19:10:59 +05:30
for ( i = 0 ; i < ACP3x_DEVS ; i + + ) {
2019-12-05 19:07:26 +05:30
adata - > pdev [ i ] =
platform_device_register_full ( & pdevinfo [ i ] ) ;
if ( IS_ERR ( adata - > pdev [ i ] ) ) {
dev_err ( & pci - > dev , " cannot register %s device \n " ,
pdevinfo [ i ] . name ) ;
ret = PTR_ERR ( adata - > pdev [ i ] ) ;
goto unregister_devs ;
}
2018-11-12 11:04:54 +05:30
}
break ;
default :
2020-10-23 23:37:17 +05:30
dev_info ( & pci - > dev , " ACP audio mode : %d \n " , val ) ;
2020-11-30 16:05:07 +00:00
break ;
2018-11-12 11:04:54 +05:30
}
2019-12-28 19:10:59 +05:30
pm_runtime_set_autosuspend_delay ( & pci - > dev , 2000 ) ;
pm_runtime_use_autosuspend ( & pci - > dev ) ;
pm_runtime_put_noidle ( & pci - > dev ) ;
pm_runtime_allow ( & pci - > dev ) ;
2018-11-12 11:04:53 +05:30
return 0 ;
2019-12-05 19:07:26 +05:30
unregister_devs :
if ( val = = I2S_MODE )
2019-12-28 19:10:59 +05:30
for ( i = 0 ; i < ACP3x_DEVS ; i + + )
2019-12-05 19:07:26 +05:30
platform_device_unregister ( adata - > pdev [ i ] ) ;
2019-12-28 19:10:59 +05:30
de_init :
if ( acp3x_deinit ( adata - > acp3x_base ) )
dev_err ( & pci - > dev , " ACP de-init failed \n " ) ;
2018-11-12 11:04:53 +05:30
release_regions :
pci_release_regions ( pci ) ;
disable_pci :
pci_disable_device ( pci ) ;
return ret ;
}
2019-12-28 19:10:59 +05:30
static int snd_acp3x_suspend ( struct device * dev )
{
int ret ;
struct acp3x_dev_data * adata ;
adata = dev_get_drvdata ( dev ) ;
ret = acp3x_deinit ( adata - > acp3x_base ) ;
if ( ret )
dev_err ( dev , " ACP de-init failed \n " ) ;
else
dev_dbg ( dev , " ACP de-initialized \n " ) ;
return 0 ;
}
static int snd_acp3x_resume ( struct device * dev )
{
int ret ;
struct acp3x_dev_data * adata ;
adata = dev_get_drvdata ( dev ) ;
2020-07-25 01:25:52 +05:30
ret = acp3x_init ( adata ) ;
2019-12-28 19:10:59 +05:30
if ( ret ) {
dev_err ( dev , " ACP init failed \n " ) ;
return ret ;
}
return 0 ;
}
static const struct dev_pm_ops acp3x_pm = {
. runtime_suspend = snd_acp3x_suspend ,
. runtime_resume = snd_acp3x_resume ,
. resume = snd_acp3x_resume ,
} ;
2018-11-12 11:04:53 +05:30
static void snd_acp3x_remove ( struct pci_dev * pci )
{
2019-12-28 19:10:59 +05:30
struct acp3x_dev_data * adata ;
int i , ret ;
2018-11-12 11:04:53 +05:30
2019-12-28 19:10:59 +05:30
adata = pci_get_drvdata ( pci ) ;
2019-12-05 19:07:26 +05:30
if ( adata - > acp3x_audio_mode = = ACP3x_I2S_MODE ) {
2019-12-28 19:10:59 +05:30
for ( i = 0 ; i < ACP3x_DEVS ; i + + )
2019-12-05 19:07:26 +05:30
platform_device_unregister ( adata - > pdev [ i ] ) ;
}
2019-12-28 19:10:59 +05:30
ret = acp3x_deinit ( adata - > acp3x_base ) ;
if ( ret )
dev_err ( & pci - > dev , " ACP de-init failed \n " ) ;
2020-06-30 14:52:38 +05:30
pm_runtime_forbid ( & pci - > dev ) ;
2019-12-28 19:10:59 +05:30
pm_runtime_get_noresume ( & pci - > dev ) ;
2018-11-12 11:04:53 +05:30
pci_release_regions ( pci ) ;
pci_disable_device ( pci ) ;
}
static const struct pci_device_id snd_acp3x_ids [ ] = {
{ PCI_DEVICE ( PCI_VENDOR_ID_AMD , 0x15e2 ) ,
. class = PCI_CLASS_MULTIMEDIA_OTHER < < 8 ,
. class_mask = 0xffffff } ,
{ 0 , } ,
} ;
MODULE_DEVICE_TABLE ( pci , snd_acp3x_ids ) ;
static struct pci_driver acp3x_driver = {
. name = KBUILD_MODNAME ,
. id_table = snd_acp3x_ids ,
. probe = snd_acp3x_probe ,
. remove = snd_acp3x_remove ,
2019-12-28 19:10:59 +05:30
. driver = {
. pm = & acp3x_pm ,
}
2018-11-12 11:04:53 +05:30
} ;
module_pci_driver ( acp3x_driver ) ;
2019-12-05 19:07:26 +05:30
MODULE_AUTHOR ( " Vishnuvardhanrao.Ravulapati@amd.com " ) ;
2018-11-12 11:04:53 +05:30
MODULE_AUTHOR ( " Maruthi.Bayyavarapu@amd.com " ) ;
MODULE_DESCRIPTION ( " AMD ACP3x PCI driver " ) ;
MODULE_LICENSE ( " GPL v2 " ) ;