We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents fc138bc + 6981136 commit 3bcdf52Copy full SHA for 3bcdf52
drivers/gpu/drm/exynos/exynos_hdmi.c
@@ -550,6 +550,15 @@ static const struct hdmiphy_config hdmiphy_v14_configs[] = {
550
0x54, 0x93, 0x24, 0x01, 0x00, 0x00, 0x01, 0x80,
551
},
552
553
+ {
554
+ .pixel_clock = 85500000,
555
+ .conf = {
556
+ 0x01, 0xd1, 0x24, 0x11, 0x40, 0x40, 0xd0, 0x08,
557
+ 0x84, 0xa0, 0xd6, 0xd8, 0x45, 0xa0, 0xac, 0x80,
558
+ 0x08, 0x80, 0x11, 0x04, 0x02, 0x22, 0x44, 0x86,
559
+ 0x54, 0x90, 0x24, 0x01, 0x00, 0x00, 0x01, 0x80,
560
+ },
561
562
{
563
.pixel_clock = 106500000,
564
.conf = {
@@ -1765,7 +1774,7 @@ static void hdmi_v14_mode_set(struct hdmi_context *hdata,
1765
1774
int hcorrect = 0;
1766
1775
int vcorrect = 0;
1767
1776
1768
- if ((m->vdisplay == 768 && m->hdisplay == 1024) || (m->vdisplay == 1024 && m->hdisplay == 1280)) {
1777
+ if (m->vdisplay == 768 || m->vdisplay == 1024) {
1769
1778
pr_info("exynos-drm: Applying 257px timings hack\n");
1770
1779
hcorrect = 257;
1771
1780
vcorrect = 1;
0 commit comments