forked from torvalds/linux
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'drm-intel-next-fixes' into drm-intel-fixes
- Loading branch information
Showing
6 changed files
with
50 additions
and
138 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -24,6 +24,7 @@ | |
* Eric Anholt <[email protected]> | ||
*/ | ||
|
||
#include <linux/dmi.h> | ||
#include <linux/i2c.h> | ||
#include <linux/slab.h> | ||
#include "drmP.h" | ||
|
@@ -540,13 +541,35 @@ static const struct drm_encoder_funcs intel_crt_enc_funcs = { | |
.destroy = intel_encoder_destroy, | ||
}; | ||
|
||
static int __init intel_no_crt_dmi_callback(const struct dmi_system_id *id) | ||
{ | ||
DRM_DEBUG_KMS("Skipping CRT initialization for %s\n", id->ident); | ||
return 1; | ||
} | ||
|
||
static const struct dmi_system_id intel_no_crt[] = { | ||
{ | ||
.callback = intel_no_crt_dmi_callback, | ||
.ident = "ACER ZGB", | ||
.matches = { | ||
DMI_MATCH(DMI_SYS_VENDOR, "ACER"), | ||
DMI_MATCH(DMI_PRODUCT_NAME, "ZGB"), | ||
}, | ||
}, | ||
{ } | ||
}; | ||
|
||
void intel_crt_init(struct drm_device *dev) | ||
{ | ||
struct drm_connector *connector; | ||
struct intel_crt *crt; | ||
struct intel_connector *intel_connector; | ||
struct drm_i915_private *dev_priv = dev->dev_private; | ||
|
||
/* Skip machines without VGA that falsely report hotplug events */ | ||
if (dmi_check_system(intel_no_crt)) | ||
return; | ||
|
||
crt = kzalloc(sizeof(struct intel_crt), GFP_KERNEL); | ||
if (!crt) | ||
return; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -417,7 +417,7 @@ static const struct tv_mode tv_modes[] = { | |
{ | ||
.name = "NTSC-M", | ||
.clock = 108000, | ||
.refresh = 29970, | ||
.refresh = 59940, | ||
.oversample = TV_OVERSAMPLE_8X, | ||
.component_only = 0, | ||
/* 525 Lines, 60 Fields, 15.734KHz line, Sub-Carrier 3.580MHz */ | ||
|
@@ -460,7 +460,7 @@ static const struct tv_mode tv_modes[] = { | |
{ | ||
.name = "NTSC-443", | ||
.clock = 108000, | ||
.refresh = 29970, | ||
.refresh = 59940, | ||
.oversample = TV_OVERSAMPLE_8X, | ||
.component_only = 0, | ||
/* 525 Lines, 60 Fields, 15.734KHz line, Sub-Carrier 4.43MHz */ | ||
|
@@ -502,7 +502,7 @@ static const struct tv_mode tv_modes[] = { | |
{ | ||
.name = "NTSC-J", | ||
.clock = 108000, | ||
.refresh = 29970, | ||
.refresh = 59940, | ||
.oversample = TV_OVERSAMPLE_8X, | ||
.component_only = 0, | ||
|
||
|
@@ -545,7 +545,7 @@ static const struct tv_mode tv_modes[] = { | |
{ | ||
.name = "PAL-M", | ||
.clock = 108000, | ||
.refresh = 29970, | ||
.refresh = 59940, | ||
.oversample = TV_OVERSAMPLE_8X, | ||
.component_only = 0, | ||
|
||
|
@@ -589,7 +589,7 @@ static const struct tv_mode tv_modes[] = { | |
/* 625 Lines, 50 Fields, 15.625KHz line, Sub-Carrier 4.434MHz */ | ||
.name = "PAL-N", | ||
.clock = 108000, | ||
.refresh = 25000, | ||
.refresh = 50000, | ||
.oversample = TV_OVERSAMPLE_8X, | ||
.component_only = 0, | ||
|
||
|
@@ -634,7 +634,7 @@ static const struct tv_mode tv_modes[] = { | |
/* 625 Lines, 50 Fields, 15.625KHz line, Sub-Carrier 4.434MHz */ | ||
.name = "PAL", | ||
.clock = 108000, | ||
.refresh = 25000, | ||
.refresh = 50000, | ||
.oversample = TV_OVERSAMPLE_8X, | ||
.component_only = 0, | ||
|
||
|
@@ -673,78 +673,6 @@ static const struct tv_mode tv_modes[] = { | |
|
||
.filter_table = filter_table, | ||
}, | ||
{ | ||
.name = "[email protected]", | ||
.clock = 107520, | ||
.refresh = 59940, | ||
.oversample = TV_OVERSAMPLE_4X, | ||
.component_only = 1, | ||
|
||
.hsync_end = 64, .hblank_end = 122, | ||
.hblank_start = 842, .htotal = 857, | ||
|
||
.progressive = true, .trilevel_sync = false, | ||
|
||
.vsync_start_f1 = 12, .vsync_start_f2 = 12, | ||
.vsync_len = 12, | ||
|
||
.veq_ena = false, | ||
|
||
.vi_end_f1 = 44, .vi_end_f2 = 44, | ||
.nbr_end = 479, | ||
|
||
.burst_ena = false, | ||
|
||
.filter_table = filter_table, | ||
}, | ||
{ | ||
.name = "480p@60Hz", | ||
.clock = 107520, | ||
.refresh = 60000, | ||
.oversample = TV_OVERSAMPLE_4X, | ||
.component_only = 1, | ||
|
||
.hsync_end = 64, .hblank_end = 122, | ||
.hblank_start = 842, .htotal = 856, | ||
|
||
.progressive = true, .trilevel_sync = false, | ||
|
||
.vsync_start_f1 = 12, .vsync_start_f2 = 12, | ||
.vsync_len = 12, | ||
|
||
.veq_ena = false, | ||
|
||
.vi_end_f1 = 44, .vi_end_f2 = 44, | ||
.nbr_end = 479, | ||
|
||
.burst_ena = false, | ||
|
||
.filter_table = filter_table, | ||
}, | ||
{ | ||
.name = "576p", | ||
.clock = 107520, | ||
.refresh = 50000, | ||
.oversample = TV_OVERSAMPLE_4X, | ||
.component_only = 1, | ||
|
||
.hsync_end = 64, .hblank_end = 139, | ||
.hblank_start = 859, .htotal = 863, | ||
|
||
.progressive = true, .trilevel_sync = false, | ||
|
||
.vsync_start_f1 = 10, .vsync_start_f2 = 10, | ||
.vsync_len = 10, | ||
|
||
.veq_ena = false, | ||
|
||
.vi_end_f1 = 48, .vi_end_f2 = 48, | ||
.nbr_end = 575, | ||
|
||
.burst_ena = false, | ||
|
||
.filter_table = filter_table, | ||
}, | ||
{ | ||
.name = "720p@60Hz", | ||
.clock = 148800, | ||
|
@@ -769,30 +697,6 @@ static const struct tv_mode tv_modes[] = { | |
|
||
.filter_table = filter_table, | ||
}, | ||
{ | ||
.name = "[email protected]", | ||
.clock = 148800, | ||
.refresh = 59940, | ||
.oversample = TV_OVERSAMPLE_2X, | ||
.component_only = 1, | ||
|
||
.hsync_end = 80, .hblank_end = 300, | ||
.hblank_start = 1580, .htotal = 1651, | ||
|
||
.progressive = true, .trilevel_sync = true, | ||
|
||
.vsync_start_f1 = 10, .vsync_start_f2 = 10, | ||
.vsync_len = 10, | ||
|
||
.veq_ena = false, | ||
|
||
.vi_end_f1 = 29, .vi_end_f2 = 29, | ||
.nbr_end = 719, | ||
|
||
.burst_ena = false, | ||
|
||
.filter_table = filter_table, | ||
}, | ||
{ | ||
.name = "720p@50Hz", | ||
.clock = 148800, | ||
|
@@ -821,7 +725,7 @@ static const struct tv_mode tv_modes[] = { | |
{ | ||
.name = "1080i@50Hz", | ||
.clock = 148800, | ||
.refresh = 25000, | ||
.refresh = 50000, | ||
.oversample = TV_OVERSAMPLE_2X, | ||
.component_only = 1, | ||
|
||
|
@@ -847,7 +751,7 @@ static const struct tv_mode tv_modes[] = { | |
{ | ||
.name = "1080i@60Hz", | ||
.clock = 148800, | ||
.refresh = 30000, | ||
.refresh = 60000, | ||
.oversample = TV_OVERSAMPLE_2X, | ||
.component_only = 1, | ||
|
||
|
@@ -868,32 +772,6 @@ static const struct tv_mode tv_modes[] = { | |
|
||
.burst_ena = false, | ||
|
||
.filter_table = filter_table, | ||
}, | ||
{ | ||
.name = "[email protected]", | ||
.clock = 148800, | ||
.refresh = 29970, | ||
.oversample = TV_OVERSAMPLE_2X, | ||
.component_only = 1, | ||
|
||
.hsync_end = 88, .hblank_end = 235, | ||
.hblank_start = 2155, .htotal = 2201, | ||
|
||
.progressive = false, .trilevel_sync = true, | ||
|
||
.vsync_start_f1 = 4, .vsync_start_f2 = 5, | ||
.vsync_len = 10, | ||
|
||
.veq_ena = true, .veq_start_f1 = 4, | ||
.veq_start_f2 = 4, .veq_len = 10, | ||
|
||
|
||
.vi_end_f1 = 21, .vi_end_f2 = 22, | ||
.nbr_end = 539, | ||
|
||
.burst_ena = false, | ||
|
||
.filter_table = filter_table, | ||
}, | ||
}; | ||
|