2014-12-22 17:26:51 -05:00
/*
* Copyright 2014 Advanced Micro Devices , Inc .
*
* Permission is hereby granted , free of charge , to any person obtaining a
* copy of this software and associated documentation files ( the " Software " ) ,
* to deal in the Software without restriction , including without limitation
* the rights to use , copy , modify , merge , publish , distribute , sublicense ,
* and / or sell copies of the Software , and to permit persons to whom the
* Software is furnished to do so , subject to the following conditions :
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software .
*
* THE SOFTWARE IS PROVIDED " AS IS " , WITHOUT WARRANTY OF ANY KIND , EXPRESS OR
* IMPLIED , INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY ,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT . IN NO EVENT SHALL
* THE COPYRIGHT HOLDER ( S ) OR AUTHOR ( S ) BE LIABLE FOR ANY CLAIM , DAMAGES OR
* OTHER LIABILITY , WHETHER IN AN ACTION OF CONTRACT , TORT OR OTHERWISE ,
* ARISING FROM , OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
* OTHER DEALINGS IN THE SOFTWARE .
*
* Authors : Slava Grigorev < slava . grigorev @ amd . com >
*/
2014-12-01 13:49:39 -05:00
2014-12-22 17:26:51 -05:00
# ifndef __RADEON_AUDIO_H__
# define __RADEON_AUDIO_H__
2014-12-01 13:49:39 -05:00
# include <linux/types.h>
# define RREG32_ENDPOINT(block, reg) \
radeon_audio_endpoint_rreg ( rdev , ( block ) , ( reg ) )
# define WREG32_ENDPOINT(block, reg, v) \
radeon_audio_endpoint_wreg ( rdev , ( block ) , ( reg ) , ( v ) )
struct radeon_audio_basic_funcs
{
u32 ( * endpoint_rreg ) ( struct radeon_device * rdev , u32 offset , u32 reg ) ;
void ( * endpoint_wreg ) ( struct radeon_device * rdev ,
u32 offset , u32 reg , u32 v ) ;
2014-12-03 15:29:53 -05:00
void ( * enable ) ( struct radeon_device * rdev ,
struct r600_audio_pin * pin , u8 enable_mask ) ;
2014-12-01 13:49:39 -05:00
} ;
struct radeon_audio_funcs
{
2014-12-02 17:27:29 -05:00
void ( * select_pin ) ( struct drm_encoder * encoder ) ;
2014-12-02 15:22:43 -05:00
struct r600_audio_pin * ( * get_pin ) ( struct radeon_device * rdev ) ;
2014-12-02 11:20:48 -05:00
void ( * write_latency_fields ) ( struct drm_encoder * encoder ,
struct drm_connector * connector , struct drm_display_mode * mode ) ;
2015-01-22 10:41:55 -05:00
void ( * write_sad_regs ) ( struct drm_encoder * encoder ,
struct cea_sad * sads , int sad_count ) ;
2014-12-01 18:02:57 -05:00
void ( * write_speaker_allocation ) ( struct drm_encoder * encoder ,
u8 * sadb , int sad_count ) ;
2014-12-05 13:38:31 -05:00
void ( * set_dto ) ( struct radeon_device * rdev ,
struct radeon_crtc * crtc , unsigned int clock ) ;
2014-12-06 20:19:16 -05:00
void ( * update_acr ) ( struct drm_encoder * encoder , long offset ,
const struct radeon_hdmi_acr * acr ) ;
2015-01-20 19:20:52 -05:00
void ( * set_vbi_packet ) ( struct drm_encoder * encoder , u32 offset ) ;
2014-12-08 16:25:37 -05:00
void ( * set_color_depth ) ( struct drm_encoder * encoder , u32 offset , int bpc ) ;
2014-12-08 18:28:33 -05:00
void ( * set_avi_packet ) ( struct radeon_device * rdev , u32 offset ,
unsigned char * buffer , size_t size ) ;
2014-12-09 16:44:18 -05:00
void ( * set_audio_packet ) ( struct drm_encoder * encoder , u32 offset ) ;
2014-12-09 17:17:35 -05:00
void ( * set_mute ) ( struct drm_encoder * encoder , u32 offset , bool mute ) ;
2014-12-10 10:43:51 -05:00
void ( * mode_set ) ( struct drm_encoder * encoder ,
struct drm_display_mode * mode ) ;
2014-12-10 14:52:43 -05:00
void ( * dpms ) ( struct drm_encoder * encoder , bool mode ) ;
2014-12-01 13:49:39 -05:00
} ;
2014-12-22 17:26:51 -05:00
int radeon_audio_init ( struct radeon_device * rdev ) ;
2014-12-01 13:49:39 -05:00
void radeon_audio_detect ( struct drm_connector * connector ,
2015-07-23 10:01:09 -04:00
struct drm_encoder * encoder ,
enum drm_connector_status status ) ;
2014-12-01 13:49:39 -05:00
u32 radeon_audio_endpoint_rreg ( struct radeon_device * rdev ,
u32 offset , u32 reg ) ;
void radeon_audio_endpoint_wreg ( struct radeon_device * rdev ,
u32 offset , u32 reg , u32 v ) ;
2014-12-02 15:22:43 -05:00
struct r600_audio_pin * radeon_audio_get_pin ( struct drm_encoder * encoder ) ;
2014-12-03 17:07:01 -05:00
void radeon_audio_fini ( struct radeon_device * rdev ) ;
2014-12-10 10:43:51 -05:00
void radeon_audio_mode_set ( struct drm_encoder * encoder ,
2014-12-08 18:28:33 -05:00
struct drm_display_mode * mode ) ;
2014-12-10 14:52:43 -05:00
void radeon_audio_dpms ( struct drm_encoder * encoder , int mode ) ;
2016-01-26 16:56:25 -05:00
unsigned int radeon_audio_decode_dfs_div ( unsigned int div ) ;
2014-12-22 17:26:51 -05:00
2020-11-16 17:29:33 +00:00
void dce3_2_afmt_write_sad_regs ( struct drm_encoder * encoder ,
struct cea_sad * sads , int sad_count ) ;
void dce3_2_afmt_hdmi_write_speaker_allocation ( struct drm_encoder * encoder ,
u8 * sadb , int sad_count ) ;
void dce3_2_afmt_dp_write_speaker_allocation ( struct drm_encoder * encoder ,
u8 * sadb , int sad_count ) ;
void dce3_2_audio_set_dto ( struct radeon_device * rdev ,
struct radeon_crtc * crtc , unsigned int clock ) ;
void dce3_2_hdmi_update_acr ( struct drm_encoder * encoder , long offset ,
const struct radeon_hdmi_acr * acr ) ;
void dce3_2_set_audio_packet ( struct drm_encoder * encoder , u32 offset ) ;
void dce3_2_set_mute ( struct drm_encoder * encoder , u32 offset , bool mute ) ;
2014-12-22 17:26:51 -05:00
# endif