blob: 01a644f174dd08e34843ca501035b077d777bea2 [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>
Alban Bedel03c8c402015-05-31 01:52:25 +020020#include <linux/of_platform.h>
21#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
39#define AR71XX_BASE_FREQ 40000000
40#define AR724X_BASE_FREQ 5000000
41#define AR913X_BASE_FREQ 5000000
42
43static char ath79_sys_type[ATH79_SYS_TYPE_LEN];
44
45static void ath79_restart(char *command)
46{
47 ath79_device_reset_set(AR71XX_RESET_FULL_CHIP);
48 for (;;)
49 if (cpu_wait)
50 cpu_wait();
51}
52
53static void ath79_halt(void)
54{
55 while (1)
56 cpu_wait();
57}
58
Gabor Juhosd4a67d92011-01-04 21:28:14 +010059static void __init ath79_detect_sys_type(void)
60{
61 char *chip = "????";
62 u32 id;
63 u32 major;
64 u32 minor;
65 u32 rev = 0;
66
67 id = ath79_reset_rr(AR71XX_RESET_REG_REV_ID);
68 major = id & REV_ID_MAJOR_MASK;
69
70 switch (major) {
71 case REV_ID_MAJOR_AR71XX:
72 minor = id & AR71XX_REV_ID_MINOR_MASK;
73 rev = id >> AR71XX_REV_ID_REVISION_SHIFT;
74 rev &= AR71XX_REV_ID_REVISION_MASK;
75 switch (minor) {
76 case AR71XX_REV_ID_MINOR_AR7130:
77 ath79_soc = ATH79_SOC_AR7130;
78 chip = "7130";
79 break;
80
81 case AR71XX_REV_ID_MINOR_AR7141:
82 ath79_soc = ATH79_SOC_AR7141;
83 chip = "7141";
84 break;
85
86 case AR71XX_REV_ID_MINOR_AR7161:
87 ath79_soc = ATH79_SOC_AR7161;
88 chip = "7161";
89 break;
90 }
91 break;
92
93 case REV_ID_MAJOR_AR7240:
94 ath79_soc = ATH79_SOC_AR7240;
95 chip = "7240";
Gabor Juhos8bed12882011-06-20 21:26:01 +020096 rev = id & AR724X_REV_ID_REVISION_MASK;
Gabor Juhosd4a67d92011-01-04 21:28:14 +010097 break;
98
99 case REV_ID_MAJOR_AR7241:
100 ath79_soc = ATH79_SOC_AR7241;
101 chip = "7241";
Gabor Juhos8bed12882011-06-20 21:26:01 +0200102 rev = id & AR724X_REV_ID_REVISION_MASK;
Gabor Juhosd4a67d92011-01-04 21:28:14 +0100103 break;
104
105 case REV_ID_MAJOR_AR7242:
106 ath79_soc = ATH79_SOC_AR7242;
107 chip = "7242";
Gabor Juhos8bed12882011-06-20 21:26:01 +0200108 rev = id & AR724X_REV_ID_REVISION_MASK;
Gabor Juhosd4a67d92011-01-04 21:28:14 +0100109 break;
110
111 case REV_ID_MAJOR_AR913X:
112 minor = id & AR913X_REV_ID_MINOR_MASK;
113 rev = id >> AR913X_REV_ID_REVISION_SHIFT;
114 rev &= AR913X_REV_ID_REVISION_MASK;
115 switch (minor) {
116 case AR913X_REV_ID_MINOR_AR9130:
117 ath79_soc = ATH79_SOC_AR9130;
118 chip = "9130";
119 break;
120
121 case AR913X_REV_ID_MINOR_AR9132:
122 ath79_soc = ATH79_SOC_AR9132;
123 chip = "9132";
124 break;
125 }
126 break;
127
Gabor Juhos80a7ed82012-03-14 10:45:20 +0100128 case REV_ID_MAJOR_AR9330:
129 ath79_soc = ATH79_SOC_AR9330;
130 chip = "9330";
131 rev = id & AR933X_REV_ID_REVISION_MASK;
132 break;
133
134 case REV_ID_MAJOR_AR9331:
135 ath79_soc = ATH79_SOC_AR9331;
136 chip = "9331";
137 rev = id & AR933X_REV_ID_REVISION_MASK;
138 break;
139
Gabor Juhosd8411462012-03-14 10:45:21 +0100140 case REV_ID_MAJOR_AR9341:
141 ath79_soc = ATH79_SOC_AR9341;
142 chip = "9341";
143 rev = id & AR934X_REV_ID_REVISION_MASK;
144 break;
145
146 case REV_ID_MAJOR_AR9342:
147 ath79_soc = ATH79_SOC_AR9342;
148 chip = "9342";
149 rev = id & AR934X_REV_ID_REVISION_MASK;
150 break;
151
152 case REV_ID_MAJOR_AR9344:
153 ath79_soc = ATH79_SOC_AR9344;
154 chip = "9344";
155 rev = id & AR934X_REV_ID_REVISION_MASK;
156 break;
157
Gabor Juhos2e6c91e2013-02-15 13:38:16 +0000158 case REV_ID_MAJOR_QCA9556:
159 ath79_soc = ATH79_SOC_QCA9556;
160 chip = "9556";
161 rev = id & QCA955X_REV_ID_REVISION_MASK;
162 break;
163
164 case REV_ID_MAJOR_QCA9558:
165 ath79_soc = ATH79_SOC_QCA9558;
166 chip = "9558";
167 rev = id & QCA955X_REV_ID_REVISION_MASK;
168 break;
169
Gabor Juhosd4a67d92011-01-04 21:28:14 +0100170 default:
Ralf Baechleab75dc02011-11-17 15:07:31 +0000171 panic("ath79: unknown SoC, id:0x%08x", id);
Gabor Juhosd4a67d92011-01-04 21:28:14 +0100172 }
173
Gabor Juhosbe5f3622011-11-18 00:17:46 +0000174 ath79_soc_rev = rev;
175
Gabor Juhos2e6c91e2013-02-15 13:38:16 +0000176 if (soc_is_qca955x())
177 sprintf(ath79_sys_type, "Qualcomm Atheros QCA%s rev %u",
178 chip, rev);
179 else
180 sprintf(ath79_sys_type, "Atheros AR%s rev %u", chip, rev);
Gabor Juhosd4a67d92011-01-04 21:28:14 +0100181 pr_info("SoC: %s\n", ath79_sys_type);
182}
183
184const char *get_system_type(void)
185{
186 return ath79_sys_type;
187}
188
Andrew Brestickera669efc2014-09-18 14:47:12 -0700189int get_c0_perfcount_int(void)
190{
191 return ATH79_MISC_IRQ(5);
192}
193
Paul Gortmaker078a55f2013-06-18 13:38:59 +0000194unsigned int get_c0_compare_int(void)
Gabor Juhosd4a67d92011-01-04 21:28:14 +0100195{
196 return CP0_LEGACY_COMPARE_IRQ;
197}
198
199void __init plat_mem_setup(void)
200{
Alban Bedel03c8c402015-05-31 01:52:25 +0200201 unsigned long fdt_start;
202
Gabor Juhosd4a67d92011-01-04 21:28:14 +0100203 set_io_port_base(KSEG1);
204
Alban Bedel03c8c402015-05-31 01:52:25 +0200205 /* Get the position of the FDT passed by the bootloader */
206 fdt_start = fw_getenvl("fdt_start");
207 if (fdt_start)
208 __dt_setup_arch((void *)KSEG0ADDR(fdt_start));
209#ifdef CONFIG_BUILTIN_DTB
210 else
211 __dt_setup_arch(__dtb_start);
212#endif
213
Gabor Juhosd4a67d92011-01-04 21:28:14 +0100214 ath79_reset_base = ioremap_nocache(AR71XX_RESET_BASE,
215 AR71XX_RESET_SIZE);
216 ath79_pll_base = ioremap_nocache(AR71XX_PLL_BASE,
217 AR71XX_PLL_SIZE);
Alban Bedel24b0e3e2015-04-19 14:30:03 +0200218 ath79_ddr_ctrl_init();
Gabor Juhosd4a67d92011-01-04 21:28:14 +0100219
220 ath79_detect_sys_type();
Alban Bedel03c8c402015-05-31 01:52:25 +0200221 if (mips_machtype != ATH79_MACH_GENERIC_OF)
222 detect_memory_region(0, ATH79_MEM_SIZE_MIN, ATH79_MEM_SIZE_MAX);
Gabor Juhosd4a67d92011-01-04 21:28:14 +0100223
224 _machine_restart = ath79_restart;
225 _machine_halt = ath79_halt;
226 pm_power_off = ath79_halt;
227}
228
229void __init plat_time_init(void)
230{
Gabor Juhos23107802013-08-28 10:41:44 +0200231 unsigned long cpu_clk_rate;
Gabor Juhos59a8c102013-08-28 10:41:45 +0200232 unsigned long ahb_clk_rate;
233 unsigned long ddr_clk_rate;
234 unsigned long ref_clk_rate;
Gabor Juhosd4a67d92011-01-04 21:28:14 +0100235
Gabor Juhos2c4f1ac2013-08-28 10:41:47 +0200236 ath79_clocks_init();
237
Gabor Juhos23107802013-08-28 10:41:44 +0200238 cpu_clk_rate = ath79_get_sys_clk_rate("cpu");
Gabor Juhos59a8c102013-08-28 10:41:45 +0200239 ahb_clk_rate = ath79_get_sys_clk_rate("ahb");
240 ddr_clk_rate = ath79_get_sys_clk_rate("ddr");
241 ref_clk_rate = ath79_get_sys_clk_rate("ref");
242
Alban Bedela26484b2015-04-19 14:30:01 +0200243 pr_info("Clocks: CPU:%lu.%03luMHz, DDR:%lu.%03luMHz, AHB:%lu.%03luMHz, Ref:%lu.%03luMHz\n",
Gabor Juhos59a8c102013-08-28 10:41:45 +0200244 cpu_clk_rate / 1000000, (cpu_clk_rate / 1000) % 1000,
245 ddr_clk_rate / 1000000, (ddr_clk_rate / 1000) % 1000,
246 ahb_clk_rate / 1000000, (ahb_clk_rate / 1000) % 1000,
247 ref_clk_rate / 1000000, (ref_clk_rate / 1000) % 1000);
Gabor Juhosd4a67d92011-01-04 21:28:14 +0100248
Gabor Juhos23107802013-08-28 10:41:44 +0200249 mips_hpt_frequency = cpu_clk_rate / 2;
Gabor Juhosd4a67d92011-01-04 21:28:14 +0100250}
251
252static int __init ath79_setup(void)
253{
Alban Bedel03c8c402015-05-31 01:52:25 +0200254 of_platform_populate(NULL, of_default_bus_match_table, NULL, NULL);
255 if (mips_machtype == ATH79_MACH_GENERIC_OF)
256 return 0;
257
Gabor Juhos6eae43c2011-01-04 21:28:15 +0100258 ath79_gpio_init();
Gabor Juhosd4a67d92011-01-04 21:28:14 +0100259 ath79_register_uart();
Gabor Juhos858f7632011-01-04 21:28:20 +0100260 ath79_register_wdt();
Gabor Juhos0aabf1a2011-01-04 21:28:16 +0100261
262 mips_machine_setup();
263
Gabor Juhosd4a67d92011-01-04 21:28:14 +0100264 return 0;
265}
266
267arch_initcall(ath79_setup);
Gabor Juhos0aabf1a2011-01-04 21:28:16 +0100268
Alban Bedel03c8c402015-05-31 01:52:25 +0200269void __init device_tree_init(void)
270{
271 unflatten_and_copy_device_tree();
272}
273
Gabor Juhos0aabf1a2011-01-04 21:28:16 +0100274static void __init ath79_generic_init(void)
275{
276 /* Nothing to do */
277}
278
279MIPS_MACHINE(ATH79_MACH_GENERIC,
280 "Generic",
281 "Generic AR71XX/AR724X/AR913X based board",
282 ath79_generic_init);