blob: cc2023429828b0cf44b1152e4b8e435139f2009a [file] [log] [blame]
Eran Libertyf046ccd2005-07-28 10:08:46 -05001/*
Dave Liu03051c32007-09-18 12:36:11 +08002 * Copyright (C) 2004-2007 Freescale Semiconductor, Inc.
Eran Libertyf046ccd2005-07-28 10:08:46 -05003 *
4 * See file CREDITS for list of people who contributed to this
5 * project.
6 *
7 * This program is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License as
9 * published by the Free Software Foundation; either version 2 of
10 * the License, or (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
20 * MA 02111-1307 USA
Eran Libertyf046ccd2005-07-28 10:08:46 -050021 */
22
23/*
24 * CPU specific code for the MPC83xx family.
25 *
26 * Derived from the MPC8260 and MPC85xx.
27 */
28
29#include <common.h>
30#include <watchdog.h>
31#include <command.h>
32#include <mpc83xx.h>
33#include <asm/processor.h>
Gerald Van Baren213bf8c2007-03-31 12:23:51 -040034#include <libfdt.h>
Andy Fleming75b9d4a2008-08-31 16:33:26 -050035#include <tsec.h>
Ben Warren0e8454e2008-10-22 23:32:48 -070036#include <netdev.h>
Andy Fleminge1ac3872008-10-30 16:50:14 -050037#include <fsl_esdhc.h>
Heiko Schocherf70fd132009-02-24 11:30:51 +010038#ifdef CONFIG_BOOTCOUNT_LIMIT
39#include <asm/immap_qe.h>
40#include <asm/io.h>
41#endif
Eran Libertyf046ccd2005-07-28 10:08:46 -050042
Wolfgang Denkd87080b2006-03-31 18:32:53 +020043DECLARE_GLOBAL_DATA_PTR;
44
Eran Libertyf046ccd2005-07-28 10:08:46 -050045int checkcpu(void)
46{
Dave Liu5f820432006-11-03 19:33:44 -060047 volatile immap_t *immr;
Eran Libertyf046ccd2005-07-28 10:08:46 -050048 ulong clock = gd->cpu_clk;
49 u32 pvr = get_pvr();
Dave Liu5f820432006-11-03 19:33:44 -060050 u32 spridr;
Eran Libertyf046ccd2005-07-28 10:08:46 -050051 char buf[32];
Kim Phillipse5c4ade2008-03-28 10:19:07 -050052 int i;
53
Kim Phillipse5c4ade2008-03-28 10:19:07 -050054 const struct cpu_type {
55 char name[15];
56 u32 partid;
57 } cpu_type_list [] = {
Ilya Yanok7c619dd2010-06-28 16:44:33 +040058 CPU_TYPE_ENTRY(8308),
Gerlando Falautoa88731a2012-10-10 22:13:08 +000059 CPU_TYPE_ENTRY(8309),
Kim Phillipse5c4ade2008-03-28 10:19:07 -050060 CPU_TYPE_ENTRY(8311),
61 CPU_TYPE_ENTRY(8313),
62 CPU_TYPE_ENTRY(8314),
63 CPU_TYPE_ENTRY(8315),
64 CPU_TYPE_ENTRY(8321),
65 CPU_TYPE_ENTRY(8323),
66 CPU_TYPE_ENTRY(8343),
67 CPU_TYPE_ENTRY(8347_TBGA_),
68 CPU_TYPE_ENTRY(8347_PBGA_),
69 CPU_TYPE_ENTRY(8349),
70 CPU_TYPE_ENTRY(8358_TBGA_),
71 CPU_TYPE_ENTRY(8358_PBGA_),
72 CPU_TYPE_ENTRY(8360),
73 CPU_TYPE_ENTRY(8377),
74 CPU_TYPE_ENTRY(8378),
75 CPU_TYPE_ENTRY(8379),
76 };
Eran Libertyf046ccd2005-07-28 10:08:46 -050077
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020078 immr = (immap_t *)CONFIG_SYS_IMMR;
Dave Liu5f820432006-11-03 19:33:44 -060079
Kim Phillips54b2d432007-04-30 15:26:21 -050080 puts("CPU: ");
Scott Wood95e7ef82007-04-16 14:34:16 -050081
82 switch (pvr & 0xffff0000) {
83 case PVR_E300C1:
84 printf("e300c1, ");
85 break;
86
87 case PVR_E300C2:
88 printf("e300c2, ");
89 break;
90
91 case PVR_E300C3:
92 printf("e300c3, ");
93 break;
94
Dave Liu03051c32007-09-18 12:36:11 +080095 case PVR_E300C4:
96 printf("e300c4, ");
97 break;
98
Scott Wood95e7ef82007-04-16 14:34:16 -050099 default:
100 printf("Unknown core, ");
Eran Libertyf046ccd2005-07-28 10:08:46 -0500101 }
102
Dave Liu5f820432006-11-03 19:33:44 -0600103 spridr = immr->sysconf.spridr;
Rafal Jaworowski6902df52005-10-17 02:39:53 +0200104
Kim Phillipse5c4ade2008-03-28 10:19:07 -0500105 for (i = 0; i < ARRAY_SIZE(cpu_type_list); i++)
106 if (cpu_type_list[i].partid == PARTID_NO_E(spridr)) {
107 puts("MPC");
108 puts(cpu_type_list[i].name);
109 if (IS_E_PROCESSOR(spridr))
110 puts("E");
Kim Phillipsdfe812c2010-04-15 17:36:02 -0500111 if ((SPR_FAMILY(spridr) == SPR_834X_FAMILY ||
112 SPR_FAMILY(spridr) == SPR_836X_FAMILY) &&
113 REVID_MAJOR(spridr) >= 2)
Kim Phillipse5c4ade2008-03-28 10:19:07 -0500114 puts("A");
115 printf(", Rev: %d.%d", REVID_MAJOR(spridr),
116 REVID_MINOR(spridr));
117 break;
118 }
119
120 if (i == ARRAY_SIZE(cpu_type_list))
121 printf("(SPRIDR %08x unknown), ", spridr);
122
123 printf(" at %s MHz, ", strmhz(buf, clock));
124
Simon Glassc6731fe2012-12-13 20:48:47 +0000125 printf("CSB: %s MHz\n", strmhz(buf, gd->arch.csb_clk));
Kim Phillips54b2d432007-04-30 15:26:21 -0500126
Eran Libertyf046ccd2005-07-28 10:08:46 -0500127 return 0;
128}
129
Eran Libertyf046ccd2005-07-28 10:08:46 -0500130int
Wolfgang Denk54841ab2010-06-28 22:00:46 +0200131do_reset (cmd_tbl_t * cmdtp, int flag, int argc, char * const argv[])
Eran Libertyf046ccd2005-07-28 10:08:46 -0500132{
Wolfgang Denk07a25052005-08-05 19:49:35 +0200133 ulong msr;
134#ifndef MPC83xx_RESET
135 ulong addr;
136#endif
Eran Libertyf046ccd2005-07-28 10:08:46 -0500137
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200138 volatile immap_t *immap = (immap_t *) CONFIG_SYS_IMMR;
Eran Libertyf046ccd2005-07-28 10:08:46 -0500139
Michael Zaidman4c006dd2010-02-15 10:02:32 +0200140 puts("Resetting the board.\n");
141
Eran Libertyf046ccd2005-07-28 10:08:46 -0500142#ifdef MPC83xx_RESET
Michael Zaidman4c006dd2010-02-15 10:02:32 +0200143
Eran Libertyf046ccd2005-07-28 10:08:46 -0500144 /* Interrupts and MMU off */
145 __asm__ __volatile__ ("mfmsr %0":"=r" (msr):);
146
147 msr &= ~( MSR_EE | MSR_IR | MSR_DR);
148 __asm__ __volatile__ ("mtmsr %0"::"r" (msr));
149
150 /* enable Reset Control Reg */
151 immap->reset.rpr = 0x52535445;
Marian Balakowicz6d8ae5a2006-03-14 16:12:48 +0100152 __asm__ __volatile__ ("sync");
153 __asm__ __volatile__ ("isync");
Eran Libertyf046ccd2005-07-28 10:08:46 -0500154
155 /* confirm Reset Control Reg is enabled */
156 while(!((immap->reset.rcer) & RCER_CRE));
157
Eran Libertyf046ccd2005-07-28 10:08:46 -0500158 udelay(200);
159
160 /* perform reset, only one bit */
Wolfgang Denk07a25052005-08-05 19:49:35 +0200161 immap->reset.rcr = RCR_SWHR;
Eran Libertyf046ccd2005-07-28 10:08:46 -0500162
Wolfgang Denk07a25052005-08-05 19:49:35 +0200163#else /* ! MPC83xx_RESET */
164
165 immap->reset.rmr = RMR_CSRE; /* Checkstop Reset enable */
166
167 /* Interrupts and MMU off */
168 __asm__ __volatile__ ("mfmsr %0":"=r" (msr):);
Eran Libertyf046ccd2005-07-28 10:08:46 -0500169
170 msr &= ~(MSR_ME | MSR_EE | MSR_IR | MSR_DR);
171 __asm__ __volatile__ ("mtmsr %0"::"r" (msr));
172
173 /*
174 * Trying to execute the next instruction at a non-existing address
175 * should cause a machine check, resulting in reset
176 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200177 addr = CONFIG_SYS_RESET_ADDRESS;
Eran Libertyf046ccd2005-07-28 10:08:46 -0500178
Eran Libertyf046ccd2005-07-28 10:08:46 -0500179 ((void (*)(void)) addr) ();
Wolfgang Denk07a25052005-08-05 19:49:35 +0200180#endif /* MPC83xx_RESET */
181
Eran Libertyf046ccd2005-07-28 10:08:46 -0500182 return 1;
183}
184
185
186/*
187 * Get timebase clock frequency (like cpu_clk in Hz)
188 */
189
190unsigned long get_tbclk(void)
191{
Eran Libertyf046ccd2005-07-28 10:08:46 -0500192 ulong tbclk;
193
194 tbclk = (gd->bus_clk + 3L) / 4L;
195
196 return tbclk;
197}
198
199
200#if defined(CONFIG_WATCHDOG)
201void watchdog_reset (void)
202{
Timur Tabi2ad6b512006-10-31 18:44:42 -0600203 int re_enable = disable_interrupts();
204
205 /* Reset the 83xx watchdog */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200206 volatile immap_t *immr = (immap_t *) CONFIG_SYS_IMMR;
Timur Tabi2ad6b512006-10-31 18:44:42 -0600207 immr->wdt.swsrr = 0x556c;
208 immr->wdt.swsrr = 0xaa39;
209
210 if (re_enable)
211 enable_interrupts ();
Eran Libertyf046ccd2005-07-28 10:08:46 -0500212}
Timur Tabi2ad6b512006-10-31 18:44:42 -0600213#endif
Kumar Gala62ec6412006-01-11 16:48:10 -0600214
Andy Fleming75b9d4a2008-08-31 16:33:26 -0500215/*
216 * Initializes on-chip ethernet controllers.
217 * to override, implement board_eth_init()
Ben Warrendd354792008-06-23 22:57:27 -0700218 */
Ben Warrendd354792008-06-23 22:57:27 -0700219int cpu_eth_init(bd_t *bis)
220{
Haiying Wang8e552582009-06-04 16:12:41 -0400221#if defined(CONFIG_UEC_ETH)
222 uec_standard_init(bis);
Ben Warren0e8454e2008-10-22 23:32:48 -0700223#endif
Haiying Wang8e552582009-06-04 16:12:41 -0400224
Andy Fleming75b9d4a2008-08-31 16:33:26 -0500225#if defined(CONFIG_TSEC_ENET)
226 tsec_standard_init(bis);
Ben Warrendd354792008-06-23 22:57:27 -0700227#endif
Ben Warrendd354792008-06-23 22:57:27 -0700228 return 0;
229}
Andy Fleminge1ac3872008-10-30 16:50:14 -0500230
231/*
232 * Initializes on-chip MMC controllers.
233 * to override, implement board_mmc_init()
234 */
235int cpu_mmc_init(bd_t *bis)
236{
237#ifdef CONFIG_FSL_ESDHC
238 return fsl_esdhc_mmc_init(bis);
239#else
240 return 0;
241#endif
242}