summaryrefslogtreecommitdiffstats
path: root/src/include/device/smbus_host.h
diff options
context:
space:
mode:
authorKyösti Mälkki <kyosti.malkki@gmail.com>2020-01-06 19:00:31 +0200
committerKyösti Mälkki <kyosti.malkki@gmail.com>2020-01-09 21:29:53 +0000
commit7cdcc38f292d7a8ffd285d17c848e60e41eec759 (patch)
tree13bba3b16f89d74367fdc043e10d707534a24525 /src/include/device/smbus_host.h
parentc528426b264c897b6c17ef14846afea3711042cb (diff)
downloadcoreboot-7cdcc38f292d7a8ffd285d17c848e60e41eec759.tar.gz
coreboot-7cdcc38f292d7a8ffd285d17c848e60e41eec759.tar.bz2
coreboot-7cdcc38f292d7a8ffd285d17c848e60e41eec759.zip
sb/intel/common: Add smbus_host_reset()
Change-Id: I3f6000df391295e2c0ce910a2a919a1dd3333519 Signed-off-by: Kyösti Mälkki <kyosti.malkki@gmail.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/38229 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Angel Pons <th3fanbus@gmail.com>
Diffstat (limited to 'src/include/device/smbus_host.h')
-rw-r--r--src/include/device/smbus_host.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/include/device/smbus_host.h b/src/include/device/smbus_host.h
index 2aa160ffbd5e..071eef0ff260 100644
--- a/src/include/device/smbus_host.h
+++ b/src/include/device/smbus_host.h
@@ -32,4 +32,9 @@ int do_smbus_block_write(uintptr_t base, u8 device, u8 cmd, size_t bytes, const
int do_i2c_eeprom_read(uintptr_t base, u8 device, u8 offset, size_t bytes, u8 *buf);
int do_i2c_block_write(uintptr_t base, u8 device, size_t bytes, u8 *buf);
+/* Upstream API */
+
+void smbus_host_reset(uintptr_t base);
+
+
#endif