mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/chenhuacai/linux-loongson
synced 2025-09-02 16:44:59 +00:00

Convert qman, bman, qman-portals, bman-portals to yaml format. Additional Change for fsl,q(b)man-portal: - Only keep one example. - Add fsl,qman-channel-id property. - Use interrupt type macro. - Remove top level qman-portals@ff4200000 at example. Additional change for fsl,q(b)man: - Fixed example error. - Remove redundent part, only keep fsl,qman node. - Change memory-regions to memory-region. - fsl,q(b)man-portals is not required property Additional change for fsl,qman-fqd.yaml: - Fixed example error. - Only keep one example. - Ref to reserve-memory.yaml - Merge fsl,bman reserver memory part Signed-off-by: Frank Li <Frank.Li@nxp.com> Link: https://lore.kernel.org/r/20240626193753.2088926-1-Frank.Li@nxp.com Signed-off-by: Rob Herring (Arm) <robh@kernel.org>
53 lines
1.3 KiB
YAML
53 lines
1.3 KiB
YAML
# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
|
|
%YAML 1.2
|
|
---
|
|
$id: http://devicetree.org/schemas/soc/fsl/fsl,bman-portal.yaml#
|
|
$schema: http://devicetree.org/meta-schemas/core.yaml#
|
|
|
|
title: QorIQ DPAA Queue Manager Portals
|
|
|
|
maintainers:
|
|
- Frank Li <Frank.Li@nxp.com>
|
|
|
|
description:
|
|
QorIQ DPAA Buffer Manager Portal
|
|
|
|
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
|
|
|
|
properties:
|
|
compatible:
|
|
oneOf:
|
|
- const: fsl,bman-portal
|
|
- items:
|
|
- enum:
|
|
- fsl,bman-portal-1.0.0
|
|
- fsl,ls1043a-bmap-portal
|
|
- fsl,ls1046a-bmap-portal
|
|
- const: fsl,bman-portal
|
|
reg:
|
|
items:
|
|
- description: the cache-enabled region of the portal
|
|
- description: the cache-inhibited region of the portal
|
|
|
|
interrupts:
|
|
maxItems: 1
|
|
|
|
required:
|
|
- compatible
|
|
- reg
|
|
- interrupts
|
|
|
|
additionalProperties: false
|
|
|
|
examples:
|
|
- |
|
|
#include <dt-bindings/interrupt-controller/irq.h>
|
|
|
|
bman-portal@0 {
|
|
compatible = "fsl,bman-portal-1.0.0", "fsl,bman-portal";
|
|
reg = <0x0 0x4000>, <0x100000 0x1000>;
|
|
interrupts = <105 IRQ_TYPE_EDGE_FALLING 0 0>;
|
|
};
|