Link: https://lore.kernel.org/r/20260217200002.683975158@linuxfoundation.org Tested-by: Florian Fainelli <florian.fainelli@broadcom.com> Tested-by: Takeshi Ogasawara <takeshi.ogasawara@futuring-girl.com> Tested-by: Peter Schneider <pschneider1968@googlemail.com> Tested-by: Jon Hunter <jonathanh@nvidia.com> Tested-by: Salvatore Bonaccorso <carnil@debian.org> Tested-by: Brett A C Sheffield <bacs@librecast.net> Tested-by: Mark Brown <broonie@kernel.org> Tested-by: Luna Jernberg <droidbittin@gmail.com> Tested-by: Ronald Warsow <rwarsow@gmx.de> Tested-by: Justin M. Forbes <jforbes@fedoraproject.org> Tested-by: Ron Economos <re@w6rz.net> Tested-by: Miguel Ojeda <ojeda@kernel.org> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
48 lines
1.1 KiB
Plaintext
48 lines
1.1 KiB
Plaintext
Texas Instruments SmartReflex binding
|
|
|
|
SmartReflex is used to set and adjust the SoC operating points.
|
|
|
|
|
|
Required properties:
|
|
|
|
compatible: Shall be one of the following:
|
|
"ti,omap3-smartreflex-core"
|
|
"ti,omap3-smartreflex-mpu-iva"
|
|
"ti,omap4-smartreflex-core"
|
|
"ti,omap4-smartreflex-mpu"
|
|
"ti,omap4-smartreflex-iva"
|
|
|
|
reg: Shall contain the device instance IO range
|
|
|
|
interrupts: Shall contain the device instance interrupt
|
|
|
|
|
|
Optional properties:
|
|
|
|
ti,hwmods: Shall contain the TI interconnect module name if needed
|
|
by the SoC
|
|
|
|
|
|
Example:
|
|
|
|
smartreflex_iva: smartreflex@4a0db000 {
|
|
compatible = "ti,omap4-smartreflex-iva";
|
|
reg = <0x4a0db000 0x80>;
|
|
interrupts = <GIC_SPI 102 IRQ_TYPE_LEVEL_HIGH>;
|
|
ti,hwmods = "smartreflex_iva";
|
|
};
|
|
|
|
smartreflex_core: smartreflex@4a0dd000 {
|
|
compatible = "ti,omap4-smartreflex-core";
|
|
reg = <0x4a0dd000 0x80>;
|
|
interrupts = <GIC_SPI 19 IRQ_TYPE_LEVEL_HIGH>;
|
|
ti,hwmods = "smartreflex_core";
|
|
};
|
|
|
|
smartreflex_mpu: smartreflex@4a0d9000 {
|
|
compatible = "ti,omap4-smartreflex-mpu";
|
|
reg = <0x4a0d9000 0x80>;
|
|
interrupts = <GIC_SPI 18 IRQ_TYPE_LEVEL_HIGH>;
|
|
ti,hwmods = "smartreflex_mpu";
|
|
};
|