All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v2 0/6] soc: ti: Add Keystone Navigator drivers
@ 2014-04-23 23:46 ` Santosh Shilimkar
  0 siblings, 0 replies; 45+ messages in thread
From: Santosh Shilimkar @ 2014-04-23 23:46 UTC (permalink / raw)
  To: linux-kernel
  Cc: linux-arm-kernel, devicetree, Santosh Shilimkar,
	Greg Kroah-Hartman, Kumar Gala, Olof Johansson, Arnd Bergmann,
	Grant Likely, Rob Herring, Mark Rutland

Here is an updated version of the Keystone Navigator drivers after
addressing comments from earlier version [1].

The QMSS 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 DMA.

After the discussion and alignment [2] on Navigator DMA, now we pair
this driver along with QMSS. Initially this driver was proposed as DMA
engine driver but since the hardware is not typical DMA engine and doesn't
comply with typical DMA engine driver needs, that approach was naked.

These two drivers works as infrastructure drivers for subsystems like
Ethernet subsystem, SRIO subsystem, Crypto Engines etc on Keystone
SOC families. Testing is done with NetCP(ethernet) subsystem drivers.

I would like to get these drivers merged in upcoming(3.16) window, so
any help in terms of review is appreciated. Thanks

Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Cc: Kumar Gala <galak@codeaurora.org>
Cc: Olof Johansson <olof@lixom.net>
Cc: Arnd Bergmann <arnd@arndb.de>
Cc: Grant Likely <grant.likely@linaro.org>
Cc: Rob Herring <robh+dt@kernel.org>
Cc: Mark Rutland <mark.rutland@arm.com>

Sandeep Nair (3):
  firmware: add Keystone QMSS PDSP accumulator firmware blob
  Documentation: dt: soc: add Keystone Navigator QMSS bindings
  soc: ti: add Keystone Navigator QMSS driver

Santosh Shilimkar (3):
  soc: Introduce drivers/soc place-holder for SOC specific drivers
  Documentation: dt: soc: add Keystone Navigator DMA bindings
  soc: ti: add Keystone Navigator DMA support

 .../bindings/soc/keystone-navigator-dma.txt        |  101 ++
 .../bindings/soc/keystone-navigator-qmss.txt       |  232 +++
 drivers/Kconfig                                    |    4 +
 drivers/Makefile                                   |    3 +
 drivers/soc/Kconfig                                |    5 +
 drivers/soc/Makefile                               |    5 +
 drivers/soc/ti/Kconfig                             |   31 +
 drivers/soc/ti/Makefile                            |    5 +
 drivers/soc/ti/knav_dma.c                          |  776 +++++++++
 drivers/soc/ti/knav_qmss.h                         |  386 +++++
 drivers/soc/ti/knav_qmss_acc.c                     |  591 +++++++
 drivers/soc/ti/knav_qmss_queue.c                   | 1814 ++++++++++++++++++++
 firmware/Makefile                                  |    1 +
 .../keystone/qmss_pdsp_acc48_k2_le_1_0_0_8.fw.ihex |  110 ++
 include/linux/soc/ti/knav_dma.h                    |  175 ++
 include/linux/soc/ti/knav_qmss.h                   |   90 +
 16 files changed, 4329 insertions(+)
 create mode 100644 Documentation/devicetree/bindings/soc/keystone-navigator-dma.txt
 create mode 100644 Documentation/devicetree/bindings/soc/keystone-navigator-qmss.txt
 create mode 100644 drivers/soc/Kconfig
 create mode 100644 drivers/soc/Makefile
 create mode 100644 drivers/soc/ti/Kconfig
 create mode 100644 drivers/soc/ti/Makefile
 create mode 100644 drivers/soc/ti/knav_dma.c
 create mode 100644 drivers/soc/ti/knav_qmss.h
 create mode 100644 drivers/soc/ti/knav_qmss_acc.c
 create mode 100644 drivers/soc/ti/knav_qmss_queue.c
 create mode 100644 firmware/keystone/qmss_pdsp_acc48_k2_le_1_0_0_8.fw.ihex
 create mode 100644 include/linux/soc/ti/knav_dma.h
 create mode 100644 include/linux/soc/ti/knav_qmss.h

Regards,
Santosh
[1] https://lkml.org/lkml/2014/2/28/567
[2] https://lkml.org/lkml/2014/3/18/340
-- 
1.7.9.5


^ permalink raw reply	[flat|nested] 45+ messages in thread

end of thread, other threads:[~2014-05-20 20:08 UTC | newest]

Thread overview: 45+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2014-04-23 23:46 [PATCH v2 0/6] soc: ti: Add Keystone Navigator drivers Santosh Shilimkar
2014-04-23 23:46 ` Santosh Shilimkar
2014-04-23 23:46 ` Santosh Shilimkar
2014-04-23 23:46 ` [PATCH v2 1/6] soc: Introduce drivers/soc place-holder for SOC specific drivers Santosh Shilimkar
2014-04-23 23:46   ` Santosh Shilimkar
2014-04-23 23:46   ` Santosh Shilimkar
2014-04-23 23:46 ` [PATCH v2 2/6] firmware: add Keystone QMSS PDSP accumulator firmware blob Santosh Shilimkar
2014-04-23 23:46   ` Santosh Shilimkar
2014-04-23 23:46   ` Santosh Shilimkar
2014-04-23 23:46 ` [PATCH v2 3/6] Documentation: dt: soc: add Keystone Navigator QMSS bindings Santosh Shilimkar
2014-04-23 23:46   ` Santosh Shilimkar
2014-04-23 23:46   ` Santosh Shilimkar
2014-05-05 16:18   ` Rob Herring
2014-04-23 23:46 ` [PATCH v2 4/6] soc: ti: add Keystone Navigator QMSS driver Santosh Shilimkar
2014-04-23 23:46   ` Santosh Shilimkar
2014-04-23 23:46   ` Santosh Shilimkar
2014-04-24  1:30   ` Felipe Balbi
2014-04-24  1:30     ` Felipe Balbi
2014-04-24  1:30     ` Felipe Balbi
2014-04-24 13:18     ` Santosh Shilimkar
2014-04-24 13:18       ` Santosh Shilimkar
2014-04-24 13:18       ` Santosh Shilimkar
2014-04-24 14:57       ` Felipe Balbi
2014-04-24 14:57         ` Felipe Balbi
2014-04-24 14:57         ` Felipe Balbi
2014-04-23 23:46 ` [PATCH v2 5/6] Documentation: dt: soc: add Keystone Navigator DMA bindings Santosh Shilimkar
2014-04-23 23:46   ` Santosh Shilimkar
2014-04-23 23:46   ` Santosh Shilimkar
2014-05-05 16:17   ` Rob Herring
2014-05-05 16:17     ` Rob Herring
2014-05-05 16:17     ` Rob Herring
2014-05-07 14:22     ` Santosh Shilimkar
2014-05-07 14:22       ` Santosh Shilimkar
2014-05-07 14:22       ` Santosh Shilimkar
2014-04-23 23:46 ` [PATCH v2 6/6] soc: ti: add Keystone Navigator DMA support Santosh Shilimkar
2014-04-23 23:46   ` Santosh Shilimkar
2014-04-23 23:46   ` Santosh Shilimkar
2014-05-20 13:57 ` [PATCH v2 0/6] soc: ti: Add Keystone Navigator drivers Santosh Shilimkar
2014-05-20 13:57   ` Santosh Shilimkar
2014-05-20 13:57   ` Santosh Shilimkar
2014-05-20 20:01   ` Greg Kroah-Hartman
2014-05-20 20:01     ` Greg Kroah-Hartman
2014-05-20 20:08     ` Santosh Shilimkar
2014-05-20 20:08       ` Santosh Shilimkar
2014-05-20 20:08       ` Santosh Shilimkar

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.