1Maxim MAX77686 multi-function device 2 3MAX77686 is a Multifunction device with PMIC, RTC and Charger on chip. It is 4interfaced to host controller using i2c interface. PMIC and Charger submodules 5are addressed using same i2c slave address whereas RTC submodule uses 6different i2c slave address,presently for which we are statically creating i2c 7client while probing.This document describes the binding for mfd device and 8PMIC submodule. 9 10Bindings for the built-in 32k clock generator block and 11regulators are defined in ../clk/maxim,max77686.txt and 12../regulator/max77686.txt respectively. 13 14Required properties: 15- compatible : Must be "maxim,max77686"; 16- reg : Specifies the i2c slave address of PMIC block. 17- interrupts : This i2c device has an IRQ line connected to the main SoC. 18 19Example: 20 21 max77686: pmic@9 { 22 compatible = "maxim,max77686"; 23 interrupt-parent = <&wakeup_eint>; 24 interrupts = <26 IRQ_TYPE_LEVEL_LOW>; 25 reg = <0x09>; 26 }; 27