Path: blob/main/sys/contrib/device-tree/Bindings/hwlock/omap-hwspinlock.txt
48375 views
TI HwSpinlock for OMAP and K3 based SoCs1=========================================23Required properties:4- compatible: Should be one of the following,5"ti,omap4-hwspinlock" for6OMAP44xx, OMAP54xx, AM33xx, AM43xx, DRA7xx SoCs7"ti,am654-hwspinlock" for8K3 AM65x and J721E SoCs9- reg: Contains the hwspinlock module register address space10(base address and length)11- ti,hwmods: Name of the hwmod associated with the hwspinlock device12(for OMAP architecture based SoCs only)13- #hwlock-cells: Should be 1. The OMAP hwspinlock users will use a140-indexed relative hwlock number as the argument15specifier value for requesting a specific hwspinlock16within a hwspinlock bank.1718Please look at the generic hwlock binding for usage information for consumers,19"Documentation/devicetree/bindings/hwlock/hwlock.txt"2021Example:22231. OMAP4 SoCs24hwspinlock: spinlock@4a0f6000 {25compatible = "ti,omap4-hwspinlock";26reg = <0x4a0f6000 0x1000>;27ti,hwmods = "spinlock";28#hwlock-cells = <1>;29};30312. AM65x SoCs and J721E SoCs32&cbass_main {33cbass_main_navss: interconnect0 {34hwspinlock: spinlock@30e00000 {35compatible = "ti,am654-hwspinlock";36reg = <0x00 0x30e00000 0x00 0x1000>;37#hwlock-cells = <1>;38};39};40};414243