diff options
author | Christian Koenig <deathsimple@vodafone.de> | 2009-10-11 17:49:13 -0400 |
---|---|---|
committer | Dave Airlie <airlied@redhat.com> | 2009-12-16 00:46:48 -0500 |
commit | dafc3bd515d6079406986f7748b48adb3c7170f2 (patch) | |
tree | e59a56d8a29a1823f197b2fd3b9f61b13a317b3a /drivers/gpu/drm/radeon/radeon_drv.c | |
parent | 7923c615b811945a9d9f456c92a7a32c34167458 (diff) |
drm/radeon/kms: HDMI support for R600 KMS
Adding basic HDMI support for R600 KMS, ported from radeonhd ddx.
[airlied:- checkpatch cleanups]
Signed-off-by: Christian Koenig <deathsimple@vodafone.de>
Signed-off-by: Dave Airlie <airlied@redhat.com>
Diffstat (limited to 'drivers/gpu/drm/radeon/radeon_drv.c')
-rw-r--r-- | drivers/gpu/drm/radeon/radeon_drv.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/drivers/gpu/drm/radeon/radeon_drv.c b/drivers/gpu/drm/radeon/radeon_drv.c index c5c45e626d74..dbd56ef82f9c 100644 --- a/drivers/gpu/drm/radeon/radeon_drv.c +++ b/drivers/gpu/drm/radeon/radeon_drv.c | |||
@@ -87,6 +87,7 @@ int radeon_testing = 0; | |||
87 | int radeon_connector_table = 0; | 87 | int radeon_connector_table = 0; |
88 | int radeon_tv = 1; | 88 | int radeon_tv = 1; |
89 | int radeon_new_pll = 1; | 89 | int radeon_new_pll = 1; |
90 | int radeon_audio = 1; | ||
90 | 91 | ||
91 | MODULE_PARM_DESC(no_wb, "Disable AGP writeback for scratch registers"); | 92 | MODULE_PARM_DESC(no_wb, "Disable AGP writeback for scratch registers"); |
92 | module_param_named(no_wb, radeon_no_wb, int, 0444); | 93 | module_param_named(no_wb, radeon_no_wb, int, 0444); |
@@ -124,6 +125,9 @@ module_param_named(tv, radeon_tv, int, 0444); | |||
124 | MODULE_PARM_DESC(new_pll, "Select new PLL code for AVIVO chips"); | 125 | MODULE_PARM_DESC(new_pll, "Select new PLL code for AVIVO chips"); |
125 | module_param_named(new_pll, radeon_new_pll, int, 0444); | 126 | module_param_named(new_pll, radeon_new_pll, int, 0444); |
126 | 127 | ||
128 | MODULE_PARM_DESC(audio, "Audio enable (0 = disable)"); | ||
129 | module_param_named(audio, radeon_audio, int, 0444); | ||
130 | |||
127 | static int radeon_suspend(struct drm_device *dev, pm_message_t state) | 131 | static int radeon_suspend(struct drm_device *dev, pm_message_t state) |
128 | { | 132 | { |
129 | drm_radeon_private_t *dev_priv = dev->dev_private; | 133 | drm_radeon_private_t *dev_priv = dev->dev_private; |