mirror of
https://github.com/home-assistant/operating-system.git
synced 2025-07-29 07:56:29 +00:00

* Linux: Update kernel 6.6.15 * Update buildroot packages to work with Linux 6.6 * Fix top-level and pc patches of linux * Update tinker patch series * Drop Odroid M1 patches M1 is now supported in upstream. * Update Hardkernel patches Needed larger refactoring because of 379ae64609c7a3301b60483eb65bd8bc78f76328 * Update Green patches * Update Odroid XU4 patches Removing the TMU patch/hack for now, need to check if it's still needed. If it is indeed, then it needs slighter rewrite. * Move Rockchip RNG patches to M1 and Green dirs * Update rtl88x2bu package to fix build * Update gasket package to fix build * Fix eq3_char_loop build * Use fan53555 instead of custom rk860x driver * Fix kernel base configs and fragments after 6.6 update Mostly removed options that have been removed between releases. Only a few options have been renamed, then there's bunch of options that had dependencies added so they are available only on some architectures, which are not those that we're using. * Remove deprecated regulator-compatible from Green DTS
114 lines
3.3 KiB
Diff
114 lines
3.3 KiB
Diff
From ad1ffd6be5f54a0871e3c303602548687dfe0ffc Mon Sep 17 00:00:00 2001
|
|
From: Myy Miouyouyou <myy@miouyouyou.fr>
|
|
Date: Sun, 7 Jan 2018 01:52:44 +0100
|
|
Subject: [PATCH] drivers: mmc: dw-mci-rockchip: Handle ASUS Tinkerboard reboot
|
|
|
|
On ASUS Tinkerboard systems, if the SDMMC hardware is shutdown before
|
|
rebooting, the system will be dead, as the SDMMC is the only way to
|
|
boot anything, and the hardware doesn't power up the SDMMC hardware
|
|
automatically when rebooting.
|
|
|
|
So, when using an ASUS Tinkerboard system, a new reboot handler is
|
|
installed. This reboot handler takes care of powering the SDMMC
|
|
hardware again before restarting the system, resolving the issue.
|
|
|
|
The code was inspired by the pwrseq_emmc.c, which seems to overcome
|
|
similar effects with eMMC hardware.
|
|
|
|
Signed-off-by: Myy Miouyouyou <myy@miouyouyou.fr>
|
|
---
|
|
drivers/mmc/host/dw_mmc-rockchip.c | 66 ++++++++++++++++++++++++++++++
|
|
1 file changed, 66 insertions(+)
|
|
|
|
diff --git a/drivers/mmc/host/dw_mmc-rockchip.c b/drivers/mmc/host/dw_mmc-rockchip.c
|
|
index b07190ba4b7a..0badaa1b404e 100644
|
|
--- a/drivers/mmc/host/dw_mmc-rockchip.c
|
|
+++ b/drivers/mmc/host/dw_mmc-rockchip.c
|
|
@@ -12,6 +12,11 @@
|
|
#include <linux/pm_runtime.h>
|
|
#include <linux/slab.h>
|
|
|
|
+#include <linux/regulator/consumer.h>
|
|
+#include <linux/reboot.h>
|
|
+#include <linux/delay.h>
|
|
+#include "../core/core.h"
|
|
+
|
|
#include "dw_mmc.h"
|
|
#include "dw_mmc-pltfm.h"
|
|
|
|
@@ -340,6 +345,66 @@ static const struct of_device_id dw_mci_rockchip_match[] = {
|
|
};
|
|
MODULE_DEVICE_TABLE(of, dw_mci_rockchip_match);
|
|
|
|
+struct dw_mci_rockchip_broken_boards_data {
|
|
+ struct notifier_block reset_nb;
|
|
+ struct platform_device *pdev;
|
|
+};
|
|
+
|
|
+/* This reboot handler handles cases where disabling the SDMMC on
|
|
+ * reboot will cause the hardware to be unable to start correctly
|
|
+ * after rebooting.
|
|
+ *
|
|
+ * This happens with Tinkerboard systems...
|
|
+ */
|
|
+static int dw_mci_rockchip_broken_boards_reset_nb(
|
|
+ struct notifier_block *this,
|
|
+ unsigned long mode, void *cmd)
|
|
+{
|
|
+ struct dw_mci_rockchip_broken_boards_data const *data =
|
|
+ container_of(this,
|
|
+ struct dw_mci_rockchip_broken_boards_data,
|
|
+ reset_nb);
|
|
+ struct dw_mci *host = platform_get_drvdata(data->pdev);
|
|
+ struct mmc_host *mmc = host->slot->mmc;
|
|
+
|
|
+ printk(KERN_ERR "Meow.\n");
|
|
+
|
|
+ mmc_power_off(mmc);
|
|
+
|
|
+ mdelay(20);
|
|
+
|
|
+ if (!IS_ERR(mmc->supply.vmmc))
|
|
+ regulator_enable(mmc->supply.vmmc);
|
|
+
|
|
+ if (!IS_ERR(mmc->supply.vqmmc))
|
|
+ regulator_set_voltage(mmc->supply.vqmmc, 3000000, 3300000);
|
|
+
|
|
+ printk(KERN_ERR "woeM.\n");
|
|
+
|
|
+ return NOTIFY_DONE;
|
|
+}
|
|
+
|
|
+static void dw_mci_rockchip_register_broken_boards_reboot_handler(
|
|
+ struct platform_device *pdev)
|
|
+{
|
|
+ struct dw_mci_rockchip_broken_boards_data *data;
|
|
+
|
|
+ if (!of_machine_is_compatible("asus,rk3288-tinker"))
|
|
+ return;
|
|
+
|
|
+ data = devm_kzalloc(&pdev->dev, sizeof(*data), GFP_KERNEL);
|
|
+
|
|
+ if (!data)
|
|
+ return;
|
|
+
|
|
+ data->reset_nb.notifier_call =
|
|
+ dw_mci_rockchip_broken_boards_reset_nb;
|
|
+ data->reset_nb.priority = 255;
|
|
+ register_restart_handler(&data->reset_nb);
|
|
+
|
|
+ data->pdev = pdev;
|
|
+}
|
|
+
|
|
static int dw_mci_rockchip_probe(struct platform_device *pdev)
|
|
{
|
|
const struct dw_mci_drv_data *drv_data;
|
|
@@ -367,6 +432,7 @@ static int dw_mci_rockchip_probe(struct platform_device *pdev)
|
|
}
|
|
|
|
pm_runtime_put_autosuspend(&pdev->dev);
|
|
+ dw_mci_rockchip_register_broken_boards_reboot_handler(pdev);
|
|
|
|
return 0;
|
|
}
|