mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-11 23:47:24 +00:00
ARM: dts: imx8mm-verdin: eeprom nodes adjustments
Rename EEPROM nodes. Create aliases for EEPROM to unify their order: eeprom0 - on-module EEPROM eeprom1 - carrier-board EEPROM eeprom2 - MIPI-DSI to HDMI adapter EEPROM Signed-off-by: Igor Opaniuk <igor.opaniuk@toradex.com>
This commit is contained in:
parent
717fa2c819
commit
8cc40fa2d3
1 changed files with 14 additions and 8 deletions
|
@ -16,6 +16,12 @@
|
|||
stdout-path = &uart1;
|
||||
};
|
||||
|
||||
aliases {
|
||||
eeprom0 = &eeprom_module;
|
||||
eeprom1 = &eeprom_carrier_board;
|
||||
eeprom2 = &eeprom_display_adapter;
|
||||
};
|
||||
|
||||
/* fixed clock dedicated to SPI CAN controller */
|
||||
clk20m: oscillator {
|
||||
compatible = "fixed-clock";
|
||||
|
@ -321,8 +327,8 @@
|
|||
vcc-supply = <&ldo5_reg>;
|
||||
};
|
||||
|
||||
eeprom@50 {
|
||||
compatible = "st,24c02";
|
||||
eeprom_module: eeprom@50 {
|
||||
compatible = "st,24c02", "atmel,24c02", "i2c-eeprom";
|
||||
pagesize = <16>;
|
||||
reg = <0x50>;
|
||||
};
|
||||
|
@ -377,16 +383,16 @@
|
|||
status = "okay";
|
||||
};
|
||||
|
||||
/* EEPROM on MIPI-DSI to HDMI adapter */
|
||||
eeprom_50: eeprom@50 {
|
||||
compatible = "st,24c02";
|
||||
/* EEPROM on display adapter (MIPI DSI Display Adapter) */
|
||||
eeprom_display_adapter: eeprom@50 {
|
||||
compatible = "st,24c02", "atmel,24c02", "i2c-eeprom";
|
||||
pagesize = <16>;
|
||||
reg = <0x50>;
|
||||
};
|
||||
|
||||
/* EEPROM on Verdin Development board */
|
||||
eeprom_57: eeprom@57 {
|
||||
compatible = "st,24c02";
|
||||
/* EEPROM on carrier board */
|
||||
eeprom_carrier_board: eeprom@57 {
|
||||
compatible = "st,24c02", "atmel,24c02", "i2c-eeprom";
|
||||
pagesize = <16>;
|
||||
reg = <0x57>;
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue