Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1245808

Re: [PATCH 1/4] Documentation: dt: soc: move driver description to a separate document

From Rob Herring <robh+dt@kernel.org>
Newsgroups linux.kernel
Subject Re: [PATCH 1/4] Documentation: dt: soc: move driver description to a separate document
Date 2015-10-13 16:50 +0200
Message-ID <qj93R-18p-47@gated-at.bofh.it> (permalink)
References <qiRgB-nX-7@gated-at.bofh.it> <qiRgC-nX-31@gated-at.bofh.it>
Organization linux.* mail to news gateway

Show all headers | View raw


On Mon, Oct 12, 2015 at 2:46 PM, Murali Karicheri <m-karicheri2@ti.com> wrote:
> Currently the DT bindings have details about the driver as well. This
> patch moves this to a separate document for knav qmss driver so that
> driver detail update can be done as needed without polluting the DT
> bindings description.
>
> Signed-off-by: Murali Karicheri <m-karicheri2@ti.com>
> ---
>  Documentation/arm/keystone/knav-qmss.txt           | 24 ++++++++++++++++++++++
>  .../bindings/soc/ti/keystone-navigator-qmss.txt    | 20 ++++--------------
>  2 files changed, 28 insertions(+), 16 deletions(-)
>  create mode 100644 Documentation/arm/keystone/knav-qmss.txt
>
> diff --git a/Documentation/arm/keystone/knav-qmss.txt b/Documentation/arm/keystone/knav-qmss.txt
> new file mode 100644
> index 0000000..79946d1
> --- /dev/null
> +++ b/Documentation/arm/keystone/knav-qmss.txt
> @@ -0,0 +1,24 @@
> +* Texas Instruments Keystone Navigator Queue Management SubSystem driver
> +
> +Driver source code path
> +  drivers/soc/ti/knav_qmss.c
> +  drivers/soc/ti/knav_qmss_acc.c
> +
> +The QMSS (Queue Manager Sub System) found on Keystone SOCs is one of
> +the main hardware sub system which forms the backbone of the Keystone
> +multi-core Navigator. QMSS consist of queue managers, packed-data structure
> +processors(PDSP), linking RAM, descriptor pools and infrastructure
> +Packet DMA.
> +The Queue Manager is a hardware module that is responsible for accelerating
> +management of the packet queues. Packets are queued/de-queued by writing or
> +reading descriptor address to a particular memory mapped location. The PDSPs
> +perform QMSS related functions like accumulation, QoS, or event management.
> +Linking RAM registers are used to link the descriptors which are stored in
> +descriptor RAM. Descriptor RAM is configurable as internal or external memory.
> +The QMSS driver manages the PDSP setups, linking RAM regions,
> +queue pool management (allocation, push, pop and notify) and descriptor
> +pool management.
> +
> +knav qmss driver provides a set of APIs to drivers to open/close qmss queues,
> +allocate descriptor pools, map the descriptors, push/pop to queues etc. For
> +details of the available APIs, please refers to include/linux/soc/ti/knav_qmss.h
> diff --git a/Documentation/devicetree/bindings/soc/ti/keystone-navigator-qmss.txt b/Documentation/devicetree/bindings/soc/ti/keystone-navigator-qmss.txt
> index d8e8cdb..2cecea1 100644
> --- a/Documentation/devicetree/bindings/soc/ti/keystone-navigator-qmss.txt
> +++ b/Documentation/devicetree/bindings/soc/ti/keystone-navigator-qmss.txt
> @@ -1,20 +1,8 @@
> -* Texas Instruments Keystone Navigator Queue Management SubSystem driver
> -
> -The QMSS (Queue Manager Sub System) found on Keystone SOCs is one of
> -the main hardware sub system which forms the backbone of the Keystone
> -multi-core Navigator. QMSS consist of queue managers, packed-data structure
> -processors(PDSP), linking RAM, descriptor pools and infrastructure
> -Packet DMA.
> -The Queue Manager is a hardware module that is responsible for accelerating
> -management of the packet queues. Packets are queued/de-queued by writing or
> -reading descriptor address to a particular memory mapped location. The PDSPs
> -perform QMSS related functions like accumulation, QoS, or event management.
> -Linking RAM registers are used to link the descriptors which are stored in
> -descriptor RAM. Descriptor RAM is configurable as internal or external memory.
> -The QMSS driver manages the PDSP setups, linking RAM regions,
> -queue pool management (allocation, push, pop and notify) and descriptor
> -pool management.

Only the last sentence seems to be about the driver and is rather
obvious (a driver manages the h/w). I would leave all this as-is
currently.

Rob

> +* Texas Instruments Keystone Navigator (knav) Queue Management SubSystem driver
> +  DT bindings
>
> +For details of the driver, please refer to
> +Documentation/arm/keystone/knav-qmss.txt
>
>  Required properties:
>  - compatible   : Must be "ti,keystone-navigator-qmss";
> --
> 1.9.1
>
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Back to linux.kernel | Previous | NextPrevious in thread | Next in thread | Find similar | Unroll thread


Thread

[PATCH v2 0/4] soc: ti: knav_qmss: enable accumulator queue support Murali Karicheri <m-karicheri2@ti.com> - 2015-10-12 21:50 +0200
  [PATCH 1/4] Documentation: dt: soc: move driver description to a separate document Murali Karicheri <m-karicheri2@ti.com> - 2015-10-12 21:50 +0200
    Re: [PATCH 1/4] Documentation: dt: soc: move driver description to a  separate document Rob Herring <robh+dt@kernel.org> - 2015-10-13 16:50 +0200
      Re: [PATCH 1/4] Documentation: dt: soc: move driver description to  a separate document Murali Karicheri <m-karicheri2@ti.com> - 2015-10-13 17:50 +0200
      Re: [PATCH 1/4] Documentation: dt: soc: move driver description to  a separate document Murali Karicheri <m-karicheri2@ti.com> - 2015-10-13 19:40 +0200
        Re: [PATCH 1/4] Documentation: dt: soc: move driver description to a  separate document Rob Herring <robh+dt@kernel.org> - 2015-10-13 20:10 +0200
          Re: [PATCH 1/4] Documentation: dt: soc: move driver description to  a separate document Murali Karicheri <m-karicheri2@ti.com> - 2015-10-13 20:30 +0200
  Re: [PATCH v2 0/4] soc: ti: knav_qmss: enable accumulator queue support Murali Karicheri <m-karicheri2@ti.com> - 2015-10-12 22:00 +0200
  Re: [PATCH v2 0/4] soc: ti: knav_qmss: enable accumulator queue support Murali Karicheri <m-karicheri2@ti.com> - 2015-10-13 16:00 +0200
    Re: [PATCH v2 0/4] soc: ti: knav_qmss: enable accumulator queue  support santosh shilimkar <santosh.shilimkar@oracle.com> - 2015-10-13 18:10 +0200
      Re: [PATCH v2 0/4] soc: ti: knav_qmss: enable accumulator queue support Murali Karicheri <m-karicheri2@ti.com> - 2015-10-13 18:20 +0200
        Re: [PATCH v2 0/4] soc: ti: knav_qmss: enable accumulator queue  support santosh shilimkar <santosh.shilimkar@oracle.com> - 2015-10-13 18:30 +0200
          Re: [PATCH v2 0/4] soc: ti: knav_qmss: enable accumulator queue support Murali Karicheri <m-karicheri2@ti.com> - 2015-10-13 18:50 +0200

csiph-web