From: Dima Zavin Date: Thu, 11 Nov 2010 23:28:46 +0000 (-0800) Subject: ARM: tegra: flush console before reboot X-Git-Tag: firefly_0821_release~9833^2~111^2~4 X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=df05ccfa78ff88a15bdf0b7b615292b9149f199a;p=firefly-linux-kernel-4.4.55.git ARM: tegra: flush console before reboot If the console_sem was held while the system was rebooted, the messages in the temporary logbuffer would not have propogated to all the console drivers. This force releases the console sem if it failed to be acquired. Change-Id: I6eba9d744ef41209d26328a17c7ae19c32d6e8cb Signed-off-by: Dima Zavin --- diff --git a/arch/arm/mach-tegra/common.c b/arch/arm/mach-tegra/common.c index 2fdb99b6fdc5..12ce86b7ab9c 100644 --- a/arch/arm/mach-tegra/common.c +++ b/arch/arm/mach-tegra/common.c @@ -17,6 +17,7 @@ * */ +#include #include #include #include @@ -25,6 +26,7 @@ #include #include +#include #include #include @@ -98,8 +100,41 @@ static void __init tegra_init_power(void) tegra_powergate_power_off(TEGRA_POWERGATE_3D); } +static bool console_flushed; + +static void tegra_pm_flush_console(void) +{ + if (console_flushed) + return; + console_flushed = true; + + printk("\n"); + pr_emerg("Restarting %s\n", linux_banner); + if (!try_acquire_console_sem()) { + release_console_sem(); + return; + } + + mdelay(50); + + local_irq_disable(); + if (try_acquire_console_sem()) + pr_emerg("tegra_restart: Console was locked! Busting\n"); + else + pr_emerg("tegra_restart: Console was locked!\n"); + release_console_sem(); +} + +static void tegra_pm_restart(char mode, const char *cmd) +{ + tegra_pm_flush_console(); + arm_machine_restart(mode, cmd); +} + void __init tegra_common_init(void) { + arm_pm_restart = tegra_pm_restart; + tegra_init_fuse(); tegra_init_clock(); tegra_clk_init_from_table(common_clk_init_table);