usb: xhci-plat: properly handle probe deferral for devm_clk_get()
[linux/fpc-iii.git] / arch / mips / ath79 / setup.c
blobbe451ee4a5eaf5b8ba6de0d11fc8c76f6d6db7fa
1 /*
2 * Atheros AR71XX/AR724X/AR913X specific setup
4 * Copyright (C) 2010-2011 Jaiganesh Narayanan <jnarayanan@atheros.com>
5 * Copyright (C) 2008-2011 Gabor Juhos <juhosg@openwrt.org>
6 * Copyright (C) 2008 Imre Kaloz <kaloz@openwrt.org>
8 * Parts of this file are based on Atheros' 2.6.15/2.6.31 BSP
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.
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 #include <linux/of_platform.h>
21 #include <linux/of_fdt.h>
23 #include <asm/bootinfo.h>
24 #include <asm/idle.h>
25 #include <asm/time.h> /* for mips_hpt_frequency */
26 #include <asm/reboot.h> /* for _machine_{restart,halt} */
27 #include <asm/mips_machine.h>
28 #include <asm/prom.h>
29 #include <asm/fw/fw.h>
31 #include <asm/mach-ath79/ath79.h>
32 #include <asm/mach-ath79/ar71xx_regs.h>
33 #include "common.h"
34 #include "dev-common.h"
35 #include "machtypes.h"
37 #define ATH79_SYS_TYPE_LEN 64
39 static char ath79_sys_type[ATH79_SYS_TYPE_LEN];
41 static void ath79_restart(char *command)
43 ath79_device_reset_set(AR71XX_RESET_FULL_CHIP);
44 for (;;)
45 if (cpu_wait)
46 cpu_wait();
49 static void ath79_halt(void)
51 while (1)
52 cpu_wait();
55 static void __init ath79_detect_sys_type(void)
57 char *chip = "????";
58 u32 id;
59 u32 major;
60 u32 minor;
61 u32 rev = 0;
63 id = ath79_reset_rr(AR71XX_RESET_REG_REV_ID);
64 major = id & REV_ID_MAJOR_MASK;
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;
77 case AR71XX_REV_ID_MINOR_AR7141:
78 ath79_soc = ATH79_SOC_AR7141;
79 chip = "7141";
80 break;
82 case AR71XX_REV_ID_MINOR_AR7161:
83 ath79_soc = ATH79_SOC_AR7161;
84 chip = "7161";
85 break;
87 break;
89 case REV_ID_MAJOR_AR7240:
90 ath79_soc = ATH79_SOC_AR7240;
91 chip = "7240";
92 rev = id & AR724X_REV_ID_REVISION_MASK;
93 break;
95 case REV_ID_MAJOR_AR7241:
96 ath79_soc = ATH79_SOC_AR7241;
97 chip = "7241";
98 rev = id & AR724X_REV_ID_REVISION_MASK;
99 break;
101 case REV_ID_MAJOR_AR7242:
102 ath79_soc = ATH79_SOC_AR7242;
103 chip = "7242";
104 rev = id & AR724X_REV_ID_REVISION_MASK;
105 break;
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;
117 case AR913X_REV_ID_MINOR_AR9132:
118 ath79_soc = ATH79_SOC_AR9132;
119 chip = "9132";
120 break;
122 break;
124 case REV_ID_MAJOR_AR9330:
125 ath79_soc = ATH79_SOC_AR9330;
126 chip = "9330";
127 rev = id & AR933X_REV_ID_REVISION_MASK;
128 break;
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;
136 case REV_ID_MAJOR_AR9341:
137 ath79_soc = ATH79_SOC_AR9341;
138 chip = "9341";
139 rev = id & AR934X_REV_ID_REVISION_MASK;
140 break;
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;
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;
154 case REV_ID_MAJOR_QCA9556:
155 ath79_soc = ATH79_SOC_QCA9556;
156 chip = "9556";
157 rev = id & QCA955X_REV_ID_REVISION_MASK;
158 break;
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;
166 default:
167 panic("ath79: unknown SoC, id:0x%08x", id);
170 ath79_soc_rev = rev;
172 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);
177 pr_info("SoC: %s\n", ath79_sys_type);
180 const char *get_system_type(void)
182 return ath79_sys_type;
185 int get_c0_perfcount_int(void)
187 return ATH79_MISC_IRQ(5);
189 EXPORT_SYMBOL_GPL(get_c0_perfcount_int);
191 unsigned int get_c0_compare_int(void)
193 return CP0_LEGACY_COMPARE_IRQ;
196 void __init plat_mem_setup(void)
198 unsigned long fdt_start;
200 set_io_port_base(KSEG1);
202 /* Get the position of the FDT passed by the bootloader */
203 fdt_start = fw_getenvl("fdt_start");
204 if (fdt_start)
205 __dt_setup_arch((void *)KSEG0ADDR(fdt_start));
206 #ifdef CONFIG_BUILTIN_DTB
207 else
208 __dt_setup_arch(__dtb_start);
209 #endif
211 ath79_reset_base = ioremap_nocache(AR71XX_RESET_BASE,
212 AR71XX_RESET_SIZE);
213 ath79_pll_base = ioremap_nocache(AR71XX_PLL_BASE,
214 AR71XX_PLL_SIZE);
215 ath79_detect_sys_type();
216 ath79_ddr_ctrl_init();
218 if (mips_machtype != ATH79_MACH_GENERIC_OF)
219 detect_memory_region(0, ATH79_MEM_SIZE_MIN, ATH79_MEM_SIZE_MAX);
221 _machine_restart = ath79_restart;
222 _machine_halt = ath79_halt;
223 pm_power_off = ath79_halt;
226 void __init plat_time_init(void)
228 unsigned long cpu_clk_rate;
229 unsigned long ahb_clk_rate;
230 unsigned long ddr_clk_rate;
231 unsigned long ref_clk_rate;
233 ath79_clocks_init();
235 cpu_clk_rate = ath79_get_sys_clk_rate("cpu");
236 ahb_clk_rate = ath79_get_sys_clk_rate("ahb");
237 ddr_clk_rate = ath79_get_sys_clk_rate("ddr");
238 ref_clk_rate = ath79_get_sys_clk_rate("ref");
240 pr_info("Clocks: CPU:%lu.%03luMHz, DDR:%lu.%03luMHz, AHB:%lu.%03luMHz, Ref:%lu.%03luMHz\n",
241 cpu_clk_rate / 1000000, (cpu_clk_rate / 1000) % 1000,
242 ddr_clk_rate / 1000000, (ddr_clk_rate / 1000) % 1000,
243 ahb_clk_rate / 1000000, (ahb_clk_rate / 1000) % 1000,
244 ref_clk_rate / 1000000, (ref_clk_rate / 1000) % 1000);
246 mips_hpt_frequency = cpu_clk_rate / 2;
249 static int __init ath79_setup(void)
251 of_platform_populate(NULL, of_default_bus_match_table, NULL, NULL);
252 if (mips_machtype == ATH79_MACH_GENERIC_OF)
253 return 0;
255 ath79_gpio_init();
256 ath79_register_uart();
257 ath79_register_wdt();
259 mips_machine_setup();
261 return 0;
264 arch_initcall(ath79_setup);
266 void __init device_tree_init(void)
268 unflatten_and_copy_device_tree();
271 MIPS_MACHINE(ATH79_MACH_GENERIC,
272 "Generic",
273 "Generic AR71XX/AR724X/AR913X based board",
274 NULL);
276 MIPS_MACHINE(ATH79_MACH_GENERIC_OF,
277 "DTB",
278 "Generic AR71XX/AR724X/AR913X based board (DT)",
279 NULL);