odroid: remove CONFIG_DM_I2C_COMPAT config
[platform/kernel/u-boot.git] / arch / powerpc / cpu / mpc512x / cpu.c
1 /*
2  * (C) Copyright 2007-2010 DENX Software Engineering
3  * Copyright (C) 2004-2006 Freescale Semiconductor, Inc.
4  *
5  * SPDX-License-Identifier:     GPL-2.0+
6  */
7
8 /*
9  * CPU specific code for the MPC512x family.
10  *
11  * Derived from the MPC83xx code.
12  */
13
14 #include <common.h>
15 #include <command.h>
16 #include <net.h>
17 #include <netdev.h>
18 #include <asm/processor.h>
19 #include <asm/io.h>
20
21 #if defined(CONFIG_OF_LIBFDT)
22 #include <fdt_support.h>
23 #endif
24
25 DECLARE_GLOBAL_DATA_PTR;
26
27 int checkcpu (void)
28 {
29         volatile immap_t *immr = (immap_t *) CONFIG_SYS_IMMR;
30         ulong clock = gd->cpu_clk;
31         u32 pvr = get_pvr ();
32         u32 spridr = in_be32(&immr->sysconf.spridr);
33         char buf1[32], buf2[32];
34
35         puts ("CPU:   ");
36
37         switch (spridr & 0xffff0000) {
38         case SPR_5121E:
39                 puts ("MPC5121e ");
40                 break;
41         default:
42                 printf ("Unknown part ID %08x ", spridr & 0xffff0000);
43         }
44         printf ("rev. %d.%d, Core ", SVR_MJREV (spridr), SVR_MNREV (spridr));
45
46         switch (pvr & 0xffff0000) {
47         case PVR_E300C4:
48                 puts ("e300c4 ");
49                 break;
50         default:
51                 puts ("unknown ");
52         }
53         printf ("at %s MHz, CSB at %s MHz (RSR=0x%04lx)\n",
54                 strmhz(buf1, clock),
55                 strmhz(buf2, gd->arch.csb_clk),
56                 gd->arch.reset_status & 0xffff);
57         return 0;
58 }
59
60
61 int
62 do_reset (cmd_tbl_t * cmdtp, int flag, int argc, char * const argv[])
63 {
64         ulong msr;
65         volatile immap_t *immap = (immap_t *) CONFIG_SYS_IMMR;
66
67         /* Interrupts and MMU off */
68         __asm__ __volatile__ ("mfmsr    %0":"=r" (msr):);
69
70         msr &= ~( MSR_EE | MSR_IR | MSR_DR);
71         __asm__ __volatile__ ("mtmsr    %0"::"r" (msr));
72
73         /*
74          * Enable Reset Control Reg - "RSTE" is the magic word that let us go
75          */
76         out_be32(&immap->reset.rpr, 0x52535445);
77
78         /* Verify Reset Control Reg is enabled */
79         while (!(in_be32(&immap->reset.rcer) & RCER_CRE))
80                 ;
81
82         printf ("Resetting the board.\n");
83         udelay(200);
84
85         /* Perform reset */
86         out_be32(&immap->reset.rcr, RCR_SWHR);
87
88         /* Unreached... */
89         return 1;
90 }
91
92
93 /*
94  * Get timebase clock frequency (like cpu_clk in Hz)
95  */
96 unsigned long get_tbclk (void)
97 {
98         return (gd->bus_clk + 3L) / 4L;
99 }
100
101
102 #if defined(CONFIG_WATCHDOG)
103 void watchdog_reset (void)
104 {
105         int re_enable = disable_interrupts ();
106
107         /* Reset watchdog */
108         volatile immap_t *immr = (immap_t *) CONFIG_SYS_IMMR;
109         out_be32(&immr->wdt.swsrr, 0x556c);
110         out_be32(&immr->wdt.swsrr, 0xaa39);
111
112         if (re_enable)
113                 enable_interrupts ();
114 }
115 #endif
116
117 #ifdef CONFIG_OF_LIBFDT
118
119 #ifdef CONFIG_OF_SUPPORT_OLD_DEVICE_TREES
120 /*
121  * fdt setup for old device trees
122  * fix up
123  *      cpu clocks
124  *      soc clocks
125  *      ethernet addresses
126  */
127 static void old_ft_cpu_setup(void *blob, bd_t *bd)
128 {
129         /*
130          * avoid fixing up by path because that
131          * produces scary error messages
132          */
133         uchar enetaddr[6];
134
135         /*
136          * old device trees have ethernet nodes with
137          * device_type = "network"
138          */
139         eth_getenv_enetaddr("ethaddr", enetaddr);
140         do_fixup_by_prop(blob, "device_type", "network", 8,
141                 "local-mac-address", enetaddr, 6, 0);
142         do_fixup_by_prop(blob, "device_type", "network", 8,
143                 "address", enetaddr, 6, 0);
144         /*
145          * old device trees have soc nodes with
146          * device_type = "soc"
147          */
148         do_fixup_by_prop_u32(blob, "device_type", "soc", 4,
149                 "bus-frequency", bd->bi_ipsfreq, 0);
150 }
151 #endif
152
153 static void ft_clock_setup(void *blob, bd_t *bd)
154 {
155         char *cpu_path = "/cpus/" OF_CPU;
156
157         /*
158          * fixup cpu clocks using path
159          */
160         do_fixup_by_path_u32(blob, cpu_path,
161                 "timebase-frequency", OF_TBCLK, 1);
162         do_fixup_by_path_u32(blob, cpu_path,
163                 "bus-frequency", bd->bi_busfreq, 1);
164         do_fixup_by_path_u32(blob, cpu_path,
165                 "clock-frequency", bd->bi_intfreq, 1);
166         /*
167          * fixup soc clocks using compatible
168          */
169         do_fixup_by_compat_u32(blob, OF_SOC_COMPAT,
170                 "bus-frequency", bd->bi_ipsfreq, 1);
171 }
172
173 void ft_cpu_setup(void *blob, bd_t *bd)
174 {
175 #ifdef CONFIG_OF_SUPPORT_OLD_DEVICE_TREES
176         old_ft_cpu_setup(blob, bd);
177 #endif
178         ft_clock_setup(blob, bd);
179         fdt_fixup_memory(blob, (u64)bd->bi_memstart, (u64)bd->bi_memsize);
180 }
181 #endif
182
183 #ifdef CONFIG_MPC512x_FEC
184 /* Default initializations for FEC controllers.  To override,
185  * create a board-specific function called:
186  *      int board_eth_init(bd_t *bis)
187  */
188
189 int cpu_eth_init(bd_t *bis)
190 {
191         return mpc512x_fec_initialize(bis);
192 }
193 #endif