blob: 25df31a3b858aa5a90a6e4a861a02f001faedd13 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Stephen Warren9cd3f3a2012-06-04 09:23:55 +00002/*
Thierry Redingf9ec2ec2019-04-15 11:32:25 +02003 * Copyright (c) 2012-2019, NVIDIA CORPORATION. All rights reserved.
Stephen Warren9cd3f3a2012-06-04 09:23:55 +00004 *
5 * Derived from code (arch/arm/lib/reset.c) that is:
6 *
7 * (C) Copyright 2002
8 * Sysgo Real-Time Solutions, GmbH <www.elinos.com>
9 * Marius Groeger <mgroeger@sysgo.de>
10 *
11 * (C) Copyright 2002
12 * Sysgo Real-Time Solutions, GmbH <www.elinos.com>
13 * Alex Zuepke <azu@sysgo.de>
14 *
15 * (C) Copyright 2002
16 * Gary Jennejohn, DENX Software Engineering, <garyj@denx.de>
17 *
18 * (C) Copyright 2004
19 * DAVE Srl
20 * http://www.dave-tech.it
21 * http://www.wawnet.biz
22 * mailto:info@wawnet.biz
23 *
24 * (C) Copyright 2004 Texas Insturments
Stephen Warren9cd3f3a2012-06-04 09:23:55 +000025 */
26
27#include <common.h>
Simon Glass09140112020-05-10 11:40:03 -060028#include <command.h>
Simon Glass9a3b4ce2019-12-28 10:45:01 -070029#include <cpu_func.h>
Simon Glass36bf4462019-11-14 12:57:42 -070030#include <irq_func.h>
Tom Warren150c2492012-09-19 15:50:56 -070031#include <asm/arch/tegra.h>
32#include <asm/arch-tegra/pmc.h>
Simon Glassc05ed002020-05-10 11:40:11 -060033#include <linux/delay.h>
Stephen Warren9cd3f3a2012-06-04 09:23:55 +000034
Simon Glass09140112020-05-10 11:40:03 -060035static int do_enterrcm(struct cmd_tbl *cmdtp, int flag, int argc,
36 char *const argv[])
Stephen Warren9cd3f3a2012-06-04 09:23:55 +000037{
Stephen Warren9cd3f3a2012-06-04 09:23:55 +000038 puts("Entering RCM...\n");
39 udelay(50000);
40
Thierry Redingf9ec2ec2019-04-15 11:32:25 +020041 tegra_pmc_writel(2, PMC_SCRATCH0);
Stephen Warren9cd3f3a2012-06-04 09:23:55 +000042 disable_interrupts();
43 reset_cpu(0);
44
45 return 0;
46}
47
48U_BOOT_CMD(
49 enterrcm, 1, 0, do_enterrcm,
50 "reset Tegra and enter USB Recovery Mode",
51 ""
52);