diff options
author | Emil Medve <Emilian.Medve@freescale.com> | 2014-11-05 10:18:52 -0500 |
---|---|---|
committer | Scott Wood <scottwood@freescale.com> | 2014-11-13 00:53:41 -0500 |
commit | 5f3af4008bfcb388a3193fd871e1b2e94ba4b09c (patch) | |
tree | aaeb99079e4a1cf0d85a7838e2f3fa087f1f8386 /Documentation | |
parent | 31ceb157f294843563330658c3ad6e3b5a1c4fe2 (diff) |
dt/bindings: Introduce the FSL QorIQ DPAA BMan portal(s)
Portals are memory mapped interfaces to BMan that allow low-latency,
lock-less interaction by software running on processor cores,
accelerators and network interfaces with the BMan
Signed-off-by: Emil Medve <Emilian.Medve@Freescale.com>
Change-Id: I6d245ffc14ba3d0e91d403ac7c3b91b75a9e6a95
Signed-off-by: Scott Wood <scottwood@freescale.com>
Diffstat (limited to 'Documentation')
-rw-r--r-- | Documentation/devicetree/bindings/soc/fsl/bman-portals.txt | 56 |
1 files changed, 56 insertions, 0 deletions
diff --git a/Documentation/devicetree/bindings/soc/fsl/bman-portals.txt b/Documentation/devicetree/bindings/soc/fsl/bman-portals.txt new file mode 100644 index 000000000000..2a00e14e11e0 --- /dev/null +++ b/Documentation/devicetree/bindings/soc/fsl/bman-portals.txt | |||
@@ -0,0 +1,56 @@ | |||
1 | QorIQ DPAA Buffer Manager Portals Device Tree Binding | ||
2 | |||
3 | Copyright (C) 2008 - 2014 Freescale Semiconductor Inc. | ||
4 | |||
5 | CONTENTS | ||
6 | |||
7 | - BMan Portal | ||
8 | - Example | ||
9 | |||
10 | BMan Portal Node | ||
11 | |||
12 | Portals are memory mapped interfaces to BMan that allow low-latency, lock-less | ||
13 | interaction by software running on processor cores, accelerators and network | ||
14 | interfaces with the BMan | ||
15 | |||
16 | PROPERTIES | ||
17 | |||
18 | - compatible | ||
19 | Usage: Required | ||
20 | Value type: <stringlist> | ||
21 | Definition: Must include "fsl,bman-portal-<hardware revision>" | ||
22 | May include "fsl,<SoC>-bman-portal" or "fsl,bman-portal" | ||
23 | |||
24 | - reg | ||
25 | Usage: Required | ||
26 | Value type: <prop-encoded-array> | ||
27 | Definition: Two regions. The first is the cache-enabled region of | ||
28 | the portal. The second is the cache-inhibited region of | ||
29 | the portal | ||
30 | |||
31 | - interrupts | ||
32 | Usage: Required | ||
33 | Value type: <prop-encoded-array> | ||
34 | Definition: Standard property | ||
35 | |||
36 | EXAMPLE | ||
37 | |||
38 | The example below shows a (P4080) BMan portals container/bus node with two portals | ||
39 | |||
40 | bman-portals@ff4000000 { | ||
41 | #address-cells = <1>; | ||
42 | #size-cells = <1>; | ||
43 | compatible = "simple-bus"; | ||
44 | ranges = <0 0xf 0xf4000000 0x200000>; | ||
45 | |||
46 | bman-portal@0 { | ||
47 | compatible = "fsl,bman-portal-1.0.0", "fsl,bman-portal"; | ||
48 | reg = <0x0 0x4000>, <0x100000 0x1000>; | ||
49 | interrupts = <105 2 0 0>; | ||
50 | }; | ||
51 | bman-portal@4000 { | ||
52 | compatible = "fsl,bman-portal-1.0.0", "fsl,bman-portal"; | ||
53 | reg = <0x4000 0x4000>, <0x101000 0x1000>; | ||
54 | interrupts = <107 2 0 0>; | ||
55 | }; | ||
56 | }; | ||