blob: e70e3acbf9bd04516257010c86958e99da766e04 [file] [log] [blame]
Sascha Hauer198016e2009-02-06 15:38:22 +01001
2#include <linux/module.h>
Fabio Estevambb07d752012-02-29 10:28:08 -03003#include <linux/io.h>
Shawn Guo50f2de62012-09-14 14:14:45 +08004
5#include "hardware.h"
Fabio Estevame7feaaa2013-03-25 09:20:28 -03006#include "common.h"
Sascha Hauer198016e2009-02-06 15:38:22 +01007
8unsigned int __mxc_cpu_type;
9EXPORT_SYMBOL(__mxc_cpu_type);
10
11void mxc_set_cpu_type(unsigned int type)
12{
13 __mxc_cpu_type = type;
14}
15
Fabio Estevam059e58f2011-08-26 13:35:18 +080016void imx_print_silicon_rev(const char *cpu, int srev)
17{
18 if (srev == IMX_CHIP_REVISION_UNKNOWN)
19 pr_info("CPU identified as %s, unknown revision\n", cpu);
20 else
21 pr_info("CPU identified as %s, silicon rev %d.%d\n",
22 cpu, (srev >> 4) & 0xf, srev & 0xf);
23}
Fabio Estevambb07d752012-02-29 10:28:08 -030024
25void __init imx_set_aips(void __iomem *base)
26{
27 unsigned int reg;
28/*
29 * Set all MPROTx to be non-bufferable, trusted for R/W,
30 * not forced to user-mode.
31 */
32 __raw_writel(0x77777777, base + 0x0);
33 __raw_writel(0x77777777, base + 0x4);
34
35/*
36 * Set all OPACRx to be non-bufferable, to not require
37 * supervisor privilege level for access, allow for
38 * write access and untrusted master access.
39 */
40 __raw_writel(0x0, base + 0x40);
41 __raw_writel(0x0, base + 0x44);
42 __raw_writel(0x0, base + 0x48);
43 __raw_writel(0x0, base + 0x4C);
44 reg = __raw_readl(base + 0x50) & 0x00FFFFFF;
45 __raw_writel(reg, base + 0x50);
46}