aboutsummaryrefslogtreecommitdiffstats
path: root/target/linux/ar71xx/files/arch/mips/ar71xx
diff options
context:
space:
mode:
authorGabor Juhos <juhosg@openwrt.org>2011-04-07 20:52:45 +0000
committerGabor Juhos <juhosg@openwrt.org>2011-04-07 20:52:45 +0000
commit68f6f6c0335109c87f1886b226d1521f2cd679c6 (patch)
tree48ea6b5e59ff76976cb7644399f411bad188ea68 /target/linux/ar71xx/files/arch/mips/ar71xx
parent6fa55a246f1dd2255a3adb1ad6e43f918f1318e3 (diff)
downloadupstream-68f6f6c0335109c87f1886b226d1521f2cd679c6.tar.gz
upstream-68f6f6c0335109c87f1886b226d1521f2cd679c6.tar.bz2
upstream-68f6f6c0335109c87f1886b226d1521f2cd679c6.zip
ar71xx: add initial support for the AR934x SoCs
Signed-off-by: Jaiganesh Narayanan <jnarayanan@atheros.com> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@26509 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/linux/ar71xx/files/arch/mips/ar71xx')
-rw-r--r--target/linux/ar71xx/files/arch/mips/ar71xx/setup.c71
1 files changed, 70 insertions, 1 deletions
diff --git a/target/linux/ar71xx/files/arch/mips/ar71xx/setup.c b/target/linux/ar71xx/files/arch/mips/ar71xx/setup.c
index 658fdd023e..37ce27dece 100644
--- a/target/linux/ar71xx/files/arch/mips/ar71xx/setup.c
+++ b/target/linux/ar71xx/files/arch/mips/ar71xx/setup.c
@@ -1,10 +1,12 @@
/*
* Atheros AR71xx SoC specific setup
*
+ * Copyright (C) 2010-2011 Jaiganesh Narayanan <jnarayanan@atheros.com>
* Copyright (C) 2008-2009 Gabor Juhos <juhosg@openwrt.org>
* Copyright (C) 2008 Imre Kaloz <kaloz@openwrt.org>
*
- * Parts of this file are based on Atheros' 2.6.15 BSP
+ * Parts of this file are based on Atheros 2.6.15 BSP
+ * Parts of this file are based on Atheros 2.6.31 BSP
*
* This program is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 2 as published
@@ -39,6 +41,9 @@ EXPORT_SYMBOL_GPL(ar71xx_ahb_freq);
u32 ar71xx_ddr_freq;
EXPORT_SYMBOL_GPL(ar71xx_ddr_freq);
+u32 ar934x_ref_freq;
+EXPORT_SYMBOL_GPL(ar934x_ref_freq);
+
enum ar71xx_soc_type ar71xx_soc;
EXPORT_SYMBOL_GPL(ar71xx_soc);
@@ -141,6 +146,27 @@ static void __init ar71xx_detect_sys_type(void)
}
break;
+ case REV_ID_MAJOR_AR9341:
+ ar71xx_soc = AR71XX_SOC_AR9341;
+ chip = "9341";
+ rev = ar71xx_reset_rr(AR71XX_RESET_REG_REV_ID) &
+ AR934X_REV_ID_REVISION_MASK;
+ break;
+
+ case REV_ID_MAJOR_AR9342:
+ ar71xx_soc = AR71XX_SOC_AR9342;
+ chip = "9342";
+ rev = ar71xx_reset_rr(AR71XX_RESET_REG_REV_ID) &
+ AR934X_REV_ID_REVISION_MASK;
+ break;
+
+ case REV_ID_MAJOR_AR9344:
+ ar71xx_soc = AR71XX_SOC_AR9344;
+ chip = "9344";
+ rev = ar71xx_reset_rr(AR71XX_RESET_REG_REV_ID) &
+ AR934X_REV_ID_REVISION_MASK;
+ break;
+
default:
panic("ar71xx: unknown chip id:0x%08x\n", id);
}
@@ -148,6 +174,44 @@ static void __init ar71xx_detect_sys_type(void)
sprintf(ar71xx_sys_type, "Atheros AR%s rev %u", chip, rev);
}
+static void __init ar934x_detect_sys_frequency(void)
+{
+ u32 pll, out_div, ref_div, nint, frac, clk_ctrl, ref, postdiv;
+
+ if (ar71xx_reset_rr(AR934X_RESET_REG_BOOTSTRAP) & AR934X_REF_CLK_40)
+ ref = (40 * 1000000);
+ else
+ ref = (25 * 1000000);
+
+ ar934x_ref_freq = ref;
+
+ clk_ctrl = ar71xx_pll_rr(AR934X_PLL_REG_DDR_CTRL_CLOCK);
+
+ pll = ar71xx_pll_rr(AR934X_PLL_REG_CPU_CONFIG);
+ out_div = AR934X_CPU_PLL_CFG_OUTDIV_GET(pll);
+ ref_div = AR934X_CPU_PLL_CFG_REFDIV_GET(pll);
+ nint = AR934X_CPU_PLL_CFG_NINT_GET(pll);
+ frac = AR934X_CPU_PLL_CFG_NFRAC_GET(pll);
+ postdiv = AR934X_CPU_DDR_CLK_CTRL_CPU_POST_DIV_GET(clk_ctrl);
+ ar71xx_cpu_freq = ((nint * ref / ref_div) >> out_div) / (postdiv + 1);
+
+ out_div = AR934X_DDR_PLL_CFG_OUTDIV_GET(pll);
+ ref_div = AR934X_DDR_PLL_CFG_REFDIV_GET(pll);
+ nint = AR934X_DDR_PLL_CFG_NINT_GET(pll);
+ frac = AR934X_DDR_PLL_CFG_NFRAC_GET(pll);
+ postdiv = AR934X_CPU_DDR_CLK_CTRL_DDR_POST_DIV_GET(clk_ctrl);
+ ar71xx_ddr_freq = ((nint * ref / ref_div) >> out_div) / (postdiv + 1);
+
+ postdiv = AR934X_CPU_DDR_CLK_CTRL_AHB_POST_DIV_GET(clk_ctrl);
+
+ if (AR934X_CPU_DDR_CLK_CTRL_AHBCLK_FROM_DDRPLL_GET(clk_ctrl)) {
+ ar71xx_ahb_freq = ar71xx_ddr_freq / (postdiv + 1);
+ } else {
+ ar71xx_ahb_freq = ar71xx_cpu_freq / (postdiv + 1);
+ }
+
+}
+
static void __init ar91xx_detect_sys_frequency(void)
{
u32 pll;
@@ -232,6 +296,11 @@ static void __init detect_sys_frequency(void)
ar91xx_detect_sys_frequency();
break;
+ case AR71XX_SOC_AR9341:
+ case AR71XX_SOC_AR9342:
+ case AR71XX_SOC_AR9344:
+ ar934x_detect_sys_frequency();
+ break;
default:
BUG();
}