mirror of
https://github.com/torvalds/linux.git
synced 2024-12-29 06:12:08 +00:00
791d3ef2e1
'interrupt-parent' is often documented as part of define bindings, but it is really outside the scope of a device binding. It's never required in a given node as it is often inherited from a parent node. Or it can be implicit if a parent node is an 'interrupt-controller' node. So remove it from all the binding files. Cc: Mark Rutland <mark.rutland@arm.com> Cc: devicetree@vger.kernel.org Signed-off-by: Rob Herring <robh@kernel.org>
27 lines
924 B
Plaintext
27 lines
924 B
Plaintext
Maxim MAX77686 multi-function device
|
|
|
|
MAX77686 is a Multifunction device with PMIC, RTC and Charger on chip. It is
|
|
interfaced to host controller using i2c interface. PMIC and Charger submodules
|
|
are addressed using same i2c slave address whereas RTC submodule uses
|
|
different i2c slave address,presently for which we are statically creating i2c
|
|
client while probing.This document describes the binding for mfd device and
|
|
PMIC submodule.
|
|
|
|
Bindings for the built-in 32k clock generator block and
|
|
regulators are defined in ../clk/maxim,max77686.txt and
|
|
../regulator/max77686.txt respectively.
|
|
|
|
Required properties:
|
|
- compatible : Must be "maxim,max77686";
|
|
- reg : Specifies the i2c slave address of PMIC block.
|
|
- interrupts : This i2c device has an IRQ line connected to the main SoC.
|
|
|
|
Example:
|
|
|
|
max77686: pmic@9 {
|
|
compatible = "maxim,max77686";
|
|
interrupt-parent = <&wakeup_eint>;
|
|
interrupts = <26 0>;
|
|
reg = <0x09>;
|
|
};
|