2019-05-29 07:17:59 -07:00
// SPDX-License-Identifier: GPL-2.0-only
2015-06-11 14:11:48 +05:30
/*
* hdac - ext - controller . c - HD - audio extended controller functions .
*
* Copyright ( C ) 2014 - 2015 Intel Corp
* Author : Jeeja KP < jeeja . kp @ intel . com >
* ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~
*
* ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~
*/
# include <linux/delay.h>
# include <linux/slab.h>
# include <sound/hda_register.h>
# include <sound/hdaudio_ext.h>
/*
* maximum HDAC capablities we should parse to avoid endless looping :
* currently we have 4 extended caps , so this is future proof for now .
* extend when this limit is seen meeting in real HW
*/
# define HDAC_MAX_CAPS 10
/*
* processing pipe helpers - these helpers are useful for dealing with HDA
* new capability of processing pipelines
*/
/**
* snd_hdac_ext_bus_ppcap_enable - enable / disable processing pipe capability
2020-01-13 14:56:38 -06:00
* @ bus : the pointer to HDAC bus object
2015-06-11 14:11:48 +05:30
* @ enable : flag to turn on / off the capability
*/
2018-06-01 22:53:50 -05:00
void snd_hdac_ext_bus_ppcap_enable ( struct hdac_bus * bus , bool enable )
2015-06-11 14:11:48 +05:30
{
2016-08-04 15:46:01 +05:30
if ( ! bus - > ppcap ) {
2015-06-11 14:11:48 +05:30
dev_err ( bus - > dev , " Address of PP capability is NULL " ) ;
return ;
}
if ( enable )
2018-09-28 17:38:59 +08:00
snd_hdac_updatel ( bus - > ppcap , AZX_REG_PP_PPCTL ,
AZX_PPCTL_GPROCEN , AZX_PPCTL_GPROCEN ) ;
2015-06-11 14:11:48 +05:30
else
2018-09-28 17:38:59 +08:00
snd_hdac_updatel ( bus - > ppcap , AZX_REG_PP_PPCTL ,
AZX_PPCTL_GPROCEN , 0 ) ;
2015-06-11 14:11:48 +05:30
}
EXPORT_SYMBOL_GPL ( snd_hdac_ext_bus_ppcap_enable ) ;
/**
* snd_hdac_ext_bus_ppcap_int_enable - ppcap interrupt enable / disable
2020-01-13 14:56:38 -06:00
* @ bus : the pointer to HDAC bus object
2015-06-11 14:11:48 +05:30
* @ enable : flag to enable / disable interrupt
*/
2018-06-01 22:53:50 -05:00
void snd_hdac_ext_bus_ppcap_int_enable ( struct hdac_bus * bus , bool enable )
2015-06-11 14:11:48 +05:30
{
2016-08-04 15:46:01 +05:30
if ( ! bus - > ppcap ) {
2015-06-11 14:11:48 +05:30
dev_err ( bus - > dev , " Address of PP capability is NULL \n " ) ;
return ;
}
if ( enable )
2018-09-28 17:38:59 +08:00
snd_hdac_updatel ( bus - > ppcap , AZX_REG_PP_PPCTL ,
AZX_PPCTL_PIE , AZX_PPCTL_PIE ) ;
2015-06-11 14:11:48 +05:30
else
2018-09-28 17:38:59 +08:00
snd_hdac_updatel ( bus - > ppcap , AZX_REG_PP_PPCTL ,
AZX_PPCTL_PIE , 0 ) ;
2015-06-11 14:11:48 +05:30
}
EXPORT_SYMBOL_GPL ( snd_hdac_ext_bus_ppcap_int_enable ) ;
/*
* Multilink helpers - these helpers are useful for dealing with HDA
* new multilink capability
*/
/**
* snd_hdac_ext_bus_get_ml_capabilities - get multilink capability
2020-01-13 14:56:38 -06:00
* @ bus : the pointer to HDAC bus object
2015-06-11 14:11:48 +05:30
*
* This will parse all links and read the mlink capabilities and add them
* in hlink_list of extended hdac bus
* Note : this will be freed on bus exit by driver
*/
2018-06-01 22:53:50 -05:00
int snd_hdac_ext_bus_get_ml_capabilities ( struct hdac_bus * bus )
2015-06-11 14:11:48 +05:30
{
int idx ;
u32 link_count ;
struct hdac_ext_link * hlink ;
2016-08-04 15:46:01 +05:30
link_count = readl ( bus - > mlcap + AZX_REG_ML_MLCD ) + 1 ;
2015-06-11 14:11:48 +05:30
dev_dbg ( bus - > dev , " In %s Link count: %d \n " , __func__ , link_count ) ;
for ( idx = 0 ; idx < link_count ; idx + + ) {
hlink = kzalloc ( sizeof ( * hlink ) , GFP_KERNEL ) ;
if ( ! hlink )
return - ENOMEM ;
hlink - > index = idx ;
hlink - > bus = bus ;
2016-08-04 15:46:01 +05:30
hlink - > ml_addr = bus - > mlcap + AZX_ML_BASE +
2015-06-11 14:11:48 +05:30
( AZX_ML_INTERVAL * idx ) ;
2015-08-21 21:36:17 +05:30
hlink - > lcaps = readl ( hlink - > ml_addr + AZX_REG_ML_LCAP ) ;
hlink - > lsdiid = readw ( hlink - > ml_addr + AZX_REG_ML_LSDIID ) ;
2015-06-11 14:11:48 +05:30
2016-05-12 08:58:53 +05:30
/* since link in On, update the ref */
hlink - > ref_count = 1 ;
2018-06-01 22:53:50 -05:00
list_add_tail ( & hlink - > list , & bus - > hlink_list ) ;
2015-06-11 14:11:48 +05:30
}
return 0 ;
}
EXPORT_SYMBOL_GPL ( snd_hdac_ext_bus_get_ml_capabilities ) ;
2015-06-17 11:20:17 +05:30
/**
* snd_hdac_link_free_all - free hdac extended link objects
*
2020-01-13 14:56:38 -06:00
* @ bus : the pointer to HDAC bus object
2015-06-17 11:20:17 +05:30
*/
2018-06-01 22:53:50 -05:00
void snd_hdac_link_free_all ( struct hdac_bus * bus )
2015-06-17 11:20:17 +05:30
{
struct hdac_ext_link * l ;
2018-06-01 22:53:50 -05:00
while ( ! list_empty ( & bus - > hlink_list ) ) {
l = list_first_entry ( & bus - > hlink_list , struct hdac_ext_link , list ) ;
2015-06-17 11:20:17 +05:30
list_del ( & l - > list ) ;
kfree ( l ) ;
}
}
EXPORT_SYMBOL_GPL ( snd_hdac_link_free_all ) ;
2015-06-11 14:11:48 +05:30
/**
* snd_hdac_ext_bus_get_link_index - get link based on codec name
2020-01-13 14:56:38 -06:00
* @ bus : the pointer to HDAC bus object
2015-06-11 14:11:48 +05:30
* @ codec_name : codec name
*/
2018-06-01 22:53:50 -05:00
struct hdac_ext_link * snd_hdac_ext_bus_get_link ( struct hdac_bus * bus ,
2015-06-11 14:11:48 +05:30
const char * codec_name )
{
int i ;
struct hdac_ext_link * hlink = NULL ;
int bus_idx , addr ;
if ( sscanf ( codec_name , " ehdaudio%dD%d " , & bus_idx , & addr ) ! = 2 )
return NULL ;
2018-06-01 22:53:50 -05:00
if ( bus - > idx ! = bus_idx )
2015-06-11 14:11:48 +05:30
return NULL ;
2020-11-03 13:18:07 +03:00
if ( addr < 0 | | addr > 31 )
return NULL ;
2015-06-11 14:11:48 +05:30
2018-06-01 22:53:50 -05:00
list_for_each_entry ( hlink , & bus - > hlink_list , list ) {
2015-06-11 14:11:48 +05:30
for ( i = 0 ; i < HDA_MAX_CODECS ; i + + ) {
if ( hlink - > lsdiid & ( 0x1 < < addr ) )
return hlink ;
}
}
return NULL ;
}
EXPORT_SYMBOL_GPL ( snd_hdac_ext_bus_get_link ) ;
static int check_hdac_link_power_active ( struct hdac_ext_link * link , bool enable )
{
int timeout ;
u32 val ;
2017-04-06 19:18:20 +08:00
int mask = ( 1 < < AZX_MLCTL_CPA_SHIFT ) ;
2015-06-11 14:11:48 +05:30
udelay ( 3 ) ;
2015-12-18 15:12:01 +05:30
timeout = 150 ;
2015-06-11 14:11:48 +05:30
do {
2015-08-21 21:36:17 +05:30
val = readl ( link - > ml_addr + AZX_REG_ML_LCTL ) ;
2015-06-11 14:11:48 +05:30
if ( enable ) {
2017-04-06 19:18:20 +08:00
if ( ( ( val & mask ) > > AZX_MLCTL_CPA_SHIFT ) )
2015-06-11 14:11:48 +05:30
return 0 ;
} else {
2017-04-06 19:18:20 +08:00
if ( ! ( ( val & mask ) > > AZX_MLCTL_CPA_SHIFT ) )
2015-06-11 14:11:48 +05:30
return 0 ;
}
udelay ( 3 ) ;
} while ( - - timeout ) ;
return - EIO ;
}
/**
* snd_hdac_ext_bus_link_power_up - power up hda link
* @ link : HD - audio extended link
*/
int snd_hdac_ext_bus_link_power_up ( struct hdac_ext_link * link )
{
2018-09-28 17:38:59 +08:00
snd_hdac_updatel ( link - > ml_addr , AZX_REG_ML_LCTL ,
AZX_MLCTL_SPA , AZX_MLCTL_SPA ) ;
2015-06-11 14:11:48 +05:30
return check_hdac_link_power_active ( link , true ) ;
}
EXPORT_SYMBOL_GPL ( snd_hdac_ext_bus_link_power_up ) ;
/**
* snd_hdac_ext_bus_link_power_down - power down hda link
* @ link : HD - audio extended link
*/
int snd_hdac_ext_bus_link_power_down ( struct hdac_ext_link * link )
{
2015-08-21 21:36:17 +05:30
snd_hdac_updatel ( link - > ml_addr , AZX_REG_ML_LCTL , AZX_MLCTL_SPA , 0 ) ;
2015-06-11 14:11:48 +05:30
return check_hdac_link_power_active ( link , false ) ;
}
EXPORT_SYMBOL_GPL ( snd_hdac_ext_bus_link_power_down ) ;
2015-08-21 21:36:18 +05:30
2015-12-18 15:12:02 +05:30
/**
* snd_hdac_ext_bus_link_power_up_all - power up all hda link
2020-01-13 14:56:38 -06:00
* @ bus : the pointer to HDAC bus object
2015-12-18 15:12:02 +05:30
*/
2018-06-01 22:53:50 -05:00
int snd_hdac_ext_bus_link_power_up_all ( struct hdac_bus * bus )
2015-12-18 15:12:02 +05:30
{
struct hdac_ext_link * hlink = NULL ;
int ret ;
2018-06-01 22:53:50 -05:00
list_for_each_entry ( hlink , & bus - > hlink_list , list ) {
2018-09-28 17:38:59 +08:00
snd_hdac_updatel ( hlink - > ml_addr , AZX_REG_ML_LCTL ,
AZX_MLCTL_SPA , AZX_MLCTL_SPA ) ;
2015-12-18 15:12:02 +05:30
ret = check_hdac_link_power_active ( hlink , true ) ;
if ( ret < 0 )
return ret ;
}
return 0 ;
}
EXPORT_SYMBOL_GPL ( snd_hdac_ext_bus_link_power_up_all ) ;
2015-08-21 21:36:18 +05:30
/**
* snd_hdac_ext_bus_link_power_down_all - power down all hda link
2020-01-13 14:56:38 -06:00
* @ bus : the pointer to HDAC bus object
2015-08-21 21:36:18 +05:30
*/
2018-06-01 22:53:50 -05:00
int snd_hdac_ext_bus_link_power_down_all ( struct hdac_bus * bus )
2015-08-21 21:36:18 +05:30
{
struct hdac_ext_link * hlink = NULL ;
int ret ;
2018-06-01 22:53:50 -05:00
list_for_each_entry ( hlink , & bus - > hlink_list , list ) {
2018-09-28 17:38:59 +08:00
snd_hdac_updatel ( hlink - > ml_addr , AZX_REG_ML_LCTL ,
AZX_MLCTL_SPA , 0 ) ;
2015-08-21 21:36:18 +05:30
ret = check_hdac_link_power_active ( hlink , false ) ;
if ( ret < 0 )
return ret ;
}
return 0 ;
}
EXPORT_SYMBOL_GPL ( snd_hdac_ext_bus_link_power_down_all ) ;
2016-05-12 08:58:53 +05:30
2018-06-01 22:53:50 -05:00
int snd_hdac_ext_bus_link_get ( struct hdac_bus * bus ,
2016-05-12 08:58:53 +05:30
struct hdac_ext_link * link )
{
2020-02-06 22:02:21 +02:00
unsigned long codec_mask ;
2016-05-12 08:58:53 +05:30
int ret = 0 ;
2018-06-01 22:53:50 -05:00
mutex_lock ( & bus - > lock ) ;
2016-05-12 08:58:53 +05:30
/*
* if we move from 0 to 1 , count will be 1 so power up this link
* as well , also check the dma status and trigger that
*/
if ( + + link - > ref_count = = 1 ) {
2018-06-01 22:53:50 -05:00
if ( ! bus - > cmd_dma_state ) {
snd_hdac_bus_init_cmd_io ( bus ) ;
bus - > cmd_dma_state = true ;
2016-05-12 08:58:53 +05:30
}
ret = snd_hdac_ext_bus_link_power_up ( link ) ;
2018-06-01 22:54:00 -05:00
2019-09-30 09:29:45 -05:00
/*
* clear the register to invalidate all the output streams
*/
snd_hdac_updatew ( link - > ml_addr , AZX_REG_ML_LOSIDV ,
ML_LOSIDV_STREAM_MASK , 0 ) ;
2018-06-01 22:54:00 -05:00
/*
* wait for 521u sec for codec to report status
* HDA spec section 4.3 - Codec Discovery
*/
udelay ( 521 ) ;
2020-02-06 22:02:21 +02:00
codec_mask = snd_hdac_chip_readw ( bus , STATESTS ) ;
dev_dbg ( bus - > dev , " codec_mask = 0x%lx \n " , codec_mask ) ;
snd_hdac_chip_writew ( bus , STATESTS , codec_mask ) ;
if ( ! bus - > codec_mask )
bus - > codec_mask = codec_mask ;
2016-05-12 08:58:53 +05:30
}
2018-06-01 22:53:50 -05:00
mutex_unlock ( & bus - > lock ) ;
2016-05-12 08:58:53 +05:30
return ret ;
}
EXPORT_SYMBOL_GPL ( snd_hdac_ext_bus_link_get ) ;
2018-06-01 22:53:50 -05:00
int snd_hdac_ext_bus_link_put ( struct hdac_bus * bus ,
2016-05-12 08:58:53 +05:30
struct hdac_ext_link * link )
{
int ret = 0 ;
struct hdac_ext_link * hlink ;
bool link_up = false ;
2018-06-01 22:53:50 -05:00
mutex_lock ( & bus - > lock ) ;
2016-05-12 08:58:53 +05:30
/*
* if we move from 1 to 0 , count will be 0
* so power down this link as well
*/
if ( - - link - > ref_count = = 0 ) {
ret = snd_hdac_ext_bus_link_power_down ( link ) ;
/*
* now check if all links are off , if so turn off
* cmd dma as well
*/
2018-06-01 22:53:50 -05:00
list_for_each_entry ( hlink , & bus - > hlink_list , list ) {
2016-05-12 08:58:53 +05:30
if ( hlink - > ref_count ) {
link_up = true ;
break ;
}
}
if ( ! link_up ) {
2018-06-01 22:53:50 -05:00
snd_hdac_bus_stop_cmd_io ( bus ) ;
bus - > cmd_dma_state = false ;
2016-05-12 08:58:53 +05:30
}
}
2018-06-01 22:53:50 -05:00
mutex_unlock ( & bus - > lock ) ;
2016-05-12 08:58:53 +05:30
return ret ;
}
EXPORT_SYMBOL_GPL ( snd_hdac_ext_bus_link_put ) ;
2021-02-05 20:46:28 +02:00
static void hdac_ext_codec_link_up ( struct hdac_device * codec )
{
const char * devname = dev_name ( & codec - > dev ) ;
struct hdac_ext_link * hlink =
snd_hdac_ext_bus_get_link ( codec - > bus , devname ) ;
if ( hlink )
snd_hdac_ext_bus_link_get ( codec - > bus , hlink ) ;
}
static void hdac_ext_codec_link_down ( struct hdac_device * codec )
{
const char * devname = dev_name ( & codec - > dev ) ;
struct hdac_ext_link * hlink =
snd_hdac_ext_bus_get_link ( codec - > bus , devname ) ;
if ( hlink )
snd_hdac_ext_bus_link_put ( codec - > bus , hlink ) ;
}
void snd_hdac_ext_bus_link_power ( struct hdac_device * codec , bool enable )
{
struct hdac_bus * bus = codec - > bus ;
bool oldstate = test_bit ( codec - > addr , & bus - > codec_powered ) ;
if ( enable = = oldstate )
return ;
snd_hdac_bus_link_power ( codec , enable ) ;
if ( enable )
hdac_ext_codec_link_up ( codec ) ;
else
hdac_ext_codec_link_down ( codec ) ;
}
EXPORT_SYMBOL_GPL ( snd_hdac_ext_bus_link_power ) ;