mbox series

[GIT,PULL,2/7] i.MX SoC changes for 5.1

Message ID 20190212112126.572-2-shawnguo@kernel.org
State New
Headers show
Series [GIT,PULL,1/7] i.MX drivers update for 5.1 | expand

Pull-request

git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git tags/imx-soc-5.1

Message

Shawn Guo Feb. 12, 2019, 11:21 a.m. UTC
The following changes since commit bfeffd155283772bbe78c6a05dec7c0128ee500c:

  Linux 5.0-rc1 (2019-01-06 17:08:20 -0800)

are available in the Git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git tags/imx-soc-5.1

for you to fetch changes up to 84a2ab25b12d69914c96dd12e762f7ff912f9735:

  arm64: imx8mq: select PM support (2019-02-01 15:04:32 +0800)

----------------------------------------------------------------
i.MX SoC changes for 5.1:
 - Support cpuidle for i.MX7ULP, states WFI, WAIT and STOP get added.
 - Support SoC revision detecting for i.MX7ULP by reading JTAG_ID
   register from SIM module.
 - Select PM and GPCv2 irqchip driver options for i.MX8 support, as they
   are essential for building an i.MX8 based system.
 - Skip build of ssi-fiq code if SND_SOC_IMX_PCM_FIQ is not enabled.

----------------------------------------------------------------
Anson Huang (2):
      ARM: imx: add i.MX7ULP cpuidle support
      ARM: imx: add i.MX7ULP SoC revision support

Lucas Stach (2):
      arm64: imx8mq: select GPCv2 irqchip driver
      arm64: imx8mq: select PM support

Stefan Agner (1):
      ARM: imx: don't build ssi-fiq if not required

 arch/arm/mach-imx/Makefile          |  3 +-
 arch/arm/mach-imx/common.h          | 10 +++++++
 arch/arm/mach-imx/cpuidle-imx7ulp.c | 60 +++++++++++++++++++++++++++++++++++++
 arch/arm/mach-imx/cpuidle.h         |  5 ++++
 arch/arm/mach-imx/mach-imx7ulp.c    | 46 ++++++++++++++++++++++++++++
 arch/arm/mach-imx/pm-imx7ulp.c      | 49 ++++++++++++++++++++++++++----
 arch/arm64/Kconfig.platforms        |  4 +++
 7 files changed, 171 insertions(+), 6 deletions(-)
 create mode 100644 arch/arm/mach-imx/cpuidle-imx7ulp.c

Comments

Arnd Bergmann Feb. 15, 2019, 4:40 p.m. UTC | #1
On Tue, Feb 12, 2019 at 12:21 PM Shawn Guo <shawnguo@kernel.org> wrote:
>
> The following changes since commit bfeffd155283772bbe78c6a05dec7c0128ee500c:
>
>   Linux 5.0-rc1 (2019-01-06 17:08:20 -0800)
>
> are available in the Git repository at:
>
>   git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git tags/imx-soc-5.1
>
> for you to fetch changes up to 84a2ab25b12d69914c96dd12e762f7ff912f9735:
>
>   arm64: imx8mq: select PM support (2019-02-01 15:04:32 +0800)
>
> ----------------------------------------------------------------
> i.MX SoC changes for 5.1:
>  - Support cpuidle for i.MX7ULP, states WFI, WAIT and STOP get added.
>  - Support SoC revision detecting for i.MX7ULP by reading JTAG_ID
>    register from SIM module.
>  - Select PM and GPCv2 irqchip driver options for i.MX8 support, as they
>    are essential for building an i.MX8 based system.
>  - Skip build of ssi-fiq code if SND_SOC_IMX_PCM_FIQ is not enabled.
>


Pulled into arm/soc, thanks!

      Arnd