summaryrefslogtreecommitdiff
path: root/src/superio
diff options
context:
space:
mode:
authorArthur Heymans <arthur@aheymans.xyz>2018-12-15 18:25:03 +0100
committerPatrick Georgi <pgeorgi@google.com>2018-12-19 05:39:50 +0000
commitf1a3503459317a19d0070d0569c31a41cccf4940 (patch)
treee0c18cf280fdeb9ac07d191a1c4bd8ffc49e7d8a /src/superio
parent7ac4096450700750bafe7734a1e34260a66fcd09 (diff)
downloadcoreboot-f1a3503459317a19d0070d0569c31a41cccf4940.tar.xz
superio/smsc: Add SCH5147
There are no public datasheets for this SuperIO. The results are from probing the registers manually. Change-Id: Ie5659533c5f224603f918d17942a7057e6701222 Signed-off-by: Arthur Heymans <arthur@aheymans.xyz> Reviewed-on: https://review.coreboot.org/c/30238 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Felix Held <felix-coreboot@felixheld.de>
Diffstat (limited to 'src/superio')
-rw-r--r--src/superio/smsc/smscsuperio/superio.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/superio/smsc/smscsuperio/superio.c b/src/superio/smsc/smscsuperio/superio.c
index 6380f88472..e6df6c9aae 100644
--- a/src/superio/smsc/smscsuperio/superio.c
+++ b/src/superio/smsc/smscsuperio/superio.c
@@ -58,6 +58,7 @@
#define SCH5307 0x81 /* Rebranded LPC47B397(?) */
#define SCH5027D 0x89
#define SCH4304 0x90 /* SCH4304, SCH4307 */
+#define SCH5147 0xc1
/* Register defines */
#define DEVICE_ID_REG 0x20 /* Device ID register */
@@ -136,6 +137,7 @@ static const struct logical_devices {
{SCH5307, {0, 3, 4, 5, -1, 7, -1, -1, 8, -1, -1, -1, 10, -1, -1}},
{SCH5027D, {0, 3, 4, 5, -1, 7, -1, -1, -1, -1, -1, -1, 10, -1, 11}},
{SCH4304, {0, 3, 4, 5, -1, 7, -1, 11, -1, -1, -1, -1, 10, -1, -1}},
+ {SCH5147, {0, 3, 4, 5, -1, 7, -1, -1, -1, -1, -1, -1, 10, -1, -1}},
};
/**