All of lore.kernel.org
 help / color / mirror / Atom feed
From: Peter Ujfalusi <peter.ujfalusi@ti.com>
To: <ssantosh@kernel.org>, <santosh.shilimkar@oracle.com>,
	<vkoul@kernel.org>, <robh+dt@kernel.org>
Cc: <t-kristo@ti.com>, <grygorii.strashko@ti.com>,
	<linux-kernel@vger.kernel.org>,
	<linux-arm-kernel@lists.infradead.org>,
	<devicetree@vger.kernel.org>, <lokeshvutla@ti.com>,
	<tony@atomide.com>, <j-keerthy@ti.com>, <vigneshr@ti.com>,
	<nm@ti.com>, <nsekhar@ti.com>
Subject: [PATCH v9 0/2] soc: ti: k3: Introduce ringacc driver
Date: Wed, 15 Jan 2020 12:35:43 +0200	[thread overview]
Message-ID: <20200115103545.6363-1-peter.ujfalusi@ti.com> (raw)

Hi Santosh,

as you have asked I have sending the ringacc driver as a separate series from
the DMA support for K3 platform.

I have picked the patches from v8 of the DMA support series.

The changelog regarding to ringacc:

Changes since v8:
- No change, picked from
 v8: https://lore.kernel.org/lkml/20191223110458.30766-1-peter.ujfalusi@ti.com/

Changes since v7:
- Added Tested-by from Keerthy
- Do not allow it to be built as a module for now as two exports are missing
  from kernel:
 - devm_ti_sci_get_of_resource()
 - of_msi_get_domain()

Changes since v6:
- No change

Changes since v5:
- No change

Changes since v4:
- clarify the meaning of ti,sci-dev-id in the binding document
- Remove 'default y' from Kconfig
- Fix struct comments
- Move try_module_get() earlier in k3_ringacc_request_ring()

Changes since v3:
- TODO_GS is removed from the header
- pm_runtime removed as NAVSS and it's components are always on
- Check validity of Message mode setup (element size > 8 bytes must use proxy)

Changes since v2:
- fixed up th commit message (SoB, TI-SCI)
- fixed ring reset
- CONFIG_TI_K3_RINGACC_DEBUG is removed along with the dbg_write/read functions
  and use dev_dbg()
- k3_ringacc_ring_dump() is moved to static
- step numbering removed from k3_ringacc_ring_reset_dma()
- Add clarification comment for shared ring usage in k3_ringacc_ring_cfg()
- Magic shift values in k3_ringacc_ring_cfg_proxy() got defined
- K3_RINGACC_RING_MODE_QM is removed as it is not supported

Changes since v1:
- Added Rob's Reviewed-by to ringacc DT binding document patch

Regards,
Peter
---
Grygorii Strashko (2):
  bindings: soc: ti: add documentation for k3 ringacc
  soc: ti: k3: add navss ringacc driver

 .../devicetree/bindings/soc/ti/k3-ringacc.txt |   59 +
 drivers/soc/ti/Kconfig                        |   11 +
 drivers/soc/ti/Makefile                       |    1 +
 drivers/soc/ti/k3-ringacc.c                   | 1157 +++++++++++++++++
 include/linux/soc/ti/k3-ringacc.h             |  244 ++++
 5 files changed, 1472 insertions(+)
 create mode 100644 Documentation/devicetree/bindings/soc/ti/k3-ringacc.txt
 create mode 100644 drivers/soc/ti/k3-ringacc.c
 create mode 100644 include/linux/soc/ti/k3-ringacc.h

-- 
Peter

Texas Instruments Finland Oy, Porkkalankatu 22, 00180 Helsinki.
Y-tunnus/Business ID: 0615521-4. Kotipaikka/Domicile: Helsinki


WARNING: multiple messages have this Message-ID (diff)
From: Peter Ujfalusi <peter.ujfalusi@ti.com>
To: <ssantosh@kernel.org>, <santosh.shilimkar@oracle.com>,
	<vkoul@kernel.org>,  <robh+dt@kernel.org>
Cc: nm@ti.com, devicetree@vger.kernel.org, grygorii.strashko@ti.com,
	vigneshr@ti.com, lokeshvutla@ti.com, j-keerthy@ti.com,
	nsekhar@ti.com, linux-kernel@vger.kernel.org, t-kristo@ti.com,
	tony@atomide.com, linux-arm-kernel@lists.infradead.org
