1// SPDX-License-Identifier: GPL-2.0+ OR MIT 2/* 3 * Copyright (C) 2024 Enclustra GmbH - https://www.enclustra.com 4 */ 5 6&i2c_encl { 7 status = "okay"; 8 9 eeprom@57 { 10 status = "okay"; 11 compatible = "microchip,24c128"; 12 reg = <0x57>; 13 pagesize = <64>; 14 label = "user eeprom"; 15 address-width = <16>; 16 }; 17 18 lm96080: temperature-sensor@2f { 19 status = "okay"; 20 compatible = "national,lm80"; 21 reg = <0x2f>; 22 }; 23 24 si5338: clock-controller@70 { 25 compatible = "silabs,si5338"; 26 reg = <0x70>; 27 }; 28 29}; 30 31&i2c_encl_fpga { 32 status = "okay"; 33}; 34