2 * Atheros AR71XX/AR724X/AR913X specific setup
7 * Parts of this file are based on Atheros' 2.6.15 BSP
9 * This program is free software; you can redistribute it and/or modify it
10 * under the terms of the GNU General Public License version 2 as published
11 * by the Free Software Foundation.
14 #include <linux/kernel.h>
15 #include <linux/init.h>
16 #include <linux/bootmem.h>
17 #include <linux/err.h>
18 #include <linux/clk.h>
20 #include <asm/bootinfo.h>
21 #include <asm/time.h> /* for mips_hpt_frequency */
22 #include <asm/reboot.h> /* for _machine_{restart,halt} */
23 #include <asm/mips_machine.h>
25 #include <asm/mach-ath79/ath79.h>
26 #include <asm/mach-ath79/ar71xx_regs.h>
28 #include "dev-common.h"
29 #include "machtypes.h"
31 #define ATH79_SYS_TYPE_LEN 64
33 #define AR71XX_BASE_FREQ 40000000
34 #define AR724X_BASE_FREQ 5000000
35 #define AR913X_BASE_FREQ 5000000
37 static char ath79_sys_type[ATH79_SYS_TYPE_LEN];
39 static void ath79_restart(char *command)
41 ath79_device_reset_set(AR71XX_RESET_FULL_CHIP);
47 static void ath79_halt(void)
53 static void __init ath79_detect_mem_size(void)
57 for (size = ATH79_MEM_SIZE_MIN; size < ATH79_MEM_SIZE_MAX;
59 if (!memcmp(ath79_detect_mem_size,
60 ath79_detect_mem_size + size, 1024))
64 add_memory_region(0, size, BOOT_MEM_RAM);
67 static void __init ath79_detect_sys_type(void)
75 id = ath79_reset_rr(AR71XX_RESET_REG_REV_ID);
76 major = id & REV_ID_MAJOR_MASK;
79 case REV_ID_MAJOR_AR71XX:
80 minor = id & AR71XX_REV_ID_MINOR_MASK;
81 rev = id >> AR71XX_REV_ID_REVISION_SHIFT;
82 rev &= AR71XX_REV_ID_REVISION_MASK;
84 case AR71XX_REV_ID_MINOR_AR7130:
85 ath79_soc = ATH79_SOC_AR7130;
89 case AR71XX_REV_ID_MINOR_AR7141:
90 ath79_soc = ATH79_SOC_AR7141;
94 case AR71XX_REV_ID_MINOR_AR7161:
95 ath79_soc = ATH79_SOC_AR7161;
101 case REV_ID_MAJOR_AR7240:
102 ath79_soc = ATH79_SOC_AR7240;
104 rev = (id & AR724X_REV_ID_REVISION_MASK);
107 case REV_ID_MAJOR_AR7241:
108 ath79_soc = ATH79_SOC_AR7241;
110 rev = (id & AR724X_REV_ID_REVISION_MASK);
113 case REV_ID_MAJOR_AR7242:
114 ath79_soc = ATH79_SOC_AR7242;
116 rev = (id & AR724X_REV_ID_REVISION_MASK);
119 case REV_ID_MAJOR_AR913X:
120 minor = id & AR913X_REV_ID_MINOR_MASK;
121 rev = id >> AR913X_REV_ID_REVISION_SHIFT;
122 rev &= AR913X_REV_ID_REVISION_MASK;
124 case AR913X_REV_ID_MINOR_AR9130:
125 ath79_soc = ATH79_SOC_AR9130;
129 case AR913X_REV_ID_MINOR_AR9132:
130 ath79_soc = ATH79_SOC_AR9132;
137 panic("ath79: unknown SoC, id:0x%08x\n", id);
140 sprintf(ath79_sys_type, "Atheros AR%s rev %u", chip, rev);
141 pr_info("SoC: %s\n", ath79_sys_type);
144 const char *get_system_type(void)
146 return ath79_sys_type;
149 unsigned int __cpuinit get_c0_compare_int(void)
151 return CP0_LEGACY_COMPARE_IRQ;
154 void __init plat_mem_setup(void)
156 set_io_port_base(KSEG1);
158 ath79_reset_base = ioremap_nocache(AR71XX_RESET_BASE,
160 ath79_pll_base = ioremap_nocache(AR71XX_PLL_BASE,
162 ath79_ddr_base = ioremap_nocache(AR71XX_DDR_CTRL_BASE,
163 AR71XX_DDR_CTRL_SIZE);
165 ath79_detect_sys_type();
166 ath79_detect_mem_size();
169 _machine_restart = ath79_restart;
170 _machine_halt = ath79_halt;
171 pm_power_off = ath79_halt;
174 void __init plat_time_init(void)
178 clk = clk_get(NULL, "cpu");
180 panic("unable to get CPU clock, err=%ld", PTR_ERR(clk));
182 mips_hpt_frequency = clk_get_rate(clk) / 2;
185 static int __init ath79_setup(void)
188 ath79_register_uart();
189 ath79_register_wdt();
191 mips_machine_setup();
196 arch_initcall(ath79_setup);
198 static void __init ath79_generic_init(void)
203 MIPS_MACHINE(ATH79_MACH_GENERIC,
205 "Generic AR71XX/AR724X/AR913X based board",