summaryrefslogtreecommitdiffstats
path: root/target
diff options
context:
space:
mode:
authorGabor Juhos <juhosg@openwrt.org>2011-06-01 13:12:24 +0000
committerGabor Juhos <juhosg@openwrt.org>2011-06-01 13:12:24 +0000
commit34ff32a6eb76ecd8c02c347a6b7df2f8ee41424b (patch)
tree12e995b5efc85d0853b0d054111cf852eb5074de /target
parent24401759784b8aa4b35f99a9e5fc17225efb8565 (diff)
downloadmaster-31e0f0ae-34ff32a6eb76ecd8c02c347a6b7df2f8ee41424b.tar.gz
master-31e0f0ae-34ff32a6eb76ecd8c02c347a6b7df2f8ee41424b.tar.bz2
master-31e0f0ae-34ff32a6eb76ecd8c02c347a6b7df2f8ee41424b.zip
ar71xx: export SoC revision
SVN-Revision: 27079
Diffstat (limited to 'target')
-rw-r--r--target/linux/ar71xx/files/arch/mips/ar71xx/setup.c5
-rw-r--r--target/linux/ar71xx/files/arch/mips/include/asm/mach-ar71xx/ar71xx.h1
2 files changed, 6 insertions, 0 deletions
diff --git a/target/linux/ar71xx/files/arch/mips/ar71xx/setup.c b/target/linux/ar71xx/files/arch/mips/ar71xx/setup.c
index ba3ef3ea09..e12fdbf54c 100644
--- a/target/linux/ar71xx/files/arch/mips/ar71xx/setup.c
+++ b/target/linux/ar71xx/files/arch/mips/ar71xx/setup.c
@@ -44,6 +44,9 @@ EXPORT_SYMBOL_GPL(ar71xx_ref_freq);
enum ar71xx_soc_type ar71xx_soc;
EXPORT_SYMBOL_GPL(ar71xx_soc);
+u32 ar71xx_soc_rev;
+EXPORT_SYMBOL_GPL(ar71xx_soc_rev);
+
static char ar71xx_sys_type[AR71XX_SYS_TYPE_LEN];
static void ar71xx_restart(char *command)
@@ -171,6 +174,8 @@ static void __init ar71xx_detect_sys_type(void)
panic("ar71xx: unknown chip id:0x%08x\n", id);
}
+ ar71xx_soc_rev = rev;
+
sprintf(ar71xx_sys_type, "Atheros AR%s rev %u", chip, rev);
pr_info("SoC: %s\n", ar71xx_sys_type);
}
diff --git a/target/linux/ar71xx/files/arch/mips/include/asm/mach-ar71xx/ar71xx.h b/target/linux/ar71xx/files/arch/mips/include/asm/mach-ar71xx/ar71xx.h
index 7c99dba665..a001f89dbc 100644
--- a/target/linux/ar71xx/files/arch/mips/include/asm/mach-ar71xx/ar71xx.h
+++ b/target/linux/ar71xx/files/arch/mips/include/asm/mach-ar71xx/ar71xx.h
@@ -138,6 +138,7 @@ enum ar71xx_soc_type {
AR71XX_SOC_AR9342,
AR71XX_SOC_AR9344,
};
+extern u32 ar71xx_soc_rev;
extern enum ar71xx_soc_type ar71xx_soc;