Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1407480
| From | Neil Armstrong <narmstrong@baylibre.com> |
|---|---|
| Newsgroups | linux.kernel |
| Subject | [RFC PATCH 0/2] scpi: Add SCPI framework to handle vendors variants |
| Date | 2016-05-26 11:40 +0200 |
| Message-ID | <rCZVM-4Fq-13@gated-at.bofh.it> (permalink) |
| Organization | linux.* mail to news gateway |
Since the current SCPI implementation, based on [0]:
- is (at leat) JUNO specific
- does not specify a strong "standard"
- does not specify a strong MHU interface specification
SoC vendors could implement a variant with slight changes in message
indexes, new messages types, different messages data format or different MHU
communication scheme.
To keep the spirit of the SCPI interface, add a thin "register" layer to get
the ops from the parent node and switch the drivers using the ops to use
the new of_scpi_ops_get() call.
[0] http://infocenter.arm.com/help/topic/com.arm.doc.dui0922b/index.html
Neil Armstrong (2):
firmware: Add a SCPI framework to handle multiple vendors
implementation
firmware: scpi: Switch scpi drivers to use new Framework calls
drivers/clk/clk-scpi.c | 18 ++++---
drivers/cpufreq/scpi-cpufreq.c | 7 +--
drivers/firmware/Makefile | 1 +
drivers/firmware/arm_scpi.c | 18 +++----
drivers/firmware/scpi.c | 110 +++++++++++++++++++++++++++++++++++++++++
drivers/hwmon/scpi-hwmon.c | 6 +--
include/linux/scpi_protocol.h | 33 ++++++++++++-
7 files changed, 169 insertions(+), 24 deletions(-)
create mode 100644 drivers/firmware/scpi.c
--
2.7.0
Back to linux.kernel | Previous | Next — Next in thread | Find similar | Unroll thread
[RFC PATCH 0/2] scpi: Add SCPI framework to handle vendors variants Neil Armstrong <narmstrong@baylibre.com> - 2016-05-26 11:40 +0200
[RFC PATCH 1/2] firmware: Add a SCPI framework to handle multiple vendors implementation Neil Armstrong <narmstrong@baylibre.com> - 2016-05-26 11:40 +0200
Re: [RFC PATCH 0/2] scpi: Add SCPI framework to handle vendors variants Sudeep Holla <sudeep.holla@arm.com> - 2016-05-26 18:30 +0200
Re: [RFC PATCH 0/2] scpi: Add SCPI framework to handle vendors variants Neil Armstrong <narmstrong@baylibre.com> - 2016-05-27 10:20 +0200
Re: [RFC PATCH 0/2] scpi: Add SCPI framework to handle vendors variants Neil Armstrong <narmstrong@baylibre.com> - 2016-05-27 17:20 +0200
Re: [RFC PATCH 0/2] scpi: Add SCPI framework to handle vendors variants Neil Armstrong <narmstrong@baylibre.com> - 2016-05-30 10:40 +0200
csiph-web