blob: 0ad31ef4e288d9daad19e97125a5d09f905b1cd6 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Tom Rini534bc702016-03-16 09:19:43 -04002/*
3 * Keystone EVM : Power off
4 *
5 * (C) Copyright 2014
6 * Texas Instruments Incorporated, <www.ti.com>
Tom Rini534bc702016-03-16 09:19:43 -04007 */
8
Tom Rini534bc702016-03-16 09:19:43 -04009#include <command.h>
10#include <asm/arch/mon.h>
11#include <asm/arch/psc_defs.h>
12#include <asm/arch/hardware.h>
13
Simon Glass09140112020-05-10 11:40:03 -060014int do_poweroff(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[])
Tom Rini534bc702016-03-16 09:19:43 -040015{
16 mon_power_off(0);
17
18 psc_disable_module(KS2_LPSC_TETRIS);
19 psc_disable_domain(KS2_TETRIS_PWR_DOMAIN);
20
21 asm volatile ("isb\n"
22 "dsb\n"
23 "wfi\n");
24
25 return 0;
26}