]> git.webhop.me Git - lcd4linux.git/commitdiff
- spf: add some more spf's
authorsvenhoefer <svenhoefer@svenhoefer.com>
Tue, 3 May 2016 09:32:32 +0000 (11:32 +0200)
committersvenhoefer <svenhoefer@svenhoefer.com>
Tue, 3 May 2016 10:27:37 +0000 (12:27 +0200)
drv_SamsungSPF.c

index 544cb09a6b3989cbebdd96d8c533d8f32395834f..39f91870d0e7add3166431ea0dfff6ba3271114a 100644 (file)
@@ -69,6 +69,13 @@ struct SPFdev {
 };
 
 static struct SPFdev spfDevices[] = {
+    {
+     .type = "SPF-72H",
+     .vendorID = 0x04e8,
+     .productID = {0x200a, 0x200b},
+     .xRes = 800,
+     .yRes = 480,
+     },
     {
      .type = "SPF-75H",
      .vendorID = 0x04e8,
@@ -76,6 +83,20 @@ static struct SPFdev spfDevices[] = {
      .xRes = 800,
      .yRes = 480,
      },
+    {
+     .type = "SPF-76H",
+     .vendorID = 0x04e8,
+     .productID = {0x200e, 0x200f},
+     .xRes = 800,
+     .yRes = 480,
+     },
+    {
+     .type = "SPF-83H",
+     .vendorID = 0x04e8,
+     .productID = {0x200c, 0x200d},
+     .xRes = 800,
+     .yRes = 600,
+     },
     {
      .type = "SPF-85H",
      .vendorID = 0x04e8,
@@ -83,6 +104,48 @@ static struct SPFdev spfDevices[] = {
      .xRes = 800,
      .yRes = 600,
      },
+    {
+     .type = "SPF-85P",
+     .vendorID = 0x04e8,
+     .productID = {0x2016, 0x2017},
+     .xRes = 800,
+     .yRes = 600,
+     },
+    {
+     .type = "SPF-86H",
+     .vendorID = 0x04e8,
+     .productID = {0x2012, 0x2013},
+     .xRes = 800,
+     .yRes = 600,
+     },
+    {
+     .type = "SPF-86P",
+     .vendorID = 0x04e8,
+     .productID = {0x2016, 0x2017},
+     .xRes = 800,
+     .yRes = 600,
+     },
+    {
+     .type = "SPF-87H-old",
+     .vendorID = 0x04e8,
+     .productID = {0x2025, 0x2026},
+     .xRes = 800,
+     .yRes = 480,
+     },
+    {
+     .type = "SPF-87H",
+     .vendorID = 0x04e8,
+     .productID = {0x2033, 0x2034},
+     .xRes = 800,
+     .yRes = 480,
+     },
+    {
+     .type = "SPF-105P",
+     .vendorID = 0x04e8,
+     .productID = {0x201c, 0x201b},
+     .xRes = 1024,
+     .yRes = 600,
+     },
     {
      .type = "SPF-107H",
      .vendorID = 0x04e8,
@@ -90,6 +153,27 @@ static struct SPFdev spfDevices[] = {
      .xRes = 1024,
      .yRes = 600,
      },
+    {
+     .type = "SPF-107H-new",
+     .vendorID = 0x04e8,
+     .productID = {0x2035, 0x2036},
+     .xRes = 1024,
+     .yRes = 600,
+     },
+    {
+     .type = "SPF-700T",
+     .vendorID = 0x04e8,
+     .productID = {0x204f, 0x2050},
+     .xRes = 800,
+     .yRes = 600,
+     },
+    {
+     .type = "SPF-1000P",
+     .vendorID = 0x04e8,
+     .productID = {0x2039, 0x2040},
+     .xRes = 1024,
+     .yRes = 600,
+     },
 };
 
 static int numFrames = sizeof(spfDevices) / sizeof(spfDevices[0]);