[PATCH qemu v5] aspeed add montblanc bmc reference from fuji

2023-07-04 Thread ~ssinprem
From: Sittisak Sinprem - I2C list follow I2C Tree v1.6 20230320 - fru eeprom data use FB FRU format version 4 Signed-off-by: Sittisak Sinprem --- docs/system/arm/aspeed.rst | 1 + hw/arm/aspeed.c| 65 ++ hw/arm/aspeed_eeprom.c | 50 +

[PATCH qemu v4] aspeed add montblanc bmc reference from fuji

2023-07-04 Thread ~ssinprem
From: Sittisak Sinprem - I2C list follow I2C Tree v1.6 20230320 - fru eeprom data use FB FRU format version 4 Signed-off-by: Sittisak Sinprem --- docs/system/arm/aspeed.rst | 1 + hw/arm/aspeed.c| 63 ++ hw/arm/aspeed_eeprom.c | 50 +

[PATCH qemu v3] aspeed add montblanc bmc reference from fuji

2023-07-03 Thread ~ssinprem
From: Sittisak Sinprem - I2C list follow I2C Tree v1.6 20230320 - fru eeprom data use FB FRU format version 4 Signed-off-by: Sittisak Sinprem --- docs/system/arm/aspeed.rst | 1 + hw/arm/aspeed.c| 63 ++ hw/arm/aspeed_eeprom.c | 50 +

[PATCH qemu v2] aspeed add montblanc bmc reference from fuji

2023-07-03 Thread ~ssinprem
From: Sittisak Sinprem - I2C list follow I2C Tree v1.6 20230320 - fru eeprom data use FB FRU format version 4 Signed-off-by: Sittisak Sinprem --- hw/arm/aspeed.c| 67 ++ hw/arm/aspeed_eeprom.c | 50 +++ hw/arm/aspeed_e

[PATCH qemu] aspeed add montblanc bmc reference from fuji

2023-06-28 Thread ~ssinprem
From: Sittisak Sinprem - I2C list follow I2C Tree v1.6 20230320 - fru eeprom data use FB FRU format version 4 Signed-off-by: Sittisak Sinprem --- hw/arm/aspeed.c| 67 ++ hw/arm/aspeed_eeprom.c | 50 +++ hw/arm/aspeed_e

[PATCH qemu v3 2/2] aspeed/fuji : correct the eeprom size

2023-02-16 Thread ~ssinprem
From: Sittisak Sinprem Device 24C64 the size is 64 kilobits = 8kilobyte Device 24C02 the size is 2 kilobits = 256byte Signed-off-by: Sittisak Sinprem --- hw/arm/aspeed.c | 36 1 file changed, 20 insertions(+), 16 deletions(-) diff --git a/hw/arm/aspeed.c b

[PATCH qemu v3 0/2] hw/at24c support eeprom size less than equal 256 byte

2023-02-16 Thread ~ssinprem
- hw/at24c : modify at24c to support 1 byte address mode - aspeed/fuji : correct the eeprom size Sittisak Sinprem (2): hw/at24c : modify at24c to support 1 byte address mode aspeed/fuji : correct the eeprom size hw/arm/aspeed.c | 36 hw/nvram/eepr

[PATCH qemu v3 1/2] hw/at24c : modify at24c to support 1 byte address mode

2023-02-16 Thread ~ssinprem
From: Sittisak Sinprem Signed-off-by: Sittisak Sinprem --- hw/nvram/eeprom_at24c.c | 28 +--- 1 file changed, 25 insertions(+), 3 deletions(-) diff --git a/hw/nvram/eeprom_at24c.c b/hw/nvram/eeprom_at24c.c index 3328c32814..64259cde67 100644 --- a/hw/nvram/eeprom_at24c.

[PATCH qemu v2 1/2] hw/at24c : modify at24c to support 1 byte address mode

2023-02-16 Thread ~ssinprem
From: Sittisak Sinprem Signed-off-by: Sittisak Sinprem --- hw/nvram/eeprom_at24c.c | 46 + 1 file changed, 33 insertions(+), 13 deletions(-) diff --git a/hw/nvram/eeprom_at24c.c b/hw/nvram/eeprom_at24c.c index 3328c32814..0cb650d635 100644 --- a/hw/nvram

[PATCH qemu v2 2/2] aspeed/fuji : correct the eeprom size

2023-02-16 Thread ~ssinprem
From: Sittisak Sinprem Device 24C64 the size is 64 kilobits = 8kilobyte Device 24C02 the size is 2 kilobits = 256byte Signed-off-by: Sittisak Sinprem --- hw/arm/aspeed.c | 36 1 file changed, 20 insertions(+), 16 deletions(-) diff --git a/hw/arm/aspeed.c b

[PATCH qemu 0/2] hw/at24c support eeprom size less than equal 256 byte

2023-02-14 Thread ~ssinprem
This series includes 2 patches 1. Improve at24c to support 1-byte address EEPROM such as 24c01 and 24c02. 2. correct the EEPROM size for aspeed/fuji platform. ref: https://gitlab.com/qemu-project/qemu/-/issues/1485 Sittisak Sinprem (2): hw/at24c : modify at24c to support 1 byte address mode as

[PATCH qemu 1/2] hw/at24c : modify at24c to support 1 byte address mode

2023-02-14 Thread ~ssinprem
From: Sittisak Sinprem --- hw/nvram/eeprom_at24c.c | 8 +--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/hw/nvram/eeprom_at24c.c b/hw/nvram/eeprom_at24c.c index 2d4d8b952f..693212b661 100644 --- a/hw/nvram/eeprom_at24c.c +++ b/hw/nvram/eeprom_at24c.c @@ -87,7 +87,7 @@ uint8

[PATCH qemu 2/2] aspeed/fuji : correct the eeprom size

2023-02-14 Thread ~ssinprem
From: Sittisak Sinprem Device 24C64 the size is 64 kilobits Device 24C02 the size is 2 kilobits --- hw/arm/aspeed.c | 32 1 file changed, 16 insertions(+), 16 deletions(-) diff --git a/hw/arm/aspeed.c b/hw/arm/aspeed.c index 55f114ef72..8e6a1579e4 100644 --- a/h