blob: 64807a4809d0a4b6f367ad52f15fe2fcbfc6a843 [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>
20
21#include <asm/bootinfo.h>
Ralf Baechlebdc92d742013-05-21 16:59:19 +020022#include <asm/idle.h>
Gabor Juhosd4a67d92011-01-04 21:28:14 +010023#include <asm/time.h> /* for mips_hpt_frequency */
24#include <asm/reboot.h> /* for _machine_{restart,halt} */
Gabor Juhos0aabf1a2011-01-04 21:28:16 +010025#include <asm/mips_machine.h>
Gabor Juhosd4a67d92011-01-04 21:28:14 +010026
27#include <asm/mach-ath79/ath79.h>
28#include <asm/mach-ath79/ar71xx_regs.h>
29#include "common.h"
30#include "dev-common.h"
Gabor Juhos0aabf1a2011-01-04 21:28:16 +010031#include "machtypes.h"
Gabor Juhosd4a67d92011-01-04 21:28:14 +010032
33#define ATH79_SYS_TYPE_LEN 64
34
35#define AR71XX_BASE_FREQ 40000000
36#define AR724X_BASE_FREQ 5000000
37#define AR913X_BASE_FREQ 5000000
38
39static char ath79_sys_type[ATH79_SYS_TYPE_LEN];
40
41static void ath79_restart(char *command)
42{
43 ath79_device_reset_set(AR71XX_RESET_FULL_CHIP);
44 for (;;)
45 if (cpu_wait)
46 cpu_wait();
47}
48
49static void ath79_halt(void)
50{
51 while (1)
52 cpu_wait();
53}
54
Gabor Juhosd4a67d92011-01-04 21:28:14 +010055static void __init ath79_detect_sys_type(void)
56{
57 char *chip = "????";
58 u32 id;
59 u32 major;
60 u32 minor;
61 u32 rev = 0;
62
63 id = ath79_reset_rr(AR71XX_RESET_REG_REV_ID);
64 major = id & REV_ID_MAJOR_MASK;
65
66 switch (major) {
67 case REV_ID_MAJOR_AR71XX:
68 minor = id & AR71XX_REV_ID_MINOR_MASK;
69 rev = id >> AR71XX_REV_ID_REVISION_SHIFT;
70 rev &= AR71XX_REV_ID_REVISION_MASK;
71 switch (minor) {
72 case AR71XX_REV_ID_MINOR_AR7130:
73 ath79_soc = ATH79_SOC_AR7130;
74 chip = "7130";
75 break;
76
77 case AR71XX_REV_ID_MINOR_AR7141:
78 ath79_soc = ATH79_SOC_AR7141;
79 chip = "7141";
80 break;
81
82 case AR71XX_REV_ID_MINOR_AR7161:
83 ath79_soc = ATH79_SOC_AR7161;
84 chip = "7161";
85 break;
86 }
87 break;
88
89 case REV_ID_MAJOR_AR7240:
90 ath79_soc = ATH79_SOC_AR7240;
91 chip = "7240";
Gabor Juhos8bed12882011-06-20 21:26:01 +020092 rev = id & AR724X_REV_ID_REVISION_MASK;
Gabor Juhosd4a67d92011-01-04 21:28:14 +010093 break;
94
95 case REV_ID_MAJOR_AR7241:
96 ath79_soc = ATH79_SOC_AR7241;
97 chip = "7241";
Gabor Juhos8bed12882011-06-20 21:26:01 +020098 rev = id & AR724X_REV_ID_REVISION_MASK;
Gabor Juhosd4a67d92011-01-04 21:28:14 +010099 break;
100
101 case REV_ID_MAJOR_AR7242:
102 ath79_soc = ATH79_SOC_AR7242;
103 chip = "7242";
Gabor Juhos8bed12882011-06-20 21:26:01 +0200104 rev = id & AR724X_REV_ID_REVISION_MASK;
Gabor Juhosd4a67d92011-01-04 21:28:14 +0100105 break;
106
107 case REV_ID_MAJOR_AR913X:
108 minor = id & AR913X_REV_ID_MINOR_MASK;
109 rev = id >> AR913X_REV_ID_REVISION_SHIFT;
110 rev &= AR913X_REV_ID_REVISION_MASK;
111 switch (minor) {
112 case AR913X_REV_ID_MINOR_AR9130:
113 ath79_soc = ATH79_SOC_AR9130;
114 chip = "9130";
115 break;
116
117 case AR913X_REV_ID_MINOR_AR9132:
118 ath79_soc = ATH79_SOC_AR9132;
119 chip = "9132";
120 break;
121 }
122 break;
123
Gabor Juhos80a7ed82012-03-14 10:45:20 +0100124 case REV_ID_MAJOR_AR9330:
125 ath79_soc = ATH79_SOC_AR9330;
126 chip = "9330";
127 rev = id & AR933X_REV_ID_REVISION_MASK;
128 break;
129
130 case REV_ID_MAJOR_AR9331:
131 ath79_soc = ATH79_SOC_AR9331;
132 chip = "9331";
133 rev = id & AR933X_REV_ID_REVISION_MASK;
134 break;
135
Gabor Juhosd8411462012-03-14 10:45:21 +0100136 case REV_ID_MAJOR_AR9341:
137 ath79_soc = ATH79_SOC_AR9341;
138 chip = "9341";
139 rev = id & AR934X_REV_ID_REVISION_MASK;
140 break;
141
142 case REV_ID_MAJOR_AR9342:
143 ath79_soc = ATH79_SOC_AR9342;
144 chip = "9342";
145 rev = id & AR934X_REV_ID_REVISION_MASK;
146 break;
147
148 case REV_ID_MAJOR_AR9344:
149 ath79_soc = ATH79_SOC_AR9344;
150 chip = "9344";
151 rev = id & AR934X_REV_ID_REVISION_MASK;
152 break;
153
Gabor Juhos2e6c91e2013-02-15 13:38:16 +0000154 case REV_ID_MAJOR_QCA9556:
155 ath79_soc = ATH79_SOC_QCA9556;
156 chip = "9556";
157 rev = id & QCA955X_REV_ID_REVISION_MASK;
158 break;
159
160 case REV_ID_MAJOR_QCA9558:
161 ath79_soc = ATH79_SOC_QCA9558;
162 chip = "9558";
163 rev = id & QCA955X_REV_ID_REVISION_MASK;
164 break;
165
Gabor Juhosd4a67d92011-01-04 21:28:14 +0100166 default:
Ralf Baechleab75dc02011-11-17 15:07:31 +0000167 panic("ath79: unknown SoC, id:0x%08x", id);
Gabor Juhosd4a67d92011-01-04 21:28:14 +0100168 }
169
Gabor Juhosbe5f3622011-11-18 00:17:46 +0000170 ath79_soc_rev = rev;
171
Gabor Juhos2e6c91e2013-02-15 13:38:16 +0000172 if (soc_is_qca955x())
173 sprintf(ath79_sys_type, "Qualcomm Atheros QCA%s rev %u",
174 chip, rev);
175 else
176 sprintf(ath79_sys_type, "Atheros AR%s rev %u", chip, rev);
Gabor Juhosd4a67d92011-01-04 21:28:14 +0100177 pr_info("SoC: %s\n", ath79_sys_type);
178}
179
180const char *get_system_type(void)
181{
182 return ath79_sys_type;
183}
184
Paul Gortmaker078a55f2013-06-18 13:38:59 +0000185unsigned int get_c0_compare_int(void)
Gabor Juhosd4a67d92011-01-04 21:28:14 +0100186{
187 return CP0_LEGACY_COMPARE_IRQ;
188}
189
190void __init plat_mem_setup(void)
191{
192 set_io_port_base(KSEG1);
193
194 ath79_reset_base = ioremap_nocache(AR71XX_RESET_BASE,
195 AR71XX_RESET_SIZE);
196 ath79_pll_base = ioremap_nocache(AR71XX_PLL_BASE,
197 AR71XX_PLL_SIZE);
Gabor Juhosd4a67d92011-01-04 21:28:14 +0100198 ath79_ddr_base = ioremap_nocache(AR71XX_DDR_CTRL_BASE,
199 AR71XX_DDR_CTRL_SIZE);
200
201 ath79_detect_sys_type();
John Crispin9b757332013-04-15 09:45:09 +0000202 detect_memory_region(0, ATH79_MEM_SIZE_MIN, ATH79_MEM_SIZE_MAX);
Gabor Juhosd4a67d92011-01-04 21:28:14 +0100203
204 _machine_restart = ath79_restart;
205 _machine_halt = ath79_halt;
206 pm_power_off = ath79_halt;
207}
208
209void __init plat_time_init(void)
210{
Gabor Juhos23107802013-08-28 10:41:44 +0200211 unsigned long cpu_clk_rate;
Gabor Juhos59a8c102013-08-28 10:41:45 +0200212 unsigned long ahb_clk_rate;
213 unsigned long ddr_clk_rate;
214 unsigned long ref_clk_rate;
Gabor Juhosd4a67d92011-01-04 21:28:14 +0100215
Gabor Juhos2c4f1ac2013-08-28 10:41:47 +0200216 ath79_clocks_init();
217
Gabor Juhos23107802013-08-28 10:41:44 +0200218 cpu_clk_rate = ath79_get_sys_clk_rate("cpu");
Gabor Juhos59a8c102013-08-28 10:41:45 +0200219 ahb_clk_rate = ath79_get_sys_clk_rate("ahb");
220 ddr_clk_rate = ath79_get_sys_clk_rate("ddr");
221 ref_clk_rate = ath79_get_sys_clk_rate("ref");
222
223 pr_info("Clocks: CPU:%lu.%03luMHz, DDR:%lu.%03luMHz, AHB:%lu.%03luMHz, Ref:%lu.%03luMHz",
224 cpu_clk_rate / 1000000, (cpu_clk_rate / 1000) % 1000,
225 ddr_clk_rate / 1000000, (ddr_clk_rate / 1000) % 1000,
226 ahb_clk_rate / 1000000, (ahb_clk_rate / 1000) % 1000,
227 ref_clk_rate / 1000000, (ref_clk_rate / 1000) % 1000);
Gabor Juhosd4a67d92011-01-04 21:28:14 +0100228
Gabor Juhos23107802013-08-28 10:41:44 +0200229 mips_hpt_frequency = cpu_clk_rate / 2;
Gabor Juhosd4a67d92011-01-04 21:28:14 +0100230}
231
232static int __init ath79_setup(void)
233{
Gabor Juhos6eae43c2011-01-04 21:28:15 +0100234 ath79_gpio_init();
Gabor Juhosd4a67d92011-01-04 21:28:14 +0100235 ath79_register_uart();
Gabor Juhos858f7632011-01-04 21:28:20 +0100236 ath79_register_wdt();
Gabor Juhos0aabf1a2011-01-04 21:28:16 +0100237
238 mips_machine_setup();
239
Gabor Juhosd4a67d92011-01-04 21:28:14 +0100240 return 0;
241}
242
243arch_initcall(ath79_setup);
Gabor Juhos0aabf1a2011-01-04 21:28:16 +0100244
245static void __init ath79_generic_init(void)
246{
247 /* Nothing to do */
248}
249
250MIPS_MACHINE(ATH79_MACH_GENERIC,
251 "Generic",
252 "Generic AR71XX/AR724X/AR913X based board",
253 ath79_generic_init);