diff options
author | Tero Kristo <t-kristo@ti.com> | 2014-10-27 11:39:26 -0400 |
---|---|---|
committer | Tony Lindgren <tony@atomide.com> | 2014-10-27 11:39:26 -0400 |
commit | 61c8621e2bd14faad9b89ab2284955b28000bcd5 (patch) | |
tree | b7b24d5490f68336f06dcee1dbc50d2fc2254a55 /arch/arm/mach-omap2/prm_common.c | |
parent | 4984eeaf71f033d1ca6b644e4fcdef4b3e6a97b4 (diff) |
ARM: OMAP2+: PRM: provide generic API for system reset
This patch combines the various prm_warm_reset calls under a common
API prm_reset_system, and adds the SoC specific implementation under
prm_ll_data.
Signed-off-by: Tero Kristo <t-kristo@ti.com>
Acked-by: Paul Walmsley <paul@pwsan.com>
Tested-by: Nishanth Menon <nm@ti.com>
Signed-off-by: Tony Lindgren <tony@atomide.com>
Diffstat (limited to 'arch/arm/mach-omap2/prm_common.c')
-rw-r--r-- | arch/arm/mach-omap2/prm_common.c | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/arch/arm/mach-omap2/prm_common.c b/arch/arm/mach-omap2/prm_common.c index be40824acf5f..779940cb6e56 100644 --- a/arch/arm/mach-omap2/prm_common.c +++ b/arch/arm/mach-omap2/prm_common.c | |||
@@ -503,6 +503,25 @@ void omap_prm_reconfigure_io_chain(void) | |||
503 | } | 503 | } |
504 | 504 | ||
505 | /** | 505 | /** |
506 | * omap_prm_reset_system - trigger global SW reset | ||
507 | * | ||
508 | * Triggers SoC specific global warm reset to reboot the device. | ||
509 | */ | ||
510 | void omap_prm_reset_system(void) | ||
511 | { | ||
512 | if (!prm_ll_data->reset_system) { | ||
513 | WARN_ONCE(1, "prm: %s: no mapping function defined\n", | ||
514 | __func__); | ||
515 | return; | ||
516 | } | ||
517 | |||
518 | prm_ll_data->reset_system(); | ||
519 | |||
520 | while (1) | ||
521 | cpu_relax(); | ||
522 | } | ||
523 | |||
524 | /** | ||
506 | * prm_register - register per-SoC low-level data with the PRM | 525 | * prm_register - register per-SoC low-level data with the PRM |
507 | * @pld: low-level per-SoC OMAP PRM data & function pointers to register | 526 | * @pld: low-level per-SoC OMAP PRM data & function pointers to register |
508 | * | 527 | * |