All of lore.kernel.org
 help / color / mirror / Atom feed
* [U-Boot] [PATCH 1/2] misc: i2c_eeprom: support DT pagesize property
@ 2019-04-07  9:38 Baruch Siach
  2019-04-07  9:38 ` [U-Boot] [PATCH 2/2] misc: i2c_eeprom: add eeprom write support Baruch Siach
                   ` (2 more replies)
  0 siblings, 3 replies; 6+ messages in thread
From: Baruch Siach @ 2019-04-07  9:38 UTC (permalink / raw)
  To: u-boot

Read the page size from DT when available.

Signed-off-by: Baruch Siach <baruch@tkos.co.il>
---
 drivers/misc/i2c_eeprom.c | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/drivers/misc/i2c_eeprom.c b/drivers/misc/i2c_eeprom.c
index 29ad87c1d7b4..ce2cad44d8d4 100644
--- a/drivers/misc/i2c_eeprom.c
+++ b/drivers/misc/i2c_eeprom.c
@@ -50,6 +50,12 @@ static int i2c_eeprom_std_ofdata_to_platdata(struct udevice *dev)
 {
 	struct i2c_eeprom *priv = dev_get_priv(dev);
 	u64 data = dev_get_driver_data(dev);
+	u32 pagesize;
+
+	if (dev_read_u32(dev, "pagesize", &pagesize) == 0) {
+		priv->pagesize = pagesize;
+		return 0;
+	}
 
 	/* 6 bit -> page size of up to 2^63 (should be sufficient) */
 	priv->pagewidth = data & 0x3F;
-- 
2.20.1

^ permalink raw reply related	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2019-04-10  5:39 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-04-07  9:38 [U-Boot] [PATCH 1/2] misc: i2c_eeprom: support DT pagesize property Baruch Siach
2019-04-07  9:38 ` [U-Boot] [PATCH 2/2] misc: i2c_eeprom: add eeprom write support Baruch Siach
2019-04-10  5:30   ` Heiko Schocher
2019-04-10  5:39   ` Heiko Schocher
2019-04-10  5:25 ` [U-Boot] [PATCH 1/2] misc: i2c_eeprom: support DT pagesize property Heiko Schocher
2019-04-10  5:39 ` Heiko Schocher

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.