18c2ecf20Sopenharmony_ciEEPROM / CSR SMBus-slave interface of IDT 89HPESx devices 28c2ecf20Sopenharmony_ci 38c2ecf20Sopenharmony_ciRequired properties: 48c2ecf20Sopenharmony_ci - compatible : should be "<manufacturer>,<type>" 58c2ecf20Sopenharmony_ci Basically there is only one manufacturer: idt, but some 68c2ecf20Sopenharmony_ci compatible devices may be produced in future. Following devices 78c2ecf20Sopenharmony_ci are supported: 89hpes8nt2, 89hpes12nt3, 89hpes24nt6ag2, 88c2ecf20Sopenharmony_ci 89hpes32nt8ag2, 89hpes32nt8bg2, 89hpes12nt12g2, 89hpes16nt16g2, 98c2ecf20Sopenharmony_ci 89hpes24nt24g2, 89hpes32nt24ag2, 89hpes32nt24bg2; 108c2ecf20Sopenharmony_ci 89hpes12n3, 89hpes12n3a, 89hpes24n3, 89hpes24n3a; 118c2ecf20Sopenharmony_ci 89hpes32h8, 89hpes32h8g2, 89hpes48h12, 89hpes48h12g2, 128c2ecf20Sopenharmony_ci 89hpes48h12ag2, 89hpes16h16, 89hpes22h16, 89hpes22h16g2, 138c2ecf20Sopenharmony_ci 89hpes34h16, 89hpes34h16g2, 89hpes64h16, 89hpes64h16g2, 148c2ecf20Sopenharmony_ci 89hpes64h16ag2; 158c2ecf20Sopenharmony_ci 89hpes12t3g2, 89hpes24t3g2, 89hpes16t4, 89hpes4t4g2, 168c2ecf20Sopenharmony_ci 89hpes10t4g2, 89hpes16t4g2, 89hpes16t4ag2, 89hpes5t5, 178c2ecf20Sopenharmony_ci 89hpes6t5, 89hpes8t5, 89hpes8t5a, 89hpes24t6, 89hpes6t6g2, 188c2ecf20Sopenharmony_ci 89hpes24t6g2, 89hpes16t7, 89hpes32t8, 89hpes32t8g2, 198c2ecf20Sopenharmony_ci 89hpes48t12, 89hpes48t12g2. 208c2ecf20Sopenharmony_ci - reg : I2C address of the IDT 89HPESx device. 218c2ecf20Sopenharmony_ci 228c2ecf20Sopenharmony_ciOptionally there can be EEPROM-compatible subnode: 238c2ecf20Sopenharmony_ci - compatible: There are five EEPROM devices supported: 24c32, 24c64, 24c128, 248c2ecf20Sopenharmony_ci 24c256 and 24c512 differed by size. 258c2ecf20Sopenharmony_ci - reg: Custom address of EEPROM device (If not specified IDT 89HPESx 268c2ecf20Sopenharmony_ci (optional) device will try to communicate with EEPROM sited by default 278c2ecf20Sopenharmony_ci address - 0x50) 288c2ecf20Sopenharmony_ci - read-only : Parameterless property disables writes to the EEPROM 298c2ecf20Sopenharmony_ci (optional) 308c2ecf20Sopenharmony_ci 318c2ecf20Sopenharmony_ciExample: 328c2ecf20Sopenharmony_ci idt@60 { 338c2ecf20Sopenharmony_ci compatible = "idt,89hpes32nt8ag2"; 348c2ecf20Sopenharmony_ci reg = <0x74>; 358c2ecf20Sopenharmony_ci #address-cells = <1>; 368c2ecf20Sopenharmony_ci #size-cells = <0>; 378c2ecf20Sopenharmony_ci 388c2ecf20Sopenharmony_ci eeprom@50 { 398c2ecf20Sopenharmony_ci compatible = "onsemi,24c64"; 408c2ecf20Sopenharmony_ci reg = <0x50>; 418c2ecf20Sopenharmony_ci read-only; 428c2ecf20Sopenharmony_ci }; 438c2ecf20Sopenharmony_ci }; 448c2ecf20Sopenharmony_ci 45