]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - arch/arm/cpu/armv7/omap-common/reset.c
merged tx6dl-devel into denx master branch
[karo-tx-uboot.git] / arch / arm / cpu / armv7 / omap-common / reset.c
1 /*
2  *
3  * Common layer for reset related functionality of OMAP based socs.
4  *
5  * (C) Copyright 2012
6  * Texas Instruments, <www.ti.com>
7  *
8  * Sricharan R <r.sricharan@ti.com>
9  *
10  * SPDX-License-Identifier:     GPL-2.0+
11  */
12 #include <common.h>
13 #include <config.h>
14 #include <asm/io.h>
15 #include <asm/arch/cpu.h>
16 #include <linux/compiler.h>
17
18 void __weak reset_cpu(unsigned long ignored)
19 {
20         /* clear the reset status flags */
21         writel(readl(PRM_RSTST), PRM_RSTST);
22         writel(PRM_RSTCTRL_RESET, PRM_RSTCTRL);
23 }
24
25 u32 __weak warm_reset(void)
26 {
27         return (readl(PRM_RSTST) & PRM_RSTST_WARM_RESET_MASK);
28 }
29
30 void __weak setup_warmreset_time(void)
31 {
32 }