1/* 2 * Copyright 2023 NXP 3 * 4 * SPDX-License-Identifier: Apache-2.0 5 */ 6 7/* Connect I2C0 (connector P4) to the external eeprom Microchip AT24C01C-XHM */ 8 9/ { 10 aliases { 11 eeprom-0 = &eeprom0; 12 }; 13}; 14 15&lpi2c0 { 16 status = "okay"; 17 eeprom0: eeprom@50 { 18 compatible = "atmel,at24"; 19 reg = <0x50>; 20 size = <128>; 21 pagesize = <8>; 22 address-width = <8>; 23 timeout = <5>; 24 }; 25}; 26