Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1677636 > unrolled thread
| Started by | Claudiu Beznea <claudiu.beznea@microchip.com> |
|---|---|
| First post | 2017-06-29 13:40 +0200 |
| Last post | 2017-06-29 13:50 +0200 |
| Articles | 2 — 1 participant |
Back to article view | Back to linux.kernel
[RFC PATCH 0/3] Add at24 functionality to read form different EEPROM offsets Claudiu Beznea <claudiu.beznea@microchip.com> - 2017-06-29 13:40 +0200
[PATCH 1/3] dt-bindings: i2c: eeprom: document all at24 bindings Claudiu Beznea <claudiu.beznea@microchip.com> - 2017-06-29 13:50 +0200
| From | Claudiu Beznea <claudiu.beznea@microchip.com> |
|---|---|
| Date | 2017-06-29 13:40 +0200 |
| Subject | [RFC PATCH 0/3] Add at24 functionality to read form different EEPROM offsets |
| Message-ID | <tXFXH-6YG-5@gated-at.bofh.it> |
Hi all,
Please give feedback on the following approach to extends at24 EEPROM
driver to support reading MAC from different addresses in EEPROM (patch
2 and 3 from this series). This will allow the at24 driver to be used
as a generic driver by different hardwares.
This series also contains a patch (patch 1 from this series) which document
all at24 EEPROM memories and it was pushed with this series because patch
3 from the series is based on it.
Thank you,
Claudiu Beznea
Claudiu Beznea (3):
dt-bindings: i2c: eeprom: document all at24 bindings
drivers: misc: eeprom: at24: support reading mac eeprom from
different addresses
dt-bindings: i2c: eeprom: document "start-offset" binding
Documentation/devicetree/bindings/eeprom/eeprom.txt | 20 +++++++++++++-------
drivers/misc/eeprom/at24.c | 5 ++++-
include/linux/platform_data/at24.h | 1 +
3 files changed, 18 insertions(+), 8 deletions(-)
--
2.7.4
[toc] | [next] | [standalone]
| From | Claudiu Beznea <claudiu.beznea@microchip.com> |
|---|---|
| Date | 2017-06-29 13:50 +0200 |
| Subject | [PATCH 1/3] dt-bindings: i2c: eeprom: document all at24 bindings |
| Message-ID | <tXG7n-71O-19@gated-at.bofh.it> |
| In reply to | #1677636 |
Document all at24 memories specific bindings. Signed-off-by: Claudiu Beznea <claudiu.beznea@microchip.com> --- Documentation/devicetree/bindings/eeprom/eeprom.txt | 17 ++++++++++------- 1 file changed, 10 insertions(+), 7 deletions(-) diff --git a/Documentation/devicetree/bindings/eeprom/eeprom.txt b/Documentation/devicetree/bindings/eeprom/eeprom.txt index 5696eb5..a50dc01 100644 --- a/Documentation/devicetree/bindings/eeprom/eeprom.txt +++ b/Documentation/devicetree/bindings/eeprom/eeprom.txt @@ -4,9 +4,11 @@ Required properties: - compatible : should be "<manufacturer>,<type>", like these: - "atmel,24c00", "atmel,24c01", "atmel,24c02", "atmel,24c04", - "atmel,24c08", "atmel,24c16", "atmel,24c32", "atmel,24c64", - "atmel,24c128", "atmel,24c256", "atmel,24c512", "atmel,24c1024" + "atmel,24c00", "atmel,24c01", "atmel,24cs01", "atmel,24c02", "atmel,24cs02", + "atmel,24mac402", "atmel,24mac602", "atmel,spd", "atmel,24c04", + "atmel,24cs04", "atmel,24c08", "atmel,24cs08", "atmel,24c16", "atmel,24cs16", + "atmel,24c32", "atmel,24cs32", "atmel,24c64", "atmel,24cs64", "atmel,24c128", + "atmel,24c256", "atmel,24c512", "atmel,24c1024" "catalyst,24c32" @@ -16,10 +18,11 @@ Required properties: "renesas,r1ex24002" - If there is no specific driver for <manufacturer>, a generic - driver based on <type> is selected. Possible types are: - "24c00", "24c01", "24c02", "24c04", "24c08", "24c16", "24c32", "24c64", - "24c128", "24c256", "24c512", "24c1024", "spd" + If there is no specific driver for <manufacturer>, a generic + driver based on <type> is selected. Possible types are: + "24c00", "24c01", "24cs01", "24c02", "24cs02", "24mac402", "24mac602", "spd", + "24c04", "24cs04", "24c08", "24cs08", "24c16", "24cs16", "24c32", "24cs32", + "24c64", "24cs64", "24c128", "24c256", "24c512", "24c1024" - reg : the I2C address of the EEPROM -- 2.7.4
[toc] | [prev] | [standalone]
Back to top | Article view | linux.kernel
csiph-web