r600_audio.c 5.3 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
/*
 * Copyright 2008 Advanced Micro Devices, Inc.
 * Copyright 2008 Red Hat Inc.
 * Copyright 2009 Christian König.
 *
 * 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: Christian König
 */
26
#include <drm/drmP.h>
27 28
#include "radeon.h"
#include "radeon_reg.h"
29
#include "radeon_asic.h"
30 31
#include "atom.h"

32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54
/*
 * check if enc_priv stores radeon_encoder_atom_dig
 */
static bool radeon_dig_encoder(struct drm_encoder *encoder)
{
	struct radeon_encoder *radeon_encoder = to_radeon_encoder(encoder);
	switch (radeon_encoder->encoder_id) {
	case ENCODER_OBJECT_ID_INTERNAL_LVDS:
	case ENCODER_OBJECT_ID_INTERNAL_TMDS1:
	case ENCODER_OBJECT_ID_INTERNAL_KLDSCP_TMDS1:
	case ENCODER_OBJECT_ID_INTERNAL_LVTM1:
	case ENCODER_OBJECT_ID_INTERNAL_DVO1:
	case ENCODER_OBJECT_ID_INTERNAL_KLDSCP_DVO1:
	case ENCODER_OBJECT_ID_INTERNAL_DDI:
	case ENCODER_OBJECT_ID_INTERNAL_UNIPHY:
	case ENCODER_OBJECT_ID_INTERNAL_KLDSCP_LVTMA:
	case ENCODER_OBJECT_ID_INTERNAL_UNIPHY1:
	case ENCODER_OBJECT_ID_INTERNAL_UNIPHY2:
		return true;
	}
	return false;
}

55 56 57 58 59
/*
 * check if the chipset is supported
 */
static int r600_audio_chipset_supported(struct radeon_device *rdev)
{
60
	return ASIC_IS_DCE2(rdev) && !ASIC_IS_DCE6(rdev);
61 62
}

63
struct r600_audio r600_audio_status(struct radeon_device *rdev)
64
{
65 66
	struct r600_audio status;
	uint32_t value;
67

68
	value = RREG32(R600_AUDIO_RATE_BPS_CHANNEL);
69

70 71
	/* number of channels */
	status.channels = (value & 0x7) + 1;
72

73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94
	/* bits per sample */
	switch ((value & 0xF0) >> 4) {
	case 0x0:
		status.bits_per_sample = 8;
		break;
	case 0x1:
		status.bits_per_sample = 16;
		break;
	case 0x2:
		status.bits_per_sample = 20;
		break;
	case 0x3:
		status.bits_per_sample = 24;
		break;
	case 0x4:
		status.bits_per_sample = 32;
		break;
	default:
		dev_err(rdev->dev, "Unknown bits per sample 0x%x, using 16\n",
			(int)value);
		status.bits_per_sample = 16;
	}
95

96
	/* current sampling rate in HZ */
97
	if (value & 0x4000)
98
		status.rate = 44100;
99
	else
100 101 102
		status.rate = 48000;
	status.rate *= ((value >> 11) & 0x7) + 1;
	status.rate /= ((value >> 8) & 0x7) + 1;
103

104
	value = RREG32(R600_AUDIO_STATUS_BITS);
105

106 107
	/* iec 60958 status bits */
	status.status_bits = value & 0xff;
108

109 110
	/* iec 60958 category code */
	status.category_code = (value >> 8) & 0xff;
111

112
	return status;
113 114 115 116 117
}

/*
 * update all hdmi interfaces with current audio parameters
 */
118
void r600_audio_update_hdmi(struct work_struct *work)
119
{
120 121
	struct radeon_device *rdev = container_of(work, struct radeon_device,
						  audio_work);
122
	struct drm_device *dev = rdev->ddev;
123
	struct r600_audio audio_status = r600_audio_status(rdev);
124
	struct drm_encoder *encoder;
125 126 127 128 129 130 131 132 133
	bool changed = false;

	if (rdev->audio_status.channels != audio_status.channels ||
	    rdev->audio_status.rate != audio_status.rate ||
	    rdev->audio_status.bits_per_sample != audio_status.bits_per_sample ||
	    rdev->audio_status.status_bits != audio_status.status_bits ||
	    rdev->audio_status.category_code != audio_status.category_code) {
		rdev->audio_status = audio_status;
		changed = true;
134 135 136
	}

	list_for_each_entry(encoder, &dev->mode_config.encoder_list, head) {
137 138
		if (!radeon_dig_encoder(encoder))
			continue;
139
		if (changed || r600_hdmi_buffer_status_changed(encoder))
140
			r600_hdmi_update_audio_settings(encoder);
141 142 143
	}
}

144 145 146 147 148
/*
 * turn on/off audio engine
 */
static void r600_audio_engine_enable(struct radeon_device *rdev, bool enable)
{
149
	u32 value = 0;
150
	DRM_INFO("%s audio support\n", enable ? "Enabling" : "Disabling");
151 152 153 154 155 156 157 158 159 160
	if (ASIC_IS_DCE4(rdev)) {
		if (enable) {
			value |= 0x81000000; /* Required to enable audio */
			value |= 0x0e1000f0; /* fglrx sets that too */
		}
		WREG32(EVERGREEN_AUDIO_ENABLE, value);
	} else {
		WREG32_P(R600_AUDIO_ENABLE,
			 enable ? 0x81000000 : 0x0, ~0x81000000);
	}
161
	rdev->audio_enabled = enable;
162 163
}

164
/*
165
 * initialize the audio vars
166 167 168
 */
int r600_audio_init(struct radeon_device *rdev)
{
169
	if (!radeon_audio || !r600_audio_chipset_supported(rdev))
170 171
		return 0;

172
	r600_audio_engine_enable(rdev, true);
173

174 175 176 177 178
	rdev->audio_status.channels = -1;
	rdev->audio_status.rate = -1;
	rdev->audio_status.bits_per_sample = -1;
	rdev->audio_status.status_bits = 0;
	rdev->audio_status.category_code = 0;
179

180 181 182
	return 0;
}

183 184 185 186 187 188
/*
 * release the audio timer
 * TODO: How to do this correctly on SMP systems?
 */
void r600_audio_fini(struct radeon_device *rdev)
{
189
	if (!rdev->audio_enabled)
190 191
		return;

192
	r600_audio_engine_enable(rdev, false);
193
}