Raul Rangel has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/51959 )
Change subject: mb/google/guybrush: Add IRQ numbers for I2C controllers ......................................................................
mb/google/guybrush: Add IRQ numbers for I2C controllers
BUG=b:183737011 TEST=cat /proc/interrupts and see i2c controllers listed
Signed-off-by: Raul E Rangel rrangel@chromium.org Change-Id: I5b2f23b2c2a7c4cec198276814d80f545e85aa41 --- M src/mainboard/google/guybrush/mainboard.c 1 file changed, 4 insertions(+), 2 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/59/51959/1
diff --git a/src/mainboard/google/guybrush/mainboard.c b/src/mainboard/google/guybrush/mainboard.c index 72ad7a8..995855e 100644 --- a/src/mainboard/google/guybrush/mainboard.c +++ b/src/mainboard/google/guybrush/mainboard.c @@ -51,8 +51,10 @@ { PIRQ_SATA, PIRQ_NC, PIRQ_NC }, { PIRQ_EMMC, PIRQ_NC, PIRQ_NC }, { PIRQ_GPIO, PIRQ_NC, PIRQ_NC }, - { PIRQ_I2C2, PIRQ_NC, PIRQ_NC }, - { PIRQ_I2C3, PIRQ_NC, PIRQ_NC }, + { PIRQ_I2C0, 10, 10 }, + { PIRQ_I2C1, 7, 7 }, + { PIRQ_I2C2, 6, 6 }, + { PIRQ_I2C3, 5, 5 }, { PIRQ_UART0, 4, 4 }, { PIRQ_UART1, 3, 3 },