radeon/audio: consolidate select_pin() functions
[linux-2.6-block.git] / drivers / gpu / drm / radeon / radeon_audio.h
CommitLineData
bfc1f97d
SG
1/*
2 * Copyright 2014 Advanced Micro Devices, Inc.
3 *
4 * Permission is hereby granted, free of charge, to any person obtaining a
5 * copy of this software and associated documentation files (the "Software"),
6 * to deal in the Software without restriction, including without limitation
7 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
8 * and/or sell copies of the Software, and to permit persons to whom the
9 * Software is furnished to do so, subject to the following conditions:
10 *
11 * The above copyright notice and this permission notice shall be included in
12 * all copies or substantial portions of the Software.
13 *
14 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
17 * THE COPYRIGHT HOLDER(S) OR AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR
18 * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
19 * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
20 * OTHER DEALINGS IN THE SOFTWARE.
21 *
22 * Authors: Slava Grigorev <slava.grigorev@amd.com>
23 */
1a626b68 24
bfc1f97d
SG
25#ifndef __RADEON_AUDIO_H__
26#define __RADEON_AUDIO_H__
27
1a626b68
SG
28#include <linux/types.h>
29
30#define RREG32_ENDPOINT(block, reg) \
31 radeon_audio_endpoint_rreg(rdev, (block), (reg))
32#define WREG32_ENDPOINT(block, reg, v) \
33 radeon_audio_endpoint_wreg(rdev, (block), (reg), (v))
34
35struct radeon_audio_basic_funcs
36{
37 u32 (*endpoint_rreg)(struct radeon_device *rdev, u32 offset, u32 reg);
38 void (*endpoint_wreg)(struct radeon_device *rdev,
39 u32 offset, u32 reg, u32 v);
40};
41
42struct radeon_audio_funcs
43{
88252d77 44 void (*select_pin)(struct drm_encoder *encoder);
3cdde027 45 struct r600_audio_pin* (*get_pin)(struct radeon_device *rdev);
87654f87
SG
46 void (*write_latency_fields)(struct drm_encoder *encoder,
47 struct drm_connector *connector, struct drm_display_mode *mode);
070a2e63
AD
48 void (*write_sad_regs)(struct drm_encoder *encoder,
49 struct cea_sad *sads, int sad_count);
00a9d4bc
SG
50 void (*write_speaker_allocation)(struct drm_encoder *encoder,
51 u8 *sadb, int sad_count);
1a626b68
SG
52};
53
bfc1f97d 54int radeon_audio_init(struct radeon_device *rdev);
1a626b68
SG
55void radeon_audio_detect(struct drm_connector *connector,
56 enum drm_connector_status status);
57u32 radeon_audio_endpoint_rreg(struct radeon_device *rdev,
58 u32 offset, u32 reg);
59void radeon_audio_endpoint_wreg(struct radeon_device *rdev,
60 u32 offset, u32 reg, u32 v);
070a2e63 61void radeon_audio_write_sad_regs(struct drm_encoder *encoder);
00a9d4bc 62void radeon_audio_write_speaker_allocation(struct drm_encoder *encoder);
87654f87
SG
63void radeon_audio_write_latency_fields(struct drm_encoder *encoder,
64 struct drm_display_mode *mode);
3cdde027 65struct r600_audio_pin *radeon_audio_get_pin(struct drm_encoder *encoder);
88252d77 66void radeon_audio_select_pin(struct drm_encoder *encoder);
bfc1f97d
SG
67
68#endif