ARM: restart: tegra: use new restart hook
Hook these platforms restart code into the new restart hook rather than using arch_reset(). Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
This commit is contained in:
parent
dd1661e27a
commit
abea3f2ce0
7 changed files with 10 additions and 5 deletions
|
@ -132,5 +132,6 @@ DT_MACHINE_START(TEGRA_DT, "nVidia Tegra (Flattened Device Tree)")
|
|||
.init_irq = tegra_init_irq,
|
||||
.timer = &tegra_timer,
|
||||
.init_machine = tegra_dt_init,
|
||||
.restart = tegra_assert_system_reset,
|
||||
.dt_compat = tegra_dt_board_compat,
|
||||
MACHINE_END
|
||||
|
|
|
@ -189,4 +189,5 @@ MACHINE_START(HARMONY, "harmony")
|
|||
.init_irq = tegra_init_irq,
|
||||
.timer = &tegra_timer,
|
||||
.init_machine = tegra_harmony_init,
|
||||
.restart = tegra_assert_system_reset,
|
||||
MACHINE_END
|
||||
|
|
|
@ -192,4 +192,5 @@ MACHINE_START(PAZ00, "Toshiba AC100 / Dynabook AZ")
|
|||
.init_irq = tegra_init_irq,
|
||||
.timer = &tegra_timer,
|
||||
.init_machine = tegra_paz00_init,
|
||||
.restart = tegra_assert_system_reset,
|
||||
MACHINE_END
|
||||
|
|
|
@ -286,6 +286,7 @@ MACHINE_START(SEABOARD, "seaboard")
|
|||
.init_irq = tegra_init_irq,
|
||||
.timer = &tegra_timer,
|
||||
.init_machine = tegra_seaboard_init,
|
||||
.restart = tegra_assert_system_reset,
|
||||
MACHINE_END
|
||||
|
||||
MACHINE_START(KAEN, "kaen")
|
||||
|
@ -295,6 +296,7 @@ MACHINE_START(KAEN, "kaen")
|
|||
.init_irq = tegra_init_irq,
|
||||
.timer = &tegra_timer,
|
||||
.init_machine = tegra_kaen_init,
|
||||
.restart = tegra_assert_system_reset,
|
||||
MACHINE_END
|
||||
|
||||
MACHINE_START(WARIO, "wario")
|
||||
|
@ -304,4 +306,5 @@ MACHINE_START(WARIO, "wario")
|
|||
.init_irq = tegra_init_irq,
|
||||
.timer = &tegra_timer,
|
||||
.init_machine = tegra_wario_init,
|
||||
.restart = tegra_assert_system_reset,
|
||||
MACHINE_END
|
||||
|
|
|
@ -178,4 +178,5 @@ MACHINE_START(TRIMSLICE, "trimslice")
|
|||
.init_irq = tegra_init_irq,
|
||||
.timer = &tegra_timer,
|
||||
.init_machine = tegra_trimslice_init,
|
||||
.restart = tegra_assert_system_reset,
|
||||
MACHINE_END
|
||||
|
|
|
@ -31,8 +31,6 @@
|
|||
#include "clock.h"
|
||||
#include "fuse.h"
|
||||
|
||||
void (*arch_reset)(char mode, const char *cmd) = tegra_assert_system_reset;
|
||||
|
||||
void tegra_assert_system_reset(char mode, const char *cmd)
|
||||
{
|
||||
void __iomem *reset = IO_ADDRESS(TEGRA_CLK_RESET_BASE + 0x04);
|
||||
|
|
|
@ -21,9 +21,9 @@
|
|||
#ifndef __MACH_TEGRA_SYSTEM_H
|
||||
#define __MACH_TEGRA_SYSTEM_H
|
||||
|
||||
#include <mach/iomap.h>
|
||||
|
||||
extern void (*arch_reset)(char mode, const char *cmd);
|
||||
static inline void arch_reset(char mode, const char *cmd)
|
||||
{
|
||||
}
|
||||
|
||||
static inline void arch_idle(void)
|
||||
{
|
||||
|
|
Loading…
Add table
Reference in a new issue