]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - arch/arm/imx-common/cpu.c
mx6: soc: update get_cpu_rev and get_imx_type for mx6solo/sololite
[karo-tx-uboot.git] / arch / arm / imx-common / cpu.c
1 /*
2  * (C) Copyright 2007
3  * Sascha Hauer, Pengutronix
4  *
5  * (C) Copyright 2009 Freescale Semiconductor, Inc.
6  *
7  * See file CREDITS for list of people who contributed to this
8  * project.
9  *
10  * This program is free software; you can redistribute it and/or
11  * modify it under the terms of the GNU General Public License as
12  * published by the Free Software Foundation; either version 2 of
13  * the License, or (at your option) any later version.
14  *
15  * This program is distributed in the hope that it will be useful,
16  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18  * GNU General Public License for more details.
19  *
20  * You should have received a copy of the GNU General Public License
21  * along with this program; if not, write to the Free Software
22  * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
23  * MA 02111-1307 USA
24  */
25
26 #include <common.h>
27 #include <asm/errno.h>
28 #include <asm/io.h>
29 #include <asm/arch/imx-regs.h>
30 #include <asm/arch/clock.h>
31 #include <asm/arch/sys_proto.h>
32 #include <asm/arch/crm_regs.h>
33 #include <ipu_pixfmt.h>
34
35 #ifdef CONFIG_FSL_ESDHC
36 #include <fsl_esdhc.h>
37 #endif
38
39 char *get_reset_cause(void)
40 {
41         u32 cause;
42         struct src *src_regs = (struct src *)SRC_BASE_ADDR;
43
44         cause = readl(&src_regs->srsr);
45         writel(cause, &src_regs->srsr);
46
47         switch (cause) {
48         case 0x00001:
49         case 0x00011:
50                 return "POR";
51         case 0x00004:
52                 return "CSU";
53         case 0x00008:
54                 return "IPP USER";
55         case 0x00010:
56                 return "WDOG";
57         case 0x00020:
58                 return "JTAG HIGH-Z";
59         case 0x00040:
60                 return "JTAG SW";
61         case 0x10000:
62                 return "WARM BOOT";
63         default:
64                 return "unknown reset";
65         }
66 }
67
68 #if defined(CONFIG_DISPLAY_CPUINFO)
69
70 const char *get_imx_type(u32 imxtype)
71 {
72         switch (imxtype) {
73         case MXC_CPU_MX6Q:
74                 return "6Q";    /* Quad-core version of the mx6 */
75         case MXC_CPU_MX6DL:
76                 return "6DL";   /* Dual Lite version of the mx6 */
77         case MXC_CPU_MX6SOLO:
78                 return "6SOLO"; /* Solo version of the mx6 */
79         case MXC_CPU_MX6SL:
80                 return "6SL";   /* Solo-Lite version of the mx6 */
81         case MXC_CPU_MX51:
82                 return "51";
83         case MXC_CPU_MX53:
84                 return "53";
85         default:
86                 return "??";
87         }
88 }
89
90 int print_cpuinfo(void)
91 {
92         u32 cpurev;
93
94         cpurev = get_cpu_rev();
95
96         printf("CPU:   Freescale i.MX%s rev%d.%d at %d MHz\n",
97                 get_imx_type((cpurev & 0xFF000) >> 12),
98                 (cpurev & 0x000F0) >> 4,
99                 (cpurev & 0x0000F) >> 0,
100                 mxc_get_clock(MXC_ARM_CLK) / 1000000);
101         printf("Reset cause: %s\n", get_reset_cause());
102         return 0;
103 }
104 #endif
105
106 int cpu_eth_init(bd_t *bis)
107 {
108         int rc = -ENODEV;
109
110 #if defined(CONFIG_FEC_MXC)
111         rc = fecmxc_initialize(bis);
112 #endif
113
114         return rc;
115 }
116
117 #ifdef CONFIG_FSL_ESDHC
118 /*
119  * Initializes on-chip MMC controllers.
120  * to override, implement board_mmc_init()
121  */
122 int cpu_mmc_init(bd_t *bis)
123 {
124         return fsl_esdhc_mmc_init(bis);
125 }
126 #endif
127
128 void reset_cpu(ulong addr)
129 {
130         __raw_writew(4, WDOG1_BASE_ADDR);
131 }
132
133 u32 get_ahb_clk(void)
134 {
135         struct mxc_ccm_reg *imx_ccm = (struct mxc_ccm_reg *)CCM_BASE_ADDR;
136         u32 reg, ahb_podf;
137
138         reg = __raw_readl(&imx_ccm->cbcdr);
139         reg &= MXC_CCM_CBCDR_AHB_PODF_MASK;
140         ahb_podf = reg >> MXC_CCM_CBCDR_AHB_PODF_OFFSET;
141
142         return get_periph_clk() / (ahb_podf + 1);
143 }
144
145 #if defined(CONFIG_VIDEO_IPUV3)
146 void arch_preboot_os(void)
147 {
148         /* disable video before launching O/S */
149         ipuv3_fb_shutdown();
150 }
151 #endif