From: "guomengqi (A)" <guomengqi3@huawei.com>
To: Rob Herring <robh@kernel.org>
Cc: <vkoul@kernel.org>, <dmaengine@vger.kernel.org>,
<krzysztof.kozlowski+dt@linaro.org>, <conor+dt@kernel.org>,
<devicetree@vger.kernel.org>, <xuqiang36@huawei.com>,
<chenweilong@huawei.com>
Subject: Re: [PATCH v5 2/2] dt-bindings: dma: HiSilicon: Add bindings for HiSilicon Ascend sdma
Date: Mon, 23 Oct 2023 17:08:57 +0800 [thread overview]
Message-ID: <ff4df55f-27f2-8042-be58-a5feb2620551@huawei.com> (raw)
In-Reply-To: <20231022211348.GA682758-robh@kernel.org>
在 2023/10/23 5:13, Rob Herring 写道:
> On Sat, Oct 21, 2023 at 05:34:53PM +0800, Guo Mengqi wrote:
>> Add device-tree binding documentation for sdma hardware on
>> HiSilicon Ascend SoC families.
>>
>> Signed-off-by: Guo Mengqi <guomengqi3@huawei.com>
>> ---
>> .../bindings/dma/hisilicon,ascend-sdma.yaml | 73 +++++++++++++++++++
>> 1 file changed, 73 insertions(+)
>> create mode 100644 Documentation/devicetree/bindings/dma/hisilicon,ascend-sdma.yaml
>>
>> diff --git a/Documentation/devicetree/bindings/dma/hisilicon,ascend-sdma.yaml b/Documentation/devicetree/bindings/dma/hisilicon,ascend-sdma.yaml
>> new file mode 100644
>> index 000000000000..7b452b54fe0c
>> --- /dev/null
>> +++ b/Documentation/devicetree/bindings/dma/hisilicon,ascend-sdma.yaml
>> @@ -0,0 +1,73 @@
>> +# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
>> +%YAML 1.2
>> +---
>> +$id: http://devicetree.org/schemas/dma/hisilicon,ascend-sdma.yaml#
>> +$schema: http://devicetree.org/meta-schemas/core.yaml#
>> +
>> +title: HiSilicon Ascend System DMA (SDMA) controller
>> +
>> +description: |
>> + The Ascend SDMA controller is used for transferring data
>> + in system memory.
>> +
>> +maintainers:
>> + - Guo Mengqi <guomengqi3@huawei.com>
>> +
>> +allOf:
>> + - $ref: dma-controller.yaml#
>> +
>> +properties:
>> + compatible:
>> + enum:
>> + - hisilicon,ascend310-sdma
>> + - hisilicon,ascend910-sdma
>> +
>> + reg:
>> + maxItems: 1
>> +
>> + '#dma-cells':
>> + const: 1
>> + description:
>> + Clients specify a single cell with channel number.
>> +
>> + dma-channel-mask:
>> + minItems: 1
>> + maxItems: 2
>> +
>> + iommus:
>> + maxItems: 1
>> +
>> + pasid-num-bits:
>> + description: |
>> + This tells smmu that this device supports iommu-sva feature.
> How is this a feature of the DMA controller? Shouldn't this be part of
> the iommu cells? How does pasid relate to SVA?
Hi
"pasid-num-bits" shows number of address spaces that device can access.
The property is necessary because iommu driver use this property to
decide whether the device supports SVA.
For example,
pasid-num-bits = <0x10>; // the device can access page table from
at most 16 user processes
Descriptions can be found at
Documentation/devicetree/bindings/iommu/iommu.txt .
This does not fit in iommu cells? I think iommu cells only hold stream
id and dma window.
>
>> + This determines the maximum number of digits in the pasid.
>> + maximum: 0x10
>> +
>> + dma-coherent: true
>> +
>> + dma-can-stall: true
> What is this?
This means dma controller can wait for iommu to handle the page fault.
When present, the master can wait for a transaction to complete for an
indefinite amount of time.
The hardware is designed with stalling support.
>> +
>> +required:
>> + - compatible
>> + - reg
>> + - dma-channel-mask
>> + - '#dma-cells'
>> + - iommus
>> + - pasid-num-bits
>> +
>> +additionalProperties: false
>> +
>> +examples:
>> + - |
>> + dma-controller@880e0000 {
>> + compatible = "hisilicon,ascend310-sdma";
>> + reg = <0x880e0000 0x10000>;
>> + dma-channel-mask = <0xff00>;
>> + iommus = <&smmu 0x7f46>;
>> + pasid-num-bits = <0x10>;
>> + dma-coherent;
>> + dma-can-stall;
>> + #dma-cells = <1>;
>> + };
>> +
>> +...
>> --
>> 2.17.1
>>
> .
prev parent reply other threads:[~2023-10-23 9:09 UTC|newest]
Thread overview: 9+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-10-21 9:34 [PATCH v5 0/2] Add dma controller driver for HiSilicon Ascend310/910 Guo Mengqi
2023-10-21 9:34 ` [PATCH v5 1/2] dmaengine: Add HiSilicon Ascend SDMA engine support Guo Mengqi
2023-10-24 18:43 ` kernel test robot
2023-10-24 20:10 ` kernel test robot
2023-10-21 9:34 ` [PATCH v5 2/2] dt-bindings: dma: HiSilicon: Add bindings for HiSilicon Ascend sdma Guo Mengqi
2023-10-21 10:18 ` Rob Herring
2023-10-24 2:04 ` guomengqi (A)
2023-10-22 21:13 ` Rob Herring
2023-10-23 9:08 ` guomengqi (A) [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=ff4df55f-27f2-8042-be58-a5feb2620551@huawei.com \
--to=guomengqi3@huawei.com \
--cc=chenweilong@huawei.com \
--cc=conor+dt@kernel.org \
--cc=devicetree@vger.kernel.org \
--cc=dmaengine@vger.kernel.org \
--cc=krzysztof.kozlowski+dt@linaro.org \
--cc=robh@kernel.org \
--cc=vkoul@kernel.org \
--cc=xuqiang36@huawei.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox