mbox series

[GIT,PULL,1/7] i.MX drivers changes for 4.21

Message ID 20181210074638.27873-1-shawnguo@kernel.org (mailing list archive)
State Mainlined, archived
Commit b6444cf5fa607469d9a14edef2edad32773f4514
Headers show
Series [GIT,PULL,1/7] i.MX drivers changes for 4.21 | expand

Pull-request

git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git tags/imx-drivers-4.21

Message

Shawn Guo Dec. 10, 2018, 7:46 a.m. UTC
The following changes since commit 651022382c7f8da46cb4872a545ee1da6d097d2a:

  Linux 4.20-rc1 (2018-11-04 15:37:52 -0800)

are available in the Git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git tags/imx-drivers-4.21

for you to fetch changes up to b6444cf5fa607469d9a14edef2edad32773f4514:

  soc: imx: gpc: Increase GPC_CLK_MAX to 7 (2018-12-10 08:51:12 +0800)

----------------------------------------------------------------
i.MX drivers change for 4.21:
 - A series from Aisheng that improves SCU power domain bindings by
   defining '#power-domain-cells' as 1, and adds i.MX8 SCU power domain
   driver support on top of it.
 - A series from Lucas that updates gpcv2 driver for scalability and
   adds i.MX8MQ support into the driver.
 - Increase gpc driver GPC_CLK_MAX definition to 7, as DISPLAY power
   domain on imx6sx has 7 clocks.

----------------------------------------------------------------
A.s. Dong (5):
      dt-bindings: imx: add scu resource id headfile
      firmware: imx: remove resource id enums
      dt-bindings: fsl: scu: update power domain binding
      firmware: imx: add pm svc headfile
      firmware: imx: add SCU power domain driver

Leonard Crestez (1):
      soc: imx: gpc: Increase GPC_CLK_MAX to 7

Lucas Stach (3):
      soc: imx: gpcv2: prefix i.MX7 specific defines
      soc: imx: gpcv2: move register access table to domain data
      soc: imx: gpcv2: add support for i.MX8MQ SoC

 .../devicetree/bindings/arm/freescale/fsl,scu.txt  |  37 +-
 .../devicetree/bindings/power/fsl,imx-gpcv2.txt    |   7 +-
 drivers/firmware/imx/Kconfig                       |   6 +
 drivers/firmware/imx/Makefile                      |   3 +-
 drivers/firmware/imx/scu-pd.c                      | 339 +++++++++++++
 drivers/soc/imx/Kconfig                            |   6 +-
 drivers/soc/imx/Makefile                           |   2 +-
 drivers/soc/imx/gpc.c                              |   2 +-
 drivers/soc/imx/gpcv2.c                            | 296 +++++++++--
 include/dt-bindings/firmware/imx/rsrc.h            | 559 +++++++++++++++++++++
 include/dt-bindings/power/imx8mq-power.h           |  21 +
 include/linux/firmware/imx/sci.h                   |   1 +
 include/linux/firmware/imx/svc/pm.h                |  85 ++++
 include/linux/firmware/imx/types.h                 | 552 --------------------
 14 files changed, 1284 insertions(+), 632 deletions(-)
 create mode 100644 drivers/firmware/imx/scu-pd.c
 create mode 100644 include/dt-bindings/firmware/imx/rsrc.h
 create mode 100644 include/dt-bindings/power/imx8mq-power.h
 create mode 100644 include/linux/firmware/imx/svc/pm.h

Comments

Olof Johansson Dec. 12, 2018, 9:33 p.m. UTC | #1
On Mon, Dec 10, 2018 at 03:46:32PM +0800, Shawn Guo wrote:
> The following changes since commit 651022382c7f8da46cb4872a545ee1da6d097d2a:
> 
>   Linux 4.20-rc1 (2018-11-04 15:37:52 -0800)
> 
> are available in the Git repository at:
> 
>   git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git tags/imx-drivers-4.21
> 
> for you to fetch changes up to b6444cf5fa607469d9a14edef2edad32773f4514:
> 
>   soc: imx: gpc: Increase GPC_CLK_MAX to 7 (2018-12-10 08:51:12 +0800)
> 
> ----------------------------------------------------------------
> i.MX drivers change for 4.21:
>  - A series from Aisheng that improves SCU power domain bindings by
>    defining '#power-domain-cells' as 1, and adds i.MX8 SCU power domain
>    driver support on top of it.
>  - A series from Lucas that updates gpcv2 driver for scalability and
>    adds i.MX8MQ support into the driver.
>  - Increase gpc driver GPC_CLK_MAX definition to 7, as DISPLAY power
>    domain on imx6sx has 7 clocks.

Merged, thanks!


-Olof