1/* Copyright (c) 2020 Nordic Semiconductor ASA 2 * SPDX-License-Identifier: Apache-2.0 3 */ 4 5/ { 6 aliases { 7 eeprom-1 = &i2c_eeprom; 8 }; 9}; 10 11&i2c0 { 12 i2c_eeprom: eeprom@57 { 13 compatible = "atmel,at24"; 14 reg = <0x57>; 15 size = <256>; 16 pagesize = <8>; 17 address-width = <8>; 18 timeout = <5>; 19 }; 20}; 21