]> asedeno.scripts.mit.edu Git - linux.git/blob - arch/mips/ralink/mt7621.c
MIPS: ralink: fix cpu clock of mt7621 and add dt clk devices
[linux.git] / arch / mips / ralink / mt7621.c
1 /*
2  * This program is free software; you can redistribute it and/or modify it
3  * under the terms of the GNU General Public License version 2 as published
4  * by the Free Software Foundation.
5  *
6  * Copyright (C) 2015 Nikolay Martynov <mar.kolya@gmail.com>
7  * Copyright (C) 2015 John Crispin <john@phrozen.org>
8  */
9
10 #include <linux/kernel.h>
11 #include <linux/init.h>
12 #include <linux/clk.h>
13 #include <linux/clkdev.h>
14 #include <linux/clk-provider.h>
15 #include <dt-bindings/clock/mt7621-clk.h>
16
17 #include <asm/mipsregs.h>
18 #include <asm/smp-ops.h>
19 #include <asm/mips-cps.h>
20 #include <asm/mach-ralink/ralink_regs.h>
21 #include <asm/mach-ralink/mt7621.h>
22 #include <asm/time.h>
23
24 #include <pinmux.h>
25
26 #include "common.h"
27
28 #define MT7621_GPIO_MODE_UART1          1
29 #define MT7621_GPIO_MODE_I2C            2
30 #define MT7621_GPIO_MODE_UART3_MASK     0x3
31 #define MT7621_GPIO_MODE_UART3_SHIFT    3
32 #define MT7621_GPIO_MODE_UART3_GPIO     1
33 #define MT7621_GPIO_MODE_UART2_MASK     0x3
34 #define MT7621_GPIO_MODE_UART2_SHIFT    5
35 #define MT7621_GPIO_MODE_UART2_GPIO     1
36 #define MT7621_GPIO_MODE_JTAG           7
37 #define MT7621_GPIO_MODE_WDT_MASK       0x3
38 #define MT7621_GPIO_MODE_WDT_SHIFT      8
39 #define MT7621_GPIO_MODE_WDT_GPIO       1
40 #define MT7621_GPIO_MODE_PCIE_RST       0
41 #define MT7621_GPIO_MODE_PCIE_REF       2
42 #define MT7621_GPIO_MODE_PCIE_MASK      0x3
43 #define MT7621_GPIO_MODE_PCIE_SHIFT     10
44 #define MT7621_GPIO_MODE_PCIE_GPIO      1
45 #define MT7621_GPIO_MODE_MDIO_MASK      0x3
46 #define MT7621_GPIO_MODE_MDIO_SHIFT     12
47 #define MT7621_GPIO_MODE_MDIO_GPIO      1
48 #define MT7621_GPIO_MODE_RGMII1         14
49 #define MT7621_GPIO_MODE_RGMII2         15
50 #define MT7621_GPIO_MODE_SPI_MASK       0x3
51 #define MT7621_GPIO_MODE_SPI_SHIFT      16
52 #define MT7621_GPIO_MODE_SPI_GPIO       1
53 #define MT7621_GPIO_MODE_SDHCI_MASK     0x3
54 #define MT7621_GPIO_MODE_SDHCI_SHIFT    18
55 #define MT7621_GPIO_MODE_SDHCI_GPIO     1
56
57 static struct rt2880_pmx_func uart1_grp[] =  { FUNC("uart1", 0, 1, 2) };
58 static struct rt2880_pmx_func i2c_grp[] =  { FUNC("i2c", 0, 3, 2) };
59 static struct rt2880_pmx_func uart3_grp[] = {
60         FUNC("uart3", 0, 5, 4),
61         FUNC("i2s", 2, 5, 4),
62         FUNC("spdif3", 3, 5, 4),
63 };
64 static struct rt2880_pmx_func uart2_grp[] = {
65         FUNC("uart2", 0, 9, 4),
66         FUNC("pcm", 2, 9, 4),
67         FUNC("spdif2", 3, 9, 4),
68 };
69 static struct rt2880_pmx_func jtag_grp[] = { FUNC("jtag", 0, 13, 5) };
70 static struct rt2880_pmx_func wdt_grp[] = {
71         FUNC("wdt rst", 0, 18, 1),
72         FUNC("wdt refclk", 2, 18, 1),
73 };
74 static struct rt2880_pmx_func pcie_rst_grp[] = {
75         FUNC("pcie rst", MT7621_GPIO_MODE_PCIE_RST, 19, 1),
76         FUNC("pcie refclk", MT7621_GPIO_MODE_PCIE_REF, 19, 1)
77 };
78 static struct rt2880_pmx_func mdio_grp[] = { FUNC("mdio", 0, 20, 2) };
79 static struct rt2880_pmx_func rgmii2_grp[] = { FUNC("rgmii2", 0, 22, 12) };
80 static struct rt2880_pmx_func spi_grp[] = {
81         FUNC("spi", 0, 34, 7),
82         FUNC("nand1", 2, 34, 7),
83 };
84 static struct rt2880_pmx_func sdhci_grp[] = {
85         FUNC("sdhci", 0, 41, 8),
86         FUNC("nand2", 2, 41, 8),
87 };
88 static struct rt2880_pmx_func rgmii1_grp[] = { FUNC("rgmii1", 0, 49, 12) };
89
90 static struct rt2880_pmx_group mt7621_pinmux_data[] = {
91         GRP("uart1", uart1_grp, 1, MT7621_GPIO_MODE_UART1),
92         GRP("i2c", i2c_grp, 1, MT7621_GPIO_MODE_I2C),
93         GRP_G("uart3", uart3_grp, MT7621_GPIO_MODE_UART3_MASK,
94                 MT7621_GPIO_MODE_UART3_GPIO, MT7621_GPIO_MODE_UART3_SHIFT),
95         GRP_G("uart2", uart2_grp, MT7621_GPIO_MODE_UART2_MASK,
96                 MT7621_GPIO_MODE_UART2_GPIO, MT7621_GPIO_MODE_UART2_SHIFT),
97         GRP("jtag", jtag_grp, 1, MT7621_GPIO_MODE_JTAG),
98         GRP_G("wdt", wdt_grp, MT7621_GPIO_MODE_WDT_MASK,
99                 MT7621_GPIO_MODE_WDT_GPIO, MT7621_GPIO_MODE_WDT_SHIFT),
100         GRP_G("pcie", pcie_rst_grp, MT7621_GPIO_MODE_PCIE_MASK,
101                 MT7621_GPIO_MODE_PCIE_GPIO, MT7621_GPIO_MODE_PCIE_SHIFT),
102         GRP_G("mdio", mdio_grp, MT7621_GPIO_MODE_MDIO_MASK,
103                 MT7621_GPIO_MODE_MDIO_GPIO, MT7621_GPIO_MODE_MDIO_SHIFT),
104         GRP("rgmii2", rgmii2_grp, 1, MT7621_GPIO_MODE_RGMII2),
105         GRP_G("spi", spi_grp, MT7621_GPIO_MODE_SPI_MASK,
106                 MT7621_GPIO_MODE_SPI_GPIO, MT7621_GPIO_MODE_SPI_SHIFT),
107         GRP_G("sdhci", sdhci_grp, MT7621_GPIO_MODE_SDHCI_MASK,
108                 MT7621_GPIO_MODE_SDHCI_GPIO, MT7621_GPIO_MODE_SDHCI_SHIFT),
109         GRP("rgmii1", rgmii1_grp, 1, MT7621_GPIO_MODE_RGMII1),
110         { 0 }
111 };
112
113 static struct clk *clks[MT7621_CLK_MAX];
114 static struct clk_onecell_data clk_data = {
115         .clks = clks,
116         .clk_num = ARRAY_SIZE(clks),
117 };
118
119 phys_addr_t mips_cpc_default_phys_base(void)
120 {
121         panic("Cannot detect cpc address");
122 }
123
124 static struct clk *__init mt7621_add_sys_clkdev(
125         const char *id, unsigned long rate)
126 {
127         struct clk *clk;
128         int err;
129
130         clk = clk_register_fixed_rate(NULL, id, NULL, 0, rate);
131         if (IS_ERR(clk))
132                 panic("failed to allocate %s clock structure", id);
133
134         err = clk_register_clkdev(clk, id, NULL);
135         if (err)
136                 panic("unable to register %s clock device", id);
137
138         return clk;
139 }
140
141 void __init ralink_clk_init(void)
142 {
143         const static u32 prediv_tbl[] = {0, 1, 2, 2};
144         u32 syscfg, xtal_sel, clkcfg, clk_sel, curclk, ffiv, ffrac;
145         u32 pll, prediv, fbdiv;
146         u32 xtal_clk, cpu_clk, bus_clk;
147
148         syscfg = rt_sysc_r32(SYSC_REG_SYSTEM_CONFIG0);
149         xtal_sel = (syscfg >> XTAL_MODE_SEL_SHIFT) & XTAL_MODE_SEL_MASK;
150
151         clkcfg = rt_sysc_r32(SYSC_REG_CLKCFG0);
152         clk_sel = (clkcfg >> CPU_CLK_SEL_SHIFT) & CPU_CLK_SEL_MASK;
153
154         curclk = rt_sysc_r32(SYSC_REG_CUR_CLK_STS);
155         ffiv = (curclk >> CUR_CPU_FDIV_SHIFT) & CUR_CPU_FDIV_MASK;
156         ffrac = (curclk >> CUR_CPU_FFRAC_SHIFT) & CUR_CPU_FFRAC_MASK;
157
158         if (xtal_sel <= 2)
159                 xtal_clk = 20 * 1000 * 1000;
160         else if (xtal_sel <= 5)
161                 xtal_clk = 40 * 1000 * 1000;
162         else
163                 xtal_clk = 25 * 1000 * 1000;
164
165         switch (clk_sel) {
166         case 0:
167                 cpu_clk = 500 * 1000 * 1000;
168                 break;
169         case 1:
170                 pll = rt_memc_r32(MEMC_REG_CPU_PLL);
171                 fbdiv = (pll >> CPU_PLL_FBDIV_SHIFT) & CPU_PLL_FBDIV_MASK;
172                 prediv = (pll >> CPU_PLL_PREDIV_SHIFT) & CPU_PLL_PREDIV_MASK;
173                 cpu_clk = ((fbdiv + 1) * xtal_clk) >> prediv_tbl[prediv];
174                 break;
175         default:
176                 cpu_clk = xtal_clk;
177         }
178
179         cpu_clk = cpu_clk / ffiv * ffrac;
180         bus_clk = cpu_clk / 4;
181
182         clks[MT7621_CLK_CPU] = mt7621_add_sys_clkdev("cpu", cpu_clk);
183         clks[MT7621_CLK_BUS] = mt7621_add_sys_clkdev("bus", bus_clk);
184
185         pr_info("CPU Clock: %dMHz\n", cpu_clk / 1000000);
186         mips_hpt_frequency = cpu_clk / 2;
187 }
188
189 static void __init mt7621_clocks_init_dt(struct device_node *np)
190 {
191         of_clk_add_provider(np, of_clk_src_onecell_get, &clk_data);
192 }
193
194 CLK_OF_DECLARE(mt7621_clk, "mediatek,mt7621-pll", mt7621_clocks_init_dt);
195
196 void __init ralink_of_remap(void)
197 {
198         rt_sysc_membase = plat_of_remap_node("mtk,mt7621-sysc");
199         rt_memc_membase = plat_of_remap_node("mtk,mt7621-memc");
200
201         if (!rt_sysc_membase || !rt_memc_membase)
202                 panic("Failed to remap core resources");
203 }
204
205 void prom_soc_init(struct ralink_soc_info *soc_info)
206 {
207         void __iomem *sysc = (void __iomem *) KSEG1ADDR(MT7621_SYSC_BASE);
208         unsigned char *name = NULL;
209         u32 n0;
210         u32 n1;
211         u32 rev;
212
213         /* Early detection of CMP support */
214         mips_cm_probe();
215         mips_cpc_probe();
216
217         if (mips_cps_numiocu(0)) {
218                 /*
219                  * mips_cm_probe() wipes out bootloader
220                  * config for CM regions and we have to configure them
221                  * again. This SoC cannot talk to pamlbus devices
222                  * witout proper iocu region set up.
223                  *
224                  * FIXME: it would be better to do this with values
225                  * from DT, but we need this very early because
226                  * without this we cannot talk to pretty much anything
227                  * including serial.
228                  */
229                 write_gcr_reg0_base(MT7621_PALMBUS_BASE);
230                 write_gcr_reg0_mask(~MT7621_PALMBUS_SIZE |
231                                     CM_GCR_REGn_MASK_CMTGT_IOCU0);
232                 __sync();
233         }
234
235         n0 = __raw_readl(sysc + SYSC_REG_CHIP_NAME0);
236         n1 = __raw_readl(sysc + SYSC_REG_CHIP_NAME1);
237
238         if (n0 == MT7621_CHIP_NAME0 && n1 == MT7621_CHIP_NAME1) {
239                 name = "MT7621";
240                 soc_info->compatible = "mtk,mt7621-soc";
241         } else {
242                 panic("mt7621: unknown SoC, n0:%08x n1:%08x\n", n0, n1);
243         }
244         ralink_soc = MT762X_SOC_MT7621AT;
245         rev = __raw_readl(sysc + SYSC_REG_CHIP_REV);
246
247         snprintf(soc_info->sys_type, RAMIPS_SYS_TYPE_LEN,
248                 "MediaTek %s ver:%u eco:%u",
249                 name,
250                 (rev >> CHIP_REV_VER_SHIFT) & CHIP_REV_VER_MASK,
251                 (rev & CHIP_REV_ECO_MASK));
252
253         soc_info->mem_size_min = MT7621_DDR2_SIZE_MIN;
254         soc_info->mem_size_max = MT7621_DDR2_SIZE_MAX;
255         soc_info->mem_base = MT7621_DRAM_BASE;
256
257         rt2880_pinmux_data = mt7621_pinmux_data;
258
259
260         if (!register_cps_smp_ops())
261                 return;
262         if (!register_cmp_smp_ops())
263                 return;
264         if (!register_vsmp_smp_ops())
265                 return;
266 }