Subject: [PATCH v9 0/2] soc: ti: k3: Introduce ringacc driver
Date: Wed, 15 Jan 2020 12:35:43 +0200	[thread overview]
Message-ID: <20200115103545.6363-1-peter.ujfalusi@ti.com> (raw)

Hi Santosh,

as you have asked I have sending the ringacc driver as a separate series from
the DMA support for K3 platform.

I have picked the patches from v8 of the DMA support series.

The changelog regarding to ringacc:

Changes since v8:
- No change, picked from
 v8: https://lore.kernel.org/lkml/20191223110458.30766-1-peter.ujfalusi@ti.com/

Changes since v7:
- Added Tested-by from Keerthy
- Do not allow it to be built as a module for now as two exports are missing
  from kernel:
 - devm_ti_sci_get_of_resource()
 - of_msi_get_domain()

Changes since v6:
- No change

Changes since v5:
- No change

Changes since v4:
- clarify the meaning of ti,sci-dev-id in the binding document
- Remove 'default y' from Kconfig
- Fix struct comments
- Move try_module_get() earlier in k3_ringacc_request_ring()

Changes since v3:
- TODO_GS is removed from the header
- pm_runtime removed as NAVSS and it's components are always on
- Check validity of Message mode setup (element size > 8 bytes must use proxy)

Changes since v2:
- fixed up th commit message (SoB, TI-SCI)
- fixed ring reset
- CONFIG_TI_K3_RINGACC_DEBUG is removed along with the dbg_write/read functions
  and use dev_dbg()
- k3_ringacc_ring_dump() is moved to static
- step numbering removed from k3_ringacc_ring_reset_dma()
- Add clarification comment for shared ring usage in k3_ringacc_ring_cfg()
- Magic shift values in k3_ringacc_ring_cfg_proxy() got defined
- K3_RINGACC_RING_MODE_QM is removed as it is not supported

Changes since v1:
- Added Rob's Reviewed-by to ringacc DT binding document patch

Regards,
Peter
---
Grygorii Strashko (2):
  bindings: soc: ti: add documentation for k3 ringacc
  soc: ti: k3: add navss ringacc driver

 .../devicetree/bindings/soc/ti/k3-ringacc.txt |   59 +
 drivers/soc/ti/Kconfig                        |   11 +
 drivers/soc/ti/Makefile                       |    1 +
 drivers/soc/ti/k3-ringacc.c                   | 1157 +++++++++++++++++
 include/linux/soc/ti/k3-ringacc.h             |  244 ++++
 5 files changed, 1472 insertions(+)
 create mode 100644 Documentation/devicetree/bindings/soc/ti/k3-ringacc.txt
 create mode 100644 drivers/soc/ti/k3-ringacc.c
 create mode 100644 include/linux/soc/ti/k3-ringacc.h

-- 
Peter

Texas Instruments Finland Oy, Porkkalankatu 22, 00180 Helsinki.
Y-tunnus/Business ID: 0615521-4. Kotipaikka/Domicile: Helsinki


_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

             reply	other threads:[~2020-01-15 10:35 UTC|newest]

Thread overview: 6+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-01-15 10:35 Peter Ujfalusi [this message]
2020-01-15 10:35 ` [PATCH v9 0/2] soc: ti: k3: Introduce ringacc driver Peter Ujfalusi
2020-01-15 10:35 ` [PATCH v9 1/2] bindings: soc: ti: add documentation for k3 ringacc Peter Ujfalusi
2020-01-15 10:35   ` Peter Ujfalusi
2020-01-15 10:35 ` [PATCH v9 2/2] soc: ti: k3: add navss ringacc driver Peter Ujfalusi
2020-01-15 10:35   ` Peter Ujfalusi

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=20200115103545.6363-1-peter.ujfalusi@ti.com \
    --to=peter.ujfalusi@ti.com \
    --cc=devicetree@vger.kernel.org \
    --cc=grygorii.strashko@ti.com \
    --cc=j-keerthy@ti.com \
    --cc=linux-arm-kernel@lists.infradead.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=lokeshvutla@ti.com \
    --cc=nm@ti.com \
    --cc=nsekhar@ti.com \
    --cc=robh+dt@kernel.org \
    --cc=santosh.shilimkar@oracle.com \
    --cc=ssantosh@kernel.org \
    --cc=t-kristo@ti.com \
    --cc=tony@atomide.com \
    --cc=vigneshr@ti.com \
    --cc=vkoul@kernel.org \
    /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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.