1/*
2 * Copyright (c) 2020 Intel Corporation
3 *
4 * SPDX-License-Identifier: Apache-2.0
5 */
6
7&i2c_smb_0 {
8	eeprom0: eeprom@54 {
9		compatible = "zephyr,i2c-target-eeprom";
10		reg = <0x54>;
11		address-width = <16>;
12		size = <1024>;
13	};
14};
15
16
17&i2c_smb_1 {
18	eeprom1: eeprom@56 {
19		compatible = "zephyr,i2c-target-eeprom";
20		reg = <0x56>;
21		address-width = <16>;
22		size = <1024>;
23	};
24};
25