blob: 7a463b5e093333b55e6d551eb8eb610f6f665a3d [file] [log] [blame]
wdenk945af8d2003-07-16 21:53:01 +00001/*
Detlev Zundela21fb982010-01-20 14:28:48 +01002 * (C) Copyright 2000-2010
wdenk945af8d2003-07-16 21:53:01 +00003 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
4 *
Wolfgang Denk1a459662013-07-08 09:37:19 +02005 * SPDX-License-Identifier: GPL-2.0+
wdenk945af8d2003-07-16 21:53:01 +00006 */
7
8/*
9 * CPU specific code for the MPC5xxx CPUs
10 */
11
12#include <common.h>
13#include <watchdog.h>
14#include <command.h>
Grzegorz Bernacki5c4fa9b2009-03-17 10:06:40 +010015#include <net.h>
wdenk945af8d2003-07-16 21:53:01 +000016#include <mpc5xxx.h>
Ben Warrene1d74802008-08-31 10:39:12 -070017#include <netdev.h>
Grant Likelycf2817a2007-09-06 09:46:23 -060018#include <asm/io.h>
wdenk945af8d2003-07-16 21:53:01 +000019#include <asm/processor.h>
20
Grant Likelycf2817a2007-09-06 09:46:23 -060021#if defined(CONFIG_OF_LIBFDT)
22#include <libfdt.h>
Kumar Galae93becf2007-11-03 19:46:28 -050023#include <fdt_support.h>
Stefan Roesee59581c2006-11-28 17:55:49 +010024#endif
25
Heiko Schocher3887c3f2009-09-23 07:56:08 +020026#if defined(CONFIG_OF_IDE_FIXUP)
27#include <ide.h>
28#endif
29
Wolfgang Denkd87080b2006-03-31 18:32:53 +020030DECLARE_GLOBAL_DATA_PTR;
31
wdenk945af8d2003-07-16 21:53:01 +000032int checkcpu (void)
33{
wdenk945af8d2003-07-16 21:53:01 +000034 ulong clock = gd->cpu_clk;
35 char buf[32];
Rafal Jaworowskib66a9382006-03-29 13:17:09 +020036 uint svr, pvr;
wdenk945af8d2003-07-16 21:53:01 +000037
38 puts ("CPU: ");
39
Rafal Jaworowskib66a9382006-03-29 13:17:09 +020040 svr = get_svr();
41 pvr = get_pvr();
Grzegorz Wianeckia9d87e22007-04-29 14:01:54 +020042
43 switch (pvr) {
44 case PVR_5200:
45 printf("MPC5200");
46 break;
47 case PVR_5200B:
48 printf("MPC5200B");
wdenk36c72872004-06-09 17:45:32 +000049 break;
50 default:
Grzegorz Wianeckia9d87e22007-04-29 14:01:54 +020051 printf("Unknown MPC5xxx");
wdenk36c72872004-06-09 17:45:32 +000052 break;
53 }
54
Wolfgang Denkcf48eb92006-04-16 10:51:58 +020055 printf (" v%d.%d, Core v%d.%d", SVR_MJREV (svr), SVR_MNREV (svr),
Rafal Jaworowskib66a9382006-03-29 13:17:09 +020056 PVR_MAJ(pvr), PVR_MIN(pvr));
wdenk945af8d2003-07-16 21:53:01 +000057 printf (" at %s MHz\n", strmhz (buf, clock));
wdenk945af8d2003-07-16 21:53:01 +000058 return 0;
59}
60
61/* ------------------------------------------------------------------------- */
62
63int
Wolfgang Denk54841ab2010-06-28 22:00:46 +020064do_reset (cmd_tbl_t * cmdtp, int flag, int argc, char * const argv[])
wdenk945af8d2003-07-16 21:53:01 +000065{
wdenkd94f92c2003-08-28 09:41:22 +000066 ulong msr;
wdenk945af8d2003-07-16 21:53:01 +000067 /* Interrupts and MMU off */
68 __asm__ __volatile__ ("mfmsr %0":"=r" (msr):);
69
70 msr &= ~(MSR_ME | MSR_EE | MSR_IR | MSR_DR);
71 __asm__ __volatile__ ("mtmsr %0"::"r" (msr));
72
wdenkd94f92c2003-08-28 09:41:22 +000073 /* Charge the watchdog timer */
wdenk2d5b5612003-10-14 19:43:55 +000074 *(vu_long *)(MPC5XXX_GPT0_COUNTER) = 0x0001000f;
wdenkd94f92c2003-08-28 09:41:22 +000075 *(vu_long *)(MPC5XXX_GPT0_ENABLE) = 0x9004; /* wden|ce|timer_ms */
wdenk2d5b5612003-10-14 19:43:55 +000076 while(1);
wdenkd94f92c2003-08-28 09:41:22 +000077
wdenk945af8d2003-07-16 21:53:01 +000078 return 1;
79
80}
81
82/* ------------------------------------------------------------------------- */
83
84/*
85 * Get timebase clock frequency (like cpu_clk in Hz)
86 *
87 */
88unsigned long get_tbclk (void)
89{
wdenk945af8d2003-07-16 21:53:01 +000090 ulong tbclk;
91
92 tbclk = (gd->bus_clk + 3L) / 4L;
93
94 return (tbclk);
95}
96
97/* ------------------------------------------------------------------------- */
Stefan Roesee59581c2006-11-28 17:55:49 +010098
Marian Balakowicz75d3e8f2008-02-21 17:20:18 +010099#if defined(CONFIG_OF_LIBFDT) && defined (CONFIG_OF_BOARD_SETUP)
Grant Likelycf2817a2007-09-06 09:46:23 -0600100void ft_cpu_setup(void *blob, bd_t *bd)
101{
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200102 int div = in_8((void*)CONFIG_SYS_MBAR + 0x204) & 0x0020 ? 8 : 4;
Grant Likelycf2817a2007-09-06 09:46:23 -0600103 char * cpu_path = "/cpus/" OF_CPU;
André Schwarzc5123892008-03-13 13:50:52 +0100104#ifdef CONFIG_MPC5xxx_FEC
Grzegorz Bernacki5c4fa9b2009-03-17 10:06:40 +0100105 uchar enetaddr[6];
Grant Likelycf2817a2007-09-06 09:46:23 -0600106 char * eth_path = "/" OF_SOC "/ethernet@3000";
André Schwarzc5123892008-03-13 13:50:52 +0100107#endif
Stefan Roesee59581c2006-11-28 17:55:49 +0100108
Kumar Galae93becf2007-11-03 19:46:28 -0500109 do_fixup_by_path_u32(blob, cpu_path, "timebase-frequency", OF_TBCLK, 1);
110 do_fixup_by_path_u32(blob, cpu_path, "bus-frequency", bd->bi_busfreq, 1);
111 do_fixup_by_path_u32(blob, cpu_path, "clock-frequency", bd->bi_intfreq, 1);
112 do_fixup_by_path_u32(blob, "/" OF_SOC, "bus-frequency", bd->bi_ipbfreq, 1);
113 do_fixup_by_path_u32(blob, "/" OF_SOC, "system-frequency",
114 bd->bi_busfreq*div, 1);
André Schwarzc5123892008-03-13 13:50:52 +0100115#ifdef CONFIG_MPC5xxx_FEC
Mike Frysinger6bacfa62009-02-11 19:18:41 -0500116 eth_getenv_enetaddr("ethaddr", enetaddr);
117 do_fixup_by_path(blob, eth_path, "mac-address", enetaddr, 6, 0);
118 do_fixup_by_path(blob, eth_path, "local-mac-address", enetaddr, 6, 0);
André Schwarzc5123892008-03-13 13:50:52 +0100119#endif
Heiko Schocher3887c3f2009-09-23 07:56:08 +0200120#if defined(CONFIG_OF_IDE_FIXUP)
121 if (!ide_device_present(0)) {
122 /* NO CF card detected -> delete ata node in DTS */
123 int nodeoffset = 0;
124 char nodename[] = "/soc5200@f0000000/ata@3a00";
125
126 nodeoffset = fdt_path_offset(blob, nodename);
127 if (nodeoffset >= 0) {
128 fdt_del_node(blob, nodeoffset);
129 } else {
130 printf("%s: cannot find %s node err:%s\n",
131 __func__, nodename, fdt_strerror(nodeoffset));
132 }
133 }
134
135#endif
Heiko Schocher00b6d922009-12-03 11:20:06 +0100136 fdt_fixup_memory(blob, (u64)bd->bi_memstart, (u64)bd->bi_memsize);
Stefan Roesee59581c2006-11-28 17:55:49 +0100137}
138#endif
Axel Beierleinbef92e22008-08-16 00:30:48 +0200139
Ben Warrene1d74802008-08-31 10:39:12 -0700140#ifdef CONFIG_MPC5xxx_FEC
141/* Default initializations for FEC controllers. To override,
142 * create a board-specific function called:
143 * int board_eth_init(bd_t *bis)
144 */
145
146int cpu_eth_init(bd_t *bis)
147{
148 return mpc5xxx_fec_initialize(bis);
149}
150#endif
Detlev Zundela21fb982010-01-20 14:28:48 +0100151
152#if defined(CONFIG_WATCHDOG)
153void watchdog_reset(void)
154{
155 int re_enable = disable_interrupts();
156 reset_5xxx_watchdog();
157 if (re_enable) enable_interrupts();
158}
159
160void reset_5xxx_watchdog(void)
161{
162 volatile struct mpc5xxx_gpt *gpt0 =
163 (struct mpc5xxx_gpt *) MPC5XXX_GPT;
164
165 /* Trigger TIMER_0 by writing A5 to OCPW */
166 clrsetbits_be32(&gpt0->emsr, 0xff000000, 0xa5000000);
167}
168#endif /* CONFIG_WATCHDOG */