blob: 4c7a93f4039a0cba2a18504525ed9cd2e0c02389 [file] [log] [blame]
Gabor Juhosd4a67d92011-01-04 21:28:14 +01001/*
2 * Atheros AR71XX/AR724X/AR913X specific setup
3 *
Gabor Juhosd8411462012-03-14 10:45:21 +01004 * Copyright (C) 2010-2011 Jaiganesh Narayanan <jnarayanan@atheros.com>
Gabor Juhosd4a67d92011-01-04 21:28:14 +01005 * Copyright (C) 2008-2011 Gabor Juhos <juhosg@openwrt.org>
6 * Copyright (C) 2008 Imre Kaloz <kaloz@openwrt.org>
7 *
Gabor Juhosd8411462012-03-14 10:45:21 +01008 * Parts of this file are based on Atheros' 2.6.15/2.6.31 BSP
Gabor Juhosd4a67d92011-01-04 21:28:14 +01009 *
10 * This program is free software; you can redistribute it and/or modify it
11 * under the terms of the GNU General Public License version 2 as published
12 * by the Free Software Foundation.
13 */
14
15#include <linux/kernel.h>
16#include <linux/init.h>
17#include <linux/bootmem.h>
18#include <linux/err.h>
19#include <linux/clk.h>
Guenter Roeck20ff3ad2016-07-23 17:00:15 -070020#include <linux/clk-provider.h>
Alban Bedel03c8c402015-05-31 01:52:25 +020021#include <linux/of_fdt.h>
Gabor Juhosd4a67d92011-01-04 21:28:14 +010022
23#include <asm/bootinfo.h>
Ralf Baechlebdc92d742013-05-21 16:59:19 +020024#include <asm/idle.h>
Gabor Juhosd4a67d92011-01-04 21:28:14 +010025#include <asm/time.h> /* for mips_hpt_frequency */
26#include <asm/reboot.h> /* for _machine_{restart,halt} */
Gabor Juhos0aabf1a2011-01-04 21:28:16 +010027#include <asm/mips_machine.h>
Alban Bedel03c8c402015-05-31 01:52:25 +020028#include <asm/prom.h>
29#include <asm/fw/fw.h>
Gabor Juhosd4a67d92011-01-04 21:28:14 +010030
31#include <asm/mach-ath79/ath79.h>
32#include <asm/mach-ath79/ar71xx_regs.h>
33#include "common.h"
34#include "dev-common.h"
Gabor Juhos0aabf1a2011-01-04 21:28:16 +010035#include "machtypes.h"
Gabor Juhosd4a67d92011-01-04 21:28:14 +010036
37#define ATH79_SYS_TYPE_LEN 64
38
Gabor Juhosd4a67d92011-01-04 21:28:14 +010039static char ath79_sys_type[ATH79_SYS_TYPE_LEN];
40
41static void ath79_restart(char *command)
42{
Felix Fietkauf8a7bfe2018-07-20 13:58:22 +020043 local_irq_disable();
Gabor Juhosd4a67d92011-01-04 21:28:14 +010044 ath79_device_reset_set(AR71XX_RESET_FULL_CHIP);
45 for (;;)
46 if (cpu_wait)
47 cpu_wait();
48}
49
50static void ath79_halt(void)
51{
52 while (1)
53 cpu_wait();
54}
55
Gabor Juhosd4a67d92011-01-04 21:28:14 +010056static void __init ath79_detect_sys_type(void)
57{
58 char *chip = "????";
59 u32 id;
60 u32 major;
61 u32 minor;
62 u32 rev = 0;
Matthias Schifferaf2d1b52018-07-20 13:58:19 +020063 u32 ver = 1;
Gabor Juhosd4a67d92011-01-04 21:28:14 +010064
65 id = ath79_reset_rr(AR71XX_RESET_REG_REV_ID);
66 major = id & REV_ID_MAJOR_MASK;
67
68 switch (major) {
69 case REV_ID_MAJOR_AR71XX:
70 minor = id & AR71XX_REV_ID_MINOR_MASK;
71 rev = id >> AR71XX_REV_ID_REVISION_SHIFT;
72 rev &= AR71XX_REV_ID_REVISION_MASK;
73 switch (minor) {
74 case AR71XX_REV_ID_MINOR_AR7130:
75 ath79_soc = ATH79_SOC_AR7130;
76 chip = "7130";
77 break;
78
79 case AR71XX_REV_ID_MINOR_AR7141:
80 ath79_soc = ATH79_SOC_AR7141;
81 chip = "7141";
82 break;
83
84 case AR71XX_REV_ID_MINOR_AR7161:
85 ath79_soc = ATH79_SOC_AR7161;
86 chip = "7161";
87 break;
88 }
89 break;
90
91 case REV_ID_MAJOR_AR7240:
92 ath79_soc = ATH79_SOC_AR7240;
93 chip = "7240";
Gabor Juhos8bed12882011-06-20 21:26:01 +020094 rev = id & AR724X_REV_ID_REVISION_MASK;
Gabor Juhosd4a67d92011-01-04 21:28:14 +010095 break;
96
97 case REV_ID_MAJOR_AR7241:
98 ath79_soc = ATH79_SOC_AR7241;
99 chip = "7241";
Gabor Juhos8bed12882011-06-20 21:26:01 +0200100 rev = id & AR724X_REV_ID_REVISION_MASK;
Gabor Juhosd4a67d92011-01-04 21:28:14 +0100101 break;
102
103 case REV_ID_MAJOR_AR7242:
104 ath79_soc = ATH79_SOC_AR7242;
105 chip = "7242";
Gabor Juhos8bed12882011-06-20 21:26:01 +0200106 rev = id & AR724X_REV_ID_REVISION_MASK;
Gabor Juhosd4a67d92011-01-04 21:28:14 +0100107 break;
108
109 case REV_ID_MAJOR_AR913X:
110 minor = id & AR913X_REV_ID_MINOR_MASK;
111 rev = id >> AR913X_REV_ID_REVISION_SHIFT;
112 rev &= AR913X_REV_ID_REVISION_MASK;
113 switch (minor) {
114 case AR913X_REV_ID_MINOR_AR9130:
115 ath79_soc = ATH79_SOC_AR9130;
116 chip = "9130";
117 break;
118
119 case AR913X_REV_ID_MINOR_AR9132:
120 ath79_soc = ATH79_SOC_AR9132;
121 chip = "9132";
122 break;
123 }
124 break;
125
Gabor Juhos80a7ed82012-03-14 10:45:20 +0100126 case REV_ID_MAJOR_AR9330:
127 ath79_soc = ATH79_SOC_AR9330;
128 chip = "9330";
129 rev = id & AR933X_REV_ID_REVISION_MASK;
130 break;
131
132 case REV_ID_MAJOR_AR9331:
133 ath79_soc = ATH79_SOC_AR9331;
134 chip = "9331";
135 rev = id & AR933X_REV_ID_REVISION_MASK;
136 break;
137
Gabor Juhosd8411462012-03-14 10:45:21 +0100138 case REV_ID_MAJOR_AR9341:
139 ath79_soc = ATH79_SOC_AR9341;
140 chip = "9341";
141 rev = id & AR934X_REV_ID_REVISION_MASK;
142 break;
143
144 case REV_ID_MAJOR_AR9342:
145 ath79_soc = ATH79_SOC_AR9342;
146 chip = "9342";
147 rev = id & AR934X_REV_ID_REVISION_MASK;
148 break;
149
150 case REV_ID_MAJOR_AR9344:
151 ath79_soc = ATH79_SOC_AR9344;
152 chip = "9344";
153 rev = id & AR934X_REV_ID_REVISION_MASK;
154 break;
155
Matthias Schifferaf2d1b52018-07-20 13:58:19 +0200156 case REV_ID_MAJOR_QCA9533_V2:
157 ver = 2;
158 ath79_soc_rev = 2;
159 /* drop through */
160
161 case REV_ID_MAJOR_QCA9533:
162 ath79_soc = ATH79_SOC_QCA9533;
163 chip = "9533";
164 rev = id & QCA953X_REV_ID_REVISION_MASK;
165 break;
166
Gabor Juhos2e6c91e2013-02-15 13:38:16 +0000167 case REV_ID_MAJOR_QCA9556:
168 ath79_soc = ATH79_SOC_QCA9556;
169 chip = "9556";
170 rev = id & QCA955X_REV_ID_REVISION_MASK;
171 break;
172
173 case REV_ID_MAJOR_QCA9558:
174 ath79_soc = ATH79_SOC_QCA9558;
175 chip = "9558";
176 rev = id & QCA955X_REV_ID_REVISION_MASK;
177 break;
178
Matthias Schifferaf2d1b52018-07-20 13:58:19 +0200179 case REV_ID_MAJOR_QCA956X:
180 ath79_soc = ATH79_SOC_QCA956X;
181 chip = "956X";
182 rev = id & QCA956X_REV_ID_REVISION_MASK;
183 break;
184
185 case REV_ID_MAJOR_TP9343:
186 ath79_soc = ATH79_SOC_TP9343;
187 chip = "9343";
188 rev = id & QCA956X_REV_ID_REVISION_MASK;
189 break;
190
Gabor Juhosd4a67d92011-01-04 21:28:14 +0100191 default:
Ralf Baechleab75dc02011-11-17 15:07:31 +0000192 panic("ath79: unknown SoC, id:0x%08x", id);
Gabor Juhosd4a67d92011-01-04 21:28:14 +0100193 }
194
Matthias Schifferaf2d1b52018-07-20 13:58:19 +0200195 if (ver == 1)
196 ath79_soc_rev = rev;
Gabor Juhosbe5f3622011-11-18 00:17:46 +0000197
Matthias Schifferaf2d1b52018-07-20 13:58:19 +0200198 if (soc_is_qca953x() || soc_is_qca955x() || soc_is_qca956x())
199 sprintf(ath79_sys_type, "Qualcomm Atheros QCA%s ver %u rev %u",
200 chip, ver, rev);
201 else if (soc_is_tp9343())
202 sprintf(ath79_sys_type, "Qualcomm Atheros TP%s rev %u",
Gabor Juhos2e6c91e2013-02-15 13:38:16 +0000203 chip, rev);
204 else
205 sprintf(ath79_sys_type, "Atheros AR%s rev %u", chip, rev);
Gabor Juhosd4a67d92011-01-04 21:28:14 +0100206 pr_info("SoC: %s\n", ath79_sys_type);
207}
208
209const char *get_system_type(void)
210{
211 return ath79_sys_type;
212}
213
Andrew Brestickera669efc2014-09-18 14:47:12 -0700214int get_c0_perfcount_int(void)
215{
216 return ATH79_MISC_IRQ(5);
217}
Felix Fietkau0cb09852015-07-23 18:59:52 +0200218EXPORT_SYMBOL_GPL(get_c0_perfcount_int);
Andrew Brestickera669efc2014-09-18 14:47:12 -0700219
Paul Gortmaker078a55f2013-06-18 13:38:59 +0000220unsigned int get_c0_compare_int(void)
Gabor Juhosd4a67d92011-01-04 21:28:14 +0100221{
222 return CP0_LEGACY_COMPARE_IRQ;
223}
224
225void __init plat_mem_setup(void)
226{
Alban Bedel03c8c402015-05-31 01:52:25 +0200227 unsigned long fdt_start;
228
Gabor Juhosd4a67d92011-01-04 21:28:14 +0100229 set_io_port_base(KSEG1);
230
Alban Bedel03c8c402015-05-31 01:52:25 +0200231 /* Get the position of the FDT passed by the bootloader */
232 fdt_start = fw_getenvl("fdt_start");
233 if (fdt_start)
234 __dt_setup_arch((void *)KSEG0ADDR(fdt_start));
Jonas Gorski15f37e12016-06-20 11:27:37 +0200235 else if (fw_passed_dtb)
236 __dt_setup_arch((void *)KSEG0ADDR(fw_passed_dtb));
Alban Bedel03c8c402015-05-31 01:52:25 +0200237
Alban Bedel81424d02016-01-26 09:39:30 +0100238 if (mips_machtype != ATH79_MACH_GENERIC_OF) {
Antony Pavlovf4fe9692016-03-17 06:34:16 +0300239 ath79_reset_base = ioremap_nocache(AR71XX_RESET_BASE,
240 AR71XX_RESET_SIZE);
241 ath79_pll_base = ioremap_nocache(AR71XX_PLL_BASE,
242 AR71XX_PLL_SIZE);
243 ath79_detect_sys_type();
244 ath79_ddr_ctrl_init();
245
Alban Bedel03c8c402015-05-31 01:52:25 +0200246 detect_memory_region(0, ATH79_MEM_SIZE_MIN, ATH79_MEM_SIZE_MAX);
Antony Pavlovf4fe9692016-03-17 06:34:16 +0300247
Alban Bedel81424d02016-01-26 09:39:30 +0100248 /* OF machines should use the reset driver */
249 _machine_restart = ath79_restart;
250 }
Antony Pavlovf4fe9692016-03-17 06:34:16 +0300251
Gabor Juhosd4a67d92011-01-04 21:28:14 +0100252 _machine_halt = ath79_halt;
253 pm_power_off = ath79_halt;
254}
255
Antony Pavlov3bdf1072016-03-17 06:34:15 +0300256static void __init ath79_of_plat_time_init(void)
257{
258 struct device_node *np;
259 struct clk *clk;
260 unsigned long cpu_clk_rate;
261
262 of_clk_init(NULL);
263
264 np = of_get_cpu_node(0, NULL);
265 if (!np) {
266 pr_err("Failed to get CPU node\n");
267 return;
268 }
269
270 clk = of_clk_get(np, 0);
271 if (IS_ERR(clk)) {
272 pr_err("Failed to get CPU clock: %ld\n", PTR_ERR(clk));
273 return;
274 }
275
276 cpu_clk_rate = clk_get_rate(clk);
277
278 pr_info("CPU clock: %lu.%03lu MHz\n",
279 cpu_clk_rate / 1000000, (cpu_clk_rate / 1000) % 1000);
280
281 mips_hpt_frequency = cpu_clk_rate / 2;
282
283 clk_put(clk);
284}
285
Gabor Juhosd4a67d92011-01-04 21:28:14 +0100286void __init plat_time_init(void)
287{
Gabor Juhos23107802013-08-28 10:41:44 +0200288 unsigned long cpu_clk_rate;
Gabor Juhos59a8c102013-08-28 10:41:45 +0200289 unsigned long ahb_clk_rate;
290 unsigned long ddr_clk_rate;
291 unsigned long ref_clk_rate;
Gabor Juhosd4a67d92011-01-04 21:28:14 +0100292
Antony Pavlov3bdf1072016-03-17 06:34:15 +0300293 if (IS_ENABLED(CONFIG_OF) && mips_machtype == ATH79_MACH_GENERIC_OF) {
294 ath79_of_plat_time_init();
295 return;
296 }
297
Gabor Juhos2c4f1ac2013-08-28 10:41:47 +0200298 ath79_clocks_init();
299
Gabor Juhos23107802013-08-28 10:41:44 +0200300 cpu_clk_rate = ath79_get_sys_clk_rate("cpu");
Gabor Juhos59a8c102013-08-28 10:41:45 +0200301 ahb_clk_rate = ath79_get_sys_clk_rate("ahb");
302 ddr_clk_rate = ath79_get_sys_clk_rate("ddr");
303 ref_clk_rate = ath79_get_sys_clk_rate("ref");
304
Alban Bedela26484b2015-04-19 14:30:01 +0200305 pr_info("Clocks: CPU:%lu.%03luMHz, DDR:%lu.%03luMHz, AHB:%lu.%03luMHz, Ref:%lu.%03luMHz\n",
Gabor Juhos59a8c102013-08-28 10:41:45 +0200306 cpu_clk_rate / 1000000, (cpu_clk_rate / 1000) % 1000,
307 ddr_clk_rate / 1000000, (ddr_clk_rate / 1000) % 1000,
308 ahb_clk_rate / 1000000, (ahb_clk_rate / 1000) % 1000,
309 ref_clk_rate / 1000000, (ref_clk_rate / 1000) % 1000);
Gabor Juhosd4a67d92011-01-04 21:28:14 +0100310
Gabor Juhos23107802013-08-28 10:41:44 +0200311 mips_hpt_frequency = cpu_clk_rate / 2;
Gabor Juhosd4a67d92011-01-04 21:28:14 +0100312}
313
314static int __init ath79_setup(void)
315{
Alban Bedel03c8c402015-05-31 01:52:25 +0200316 if (mips_machtype == ATH79_MACH_GENERIC_OF)
317 return 0;
318
Gabor Juhos6eae43c2011-01-04 21:28:15 +0100319 ath79_gpio_init();
Gabor Juhosd4a67d92011-01-04 21:28:14 +0100320 ath79_register_uart();
Gabor Juhos858f7632011-01-04 21:28:20 +0100321 ath79_register_wdt();
Gabor Juhos0aabf1a2011-01-04 21:28:16 +0100322
323 mips_machine_setup();
324
Gabor Juhosd4a67d92011-01-04 21:28:14 +0100325 return 0;
326}
327
328arch_initcall(ath79_setup);
Gabor Juhos0aabf1a2011-01-04 21:28:16 +0100329
Alban Bedel03c8c402015-05-31 01:52:25 +0200330void __init device_tree_init(void)
331{
332 unflatten_and_copy_device_tree();
333}
334
Gabor Juhos0aabf1a2011-01-04 21:28:16 +0100335MIPS_MACHINE(ATH79_MACH_GENERIC,
336 "Generic",
337 "Generic AR71XX/AR724X/AR913X based board",
Alban Bedelfe8766d2015-11-17 21:52:01 +0100338 NULL);
Alban Bedel55f1d592015-11-17 21:52:00 +0100339
340MIPS_MACHINE(ATH79_MACH_GENERIC_OF,
341 "DTB",
342 "Generic AR71XX/AR724X/AR913X based board (DT)",
343 NULL);