Path: blob/master/Documentation/devicetree/bindings/bus/arm,integrator-ap-lm.yaml
26308 views
# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)1%YAML 1.22---3$id: http://devicetree.org/schemas/bus/arm,integrator-ap-lm.yaml#4$schema: http://devicetree.org/meta-schemas/core.yaml#56title: Integrator/AP Logic Module extension bus78maintainers:9- Linus Walleij <linusw@kernel.org>1011description: The Integrator/AP is a prototyping platform and as such has a12site for stacking up to four logic modules (LM) designed specifically for13use with this platform. A special system controller register can be read to14determine if a logic module is connected at index 0, 1, 2 or 3. The logic15module connector is described in this binding. The logic modules per se16then have their own specific per-module bindings and they will be described17as subnodes under this logic module extension bus.1819properties:20"#address-cells":21const: 12223"#size-cells":24const: 12526compatible:27items:28- const: arm,integrator-ap-lm2930ranges: true31dma-ranges: true3233patternProperties:34"^bus(@[0-9a-f]*)?$":35description: Nodes on the Logic Module bus represent logic modules36and are named with bus. The first module is at 0xc0000000, the second37at 0xd0000000 and so on until the top of the memory of the system at380xffffffff. All information about the memory used by the module is39in ranges and dma-ranges.40type: object4142required:43- compatible4445required:46- compatible4748examples:49- |50bus@c0000000 {51compatible = "arm,integrator-ap-lm";52#address-cells = <1>;53#size-cells = <1>;54ranges = <0xc0000000 0xc0000000 0x40000000>;55dma-ranges;5657bus@c0000000 {58compatible = "simple-bus";59ranges = <0x00000000 0xc0000000 0x10000000>;60/* The Logic Modules sees the Core Module 0 RAM @80000000 */61dma-ranges = <0x00000000 0x80000000 0x10000000>;62#address-cells = <1>;63#size-cells = <1>;6465serial@100000 {66compatible = "arm,pl011", "arm,primecell";67reg = <0x00100000 0x1000>;68interrupts-extended = <&impd1_vic 1>;69};7071impd1_vic: interrupt-controller@3000000 {72compatible = "arm,pl192-vic";73interrupt-controller;74#interrupt-cells = <1>;75reg = <0x03000000 0x1000>;76valid-mask = <0x00000bff>;77interrupts-extended = <&pic 9>;78};79};80};8182additionalProperties: false838485