~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

TOMOYO Linux Cross Reference
Linux/Documentation/devicetree/bindings/interconnect/fsl,imx8m-noc.yaml

Version: ~ [ linux-6.12-rc7 ] ~ [ linux-6.11.7 ] ~ [ linux-6.10.14 ] ~ [ linux-6.9.12 ] ~ [ linux-6.8.12 ] ~ [ linux-6.7.12 ] ~ [ linux-6.6.60 ] ~ [ linux-6.5.13 ] ~ [ linux-6.4.16 ] ~ [ linux-6.3.13 ] ~ [ linux-6.2.16 ] ~ [ linux-6.1.116 ] ~ [ linux-6.0.19 ] ~ [ linux-5.19.17 ] ~ [ linux-5.18.19 ] ~ [ linux-5.17.15 ] ~ [ linux-5.16.20 ] ~ [ linux-5.15.171 ] ~ [ linux-5.14.21 ] ~ [ linux-5.13.19 ] ~ [ linux-5.12.19 ] ~ [ linux-5.11.22 ] ~ [ linux-5.10.229 ] ~ [ linux-5.9.16 ] ~ [ linux-5.8.18 ] ~ [ linux-5.7.19 ] ~ [ linux-5.6.19 ] ~ [ linux-5.5.19 ] ~ [ linux-5.4.285 ] ~ [ linux-5.3.18 ] ~ [ linux-5.2.21 ] ~ [ linux-5.1.21 ] ~ [ linux-5.0.21 ] ~ [ linux-4.20.17 ] ~ [ linux-4.19.323 ] ~ [ linux-4.18.20 ] ~ [ linux-4.17.19 ] ~ [ linux-4.16.18 ] ~ [ linux-4.15.18 ] ~ [ linux-4.14.336 ] ~ [ linux-4.13.16 ] ~ [ linux-4.12.14 ] ~ [ linux-4.11.12 ] ~ [ linux-4.10.17 ] ~ [ linux-4.9.337 ] ~ [ linux-4.4.302 ] ~ [ linux-3.10.108 ] ~ [ linux-2.6.32.71 ] ~ [ linux-2.6.0 ] ~ [ linux-2.4.37.11 ] ~ [ unix-v6-master ] ~ [ ccs-tools-1.8.12 ] ~ [ policy-sample ] ~
Architecture: ~ [ i386 ] ~ [ alpha ] ~ [ m68k ] ~ [ mips ] ~ [ ppc ] ~ [ sparc ] ~ [ sparc64 ] ~

  1 # SPDX-License-Identifier: GPL-2.0
  2 %YAML 1.2
  3 ---
  4 $id: http://devicetree.org/schemas/interconnect/fsl,imx8m-noc.yaml#
  5 $schema: http://devicetree.org/meta-schemas/core.yaml#
  6 
  7 title: Generic i.MX bus frequency device
  8 
  9 maintainers:
 10   - Peng Fan <peng.fan@nxp.com>
 11 
 12 description: |
 13   The i.MX SoC family has multiple buses for which clock frequency (and
 14   sometimes voltage) can be adjusted.
 15 
 16   Some of those buses expose register areas mentioned in the memory maps as GPV
 17   ("Global Programmers View") but not all. Access to this area might be denied
 18   for normal (non-secure) world.
 19 
 20   The buses are based on externally licensed IPs such as ARM NIC-301 and
 21   Arteris FlexNOC but DT bindings are specific to the integration of these bus
 22   interconnect IPs into imx SOCs.
 23 
 24 properties:
 25   compatible:
 26     oneOf:
 27       - items:
 28           - enum:
 29               - fsl,imx8mm-nic
 30               - fsl,imx8mn-nic
 31               - fsl,imx8mp-nic
 32               - fsl,imx8mq-nic
 33           - const: fsl,imx8m-nic
 34       - items:
 35           - enum:
 36               - fsl,imx8mm-noc
 37               - fsl,imx8mn-noc
 38               - fsl,imx8mp-noc
 39               - fsl,imx8mq-noc
 40           - const: fsl,imx8m-noc
 41       - const: fsl,imx8m-nic
 42 
 43   reg:
 44     maxItems: 1
 45 
 46   clocks:
 47     maxItems: 1
 48 
 49   operating-points-v2: true
 50   opp-table:
 51     type: object
 52 
 53   fsl,ddrc:
 54     $ref: /schemas/types.yaml#/definitions/phandle
 55     description:
 56       Phandle to DDR Controller.
 57 
 58   '#interconnect-cells':
 59     description:
 60       If specified then also act as an interconnect provider. Should only be
 61       set once per soc on the main noc.
 62     const: 1
 63 
 64 required:
 65   - compatible
 66   - clocks
 67 
 68 additionalProperties: false
 69 
 70 examples:
 71   - |
 72     #include <dt-bindings/clock/imx8mm-clock.h>
 73     #include <dt-bindings/interconnect/imx8mm.h>
 74     #include <dt-bindings/interrupt-controller/arm-gic.h>
 75 
 76     noc: interconnect@32700000 {
 77         compatible = "fsl,imx8mm-noc", "fsl,imx8m-noc";
 78         reg = <0x32700000 0x100000>;
 79         clocks = <&clk IMX8MM_CLK_NOC>;
 80         #interconnect-cells = <1>;
 81         fsl,ddrc = <&ddrc>;
 82 
 83         operating-points-v2 = <&noc_opp_table>;
 84         noc_opp_table: opp-table {
 85             compatible = "operating-points-v2";
 86 
 87             opp-133333333 {
 88                 opp-hz = /bits/ 64 <133333333>;
 89             };
 90             opp-800000000 {
 91                 opp-hz = /bits/ 64 <800000000>;
 92             };
 93         };
 94     };
 95 
 96     ddrc: memory-controller@3d400000 {
 97         compatible = "fsl,imx8mm-ddrc", "fsl,imx8m-ddrc";
 98         reg = <0x3d400000 0x400000>;
 99         clock-names = "core", "pll", "alt", "apb";
100         clocks = <&clk IMX8MM_CLK_DRAM_CORE>,
101                  <&clk IMX8MM_DRAM_PLL>,
102                  <&clk IMX8MM_CLK_DRAM_ALT>,
103                  <&clk IMX8MM_CLK_DRAM_APB>;
104     };

~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

kernel.org | git.kernel.org | LWN.net | Project Home | SVN repository | Mail admin

Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.

sflogo.php