All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH V2 0/5] firmware: Add support for TI System Control Interface (TI-SCI) protocol driver
@ 2016-08-30 13:06 ` Nishanth Menon
  0 siblings, 0 replies; 31+ messages in thread
From: Nishanth Menon @ 2016-08-30 13:06 UTC (permalink / raw)
  To: Russell King, Sudeep Holla, Santosh Shilimkar
  Cc: Russ Dill, Dave Gerlach, Lokesh Vutla, Peter Ujfalusi,
	Andrew F . Davis, Rob Herring, Tero Kristo,
	linux-kernel-u79uwXL29TY76Z2rM5mHXA,
	devicetree-u79uwXL29TY76Z2rM5mHXA,
	linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r,
	linux-pm-u79uwXL29TY76Z2rM5mHXA, Nishanth Menon

Hi,

Thanks for the reviews on the patches, here is v2 of the series.

Texas Instruments' Keystone generation System on Chips (SoC)
starting with 66AK2G02[1], now include a dedicated SoC System Control
entity called PMMC(Power Management Micro Controller) in line with
ARM architecture recommendations. The function of this module is
to integrate all system operations in a centralized location.
Communication with the SoC System Control entity from various
processing units like ARM/DSP occurs over Message Manager hardware
block.

This series adds the base support for TI System Control Interface
(TI-SCI) protocol[2]. The protocol is built on top of Texas
Instrument's Message Manager communication mechanism[3].

Overall architecture is very similar to SCPI[4] as follows:
+-------------+   +---------+     +------^-----+
| TI SCI GENPD|   |TISCI Clk|     |TISCI reset |
+------+------+   +----+----+     +------+-----+
       |               |                 |
       |          +----v--------------+  |
       +----------> TISCI Protocol(*) <--+
                  +----+--------------+
                       |
                   +---v-----------+
                   | MAILBOX  FWK  |
                   +---+-----------+
                       |
                   +---v-----------+
                   |  TI MSGMGR    |-> TISCI hardware block
                   +---------------+
(*) This series.

V2 of the series is based off v4.8-rc1 and is also available here:
https://github.com/nmenon/linux-2.6-playground/commits/upstream/v4.9/tisci-base-v2

V1 of the series: https://lkml.org/lkml/2016/8/19/768

Changes in V2 of the series:
	- Review comments incorporated from Lokesh and Rob
	- Minor cleanup of comments for debug interface.

[1] http://www.ti.com/product/66ak2g02
[2] http://processors.wiki.ti.com/index.php/TISCI
[3] Documentation/devicetree/bindings/mailbox/ti,message-manager.txt
[4] Documentation/devicetree/bindings/arm/arm,scpi.txt

Related series (based on v1):

* https://lkml.org/lkml/2016/8/19/790 (GENPD for TISCI)
* https://lkml.org/lkml/2016/8/19/811 (Clock support for TISCI) 

Nishanth Menon (5):
  Documentation: Add support for TI System Control Interface (TI-SCI)
    protocol
  firmware: Add basic support for TI System Control Interface (TI-SCI)
    protocol
  firmware: ti_sci: Add support for Device control
  firmware: ti_sci: Add support for Clock control
  firmware: ti_sci: Add support for reboot core service

 .../devicetree/bindings/arm/keystone/ti,sci.txt    |   66 +
 MAINTAINERS                                        |   10 +
 drivers/firmware/Kconfig                           |   15 +
 drivers/firmware/Makefile                          |    1 +
 drivers/firmware/ti_sci.c                          | 1997 ++++++++++++++++++++
 drivers/firmware/ti_sci.h                          |  492 +++++
 include/linux/soc/ti/ti_sci_protocol.h             |  249 +++
 7 files changed, 2830 insertions(+)
 create mode 100644 Documentation/devicetree/bindings/arm/keystone/ti,sci.txt
 create mode 100644 drivers/firmware/ti_sci.c
 create mode 100644 drivers/firmware/ti_sci.h
 create mode 100644 include/linux/soc/ti/ti_sci_protocol.h

-- 
2.9.1.200.gb1ec08f

--
To unsubscribe from this list: send the line "unsubscribe devicetree" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

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

end of thread, other threads:[~2016-09-06 19:56 UTC | newest]

Thread overview: 31+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-08-30 13:06 [PATCH V2 0/5] firmware: Add support for TI System Control Interface (TI-SCI) protocol driver Nishanth Menon
2016-08-30 13:06 ` Nishanth Menon
2016-08-30 13:06 ` Nishanth Menon
2016-08-30 13:06 ` [PATCH V2 1/5] Documentation: Add support for TI System Control Interface (TI-SCI) protocol Nishanth Menon
2016-08-30 13:06   ` Nishanth Menon
2016-08-30 13:06   ` Nishanth Menon
     [not found]   ` <20160830130647.6828-2-nm-l0cyMroinI0@public.gmane.org>
2016-09-02 15:06     ` Rob Herring
2016-09-02 15:06       ` Rob Herring
2016-09-02 15:06       ` Rob Herring
2016-09-02 17:07       ` Nishanth Menon
2016-09-02 17:07         ` Nishanth Menon
2016-09-02 20:27         ` Dave Gerlach
2016-09-02 20:27           ` Dave Gerlach
     [not found]           ` <57C9E0A8.4010701-l0cyMroinI0@public.gmane.org>
2016-09-05  7:09             ` Tero Kristo
2016-09-05  7:09               ` Tero Kristo
2016-09-05  7:09               ` Tero Kristo
     [not found]               ` <6c63b044-3db9-9202-b790-350a88b9eab0-l0cyMroinI0@public.gmane.org>
2016-09-06 19:55                 ` Nishanth Menon
2016-09-06 19:55                   ` Nishanth Menon
2016-09-06 19:55                   ` Nishanth Menon
2016-08-30 13:06 ` [PATCH V2 2/5] firmware: Add basic " Nishanth Menon
2016-08-30 13:06   ` Nishanth Menon
2016-08-30 13:06   ` Nishanth Menon
2016-08-30 13:06 ` [PATCH V2 3/5] firmware: ti_sci: Add support for Device control Nishanth Menon
2016-08-30 13:06   ` Nishanth Menon
2016-08-30 13:06   ` Nishanth Menon
2016-08-30 13:06 ` [PATCH V2 4/5] firmware: ti_sci: Add support for Clock control Nishanth Menon
2016-08-30 13:06   ` Nishanth Menon
2016-08-30 13:06   ` Nishanth Menon
2016-08-30 13:06 ` [PATCH V2 5/5] firmware: ti_sci: Add support for reboot core service Nishanth Menon
2016-08-30 13:06   ` Nishanth Menon
2016-08-30 13:06   ` Nishanth Menon

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.