From: Shawn Guo <shawnguo@kernel.org> To: soc@kernel.org, arm@kernel.org Cc: Shawn Guo <shawnguo@kernel.org>, Fabio Estevam <festevam@gmail.com>, Stefan Agner <stefan@agner.ch>, Li Yang <leoyang.li@nxp.com>, kernel@pengutronix.de, linux-imx@nxp.com, linux-arm-kernel@lists.infradead.org Subject: [GIT PULL 2/6] i.MX SoC changes for 5.14 Date: Sun, 13 Jun 2021 16:25:40 +0800 [thread overview] Message-ID: <20210613082544.16067-2-shawnguo@kernel.org> (raw) In-Reply-To: <20210613082544.16067-1-shawnguo@kernel.org> The following changes since commit 6efb943b8616ec53a5e444193dccf1af9ad627b5: Linux 5.13-rc1 (2021-05-09 14:17:44 -0700) are available in the Git repository at: git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git tags/imx-soc-5.14 for you to fetch changes up to e34645f45805d8308866de7b69f117f554605bb6: ARM: imx: add smp support for imx7d (2021-06-12 12:02:57 +0800) ---------------------------------------------------------------- i.MX SoC changes for 5.14: - Add SMP support for i.MX7D, as there are i.MX7D devices running in field with U-Boot that doesn't support PSCI. - Fix imx5_cpu_suspend_info reference in i.MX5 PM code comments. - Add SoC ID initialization for i.MX50. - Drop unnecessary of_platform_default_populate() call from i.MX6Q .init_machine hook. - A series from Oleksij Rempel to remove most of the i.MX6/7 board specific PHY fixups. ---------------------------------------------------------------- Anson Huang (1): ARM: imx: add smp support for imx7d Jonathan Neuschäfer (2): ARM: imx: pm-imx5: Fix references to imx5_cpu_suspend_info ARM: imx: Initialize SoC ID on i.MX50 Marco Felsch (1): ARM: imx6q: drop of_platform_default_populate() from init_machine Oleksij Rempel (7): ARM: imx6q: remove PHY fixup for KSZ9031 ARM: imx6q: remove part of ar8031_phy_fixup() ARM: imx6q: remove BMCR_PDOWN handler in ar8035_phy_fixup() ARM: imx6q: remove clk-out fixup for the Atheros AR8031 and AR8035 PHYs ARM: imx6q: remove Atheros AR8035 SmartEEE fixup ARM: imx6sx: remove Atheros AR8031 PHY fixup ARM: imx7d: remove Atheros AR8031 PHY fixup arch/arm/mach-imx/Makefile | 2 +- arch/arm/mach-imx/common.h | 3 ++ arch/arm/mach-imx/headsmp.S | 9 ++++ arch/arm/mach-imx/hotplug.c | 3 ++ arch/arm/mach-imx/mach-imx50.c | 7 +++ arch/arm/mach-imx/mach-imx6q.c | 88 --------------------------------- arch/arm/mach-imx/mach-imx6sx.c | 26 ---------- arch/arm/mach-imx/mach-imx7d.c | 25 +--------- arch/arm/mach-imx/platsmp.c | 26 ++++++++++ arch/arm/mach-imx/src.c | 101 ++++++++++++++++++++++++++++++++++---- arch/arm/mach-imx/suspend-imx53.S | 4 +- drivers/soc/imx/soc-imx.c | 3 ++ include/soc/imx/cpu.h | 1 + 13 files changed, 149 insertions(+), 149 deletions(-)
WARNING: multiple messages have this Message-ID (diff)
From: Shawn Guo <shawnguo@kernel.org> To: soc@kernel.org, arm@kernel.org Cc: Shawn Guo <shawnguo@kernel.org>, Fabio Estevam <festevam@gmail.com>, Stefan Agner <stefan@agner.ch>, Li Yang <leoyang.li@nxp.com>, kernel@pengutronix.de, linux-imx@nxp.com, linux-arm-kernel@lists.infradead.org Subject: [GIT PULL 2/6] i.MX SoC changes for 5.14 Date: Sun, 13 Jun 2021 16:25:40 +0800 [thread overview] Message-ID: <20210613082544.16067-2-shawnguo@kernel.org> (raw) Message-ID: <20210613082540.rm_4z-qL8LrC4oams-pPR3A8uCPa5sNXH8Dd8mhK7fw@z> (raw) In-Reply-To: <20210613082544.16067-1-shawnguo@kernel.org> The following changes since commit 6efb943b8616ec53a5e444193dccf1af9ad627b5: Linux 5.13-rc1 (2021-05-09 14:17:44 -0700) are available in the Git repository at: git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git tags/imx-soc-5.14 for you to fetch changes up to e34645f45805d8308866de7b69f117f554605bb6: ARM: imx: add smp support for imx7d (2021-06-12 12:02:57 +0800) ---------------------------------------------------------------- i.MX SoC changes for 5.14: - Add SMP support for i.MX7D, as there are i.MX7D devices running in field with U-Boot that doesn't support PSCI. - Fix imx5_cpu_suspend_info reference in i.MX5 PM code comments. - Add SoC ID initialization for i.MX50. - Drop unnecessary of_platform_default_populate() call from i.MX6Q .init_machine hook. - A series from Oleksij Rempel to remove most of the i.MX6/7 board specific PHY fixups. ---------------------------------------------------------------- Anson Huang (1): ARM: imx: add smp support for imx7d Jonathan Neuschäfer (2): ARM: imx: pm-imx5: Fix references to imx5_cpu_suspend_info ARM: imx: Initialize SoC ID on i.MX50 Marco Felsch (1): ARM: imx6q: drop of_platform_default_populate() from init_machine Oleksij Rempel (7): ARM: imx6q: remove PHY fixup for KSZ9031 ARM: imx6q: remove part of ar8031_phy_fixup() ARM: imx6q: remove BMCR_PDOWN handler in ar8035_phy_fixup() ARM: imx6q: remove clk-out fixup for the Atheros AR8031 and AR8035 PHYs ARM: imx6q: remove Atheros AR8035 SmartEEE fixup ARM: imx6sx: remove Atheros AR8031 PHY fixup ARM: imx7d: remove Atheros AR8031 PHY fixup arch/arm/mach-imx/Makefile | 2 +- arch/arm/mach-imx/common.h | 3 ++ arch/arm/mach-imx/headsmp.S | 9 ++++ arch/arm/mach-imx/hotplug.c | 3 ++ arch/arm/mach-imx/mach-imx50.c | 7 +++ arch/arm/mach-imx/mach-imx6q.c | 88 --------------------------------- arch/arm/mach-imx/mach-imx6sx.c | 26 ---------- arch/arm/mach-imx/mach-imx7d.c | 25 +--------- arch/arm/mach-imx/platsmp.c | 26 ++++++++++ arch/arm/mach-imx/src.c | 101 ++++++++++++++++++++++++++++++++++---- arch/arm/mach-imx/suspend-imx53.S | 4 +- drivers/soc/imx/soc-imx.c | 3 ++ include/soc/imx/cpu.h | 1 + 13 files changed, 149 insertions(+), 149 deletions(-) _______________________________________________ linux-arm-kernel mailing list linux-arm-kernel@lists.infradead.org http://lists.infradead.org/mailman/listinfo/linux-arm-kernel
next prev parent reply other threads:[~2021-06-13 8:26 UTC|newest] Thread overview: 13+ messages / expand[flat|nested] mbox.gz Atom feed top 2021-06-13 8:25 [GIT PULL 1/6] i.MX drivers update for 5.14 Shawn Guo 2021-06-13 8:25 ` Shawn Guo 2021-06-13 8:25 ` Shawn Guo [this message] 2021-06-13 8:25 ` [GIT PULL 2/6] i.MX SoC changes " Shawn Guo 2021-06-13 8:25 ` [GIT PULL 3/6] i.MX dt-bindings update " Shawn Guo 2021-06-13 8:25 ` Shawn Guo 2021-06-13 8:25 ` [GIT PULL 4/6] i.MX device tree changes " Shawn Guo 2021-06-13 8:25 ` Shawn Guo 2021-06-13 8:25 ` [GIT PULL 5/6] i.MX arm64 " Shawn Guo 2021-06-13 8:25 ` Shawn Guo 2021-06-13 8:25 ` [GIT PULL 6/6] i.MX defconfig update " Shawn Guo 2021-06-13 8:25 ` Shawn Guo 2021-06-15 16:00 ` [GIT PULL 1/6] i.MX drivers " patchwork-bot+linux-soc
Reply instructions: You may reply publicly to this message via plain-text email using any one of the following methods: * Save the following mbox file, import it into your mail client, and reply-to-all from there: mbox Avoid top-posting and favor interleaved quoting: https://en.wikipedia.org/wiki/Posting_style#Interleaved_style * Reply using the --to, --cc, and --in-reply-to switches of git-send-email(1): git send-email \ --in-reply-to=20210613082544.16067-2-shawnguo@kernel.org \ --to=shawnguo@kernel.org \ --cc=arm@kernel.org \ --cc=festevam@gmail.com \ --cc=kernel@pengutronix.de \ --cc=leoyang.li@nxp.com \ --cc=linux-arm-kernel@lists.infradead.org \ --cc=linux-imx@nxp.com \ --cc=soc@kernel.org \ --cc=stefan@agner.ch \ /path/to/YOUR_REPLY https://kernel.org/pub/software/scm/git/docs/git-send-email.html * If your mail client supports setting the In-Reply-To header via mailto: links, try the mailto: linkBe sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox; as well as URLs for NNTP newsgroup(s).