Commit c9147676 authored by Olof Johansson's avatar Olof Johansson

Merge tag 'imx-fixes-5.2-2' of...

Merge tag 'imx-fixes-5.2-2' of git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux into arm/fixes

i.MX fixes for 5.2, round 2:
 - A fix on LS1028A device tree CPU state to get CPU idle work.
 - Enable FSL_EDMA driver support in defconfig to fix a indefinite
   deferring probe on Layerscape platforms.

* tag 'imx-fixes-5.2-2' of git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux:
  arm64: defconfig: Enable FSL_EDMA driver
  arm64: dts: ls1028a: Fix CPU idle fail.
Signed-off-by: default avatarOlof Johansson <olof@lixom.net>
parents cd3967be a019ab40
...@@ -28,7 +28,7 @@ cpu0: cpu@0 { ...@@ -28,7 +28,7 @@ cpu0: cpu@0 {
enable-method = "psci"; enable-method = "psci";
clocks = <&clockgen 1 0>; clocks = <&clockgen 1 0>;
next-level-cache = <&l2>; next-level-cache = <&l2>;
cpu-idle-states = <&CPU_PH20>; cpu-idle-states = <&CPU_PW20>;
}; };
cpu1: cpu@1 { cpu1: cpu@1 {
...@@ -38,7 +38,7 @@ cpu1: cpu@1 { ...@@ -38,7 +38,7 @@ cpu1: cpu@1 {
enable-method = "psci"; enable-method = "psci";
clocks = <&clockgen 1 0>; clocks = <&clockgen 1 0>;
next-level-cache = <&l2>; next-level-cache = <&l2>;
cpu-idle-states = <&CPU_PH20>; cpu-idle-states = <&CPU_PW20>;
}; };
l2: l2-cache { l2: l2-cache {
...@@ -53,13 +53,13 @@ idle-states { ...@@ -53,13 +53,13 @@ idle-states {
*/ */
entry-method = "arm,psci"; entry-method = "arm,psci";
CPU_PH20: cpu-ph20 { CPU_PW20: cpu-pw20 {
compatible = "arm,idle-state"; compatible = "arm,idle-state";
idle-state-name = "PH20"; idle-state-name = "PW20";
arm,psci-suspend-param = <0x00010000>; arm,psci-suspend-param = <0x0>;
entry-latency-us = <1000>; entry-latency-us = <2000>;
exit-latency-us = <1000>; exit-latency-us = <2000>;
min-residency-us = <3000>; min-residency-us = <6000>;
}; };
}; };
......
...@@ -613,6 +613,7 @@ CONFIG_RTC_DRV_TEGRA=y ...@@ -613,6 +613,7 @@ CONFIG_RTC_DRV_TEGRA=y
CONFIG_RTC_DRV_IMX_SC=m CONFIG_RTC_DRV_IMX_SC=m
CONFIG_RTC_DRV_XGENE=y CONFIG_RTC_DRV_XGENE=y
CONFIG_DMADEVICES=y CONFIG_DMADEVICES=y
CONFIG_FSL_EDMA=y
CONFIG_DMA_BCM2835=m CONFIG_DMA_BCM2835=m
CONFIG_K3_DMA=y CONFIG_K3_DMA=y
CONFIG_MV_XOR=y CONFIG_MV_XOR=y
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment