2017-10-11 05:14:40 +08:00
|
|
|
Texas Instruments sysc interconnect target module wrapper binding
|
|
|
|
|
|
|
|
Texas Instruments SoCs can have a generic interconnect target module
|
|
|
|
hardware for devices connected to various interconnects such as L3
|
|
|
|
interconnect (Arteris NoC) and L4 interconnect (Sonics s3220). The sysc
|
|
|
|
is mostly used for interaction between module and PRCM. It participates
|
|
|
|
in the OCP Disconnect Protocol but other than that is mostly independent
|
|
|
|
of the interconnect.
|
|
|
|
|
|
|
|
Each interconnect target module can have one or more devices connected to
|
|
|
|
it. There is a set of control registers for managing interconnect target
|
|
|
|
module clocks, idle modes and interconnect level resets for the module.
|
|
|
|
|
|
|
|
These control registers are sprinkled into the unused register address
|
|
|
|
space of the first child device IP block managed by the interconnect
|
|
|
|
target module and typically are named REVISION, SYSCONFIG and SYSSTATUS.
|
|
|
|
|
|
|
|
Required standard properties:
|
|
|
|
|
|
|
|
- compatible shall be one of the following generic types:
|
|
|
|
|
2017-12-14 08:36:47 +08:00
|
|
|
"ti,sysc"
|
2017-10-11 05:14:40 +08:00
|
|
|
"ti,sysc-omap2"
|
|
|
|
"ti,sysc-omap4"
|
|
|
|
"ti,sysc-omap4-simple"
|
|
|
|
|
|
|
|
or one of the following derivative types for hardware
|
|
|
|
needing special workarounds:
|
|
|
|
|
dt-bindings: ti-sysc: Update binding for timers and capabilities
The ti-sysc binding does not yet describe the capabilities of the
interconnect target module. So to make the ti-sysc binding usable
for configuring the interconnect target module, we need to add few
more properties:
1. To detect between omap2 and omap4 timers, let's add compatibles
for them for "ti,sysc-omap2-timer" and,sysc-omap4-timer". This
makes it easier to pick up the already initialized system timers
later on
2. Let's add "ti,sysc-mask" for a mask of features supported by the
interconnect target module. This describes what we have available
in the various SYSCONFIG registers
3. Let's add "ti,sysc-midle" and "ti,sysc-sidle" lists for the master
and slave idle modes supported by the interconnect target module.
These describe the values available for MIDLE and SIDLE bits in
the SYSCONFIG registers
4. Some interconnect target modules need a short delay after reset
before they can be accessed, let's use "ti,sysc-delay-us" for
that
5. Let's add "ti,syss-mask" bit to describe the optional SYSSTATUS
register bits for reset done bits
6. Let's support the two existing custom quirk properties already
listed in Documentation/devicetree/bindings/arm/omap/omap.txt for
"ti,no-reset-on-init" and "ti,no-idle-on-init"
7. And finally, let's add a header for the binding for the dts
files and the driver to use
Cc: Benoît Cousson <bcousson@baylibre.com>
Cc: Dave Gerlach <d-gerlach@ti.com>
Cc: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Cc: Liam Girdwood <lgirdwood@gmail.com>
Cc: Mark Brown <broonie@kernel.org>
Cc: Mark Rutland <mark.rutland@arm.com>
Cc: Mauro Carvalho Chehab <mchehab@kernel.org>
Cc: Nishanth Menon <nm@ti.com>
Cc: Matthijs van Duin <matthijsvanduin@gmail.com>
Cc: Paul Walmsley <paul@pwsan.com>
Cc: Peter Ujfalusi <peter.ujfalusi@ti.com>
Cc: Sakari Ailus <sakari.ailus@iki.fi>
Cc: Suman Anna <s-anna@ti.com>
Cc: Tero Kristo <t-kristo@ti.com>
Cc: Tomi Valkeinen <tomi.valkeinen@ti.com>
Reviewed-by: Rob Herring <robh@kernel.org>
Signed-off-by: Tony Lindgren <tony@atomide.com>
2017-12-14 08:36:47 +08:00
|
|
|
"ti,sysc-omap2-timer"
|
|
|
|
"ti,sysc-omap4-timer"
|
2017-10-11 05:14:40 +08:00
|
|
|
"ti,sysc-omap3430-sr"
|
|
|
|
"ti,sysc-omap3630-sr"
|
|
|
|
"ti,sysc-omap4-sr"
|
|
|
|
"ti,sysc-omap3-sham"
|
|
|
|
"ti,sysc-omap-aes"
|
|
|
|
"ti,sysc-mcasp"
|
2018-11-16 06:46:53 +08:00
|
|
|
"ti,sysc-dra7-mcasp"
|
2017-10-11 05:14:40 +08:00
|
|
|
"ti,sysc-usb-host-fs"
|
2018-07-10 00:48:38 +08:00
|
|
|
"ti,sysc-dra7-mcan"
|
2017-10-11 05:14:40 +08:00
|
|
|
|
|
|
|
- reg shall have register areas implemented for the interconnect
|
|
|
|
target module in question such as revision, sysc and syss
|
|
|
|
|
|
|
|
- reg-names shall contain the register names implemented for the
|
|
|
|
interconnect target module in question such as
|
|
|
|
"rev, "sysc", and "syss"
|
|
|
|
|
|
|
|
- ranges shall contain the interconnect target module IO range
|
|
|
|
available for one or more child device IP blocks managed
|
|
|
|
by the interconnect target module, the ranges may include
|
|
|
|
multiple ranges such as device L4 range for control and
|
|
|
|
parent L3 range for DMA access
|
|
|
|
|
|
|
|
Optional properties:
|
|
|
|
|
dt-bindings: ti-sysc: Update binding for timers and capabilities
The ti-sysc binding does not yet describe the capabilities of the
interconnect target module. So to make the ti-sysc binding usable
for configuring the interconnect target module, we need to add few
more properties:
1. To detect between omap2 and omap4 timers, let's add compatibles
for them for "ti,sysc-omap2-timer" and,sysc-omap4-timer". This
makes it easier to pick up the already initialized system timers
later on
2. Let's add "ti,sysc-mask" for a mask of features supported by the
interconnect target module. This describes what we have available
in the various SYSCONFIG registers
3. Let's add "ti,sysc-midle" and "ti,sysc-sidle" lists for the master
and slave idle modes supported by the interconnect target module.
These describe the values available for MIDLE and SIDLE bits in
the SYSCONFIG registers
4. Some interconnect target modules need a short delay after reset
before they can be accessed, let's use "ti,sysc-delay-us" for
that
5. Let's add "ti,syss-mask" bit to describe the optional SYSSTATUS
register bits for reset done bits
6. Let's support the two existing custom quirk properties already
listed in Documentation/devicetree/bindings/arm/omap/omap.txt for
"ti,no-reset-on-init" and "ti,no-idle-on-init"
7. And finally, let's add a header for the binding for the dts
files and the driver to use
Cc: Benoît Cousson <bcousson@baylibre.com>
Cc: Dave Gerlach <d-gerlach@ti.com>
Cc: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Cc: Liam Girdwood <lgirdwood@gmail.com>
Cc: Mark Brown <broonie@kernel.org>
Cc: Mark Rutland <mark.rutland@arm.com>
Cc: Mauro Carvalho Chehab <mchehab@kernel.org>
Cc: Nishanth Menon <nm@ti.com>
Cc: Matthijs van Duin <matthijsvanduin@gmail.com>
Cc: Paul Walmsley <paul@pwsan.com>
Cc: Peter Ujfalusi <peter.ujfalusi@ti.com>
Cc: Sakari Ailus <sakari.ailus@iki.fi>
Cc: Suman Anna <s-anna@ti.com>
Cc: Tero Kristo <t-kristo@ti.com>
Cc: Tomi Valkeinen <tomi.valkeinen@ti.com>
Reviewed-by: Rob Herring <robh@kernel.org>
Signed-off-by: Tony Lindgren <tony@atomide.com>
2017-12-14 08:36:47 +08:00
|
|
|
- ti,sysc-mask shall contain mask of supported register bits for the
|
|
|
|
SYSCONFIG register as documented in the Technical Reference
|
|
|
|
Manual (TRM) for the interconnect target module
|
|
|
|
|
|
|
|
- ti,sysc-midle list of master idle modes supported by the interconnect
|
|
|
|
target module as documented in the TRM for SYSCONFIG
|
|
|
|
register MIDLEMODE bits
|
|
|
|
|
|
|
|
- ti,sysc-sidle list of slave idle modes supported by the interconnect
|
|
|
|
target module as documented in the TRM for SYSCONFIG
|
|
|
|
register SIDLEMODE bits
|
|
|
|
|
|
|
|
- ti,sysc-delay-us delay needed after OCP softreset before accssing
|
|
|
|
SYSCONFIG register again
|
|
|
|
|
|
|
|
- ti,syss-mask optional mask of reset done status bits as described in the
|
|
|
|
TRM for SYSSTATUS registers, typically 1 with some devices
|
|
|
|
having separate reset done bits for children like OHCI and
|
|
|
|
EHCI
|
|
|
|
|
2017-10-11 05:14:40 +08:00
|
|
|
- clocks clock specifier for each name in the clock-names as
|
|
|
|
specified in the binding documentation for ti-clkctrl,
|
|
|
|
typically available for all interconnect targets on TI SoCs
|
|
|
|
based on omap4 except if it's read-only register in hwauto
|
|
|
|
mode as for example omap4 L4_CFG_CLKCTRL
|
|
|
|
|
|
|
|
- clock-names should contain at least "fck", and optionally also "ick"
|
2018-04-17 01:25:52 +08:00
|
|
|
depending on the SoC and the interconnect target module,
|
|
|
|
some interconnect target modules also need additional
|
|
|
|
optional clocks that can be specified as listed in TRM
|
|
|
|
for the related CLKCTRL register bits 8 to 15 such as
|
|
|
|
"dbclk" or "clk32k" depending on their role
|
2017-10-11 05:14:40 +08:00
|
|
|
|
|
|
|
- ti,hwmods optional TI interconnect module name to use legacy
|
|
|
|
hwmod platform data
|
|
|
|
|
dt-bindings: ti-sysc: Update binding for timers and capabilities
The ti-sysc binding does not yet describe the capabilities of the
interconnect target module. So to make the ti-sysc binding usable
for configuring the interconnect target module, we need to add few
more properties:
1. To detect between omap2 and omap4 timers, let's add compatibles
for them for "ti,sysc-omap2-timer" and,sysc-omap4-timer". This
makes it easier to pick up the already initialized system timers
later on
2. Let's add "ti,sysc-mask" for a mask of features supported by the
interconnect target module. This describes what we have available
in the various SYSCONFIG registers
3. Let's add "ti,sysc-midle" and "ti,sysc-sidle" lists for the master
and slave idle modes supported by the interconnect target module.
These describe the values available for MIDLE and SIDLE bits in
the SYSCONFIG registers
4. Some interconnect target modules need a short delay after reset
before they can be accessed, let's use "ti,sysc-delay-us" for
that
5. Let's add "ti,syss-mask" bit to describe the optional SYSSTATUS
register bits for reset done bits
6. Let's support the two existing custom quirk properties already
listed in Documentation/devicetree/bindings/arm/omap/omap.txt for
"ti,no-reset-on-init" and "ti,no-idle-on-init"
7. And finally, let's add a header for the binding for the dts
files and the driver to use
Cc: Benoît Cousson <bcousson@baylibre.com>
Cc: Dave Gerlach <d-gerlach@ti.com>
Cc: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Cc: Liam Girdwood <lgirdwood@gmail.com>
Cc: Mark Brown <broonie@kernel.org>
Cc: Mark Rutland <mark.rutland@arm.com>
Cc: Mauro Carvalho Chehab <mchehab@kernel.org>
Cc: Nishanth Menon <nm@ti.com>
Cc: Matthijs van Duin <matthijsvanduin@gmail.com>
Cc: Paul Walmsley <paul@pwsan.com>
Cc: Peter Ujfalusi <peter.ujfalusi@ti.com>
Cc: Sakari Ailus <sakari.ailus@iki.fi>
Cc: Suman Anna <s-anna@ti.com>
Cc: Tero Kristo <t-kristo@ti.com>
Cc: Tomi Valkeinen <tomi.valkeinen@ti.com>
Reviewed-by: Rob Herring <robh@kernel.org>
Signed-off-by: Tony Lindgren <tony@atomide.com>
2017-12-14 08:36:47 +08:00
|
|
|
- ti,no-reset-on-init interconnect target module should not be reset at init
|
|
|
|
|
|
|
|
- ti,no-idle-on-init interconnect target module should not be idled at init
|
2017-10-11 05:14:40 +08:00
|
|
|
|
2019-03-22 22:49:30 +08:00
|
|
|
- ti,no-idle interconnect target module should not be idled
|
|
|
|
|
2017-10-11 05:14:40 +08:00
|
|
|
Example: Single instance of MUSB controller on omap4 using interconnect ranges
|
|
|
|
using offsets from l4_cfg second segment (0x4a000000 + 0x80000 = 0x4a0ab000):
|
|
|
|
|
|
|
|
target-module@2b000 { /* 0x4a0ab000, ap 84 12.0 */
|
|
|
|
compatible = "ti,sysc-omap2";
|
|
|
|
ti,hwmods = "usb_otg_hs";
|
|
|
|
reg = <0x2b400 0x4>,
|
|
|
|
<0x2b404 0x4>,
|
|
|
|
<0x2b408 0x4>;
|
|
|
|
reg-names = "rev", "sysc", "syss";
|
|
|
|
clocks = <&l3_init_clkctrl OMAP4_USB_OTG_HS_CLKCTRL 0>;
|
|
|
|
clock-names = "fck";
|
dt-bindings: ti-sysc: Update binding for timers and capabilities
The ti-sysc binding does not yet describe the capabilities of the
interconnect target module. So to make the ti-sysc binding usable
for configuring the interconnect target module, we need to add few
more properties:
1. To detect between omap2 and omap4 timers, let's add compatibles
for them for "ti,sysc-omap2-timer" and,sysc-omap4-timer". This
makes it easier to pick up the already initialized system timers
later on
2. Let's add "ti,sysc-mask" for a mask of features supported by the
interconnect target module. This describes what we have available
in the various SYSCONFIG registers
3. Let's add "ti,sysc-midle" and "ti,sysc-sidle" lists for the master
and slave idle modes supported by the interconnect target module.
These describe the values available for MIDLE and SIDLE bits in
the SYSCONFIG registers
4. Some interconnect target modules need a short delay after reset
before they can be accessed, let's use "ti,sysc-delay-us" for
that
5. Let's add "ti,syss-mask" bit to describe the optional SYSSTATUS
register bits for reset done bits
6. Let's support the two existing custom quirk properties already
listed in Documentation/devicetree/bindings/arm/omap/omap.txt for
"ti,no-reset-on-init" and "ti,no-idle-on-init"
7. And finally, let's add a header for the binding for the dts
files and the driver to use
Cc: Benoît Cousson <bcousson@baylibre.com>
Cc: Dave Gerlach <d-gerlach@ti.com>
Cc: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Cc: Liam Girdwood <lgirdwood@gmail.com>
Cc: Mark Brown <broonie@kernel.org>
Cc: Mark Rutland <mark.rutland@arm.com>
Cc: Mauro Carvalho Chehab <mchehab@kernel.org>
Cc: Nishanth Menon <nm@ti.com>
Cc: Matthijs van Duin <matthijsvanduin@gmail.com>
Cc: Paul Walmsley <paul@pwsan.com>
Cc: Peter Ujfalusi <peter.ujfalusi@ti.com>
Cc: Sakari Ailus <sakari.ailus@iki.fi>
Cc: Suman Anna <s-anna@ti.com>
Cc: Tero Kristo <t-kristo@ti.com>
Cc: Tomi Valkeinen <tomi.valkeinen@ti.com>
Reviewed-by: Rob Herring <robh@kernel.org>
Signed-off-by: Tony Lindgren <tony@atomide.com>
2017-12-14 08:36:47 +08:00
|
|
|
ti,sysc-mask = <(SYSC_OMAP2_ENAWAKEUP |
|
|
|
|
SYSC_OMAP2_SOFTRESET |
|
|
|
|
SYSC_OMAP2_AUTOIDLE)>;
|
|
|
|
ti,sysc-midle = <SYSC_IDLE_FORCE>,
|
|
|
|
<SYSC_IDLE_NO>,
|
|
|
|
<SYSC_IDLE_SMART>;
|
|
|
|
ti,sysc-sidle = <SYSC_IDLE_FORCE>,
|
|
|
|
<SYSC_IDLE_NO>,
|
|
|
|
<SYSC_IDLE_SMART>,
|
|
|
|
<SYSC_IDLE_SMART_WKUP>;
|
|
|
|
ti,syss-mask = <1>;
|
2017-10-11 05:14:40 +08:00
|
|
|
#address-cells = <1>;
|
|
|
|
#size-cells = <1>;
|
|
|
|
ranges = <0 0x2b000 0x1000>;
|
|
|
|
|
|
|
|
usb_otg_hs: otg@0 {
|
|
|
|
compatible = "ti,omap4-musb";
|
|
|
|
reg = <0x0 0x7ff>;
|
|
|
|
interrupts = <GIC_SPI 92 IRQ_TYPE_LEVEL_HIGH>,
|
|
|
|
<GIC_SPI 93 IRQ_TYPE_LEVEL_HIGH>;
|
|
|
|
usb-phy = <&usb2_phy>;
|
|
|
|
...
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2019-04-04 19:16:57 +08:00
|
|
|
Note that other SoCs, such as am335x can have multiple child devices. On am335x
|
2017-10-11 05:14:40 +08:00
|
|
|
there are two MUSB instances, two USB PHY instances, and a single CPPI41 DMA
|
2019-04-04 19:16:57 +08:00
|
|
|
instance as children of a single interconnect target module.
|