From a5541225531a8b4ab12b01587b5cb8ba6c5168e9 Mon Sep 17 00:00:00 2001 From: Daniel Kang Date: Fri, 15 Jan 2021 11:22:56 -0800 Subject: mb/google/volteer: Correct AT24 NVM address size Currently, the address size field of AT24 NVM is incorrect, and Linux v5.4 kernel logs the message below: at24 i2c-PRP0001:02: Bad "address-width" property: 13 The valid size of the AT24 NVM is 16 bits so modify the value from 0x0D to 0x10. BUG=b:177655681 BRANCH=none TEST=Boot volteer and check the kernel log and see "Bad address-width" error message is not shown. Signed-off-by: Daniel Kang Change-Id: Ice6c3eac1e023b981217e1d7dc06587fc46b1a02 Reviewed-on: https://review.coreboot.org/c/coreboot/+/49633 Tested-by: build bot (Jenkins) Reviewed-by: Tim Wawrzynczak Reviewed-by: Bingbu Cao --- .../volteer/variants/baseboard/include/baseboard/acpi/mipi_camera.asl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/mainboard/google') diff --git a/src/mainboard/google/volteer/variants/baseboard/include/baseboard/acpi/mipi_camera.asl b/src/mainboard/google/volteer/variants/baseboard/include/baseboard/acpi/mipi_camera.asl index 6f7ca6b367..2a58f9a3c4 100644 --- a/src/mainboard/google/volteer/variants/baseboard/include/baseboard/acpi/mipi_camera.asl +++ b/src/mainboard/google/volteer/variants/baseboard/include/baseboard/acpi/mipi_camera.asl @@ -459,7 +459,7 @@ Scope (\_SB.PCI0.I2C3) Package (0x02) { "address-width", - 0x0D + 0x10 }, Package (0x02) { -- cgit v1.2.3