blob: 2f79380c8be4760ec7bd8b922cc56e4d7e7ab4e4 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
TsiChungLiew8ae158c2007-08-16 15:05:11 -05002/*
3 *
4 * (C) Copyright 2000-2003
5 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
6 *
Alison Wang198cafb2012-03-26 21:49:08 +00007 * Copyright (C) 2004-2007, 2012 Freescale Semiconductor, Inc.
TsiChungLiew8ae158c2007-08-16 15:05:11 -05008 * TsiChung Liew (Tsi-Chung.Liew@freescale.com)
TsiChungLiew8ae158c2007-08-16 15:05:11 -05009 */
10
11#include <common.h>
Simon Glass2189d5f2019-11-14 12:57:20 -070012#include <vsprintf.h>
TsiChungLiew8ae158c2007-08-16 15:05:11 -050013#include <watchdog.h>
14#include <command.h>
Ben Warren89973f82008-08-31 22:22:04 -070015#include <netdev.h>
TsiChungLiew8ae158c2007-08-16 15:05:11 -050016
17#include <asm/immap.h>
Alison Wang198cafb2012-03-26 21:49:08 +000018#include <asm/io.h>
TsiChungLiew8ae158c2007-08-16 15:05:11 -050019
20DECLARE_GLOBAL_DATA_PTR;
21
Mike Frysinger882b7d72010-10-20 03:41:17 -040022int do_reset(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
TsiChungLiew8ae158c2007-08-16 15:05:11 -050023{
Alison Wang198cafb2012-03-26 21:49:08 +000024 rcm_t *rcm = (rcm_t *) (MMAP_RCM);
TsiChungLiew8ae158c2007-08-16 15:05:11 -050025 udelay(1000);
Alison Wang45370e12012-10-18 19:25:51 +000026 out_8(&rcm->rcr, RCM_RCR_FRCRSTOUT);
27 udelay(10000);
Alison Wang198cafb2012-03-26 21:49:08 +000028 setbits_8(&rcm->rcr, RCM_RCR_SOFTRST);
TsiChungLiew8ae158c2007-08-16 15:05:11 -050029
30 /* we don't return! */
31 return 0;
32};
33
Angelo Dureghellob9153fe32017-08-20 00:01:55 +020034#if defined(CONFIG_DISPLAY_CPUINFO)
35int print_cpuinfo(void)
TsiChungLiew8ae158c2007-08-16 15:05:11 -050036{
Alison Wang198cafb2012-03-26 21:49:08 +000037 ccm_t *ccm = (ccm_t *) MMAP_CCM;
TsiChungLiew8ae158c2007-08-16 15:05:11 -050038 u16 msk;
39 u16 id = 0;
40 u8 ver;
41
42 puts("CPU: ");
Alison Wang198cafb2012-03-26 21:49:08 +000043 msk = (in_be16(&ccm->cir) >> 6);
44 ver = (in_be16(&ccm->cir) & 0x003f);
TsiChungLiew8ae158c2007-08-16 15:05:11 -050045 switch (msk) {
46 case 0x48:
47 id = 54455;
48 break;
49 case 0x49:
50 id = 54454;
51 break;
52 case 0x4a:
53 id = 54453;
54 break;
55 case 0x4b:
56 id = 54452;
57 break;
58 case 0x4d:
59 id = 54451;
60 break;
61 case 0x4f:
62 id = 54450;
63 break;
Alison Wang45370e12012-10-18 19:25:51 +000064 case 0x9F:
65 id = 54410;
66 break;
67 case 0xA0:
68 id = 54415;
69 break;
70 case 0xA1:
71 id = 54416;
72 break;
73 case 0xA2:
74 id = 54417;
75 break;
76 case 0xA3:
77 id = 54418;
78 break;
TsiChungLiew8ae158c2007-08-16 15:05:11 -050079 }
80
81 if (id) {
Wolfgang Denk08ef89e2008-10-19 02:35:49 +020082 char buf1[32], buf2[32], buf3[32];
83
TsiChungLiew8ae158c2007-08-16 15:05:11 -050084 printf("Freescale MCF%d (Mask:%01x Version:%x)\n", id, msk,
85 ver);
Wolfgang Denk08ef89e2008-10-19 02:35:49 +020086 printf(" CPU CLK %s MHz BUS CLK %s MHz FLB CLK %s MHz\n",
87 strmhz(buf1, gd->cpu_clk),
88 strmhz(buf2, gd->bus_clk),
Simon Glass7e2592f2012-12-13 20:49:07 +000089 strmhz(buf3, gd->arch.flb_clk));
TsiChungLiew8ae158c2007-08-16 15:05:11 -050090#ifdef CONFIG_PCI
Wolfgang Denk08ef89e2008-10-19 02:35:49 +020091 printf(" PCI CLK %s MHz INP CLK %s MHz VCO CLK %s MHz\n",
92 strmhz(buf1, gd->pci_clk),
Simon Glass7e2592f2012-12-13 20:49:07 +000093 strmhz(buf2, gd->arch.inp_clk),
94 strmhz(buf3, gd->arch.vco_clk));
TsiChungLiew8ae158c2007-08-16 15:05:11 -050095#else
Wolfgang Denk08ef89e2008-10-19 02:35:49 +020096 printf(" INP CLK %s MHz VCO CLK %s MHz\n",
Simon Glass7e2592f2012-12-13 20:49:07 +000097 strmhz(buf1, gd->arch.inp_clk),
98 strmhz(buf2, gd->arch.vco_clk));
TsiChungLiew8ae158c2007-08-16 15:05:11 -050099#endif
100 }
101
102 return 0;
103}
Angelo Dureghellob9153fe32017-08-20 00:01:55 +0200104#endif /* CONFIG_DISPLAY_CPUINFO */
Ben Warren86882b82008-08-26 22:16:25 -0700105
106#if defined(CONFIG_MCFFEC)
107/* Default initializations for MCFFEC controllers. To override,
108 * create a board-specific function called:
109 * int board_eth_init(bd_t *bis)
110 */
111
Ben Warren86882b82008-08-26 22:16:25 -0700112int cpu_eth_init(bd_t *bis)
113{
114 return mcffec_initialize(bis);
115}
116#endif