1 // SPDX-License-Identifier: GPL-2.0-or-later
2 /*
3 * Copyright 2012 Freescale Semiconductor, Inc.
4 * Copyright 2012 Linaro Ltd.
5 */
6
7 #include <linux/clk.h>
8 #include <linux/clk/mxs.h>
9 #include <linux/clkdev.h>
10 #include <linux/delay.h>
11 #include <linux/err.h>
12 #include <linux/gpio.h>
13 #include <linux/init.h>
14 #include <linux/reboot.h>
15 #include <linux/micrel_phy.h>
16 #include <linux/of_address.h>
17 #include <linux/of_platform.h>
18 #include <linux/phy.h>
19 #include <linux/sys_soc.h>
20 #include <asm/mach/arch.h>
21 #include <asm/mach/map.h>
22 #include <asm/mach/time.h>
23 #include <asm/system_info.h>
24 #include <asm/system_misc.h>
25
26 #include "pm.h"
27
28 /* MXS DIGCTL SAIF CLKMUX */
29 #define MXS_DIGCTL_SAIF_CLKMUX_DIRECT 0x0
30 #define MXS_DIGCTL_SAIF_CLKMUX_CROSSINPUT 0x1
31 #define MXS_DIGCTL_SAIF_CLKMUX_EXTMSTR0 0x2
32 #define MXS_DIGCTL_SAIF_CLKMUX_EXTMSTR1 0x3
33
34 #define HW_DIGCTL_CHIPID 0x310
35 #define HW_DIGCTL_CHIPID_MASK (0xffff << 16)
36 #define HW_DIGCTL_REV_MASK 0xff
37 #define HW_DIGCTL_CHIPID_MX23 (0x3780 << 16)
38 #define HW_DIGCTL_CHIPID_MX28 (0x2800 << 16)
39
40 #define MXS_CHIP_REVISION_1_0 0x10
41 #define MXS_CHIP_REVISION_1_1 0x11
42 #define MXS_CHIP_REVISION_1_2 0x12
43 #define MXS_CHIP_REVISION_1_3 0x13
44 #define MXS_CHIP_REVISION_1_4 0x14
45 #define MXS_CHIP_REV_UNKNOWN 0xff
46
47 #define MXS_GPIO_NR(bank, nr) ((bank) * 32 + (nr))
48
49 #define MXS_SET_ADDR 0x4
50 #define MXS_CLR_ADDR 0x8
51 #define MXS_TOG_ADDR 0xc
52
53 #define HW_OCOTP_OPS2 19 /* offset 0x150 */
54 #define HW_OCOTP_OPS3 20 /* offset 0x160 */
55
56 static u32 chipid;
57 static u32 socid;
58
59 static void __iomem *reset_addr;
60
__mxs_setl(u32 mask,void __iomem * reg)61 static inline void __mxs_setl(u32 mask, void __iomem *reg)
62 {
63 __raw_writel(mask, reg + MXS_SET_ADDR);
64 }
65
__mxs_clrl(u32 mask,void __iomem * reg)66 static inline void __mxs_clrl(u32 mask, void __iomem *reg)
67 {
68 __raw_writel(mask, reg + MXS_CLR_ADDR);
69 }
70
__mxs_togl(u32 mask,void __iomem * reg)71 static inline void __mxs_togl(u32 mask, void __iomem *reg)
72 {
73 __raw_writel(mask, reg + MXS_TOG_ADDR);
74 }
75
76 #define OCOTP_WORD_OFFSET 0x20
77 #define OCOTP_WORD_COUNT 0x20
78
79 #define BM_OCOTP_CTRL_BUSY (1 << 8)
80 #define BM_OCOTP_CTRL_ERROR (1 << 9)
81 #define BM_OCOTP_CTRL_RD_BANK_OPEN (1 << 12)
82
83 static DEFINE_MUTEX(ocotp_mutex);
84 static u32 ocotp_words[OCOTP_WORD_COUNT];
85
mxs_get_ocotp(void)86 static const u32 *mxs_get_ocotp(void)
87 {
88 struct device_node *np;
89 void __iomem *ocotp_base;
90 int timeout = 0x400;
91 size_t i;
92 static int once;
93
94 if (once)
95 return ocotp_words;
96
97 np = of_find_compatible_node(NULL, NULL, "fsl,ocotp");
98 ocotp_base = of_iomap(np, 0);
99 WARN_ON(!ocotp_base);
100
101 mutex_lock(&ocotp_mutex);
102
103 /*
104 * clk_enable(hbus_clk) for ocotp can be skipped
105 * as it must be on when system is running.
106 */
107
108 /* try to clear ERROR bit */
109 __mxs_clrl(BM_OCOTP_CTRL_ERROR, ocotp_base);
110
111 /* check both BUSY and ERROR cleared */
112 while ((__raw_readl(ocotp_base) &
113 (BM_OCOTP_CTRL_BUSY | BM_OCOTP_CTRL_ERROR)) && --timeout)
114 cpu_relax();
115
116 if (unlikely(!timeout))
117 goto error_unlock;
118
119 /* open OCOTP banks for read */
120 __mxs_setl(BM_OCOTP_CTRL_RD_BANK_OPEN, ocotp_base);
121
122 /* approximately wait 32 hclk cycles */
123 udelay(1);
124
125 /* poll BUSY bit becoming cleared */
126 timeout = 0x400;
127 while ((__raw_readl(ocotp_base) & BM_OCOTP_CTRL_BUSY) && --timeout)
128 cpu_relax();
129
130 if (unlikely(!timeout))
131 goto error_unlock;
132
133 for (i = 0; i < OCOTP_WORD_COUNT; i++)
134 ocotp_words[i] = __raw_readl(ocotp_base + OCOTP_WORD_OFFSET +
135 i * 0x10);
136
137 /* close banks for power saving */
138 __mxs_clrl(BM_OCOTP_CTRL_RD_BANK_OPEN, ocotp_base);
139
140 once = 1;
141
142 mutex_unlock(&ocotp_mutex);
143
144 return ocotp_words;
145
146 error_unlock:
147 mutex_unlock(&ocotp_mutex);
148 pr_err("%s: timeout in reading OCOTP\n", __func__);
149 return NULL;
150 }
151
152 enum mac_oui {
153 OUI_FSL,
154 OUI_DENX,
155 OUI_CRYSTALFONTZ,
156 OUI_I2SE,
157 OUI_ARMADEUS,
158 };
159
update_fec_mac_prop(enum mac_oui oui)160 static void __init update_fec_mac_prop(enum mac_oui oui)
161 {
162 struct device_node *np, *from = NULL;
163 struct property *newmac;
164 const u32 *ocotp = mxs_get_ocotp();
165 u8 *macaddr;
166 u32 val;
167 int i;
168
169 for (i = 0; i < 2; i++) {
170 np = of_find_compatible_node(from, NULL, "fsl,imx28-fec");
171 if (!np)
172 return;
173
174 from = np;
175
176 if (of_property_present(np, "local-mac-address"))
177 continue;
178
179 newmac = kzalloc(sizeof(*newmac) + 6, GFP_KERNEL);
180 if (!newmac)
181 return;
182 newmac->value = newmac + 1;
183 newmac->length = 6;
184
185 newmac->name = kstrdup("local-mac-address", GFP_KERNEL);
186 if (!newmac->name) {
187 kfree(newmac);
188 return;
189 }
190
191 /*
192 * OCOTP only stores the last 4 octets for each mac address,
193 * so hard-code OUI here.
194 */
195 macaddr = newmac->value;
196 switch (oui) {
197 case OUI_FSL:
198 macaddr[0] = 0x00;
199 macaddr[1] = 0x04;
200 macaddr[2] = 0x9f;
201 break;
202 case OUI_DENX:
203 macaddr[0] = 0xc0;
204 macaddr[1] = 0xe5;
205 macaddr[2] = 0x4e;
206 break;
207 case OUI_CRYSTALFONTZ:
208 macaddr[0] = 0x58;
209 macaddr[1] = 0xb9;
210 macaddr[2] = 0xe1;
211 break;
212 case OUI_I2SE:
213 macaddr[0] = 0x00;
214 macaddr[1] = 0x01;
215 macaddr[2] = 0x87;
216 break;
217 case OUI_ARMADEUS:
218 macaddr[0] = 0x00;
219 macaddr[1] = 0x1e;
220 macaddr[2] = 0xac;
221 break;
222 }
223 val = ocotp[i];
224 macaddr[3] = (val >> 16) & 0xff;
225 macaddr[4] = (val >> 8) & 0xff;
226 macaddr[5] = (val >> 0) & 0xff;
227
228 of_update_property(np, newmac);
229 }
230 }
231
enable_clk_enet_out(void)232 static inline void enable_clk_enet_out(void)
233 {
234 struct clk *clk = clk_get_sys("enet_out", NULL);
235
236 if (!IS_ERR(clk))
237 clk_prepare_enable(clk);
238 }
239
imx28_evk_init(void)240 static void __init imx28_evk_init(void)
241 {
242 update_fec_mac_prop(OUI_FSL);
243
244 mxs_saif_clkmux_select(MXS_DIGCTL_SAIF_CLKMUX_EXTMSTR0);
245 }
246
imx28_apf28_init(void)247 static void __init imx28_apf28_init(void)
248 {
249 update_fec_mac_prop(OUI_ARMADEUS);
250 }
251
apx4devkit_phy_fixup(struct phy_device * phy)252 static int apx4devkit_phy_fixup(struct phy_device *phy)
253 {
254 phy->dev_flags |= MICREL_PHY_50MHZ_CLK;
255 return 0;
256 }
257
apx4devkit_init(void)258 static void __init apx4devkit_init(void)
259 {
260 enable_clk_enet_out();
261
262 if (IS_BUILTIN(CONFIG_PHYLIB))
263 phy_register_fixup_for_uid(PHY_ID_KSZ8051, MICREL_PHY_ID_MASK,
264 apx4devkit_phy_fixup);
265 }
266
crystalfontz_init(void)267 static void __init crystalfontz_init(void)
268 {
269 update_fec_mac_prop(OUI_CRYSTALFONTZ);
270 }
271
duckbill_init(void)272 static void __init duckbill_init(void)
273 {
274 update_fec_mac_prop(OUI_I2SE);
275 }
276
m28cu3_init(void)277 static void __init m28cu3_init(void)
278 {
279 update_fec_mac_prop(OUI_DENX);
280 }
281
mxs_get_soc_id(void)282 static const char __init *mxs_get_soc_id(void)
283 {
284 struct device_node *np;
285 void __iomem *digctl_base;
286
287 np = of_find_compatible_node(NULL, NULL, "fsl,imx23-digctl");
288 digctl_base = of_iomap(np, 0);
289 WARN_ON(!digctl_base);
290
291 chipid = readl(digctl_base + HW_DIGCTL_CHIPID);
292 socid = chipid & HW_DIGCTL_CHIPID_MASK;
293
294 iounmap(digctl_base);
295 of_node_put(np);
296
297 switch (socid) {
298 case HW_DIGCTL_CHIPID_MX23:
299 return "i.MX23";
300 case HW_DIGCTL_CHIPID_MX28:
301 return "i.MX28";
302 default:
303 return "Unknown";
304 }
305 }
306
mxs_get_cpu_rev(void)307 static u32 __init mxs_get_cpu_rev(void)
308 {
309 u32 rev = chipid & HW_DIGCTL_REV_MASK;
310
311 switch (socid) {
312 case HW_DIGCTL_CHIPID_MX23:
313 switch (rev) {
314 case 0x0:
315 return MXS_CHIP_REVISION_1_0;
316 case 0x1:
317 return MXS_CHIP_REVISION_1_1;
318 case 0x2:
319 return MXS_CHIP_REVISION_1_2;
320 case 0x3:
321 return MXS_CHIP_REVISION_1_3;
322 case 0x4:
323 return MXS_CHIP_REVISION_1_4;
324 default:
325 return MXS_CHIP_REV_UNKNOWN;
326 }
327 case HW_DIGCTL_CHIPID_MX28:
328 switch (rev) {
329 case 0x0:
330 return MXS_CHIP_REVISION_1_1;
331 case 0x1:
332 return MXS_CHIP_REVISION_1_2;
333 default:
334 return MXS_CHIP_REV_UNKNOWN;
335 }
336 default:
337 return MXS_CHIP_REV_UNKNOWN;
338 }
339 }
340
mxs_get_revision(void)341 static const char __init *mxs_get_revision(void)
342 {
343 u32 rev = mxs_get_cpu_rev();
344
345 if (rev != MXS_CHIP_REV_UNKNOWN)
346 return kasprintf(GFP_KERNEL, "%d.%d", (rev >> 4) & 0xf,
347 rev & 0xf);
348 else
349 return kasprintf(GFP_KERNEL, "%s", "Unknown");
350 }
351
352 #define MX23_CLKCTRL_RESET_OFFSET 0x120
353 #define MX28_CLKCTRL_RESET_OFFSET 0x1e0
354
mxs_restart_init(void)355 static int __init mxs_restart_init(void)
356 {
357 struct device_node *np;
358
359 np = of_find_compatible_node(NULL, NULL, "fsl,clkctrl");
360 reset_addr = of_iomap(np, 0);
361 if (!reset_addr)
362 return -ENODEV;
363
364 if (of_device_is_compatible(np, "fsl,imx23-clkctrl"))
365 reset_addr += MX23_CLKCTRL_RESET_OFFSET;
366 else
367 reset_addr += MX28_CLKCTRL_RESET_OFFSET;
368 of_node_put(np);
369
370 return 0;
371 }
372
eukrea_mbmx283lc_init(void)373 static void __init eukrea_mbmx283lc_init(void)
374 {
375 mxs_saif_clkmux_select(MXS_DIGCTL_SAIF_CLKMUX_EXTMSTR0);
376 }
377
mxs_machine_init(void)378 static void __init mxs_machine_init(void)
379 {
380 struct device_node *root;
381 struct device *parent;
382 struct soc_device *soc_dev;
383 struct soc_device_attribute *soc_dev_attr;
384 u64 soc_uid = 0;
385 const u32 *ocotp = mxs_get_ocotp();
386 int ret;
387
388 soc_dev_attr = kzalloc(sizeof(*soc_dev_attr), GFP_KERNEL);
389 if (!soc_dev_attr)
390 return;
391
392 root = of_find_node_by_path("/");
393 ret = of_property_read_string(root, "model", &soc_dev_attr->machine);
394 if (ret) {
395 kfree(soc_dev_attr);
396 return;
397 }
398
399 soc_dev_attr->family = "Freescale MXS Family";
400 soc_dev_attr->soc_id = mxs_get_soc_id();
401 soc_dev_attr->revision = mxs_get_revision();
402
403 if (socid == HW_DIGCTL_CHIPID_MX23) {
404 soc_uid = system_serial_low = ocotp[HW_OCOTP_OPS3];
405 } else if (socid == HW_DIGCTL_CHIPID_MX28) {
406 soc_uid = system_serial_high = ocotp[HW_OCOTP_OPS2];
407 soc_uid <<= 32;
408 system_serial_low = ocotp[HW_OCOTP_OPS3];
409 soc_uid |= system_serial_low;
410 }
411
412 if (soc_uid)
413 soc_dev_attr->serial_number = kasprintf(GFP_KERNEL, "%016llX", soc_uid);
414
415 soc_dev = soc_device_register(soc_dev_attr);
416 if (IS_ERR(soc_dev)) {
417 kfree(soc_dev_attr->serial_number);
418 kfree(soc_dev_attr->revision);
419 kfree(soc_dev_attr);
420 return;
421 }
422
423 parent = soc_device_to_device(soc_dev);
424
425 if (of_machine_is_compatible("fsl,imx28-evk"))
426 imx28_evk_init();
427 if (of_machine_is_compatible("armadeus,imx28-apf28"))
428 imx28_apf28_init();
429 else if (of_machine_is_compatible("bluegiga,apx4devkit"))
430 apx4devkit_init();
431 else if (of_machine_is_compatible("crystalfontz,cfa10036"))
432 crystalfontz_init();
433 else if (of_machine_is_compatible("eukrea,mbmx283lc"))
434 eukrea_mbmx283lc_init();
435 else if (of_machine_is_compatible("i2se,duckbill") ||
436 of_machine_is_compatible("i2se,duckbill-2"))
437 duckbill_init();
438 else if (of_machine_is_compatible("msr,m28cu3"))
439 m28cu3_init();
440
441 of_platform_default_populate(NULL, NULL, parent);
442
443 mxs_restart_init();
444 }
445
446 #define MXS_CLKCTRL_RESET_CHIP (1 << 1)
447
448 /*
449 * Reset the system. It is called by machine_restart().
450 */
mxs_restart(enum reboot_mode mode,const char * cmd)451 static void mxs_restart(enum reboot_mode mode, const char *cmd)
452 {
453 if (reset_addr) {
454 /* reset the chip */
455 __mxs_setl(MXS_CLKCTRL_RESET_CHIP, reset_addr);
456
457 pr_err("Failed to assert the chip reset\n");
458
459 /* Delay to allow the serial port to show the message */
460 mdelay(50);
461 }
462
463 /* We'll take a jump through zero as a poor second */
464 soft_restart(0);
465 }
466
467 static const char *const mxs_dt_compat[] __initconst = {
468 "fsl,imx28",
469 "fsl,imx23",
470 NULL,
471 };
472
473 DT_MACHINE_START(MXS, "Freescale MXS (Device Tree)")
474 .init_machine = mxs_machine_init,
475 .init_late = mxs_pm_init,
476 .dt_compat = mxs_dt_compat,
477 .restart = mxs_restart,
478 MACHINE_END
479