blob: de94dd8071cc8ed10376cc77f6ae02a24fb916d4 [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
wdenke887afc2002-08-27 09:44:07 +00002/*
3 * (C) Copyright 2000
4 * Subodh Nijsure, SkyStream Networks, snijsure@skystream.com
wdenke887afc2002-08-27 09:44:07 +00005 */
6
7#include <common.h>
8#include <command.h>
Christophe Leroy31f6e932017-07-13 15:09:54 +02009#include <asm/ppc.h>
Jon Loeliger3de8b242007-06-11 19:01:54 -050010
Kim Phillipsdc00a682012-10-29 13:34:31 +000011static int do_reginfo(cmd_tbl_t *cmdtp, int flag, int argc,
12 char * const argv[])
wdenke887afc2002-08-27 09:44:07 +000013{
Christophe Leroy31f6e932017-07-13 15:09:54 +020014 print_reginfo();
Becky Bruceb0b30942008-01-23 16:31:06 -060015
wdenke887afc2002-08-27 09:44:07 +000016 return 0;
17}
18
wdenk57b2d802003-06-27 21:31:46 +000019 /**************************************************/
20
wdenkf287a242003-07-01 21:06:45 +000021U_BOOT_CMD(
Wolfgang Denka1be4762008-05-20 16:00:29 +020022 reginfo, 2, 1, do_reginfo,
Peter Tyserdfb72b82009-01-27 18:03:12 -060023 "print register information",
Wolfgang Denkc54781c2009-05-24 17:06:54 +020024 ""
wdenk57b2d802003-06-27 21:31:46 +000025);