blob: 0b137eeffb61628a851f075c7c1fb2e4789ef4f0 [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001// SPDX-License-Identifier: GPL-2.0
Thierry Reding1ddd35b2013-09-30 14:04:51 +02002#include <linux/err.h>
Sascha Hauer198016e2009-02-06 15:38:22 +01003#include <linux/module.h>
Fabio Estevambb07d752012-02-29 10:28:08 -03004#include <linux/io.h>
Shawn Guoa2887542013-08-13 16:59:28 +08005#include <linux/of.h>
Steffen Trumtrare57e4ab2014-07-07 11:41:26 +02006#include <linux/of_address.h>
Shawn Guoa2887542013-08-13 16:59:28 +08007#include <linux/slab.h>
8#include <linux/sys_soc.h>
Shawn Guo50f2de62012-09-14 14:14:45 +08009
10#include "hardware.h"
Fabio Estevame7feaaa2013-03-25 09:20:28 -030011#include "common.h"
Sascha Hauer198016e2009-02-06 15:38:22 +010012
13unsigned int __mxc_cpu_type;
Shawn Guobfefdff2013-08-13 13:54:02 +080014static unsigned int imx_soc_revision;
15
Sascha Hauer198016e2009-02-06 15:38:22 +010016void mxc_set_cpu_type(unsigned int type)
17{
18 __mxc_cpu_type = type;
19}
20
Shawn Guobfefdff2013-08-13 13:54:02 +080021void imx_set_soc_revision(unsigned int rev)
22{
23 imx_soc_revision = rev;
24}
25
26unsigned int imx_get_soc_revision(void)
27{
28 return imx_soc_revision;
29}
30
Fabio Estevam059e58f2011-08-26 13:35:18 +080031void imx_print_silicon_rev(const char *cpu, int srev)
32{
33 if (srev == IMX_CHIP_REVISION_UNKNOWN)
34 pr_info("CPU identified as %s, unknown revision\n", cpu);
35 else
36 pr_info("CPU identified as %s, silicon rev %d.%d\n",
37 cpu, (srev >> 4) & 0xf, srev & 0xf);
38}
Fabio Estevambb07d752012-02-29 10:28:08 -030039
40void __init imx_set_aips(void __iomem *base)
41{
42 unsigned int reg;
43/*
44 * Set all MPROTx to be non-bufferable, trusted for R/W,
45 * not forced to user-mode.
46 */
Johannes Bergc5531382016-01-27 17:59:35 +010047 imx_writel(0x77777777, base + 0x0);
48 imx_writel(0x77777777, base + 0x4);
Fabio Estevambb07d752012-02-29 10:28:08 -030049
50/*
51 * Set all OPACRx to be non-bufferable, to not require
52 * supervisor privilege level for access, allow for
53 * write access and untrusted master access.
54 */
Johannes Bergc5531382016-01-27 17:59:35 +010055 imx_writel(0x0, base + 0x40);
56 imx_writel(0x0, base + 0x44);
57 imx_writel(0x0, base + 0x48);
58 imx_writel(0x0, base + 0x4C);
59 reg = imx_readl(base + 0x50) & 0x00FFFFFF;
60 imx_writel(reg, base + 0x50);
Fabio Estevambb07d752012-02-29 10:28:08 -030061}
Shawn Guoa2887542013-08-13 16:59:28 +080062
Steffen Trumtrare57e4ab2014-07-07 11:41:26 +020063void __init imx_aips_allow_unprivileged_access(
64 const char *compat)
65{
66 void __iomem *aips_base_addr;
67 struct device_node *np;
68
69 for_each_compatible_node(np, NULL, compat) {
70 aips_base_addr = of_iomap(np, 0);
Nicholas Mc Guirecff70652018-07-08 10:32:54 +020071 WARN_ON(!aips_base_addr);
Steffen Trumtrare57e4ab2014-07-07 11:41:26 +020072 imx_set_aips(aips_base_addr);
73 }
74}
75
Shawn Guoa2887542013-08-13 16:59:28 +080076struct device * __init imx_soc_device_init(void)
77{
78 struct soc_device_attribute *soc_dev_attr;
79 struct soc_device *soc_dev;
80 struct device_node *root;
81 const char *soc_id;
82 int ret;
83
84 soc_dev_attr = kzalloc(sizeof(*soc_dev_attr), GFP_KERNEL);
85 if (!soc_dev_attr)
86 return NULL;
87
88 soc_dev_attr->family = "Freescale i.MX";
89
90 root = of_find_node_by_path("/");
91 ret = of_property_read_string(root, "model", &soc_dev_attr->machine);
92 of_node_put(root);
93 if (ret)
94 goto free_soc;
95
96 switch (__mxc_cpu_type) {
97 case MXC_CPU_MX1:
98 soc_id = "i.MX1";
99 break;
100 case MXC_CPU_MX21:
101 soc_id = "i.MX21";
102 break;
103 case MXC_CPU_MX25:
104 soc_id = "i.MX25";
105 break;
106 case MXC_CPU_MX27:
107 soc_id = "i.MX27";
108 break;
109 case MXC_CPU_MX31:
110 soc_id = "i.MX31";
111 break;
112 case MXC_CPU_MX35:
113 soc_id = "i.MX35";
114 break;
115 case MXC_CPU_MX51:
116 soc_id = "i.MX51";
117 break;
118 case MXC_CPU_MX53:
119 soc_id = "i.MX53";
120 break;
121 case MXC_CPU_IMX6SL:
122 soc_id = "i.MX6SL";
123 break;
124 case MXC_CPU_IMX6DL:
125 soc_id = "i.MX6DL";
126 break;
Shawn Guod9654dc2014-05-13 21:46:16 +0800127 case MXC_CPU_IMX6SX:
128 soc_id = "i.MX6SX";
129 break;
Shawn Guoa2887542013-08-13 16:59:28 +0800130 case MXC_CPU_IMX6Q:
131 soc_id = "i.MX6Q";
132 break;
Frank Li022d0712015-07-10 02:09:41 +0800133 case MXC_CPU_IMX6UL:
134 soc_id = "i.MX6UL";
135 break;
Leonard Crestezb3ea5752017-06-06 20:50:42 +0300136 case MXC_CPU_IMX6ULL:
137 soc_id = "i.MX6ULL";
138 break;
Anson Huangc90dec02018-09-30 11:32:26 +0800139 case MXC_CPU_IMX6ULZ:
140 soc_id = "i.MX6ULZ";
141 break;
Bai Pingdee5dee2018-03-08 17:34:55 +0800142 case MXC_CPU_IMX6SLL:
143 soc_id = "i.MX6SLL";
144 break;
Anson Huang5739b912015-05-08 01:35:55 +0800145 case MXC_CPU_IMX7D:
146 soc_id = "i.MX7D";
147 break;
A.s. Dongde70d0e2018-11-10 15:13:04 +0000148 case MXC_CPU_IMX7ULP:
149 soc_id = "i.MX7ULP";
150 break;
Shawn Guoa2887542013-08-13 16:59:28 +0800151 default:
152 soc_id = "Unknown";
153 }
154 soc_dev_attr->soc_id = soc_id;
155
156 soc_dev_attr->revision = kasprintf(GFP_KERNEL, "%d.%d",
157 (imx_soc_revision >> 4) & 0xf,
158 imx_soc_revision & 0xf);
159 if (!soc_dev_attr->revision)
160 goto free_soc;
161
162 soc_dev = soc_device_register(soc_dev_attr);
163 if (IS_ERR(soc_dev))
164 goto free_rev;
165
166 return soc_device_to_device(soc_dev);
167
168free_rev:
169 kfree(soc_dev_attr->revision);
170free_soc:
171 kfree(soc_dev_attr);
172 return NULL;
173}