Merge tag 'u-boot-imx-20190426' of git://git.denx.de/u-boot-imx
[platform/kernel/u-boot.git] / arch / mips / mach-mt7620 / cpu.c
1 // SPDX-License-Identifier: GPL-2.0+
2 /*
3  * Copyright (C) 2018 Stefan Roese <sr@denx.de>
4  */
5
6 #include <common.h>
7 #include <dm.h>
8 #include <ram.h>
9 #include <wdt.h>
10 #include <asm/io.h>
11 #include <linux/io.h>
12 #include <linux/sizes.h>
13 #include "mt76xx.h"
14
15 #define STR_LEN                 6
16
17 #ifdef CONFIG_BOOT_ROM
18 int mach_cpu_init(void)
19 {
20         ddr_calibrate();
21
22         return 0;
23 }
24 #endif
25
26 int dram_init(void)
27 {
28         gd->ram_size = get_ram_size((void *)CONFIG_SYS_SDRAM_BASE, SZ_256M);
29
30         return 0;
31 }
32
33 int print_cpuinfo(void)
34 {
35         static const char * const boot_str[] = { "PLL (3-Byte SPI Addr)",
36                                                  "PLL (4-Byte SPI Addr)",
37                                                  "XTAL (3-Byte SPI Addr)",
38                                                  "XTAL (4-Byte SPI Addr)" };
39         const void *blob = gd->fdt_blob;
40         void __iomem *sysc_base;
41         char buf[STR_LEN + 1];
42         fdt_addr_t base;
43         fdt_size_t size;
44         char *str;
45         int node;
46         u32 val;
47
48         /* Get system controller base address */
49         node = fdt_node_offset_by_compatible(blob, -1, "ralink,mt7620a-sysc");
50         if (node < 0)
51                 return -FDT_ERR_NOTFOUND;
52
53         base = fdtdec_get_addr_size_auto_noparent(blob, node, "reg",
54                                                   0, &size, true);
55         if (base == FDT_ADDR_T_NONE)
56                 return -EINVAL;
57
58         sysc_base = ioremap_nocache(base, size);
59
60         str = (char *)sysc_base + MT76XX_CHIPID_OFFS;
61         snprintf(buf, STR_LEN + 1, "%s", str);
62         val = readl(sysc_base + MT76XX_CHIP_REV_ID_OFFS);
63         printf("CPU:   %-*s Rev %ld.%ld - ", STR_LEN, buf,
64                (val & GENMASK(11, 8)) >> 8, val & GENMASK(3, 0));
65
66         val = (readl(sysc_base + MT76XX_SYSCFG0_OFFS) & GENMASK(3, 1)) >> 1;
67         printf("Boot from %s\n", boot_str[val]);
68
69         return 0;
70 }
71
72 int arch_misc_init(void)
73 {
74         /*
75          * It has been noticed, that sometimes the d-cache is not in a
76          * "clean-state" when U-Boot is running on MT7688. This was
77          * detected when using the ethernet driver (which uses d-cache)
78          * and a TFTP command does not complete. Flushing the complete
79          * d-cache (again?) here seems to fix this issue.
80          */
81         flush_dcache_range(gd->bd->bi_memstart,
82                            gd->bd->bi_memstart + gd->ram_size - 1);
83
84         return 0;
85 }