Add some more Super I/O IDs/names (trivial).
[coreboot.git] / util / superiotool / ali.c
index 9331c65c3077a916e2b7acf48aaee3269fdf3d8c..52144dde0187bb3b54c9edcd152830358ba34cf5 100644 (file)
@@ -25,7 +25,7 @@
 
 #define DEVICE_REV_REG         0x1f
 
-const static struct superio_registers reg_table[] = {
+static const struct superio_registers reg_table[] = {
        /* TODO: M5113 doesn't seem to have ID registers? */
        {0x5315, "M1535/M1535D/M1535+/M1535D+", {
                {NOLDN, NULL,
@@ -53,6 +53,8 @@ const static struct superio_registers reg_table[] = {
                        {0x30,0xf0,0xf1,0xf2,0xf3,0xf4,0xf5,EOT},
                        {0x00,0x35,0x14,0x11,0x71,RSVD,0x05,EOT}},
                {EOT}}},
+       {0x2351, "M512x", {
+               {EOT}}},
        {EOT}
 };
 
@@ -78,6 +80,8 @@ void probe_idregs_ali(uint16_t port)
 
        id = regval(port, DEVICE_ID_BYTE1_REG) << 8;
        id |= regval(port, DEVICE_ID_BYTE2_REG);
+
+       /* TODO: Not documented/available on M512x (?) */
        rev = regval(port, DEVICE_REV_REG);
 
        if (superio_unknown(reg_table, id)) {
@@ -96,3 +100,7 @@ void probe_idregs_ali(uint16_t port)
        exit_conf_mode_ali(port);
 }
 
+void print_ali_chips(void)
+{
+       print_vendor_chips("ALi", reg_table);
+}