[coreboot] Patch set updated for coreboot: 71a8223 superiotool: Add support for the IT8728F Super I/O

Андрей Павлов (7134956@gmail.com) gerrit at coreboot.org
Sun Mar 17 22:36:15 CET 2013


Андрей Павлов (7134956 at gmail.com) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/2775

-gerrit

commit 71a8223eafaccab51b270310a438861c26cec1bb
Author: Андрей Павлов <7134956 at gmail.com>
Date:   Sun Mar 17 19:11:05 2013 +0300

    superiotool: Add support for the IT8728F Super I/O
    
    $ superiotool -d
    superiotool r4.0-3712-gd549279
    Found ITE IT8728F (id=0x8728, rev=0x1) at 0x2e
    Register dump:
    idx 02 07 20 21 22 23 24 2b  2e 2f
    val 00 0a 87 28 01 00 00 40  00 00
    def NA NA 87 28 01 00 00 MM  00 00
    LDN 0x00 (Floppy)
    idx 30 60 61 70 74 f0 f1
    val 00 03 f0 06 02 00 00
    def 00 03 f0 06 02 00 00
    LDN 0x01 (COM1)
    idx 30 60 61 70 f0 f1
    val 01 03 f8 04 00 50
    def 00 03 f8 04 00 50
    LDN 0x02 (COM2)
    idx 30 60 61 70 f0 f1
    val 00 02 f8 03 00 50
    def 00 02 f8 03 00 50
    LDN 0x03 (Parallel port)
    idx 30 60 61 62 63 70 74 f0
    val 01 03 78 00 00 07 04 08
    def 00 03 78 07 78 07 03 03
    LDN 0x04 (Environment controller)
    idx 30 60 61 62 63 70 f0 f1  f2 f3 f4 f5 f6 f9 fa fb
    val 01 0a 30 0a 20 09 00 80  00 00 20 00 f0 48 00 00
    def 00 02 90 02 30 09 00 00  00 00 00 MM MM MM MM MM
    LDN 0x05 (Keyboard)
    idx 30 60 61 62 63 70 71 f0
    val 01 00 60 00 64 01 02 08
    def 01 00 60 00 64 01 02 48
    LDN 0x06 (Mouse)
    idx 30 70 71 f0
    val 01 0c 02 00
    def 00 0c 02 00
    LDN 0x07 (GPIO)
    idx 25 26 27 28 29 2a 2c 2d  60 61 62 63 64 65 70 71  72 73 74 b0 b1 b2 b3 b4  b8 b9 ba bb bc bd c0 c1  c2 c3 c4 c8 c9 ca cb cc  cd ce cf e0 e1 e2 e3 e4  e9 f0 f1 f2 f3 f4 f5 f6  f7 f8 f9 fa fb
    val 00 f3 10 00 00 00 80 00  00 00 0a 00 00 00 00 00  20 00 00 00 00 00 00 00  20 00 00 00 00 00 01 00  00 40 00 01 00 00 00 00  00 00 00 00 00 00 00 00  21 10 42 00 00 00 00 1c  00 00 00 00 00
    def 00 f3 00 00 00 00 03 00  00 00 00 00 00 00 00 00  20 38 00 00 00 00 00 00  20 00 00 00 00 00 01 00  00 40 00 01 00 00 40 00  00 00 00 00 00 00 00 00  MM 00 00 00 00 00 00 00  00 00 00 00 00
    LDN 0x0a (Consumer IR)
    idx 30 60 61 70 f0
    val 00 03 10 0b 06
    def 00 03 10 0b 06
    
    Change-Id: Ifb45d28005d78b2a99d8552b59154d11bdf44f6f
    Signed-off-by: Андрей Павлов <7134956 at gmail.com>
---
 util/superiotool/ite.c | 46 ++++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 46 insertions(+)

diff --git a/util/superiotool/ite.c b/util/superiotool/ite.c
index a6dbacf..7e167c8 100644
--- a/util/superiotool/ite.c
+++ b/util/superiotool/ite.c
@@ -706,6 +706,52 @@ static const struct superio_registers reg_table[] = {
 			{0x30,0x60,0x61,0x70,0xf0,EOT},
 			{0x00,0x03,0x10,0x0b,0x00,EOT}},
 		{EOT}}},
+	{0x8728, "IT8728F", {
+		{NOLDN, NULL,
+			{0x02,0x07,0x20,0x21,0x22,0x23,0x24,0x2b,0x2e,0x2f,EOT},
+			{NANA,NANA,0x87,0x28,0x01,0x00,0x00,MISC,0x00,0x00,EOT}},
+		{0x0, "Floppy",
+			{0x30,0x60,0x61,0x70,0x74,0xf0,0xf1,EOT},
+			{0x00,0x03,0xf0,0x06,0x02,0x00,0x00,EOT}},
+		{0x1, "COM1",
+			{0x30,0x60,0x61,0x70,0xf0,0xf1,EOT},
+			{0x00,0x03,0xf8,0x04,0x00,0x50,EOT}},
+		{0x2, "COM2",
+			{0x30,0x60,0x61,0x70,0xf0,0xf1,EOT},
+			{0x00,0x02,0xf8,0x03,0x00,0x50,EOT}},
+		{0x3, "Parallel port",
+			{0x30,0x60,0x61,0x62,0x63,0x70,0x74,0xf0,EOT},
+			{0x00,0x03,0x78,0x07,0x78,0x07,0x03,0x03,EOT}},
+		{0x4, "Environment controller",
+			{0x30,0x60,0x61,0x62,0x63,0x70,0xf0,0xf1,0xf2,
+			 0xf3,0xf4,0xf5,0xf6,0xF9,0xFA,0xFB,EOT},
+			{0x00,0x02,0x90,0x02,0x30,0x09,0x00,0x00,0x00,
+			 0x00,0x00,MISC,MISC,MISC,MISC,MISC,EOT}},
+		{0x5, "Keyboard",
+			{0x30,0x60,0x61,0x62,0x63,0x70,0x71,0xf0,EOT},
+			{0x01,0x00,0x60,0x00,0x64,0x01,0x02,0x48,EOT}},
+		{0x6, "Mouse",
+			{0x30,0x70,0x71,0xf0,EOT},
+			{0x00,0x0c,0x02,0x00,EOT}},
+		{0x7, "GPIO",
+			{0x25,0x26,0x27,0x28,0x29,0x2a,0x2c,0x2d,0x60,
+			 0x61,0x62,0x63,0x64,0x65,0x70,0x71,0x72,0x73,
+			 0x74,0xb0,0xb1,0xb2,0xb3,0xb4,0xb8,0xb9,0xba,
+			 0xbb,0xbc,0xbd,0xc0,0xc1,0xc2,0xc3,0xc4,0xc8,
+			 0xc9,0xca,0xcb,0xcc,0xcd,0xce,0xcf,0xe0,0xe1,
+			 0xe2,0xe3,0xe4,0xe9,0xf0,0xf1,0xf2,0xf3,0xf4,
+			 0xf5,0xf6,0xf7,0xf8,0xf9,0xfa,0xfb,EOT},
+			{0x00,0xf3,0x00,0x00,0x00,0x00,0x03,0x00,0x00,
+			 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x38,
+			 0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0x00,
+			 0x00,0x00,0x00,0x01,0x00,0x00,0x40,0x00,0x01,
+			 0x00,0x00,0x40,0x00,0x00,0x00,0x00,0x00,0x00,
+			 0x00,0x00,0x00,MISC,0x00,0x00,0x00,0x00,0x00,
+			 0x00,0x00,0x00,0x00,0x00,0x00,0x00,EOT}},
+		{0xa, "Consumer IR",
+			{0x30,0x60,0x61,0x70,0xf0,EOT},
+			{0x00,0x03,0x10,0x0b,0x06,EOT}},
+		{EOT}}},
 	{0x8761, "IT8761E", {
 		{EOT}}},
 	{0x8772, "IT8772F", {



More information about the coreboot mailing list