mirror of
https://github.com/fail0verflow/switch-coreboot.git
synced 2025-05-04 01:39:18 -04:00
UPSTREAM: google/eve: Update I2C bus timing
Update the I2C rise/fall timings based on newly measured values
on a new board with updated pull-up resistor values.
Touchscreen: rise time 98ns, fall time 38ms
Touchpad: rise time 111ns, fall time 41ns
TPM: rise time 112ns, fall time 34ns
BUG=b:35583133
BRANCH=none
TEST=Each I2C bus frequency was verified on a scope to be ~400MHz
Change-Id: Ib2b0598fb10c3e0e21161583362fc317d3e1f5c9
Signed-off-by: Patrick Georgi <pgeorgi@chromium.org>
Original-Commit-Id: 92dde2fdd7
Original-Change-Id: Ibb3a15fa0cc862f36c1b9c63ac7847221020c4c0
Original-Signed-off-by: Duncan Laurie <dlaurie@chromium.org>
Original-Reviewed-on: https://review.coreboot.org/19202
Original-Tested-by: build bot (Jenkins)
Original-Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net>
Original-Reviewed-by: Aaron Durbin <adurbin@chromium.org>
Original-Reviewed-by: Furquan Shaikh <furquan@google.com>
Reviewed-on: https://chromium-review.googlesource.com/474127
This commit is contained in:
parent
8ee3816344
commit
ec46a8207e
1 changed files with 5 additions and 5 deletions
|
@ -163,7 +163,7 @@ chip soc/intel/skylake
|
|||
register "i2c_voltage[0]" = "I2C_VOLTAGE_3V3"
|
||||
register "i2c[0]" = "{
|
||||
.speed = I2C_SPEED_FAST_PLUS,
|
||||
.rise_time_ns = 17,
|
||||
.rise_time_ns = 98,
|
||||
.fall_time_ns = 38,
|
||||
}"
|
||||
|
||||
|
@ -172,16 +172,16 @@ chip soc/intel/skylake
|
|||
register "i2c[1]" = "{
|
||||
.early_init = 1,
|
||||
.speed = I2C_SPEED_FAST,
|
||||
.rise_time_ns = 88,
|
||||
.fall_time_ns = 32,
|
||||
.rise_time_ns = 112,
|
||||
.fall_time_ns = 34,
|
||||
}"
|
||||
|
||||
# Touchpad
|
||||
register "i2c_voltage[2]" = "I2C_VOLTAGE_1V8"
|
||||
register "i2c[2]" = "{
|
||||
.speed = I2C_SPEED_FAST,
|
||||
.rise_time_ns = 247,
|
||||
.fall_time_ns = 17,
|
||||
.rise_time_ns = 111,
|
||||
.fall_time_ns = 41,
|
||||
}"
|
||||
|
||||
# Audio
|
||||
|
|
Loading…
Add table
Reference in a new issue