@@ -908,6 +908,10 @@ static const struct exynos_pmu_data exynos5250_pmu_data = {
.powerdown_conf = exynos5_powerdown_conf,
};
+static const struct exynos_pmu_data exynos5410_pmu_data = {
+ /* Only SWRESET is currently supported on 5410 */
+};
+
static struct exynos_pmu_data exynos5420_pmu_data = {
.pmu_config = exynos5420_pmu_config,
.pmu_init = exynos5420_pmu_init,
@@ -934,6 +938,9 @@ static const struct of_device_id exynos_pmu_of_device_ids[] = {
.compatible = "samsung,exynos5250-pmu",
.data = &exynos5250_pmu_data,
}, {
+ .compatible = "samsung,exynos5410-pmu",
+ .data = &exynos5410_pmu_data,
+ }, {
.compatible = "samsung,exynos5420-pmu",
.data = &exynos5420_pmu_data,
},