mb/google/zork: Modify I2C3 CLK for Woomax to meet I2C specification
Modify I2C3 setting to follow I2C specification(lower than 400kHz). Original setting: .rise_time_ns = 125 .fall_time_ns = 37 Change to: .rise_time_ns = 110 .fall_time_ns = 34 BUG=b:169207742 BRANCH=None TEST=emerge-zork coreboot chromeos-bootimage Signed-off-by: Kane Chen <kane_chen@pegatron.corp-partner.google.com> Change-Id: I0f0b791c3e701ebf6b336a8cb259eeb74c46af5a Reviewed-on: https://review.coreboot.org/c/coreboot/+/45644 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Angel Pons <th3fanbus@gmail.com> Reviewed-by: Aaron Durbin <adurbin@chromium.org>
This commit is contained in:
parent
4dcccc8365
commit
fb2f356d89
1 changed files with 2 additions and 2 deletions
|
@ -60,8 +60,8 @@ chip soc/amd/picasso
|
|||
# Enable I2C3 for H1 400kHz
|
||||
register "i2c[3]" = "{
|
||||
.speed = I2C_SPEED_FAST,
|
||||
.rise_time_ns = 125, /* 0 to 1.26v (1.8 * .7) */
|
||||
.fall_time_ns = 37, /* 1.26v to 0 */
|
||||
.rise_time_ns = 110, /* 0 to 1.26v (1.8 * .7) */
|
||||
.fall_time_ns = 34, /* 1.26v to 0 */
|
||||
.early_init = true,
|
||||
}"
|
||||
|
||||
|
|
Loading…
Reference in a new issue