blob: 543b2cc6d8a7bbdfea138e13144463eeb11269e6 [file] [log] [blame]
Jason Liudec11122011-11-25 00:18:02 +00001/*
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
33u32 get_cpu_rev(void)
34{
Fabio Estevam46e97332012-03-20 04:21:45 +000035 struct anatop_regs *anatop = (struct anatop_regs *)ANATOP_BASE_ADDR;
36 int reg = readl(&anatop->digprog);
37
38 /* Read mx6 variant: quad, dual or solo */
39 int system_rev = (reg >> 4) & 0xFF000;
40 /* Read mx6 silicon revision */
41 system_rev |= (reg & 0xFF) + 0x10;
Jason Liudec11122011-11-25 00:18:02 +000042
43 return system_rev;
44}
45
46#ifdef CONFIG_ARCH_CPU_INIT
47void init_aips(void)
48{
Jason Liubb25e072012-01-10 00:52:59 +000049 struct aipstz_regs *aips1, *aips2;
50
51 aips1 = (struct aipstz_regs *)AIPS1_BASE_ADDR;
52 aips2 = (struct aipstz_regs *)AIPS2_BASE_ADDR;
Jason Liudec11122011-11-25 00:18:02 +000053
54 /*
55 * Set all MPROTx to be non-bufferable, trusted for R/W,
56 * not forced to user-mode.
57 */
Jason Liubb25e072012-01-10 00:52:59 +000058 writel(0x77777777, &aips1->mprot0);
59 writel(0x77777777, &aips1->mprot1);
60 writel(0x77777777, &aips2->mprot0);
61 writel(0x77777777, &aips2->mprot1);
Jason Liudec11122011-11-25 00:18:02 +000062
Jason Liubb25e072012-01-10 00:52:59 +000063 /*
64 * Set all OPACRx to be non-bufferable, not require
65 * supervisor privilege level for access,allow for
66 * write access and untrusted master access.
67 */
68 writel(0x00000000, &aips1->opacr0);
69 writel(0x00000000, &aips1->opacr1);
70 writel(0x00000000, &aips1->opacr2);
71 writel(0x00000000, &aips1->opacr3);
72 writel(0x00000000, &aips1->opacr4);
73 writel(0x00000000, &aips2->opacr0);
74 writel(0x00000000, &aips2->opacr1);
75 writel(0x00000000, &aips2->opacr2);
76 writel(0x00000000, &aips2->opacr3);
77 writel(0x00000000, &aips2->opacr4);
Jason Liudec11122011-11-25 00:18:02 +000078}
79
80int arch_cpu_init(void)
81{
82 init_aips();
83
84 return 0;
85}
86#endif
87
Eric Nelsonc94ce4a2012-03-04 11:47:38 +000088#ifndef CONFIG_SYS_DCACHE_OFF
89void enable_caches(void)
90{
91 /* Enable D-cache. I-cache is already enabled in start.S */
92 dcache_enable();
93}
94#endif
95
Jason Liudec11122011-11-25 00:18:02 +000096#if defined(CONFIG_FEC_MXC)
Fabio Estevam04fc1282011-12-20 05:46:31 +000097void imx_get_mac_from_fuse(int dev_id, unsigned char *mac)
Jason Liudec11122011-11-25 00:18:02 +000098{
99 struct iim_regs *iim = (struct iim_regs *)IMX_IIM_BASE;
100 struct fuse_bank *bank = &iim->bank[4];
101 struct fuse_bank4_regs *fuse =
102 (struct fuse_bank4_regs *)bank->fuse_regs;
103
Jason Liubf651aa2011-12-19 02:38:13 +0000104 u32 value = readl(&fuse->mac_addr_high);
105 mac[0] = (value >> 8);
106 mac[1] = value ;
Jason Liudec11122011-11-25 00:18:02 +0000107
Jason Liubf651aa2011-12-19 02:38:13 +0000108 value = readl(&fuse->mac_addr_low);
109 mac[2] = value >> 24 ;
110 mac[3] = value >> 16 ;
111 mac[4] = value >> 8 ;
112 mac[5] = value ;
Jason Liudec11122011-11-25 00:18:02 +0000113
114}
115#endif