diff options
author | Kyösti Mälkki <kyosti.malkki@gmail.com> | 2020-01-06 19:00:31 +0200 |
---|---|---|
committer | Kyösti Mälkki <kyosti.malkki@gmail.com> | 2020-01-09 21:29:53 +0000 |
commit | 7cdcc38f292d7a8ffd285d17c848e60e41eec759 (patch) | |
tree | 13bba3b16f89d74367fdc043e10d707534a24525 /src/include | |
parent | c528426b264c897b6c17ef14846afea3711042cb (diff) | |
download | coreboot-7cdcc38f292d7a8ffd285d17c848e60e41eec759.tar.xz |
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')
-rw-r--r-- | src/include/device/smbus_host.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/include/device/smbus_host.h b/src/include/device/smbus_host.h index 2aa160ffbd..071eef0ff2 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 |