blob: 01af43281bc7d171fdde7f78e1ec01714bd2b8c6 [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>
Antony Pavlov3bdf1072016-03-17 06:34:15 +030020#include <linux/clk-provider.h>
Alban Bedel03c8c402015-05-31 01:52:25 +020021#include <linux/of_platform.h>
22#include <linux/of_fdt.h>
Gabor Juhosd4a67d92011-01-04 21:28:14 +010023
24#include <asm/bootinfo.h>
Ralf Baechlebdc92d742013-05-21 16:59:19 +020025#include <asm/idle.h>
Gabor Juhosd4a67d92011-01-04 21:28:14 +010026#include <asm/time.h> /* for mips_hpt_frequency */
27#include <asm/reboot.h> /* for _machine_{restart,halt} */
Gabor Juhos0aabf1a2011-01-04 21:28:16 +010028#include <asm/mips_machine.h>
Alban Bedel03c8c402015-05-31 01:52:25 +020029#include <asm/prom.h>
30#include <asm/fw/fw.h>
Gabor Juhosd4a67d92011-01-04 21:28:14 +010031
32#include <asm/mach-ath79/ath79.h>
33#include <asm/mach-ath79/ar71xx_regs.h>
34#include "common.h"
35#include "dev-common.h"
Gabor Juhos0aabf1a2011-01-04 21:28:16 +010036#include "machtypes.h"
Gabor Juhosd4a67d92011-01-04 21:28:14 +010037
38#define ATH79_SYS_TYPE_LEN 64
39
Gabor Juhosd4a67d92011-01-04 21:28:14 +010040static char ath79_sys_type[ATH79_SYS_TYPE_LEN];
41
42static void ath79_restart(char *command)
43{
44 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;
63
64 id = ath79_reset_rr(AR71XX_RESET_REG_REV_ID);
65 major = id & REV_ID_MAJOR_MASK;
66
67 switch (major) {
68 case REV_ID_MAJOR_AR71XX:
69 minor = id & AR71XX_REV_ID_MINOR_MASK;
70 rev = id >> AR71XX_REV_ID_REVISION_SHIFT;
71 rev &= AR71XX_REV_ID_REVISION_MASK;
72 switch (minor) {
73 case AR71XX_REV_ID_MINOR_AR7130:
74 ath79_soc = ATH79_SOC_AR7130;
75 chip = "7130";
76 break;
77
78 case AR71XX_REV_ID_MINOR_AR7141:
79 ath79_soc = ATH79_SOC_AR7141;
80 chip = "7141";
81 break;
82
83 case AR71XX_REV_ID_MINOR_AR7161:
84 ath79_soc = ATH79_SOC_AR7161;
85 chip = "7161";
86 break;
87 }
88 break;
89
90 case REV_ID_MAJOR_AR7240:
91 ath79_soc = ATH79_SOC_AR7240;
92 chip = "7240";
Gabor Juhos8bed12882011-06-20 21:26:01 +020093 rev = id & AR724X_REV_ID_REVISION_MASK;
Gabor Juhosd4a67d92011-01-04 21:28:14 +010094 break;
95
96 case REV_ID_MAJOR_AR7241:
97 ath79_soc = ATH79_SOC_AR7241;
98 chip = "7241";
Gabor Juhos8bed12882011-06-20 21:26:01 +020099 rev = id & AR724X_REV_ID_REVISION_MASK;
Gabor Juhosd4a67d92011-01-04 21:28:14 +0100100 break;
101
102 case REV_ID_MAJOR_AR7242:
103 ath79_soc = ATH79_SOC_AR7242;
104 chip = "7242";
Gabor Juhos8bed12882011-06-20 21:26:01 +0200105 rev = id & AR724X_REV_ID_REVISION_MASK;
Gabor Juhosd4a67d92011-01-04 21:28:14 +0100106 break;
107
108 case REV_ID_MAJOR_AR913X:
109 minor = id & AR913X_REV_ID_MINOR_MASK;
110 rev = id >> AR913X_REV_ID_REVISION_SHIFT;
111 rev &= AR913X_REV_ID_REVISION_MASK;
112 switch (minor) {
113 case AR913X_REV_ID_MINOR_AR9130:
114 ath79_soc = ATH79_SOC_AR9130;
115 chip = "9130";
116 break;
117
118 case AR913X_REV_ID_MINOR_AR9132:
119 ath79_soc = ATH79_SOC_AR9132;
120 chip = "9132";
121 break;
122 }
123 break;
124
Gabor Juhos80a7ed82012-03-14 10:45:20 +0100125 case REV_ID_MAJOR_AR9330:
126 ath79_soc = ATH79_SOC_AR9330;
127 chip = "9330";
128 rev = id & AR933X_REV_ID_REVISION_MASK;
129 break;
130
131 case REV_ID_MAJOR_AR9331:
132 ath79_soc = ATH79_SOC_AR9331;
133 chip = "9331";
134 rev = id & AR933X_REV_ID_REVISION_MASK;
135 break;
136
Gabor Juhosd8411462012-03-14 10:45:21 +0100137 case REV_ID_MAJOR_AR9341:
138 ath79_soc = ATH79_SOC_AR9341;
139 chip = "9341";
140 rev = id & AR934X_REV_ID_REVISION_MASK;
141 break;
142
143 case REV_ID_MAJOR_AR9342:
144 ath79_soc = ATH79_SOC_AR9342;
145 chip = "9342";
146 rev = id & AR934X_REV_ID_REVISION_MASK;
147 break;
148
149 case REV_ID_MAJOR_AR9344:
150 ath79_soc = ATH79_SOC_AR9344;
151 chip = "9344";
152 rev = id & AR934X_REV_ID_REVISION_MASK;
153 break;
154
Gabor Juhos2e6c91e2013-02-15 13:38:16 +0000155 case REV_ID_MAJOR_QCA9556:
156 ath79_soc = ATH79_SOC_QCA9556;
157 chip = "9556";
158 rev = id & QCA955X_REV_ID_REVISION_MASK;
159 break;
160
161 case REV_ID_MAJOR_QCA9558:
162 ath79_soc = ATH79_SOC_QCA9558;
163 chip = "9558";
164 rev = id & QCA955X_REV_ID_REVISION_MASK;
165 break;
166
Gabor Juhosd4a67d92011-01-04 21:28:14 +0100167 default:
Ralf Baechleab75dc02011-11-17 15:07:31 +0000168 panic("ath79: unknown SoC, id:0x%08x", id);
Gabor Juhosd4a67d92011-01-04 21:28:14 +0100169 }
170
Gabor Juhosbe5f3622011-11-18 00:17:46 +0000171 ath79_soc_rev = rev;
172
Gabor Juhos2e6c91e2013-02-15 13:38:16 +0000173 if (soc_is_qca955x())
174 sprintf(ath79_sys_type, "Qualcomm Atheros QCA%s rev %u",
175 chip, rev);
176 else
177 sprintf(ath79_sys_type, "Atheros AR%s rev %u", chip, rev);
Gabor Juhosd4a67d92011-01-04 21:28:14 +0100178 pr_info("SoC: %s\n", ath79_sys_type);
179}
180
181const char *get_system_type(void)
182{
183 return ath79_sys_type;
184}
185
Andrew Brestickera669efc2014-09-18 14:47:12 -0700186int get_c0_perfcount_int(void)
187{
188 return ATH79_MISC_IRQ(5);
189}
Felix Fietkau0cb09852015-07-23 18:59:52 +0200190EXPORT_SYMBOL_GPL(get_c0_perfcount_int);
Andrew Brestickera669efc2014-09-18 14:47:12 -0700191
Paul Gortmaker078a55f2013-06-18 13:38:59 +0000192unsigned int get_c0_compare_int(void)
Gabor Juhosd4a67d92011-01-04 21:28:14 +0100193{
194 return CP0_LEGACY_COMPARE_IRQ;
195}
196
197void __init plat_mem_setup(void)
198{
Alban Bedel03c8c402015-05-31 01:52:25 +0200199 unsigned long fdt_start;
200
Gabor Juhosd4a67d92011-01-04 21:28:14 +0100201 set_io_port_base(KSEG1);
202
Alban Bedel03c8c402015-05-31 01:52:25 +0200203 /* Get the position of the FDT passed by the bootloader */
204 fdt_start = fw_getenvl("fdt_start");
205 if (fdt_start)
206 __dt_setup_arch((void *)KSEG0ADDR(fdt_start));
Alban Bedel8f4d4d12016-01-26 08:27:15 +0100207 else if (fw_arg0 == -2)
208 __dt_setup_arch((void *)KSEG0ADDR(fw_arg1));
Alban Bedel03c8c402015-05-31 01:52:25 +0200209
Gabor Juhosd4a67d92011-01-04 21:28:14 +0100210 ath79_reset_base = ioremap_nocache(AR71XX_RESET_BASE,
211 AR71XX_RESET_SIZE);
212 ath79_pll_base = ioremap_nocache(AR71XX_PLL_BASE,
213 AR71XX_PLL_SIZE);
Alban Bedel5011a7e2015-11-17 09:40:07 +0100214 ath79_detect_sys_type();
Alban Bedel24b0e3e2015-04-19 14:30:03 +0200215 ath79_ddr_ctrl_init();
Gabor Juhosd4a67d92011-01-04 21:28:14 +0100216
Alban Bedel81424d02016-01-26 09:39:30 +0100217 if (mips_machtype != ATH79_MACH_GENERIC_OF) {
Alban Bedel03c8c402015-05-31 01:52:25 +0200218 detect_memory_region(0, ATH79_MEM_SIZE_MIN, ATH79_MEM_SIZE_MAX);
Alban Bedel81424d02016-01-26 09:39:30 +0100219 /* OF machines should use the reset driver */
220 _machine_restart = ath79_restart;
221 }
Gabor Juhosd4a67d92011-01-04 21:28:14 +0100222 _machine_halt = ath79_halt;
223 pm_power_off = ath79_halt;
224}
225
Antony Pavlov3bdf1072016-03-17 06:34:15 +0300226static void __init ath79_of_plat_time_init(void)
227{
228 struct device_node *np;
229 struct clk *clk;
230 unsigned long cpu_clk_rate;
231
232 of_clk_init(NULL);
233
234 np = of_get_cpu_node(0, NULL);
235 if (!np) {
236 pr_err("Failed to get CPU node\n");
237 return;
238 }
239
240 clk = of_clk_get(np, 0);
241 if (IS_ERR(clk)) {
242 pr_err("Failed to get CPU clock: %ld\n", PTR_ERR(clk));
243 return;
244 }
245
246 cpu_clk_rate = clk_get_rate(clk);
247
248 pr_info("CPU clock: %lu.%03lu MHz\n",
249 cpu_clk_rate / 1000000, (cpu_clk_rate / 1000) % 1000);
250
251 mips_hpt_frequency = cpu_clk_rate / 2;
252
253 clk_put(clk);
254}
255
Gabor Juhosd4a67d92011-01-04 21:28:14 +0100256void __init plat_time_init(void)
257{
Gabor Juhos23107802013-08-28 10:41:44 +0200258 unsigned long cpu_clk_rate;
Gabor Juhos59a8c102013-08-28 10:41:45 +0200259 unsigned long ahb_clk_rate;
260 unsigned long ddr_clk_rate;
261 unsigned long ref_clk_rate;
Gabor Juhosd4a67d92011-01-04 21:28:14 +0100262
Antony Pavlov3bdf1072016-03-17 06:34:15 +0300263 if (IS_ENABLED(CONFIG_OF) && mips_machtype == ATH79_MACH_GENERIC_OF) {
264 ath79_of_plat_time_init();
265 return;
266 }
267
Gabor Juhos2c4f1ac2013-08-28 10:41:47 +0200268 ath79_clocks_init();
269
Gabor Juhos23107802013-08-28 10:41:44 +0200270 cpu_clk_rate = ath79_get_sys_clk_rate("cpu");
Gabor Juhos59a8c102013-08-28 10:41:45 +0200271 ahb_clk_rate = ath79_get_sys_clk_rate("ahb");
272 ddr_clk_rate = ath79_get_sys_clk_rate("ddr");
273 ref_clk_rate = ath79_get_sys_clk_rate("ref");
274
Alban Bedela26484b2015-04-19 14:30:01 +0200275 pr_info("Clocks: CPU:%lu.%03luMHz, DDR:%lu.%03luMHz, AHB:%lu.%03luMHz, Ref:%lu.%03luMHz\n",
Gabor Juhos59a8c102013-08-28 10:41:45 +0200276 cpu_clk_rate / 1000000, (cpu_clk_rate / 1000) % 1000,
277 ddr_clk_rate / 1000000, (ddr_clk_rate / 1000) % 1000,
278 ahb_clk_rate / 1000000, (ahb_clk_rate / 1000) % 1000,
279 ref_clk_rate / 1000000, (ref_clk_rate / 1000) % 1000);
Gabor Juhosd4a67d92011-01-04 21:28:14 +0100280
Gabor Juhos23107802013-08-28 10:41:44 +0200281 mips_hpt_frequency = cpu_clk_rate / 2;
Gabor Juhosd4a67d92011-01-04 21:28:14 +0100282}
283
284static int __init ath79_setup(void)
285{
Alban Bedel03c8c402015-05-31 01:52:25 +0200286 of_platform_populate(NULL, of_default_bus_match_table, NULL, NULL);
287 if (mips_machtype == ATH79_MACH_GENERIC_OF)
288 return 0;
289
Gabor Juhos6eae43c2011-01-04 21:28:15 +0100290 ath79_gpio_init();
Gabor Juhosd4a67d92011-01-04 21:28:14 +0100291 ath79_register_uart();
Gabor Juhos858f7632011-01-04 21:28:20 +0100292 ath79_register_wdt();
Gabor Juhos0aabf1a2011-01-04 21:28:16 +0100293
294 mips_machine_setup();
295
Gabor Juhosd4a67d92011-01-04 21:28:14 +0100296 return 0;
297}
298
299arch_initcall(ath79_setup);
Gabor Juhos0aabf1a2011-01-04 21:28:16 +0100300
Alban Bedel03c8c402015-05-31 01:52:25 +0200301void __init device_tree_init(void)
302{
303 unflatten_and_copy_device_tree();
304}
305
Gabor Juhos0aabf1a2011-01-04 21:28:16 +0100306MIPS_MACHINE(ATH79_MACH_GENERIC,
307 "Generic",
308 "Generic AR71XX/AR724X/AR913X based board",
Alban Bedelfe8766d2015-11-17 21:52:01 +0100309 NULL);
Alban Bedel55f1d592015-11-17 21:52:00 +0100310
311MIPS_MACHINE(ATH79_MACH_GENERIC_OF,
312 "DTB",
313 "Generic AR71XX/AR724X/AR913X based board (DT)",
314 NULL);