All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH V4 0/5] soc: imx: add scu firmware api support
@ 2018-07-08 14:56 Dong Aisheng
  2018-07-08 14:56   ` Dong Aisheng
                   ` (5 more replies)
  0 siblings, 6 replies; 46+ messages in thread
From: Dong Aisheng @ 2018-07-08 14:56 UTC (permalink / raw)
  To: linux-arm-kernel

Unlike the former i.MX Architectures, the new generation i.MX8 SoCs
(e.g. MX8QXP and MX8QM) contain a system controller which runs on a
dedicated Cortex-M core to provide power, clock, Pad, and resource
management. Communication between the host processor running
an OS and the system controller happens through a SCU protocol.
This patchset adds the SCU APIs which is implemented based on MU
and will be used by different system components.

It mainly consists of below parts:
1) MU mailbox driver
1) Implementation of the IPC functions based on MUs (client side).

Dong Aisheng (5):
  dt-bindings: mailbox: allow mbox-cells to be equal to 0
  dt-bindings: arm: fsl: add mu binding doc
  mailbox: imx: add imx mu support
  dt-bindings: arm: fsl: add scu binding doc
  soc: imx: add SC firmware IPC and APIs

 .../devicetree/bindings/arm/freescale/fsl,scu.txt  |  65 ++
 .../devicetree/bindings/mailbox/fsl,mu.txt         |  34 +
 .../devicetree/bindings/mailbox/mailbox.txt        |   3 +-
 drivers/mailbox/Kconfig                            |   8 +
 drivers/mailbox/Makefile                           |   2 +
 drivers/mailbox/imx-mu.c                           | 341 +++++++++
 drivers/soc/imx/Kconfig                            |   4 +
 drivers/soc/imx/Makefile                           |   1 +
 drivers/soc/imx/sc/Makefile                        |   2 +
 drivers/soc/imx/sc/main/ipc.c                      | 185 +++++
 drivers/soc/imx/sc/main/rpc.h                      |  79 +++
 include/soc/imx/sc/ipc.h                           |  45 ++
 include/soc/imx/sc/scfw.h                          |  24 +
 include/soc/imx/sc/types.h                         | 764 +++++++++++++++++++++
 14 files changed, 1555 insertions(+), 2 deletions(-)
 create mode 100644 Documentation/devicetree/bindings/arm/freescale/fsl,scu.txt
 create mode 100644 Documentation/devicetree/bindings/mailbox/fsl,mu.txt
 create mode 100644 drivers/mailbox/imx-mu.c
 create mode 100644 drivers/soc/imx/sc/Makefile
 create mode 100644 drivers/soc/imx/sc/main/ipc.c
 create mode 100644 drivers/soc/imx/sc/main/rpc.h
 create mode 100644 include/soc/imx/sc/ipc.h
 create mode 100644 include/soc/imx/sc/scfw.h
 create mode 100644 include/soc/imx/sc/types.h

-- 
2.7.4

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

end of thread, other threads:[~2018-07-12 12:29 UTC | newest]

Thread overview: 46+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-07-08 14:56 [PATCH V4 0/5] soc: imx: add scu firmware api support Dong Aisheng
2018-07-08 14:56 ` [PATCH V4 1/5] dt-bindings: mailbox: allow mbox-cells to be equal to 0 Dong Aisheng
2018-07-08 14:56   ` Dong Aisheng
2018-07-08 14:56 ` [PATCH V4 2/5] dt-bindings: arm: fsl: add mu binding doc Dong Aisheng
2018-07-08 14:56   ` Dong Aisheng
2018-07-11 15:09   ` Rob Herring
2018-07-11 15:09     ` Rob Herring
2018-07-08 14:56 ` [PATCH V4 3/5] mailbox: imx: add imx mu support Dong Aisheng
2018-07-08 14:56   ` Dong Aisheng
2018-07-10 14:19   ` Sascha Hauer
2018-07-10 14:19     ` Sascha Hauer
2018-07-11  7:29     ` A.s. Dong
2018-07-11  7:29       ` A.s. Dong
2018-07-11  7:54       ` Sascha Hauer
2018-07-11  7:54         ` Sascha Hauer
2018-07-11 10:37         ` A.s. Dong
2018-07-11 10:37           ` A.s. Dong
2018-07-11 10:44           ` Jassi Brar
2018-07-11 10:44             ` Jassi Brar
2018-07-11 12:58             ` A.s. Dong
2018-07-11 12:58               ` A.s. Dong
2018-07-11 16:31               ` Jassi Brar
2018-07-11 16:31                 ` Jassi Brar
2018-07-11 16:41                 ` A.s. Dong
2018-07-11 16:41                   ` A.s. Dong
2018-07-11 17:00                   ` Jassi Brar
2018-07-11 17:00                     ` Jassi Brar
2018-07-12  4:06                     ` A.s. Dong
2018-07-12  4:06                       ` A.s. Dong
2018-07-11 13:30       ` Peng Fan
2018-07-11 13:30         ` Peng Fan
2018-07-08 14:56 ` [PATCH V4 4/5] dt-bindings: arm: fsl: add scu binding doc Dong Aisheng
2018-07-08 14:56   ` Dong Aisheng
2018-07-11 15:08   ` Rob Herring
2018-07-11 15:08     ` Rob Herring
2018-07-12 11:04     ` A.s. Dong
2018-07-12 11:04       ` A.s. Dong
2018-07-08 14:56 ` [PATCH V4 5/5] soc: imx: add SC firmware IPC and APIs Dong Aisheng
2018-07-10 14:44   ` Sascha Hauer
2018-07-11  9:18     ` A.s. Dong
2018-07-11 10:31       ` Sascha Hauer
2018-07-11 11:27         ` A.s. Dong
2018-07-11 16:49 ` [PATCH V4 0/5] soc: imx: add scu firmware api support Sudeep Holla
2018-07-12  3:46   ` A.s. Dong
2018-07-12 10:32     ` Sudeep Holla
2018-07-12 12:29       ` Leonard Crestez

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.