Commit 727ea3c7 authored by Sergio Paracuellos's avatar Sergio Paracuellos Committed by Thomas Bogendoerfer

mips: ralink: mt7620: soc queries and tests as functions

Move the SoC register value queries and tests to specific functions,
to remove repetition of logic. No functional changes intended
Signed-off-by: default avatarSergio Paracuellos <sergio.paracuellos@gmail.com>
Signed-off-by: default avatarThomas Bogendoerfer <tsbogend@alpha.franken.de>
parent 217cf927
...@@ -324,34 +324,76 @@ mt7628_dram_init(struct ralink_soc_info *soc_info) ...@@ -324,34 +324,76 @@ mt7628_dram_init(struct ralink_soc_info *soc_info)
} }
} }
void __init prom_soc_init(struct ralink_soc_info *soc_info) static unsigned int __init mt7620_get_soc_name0(void)
{ {
unsigned char *name = NULL; return __raw_readl(MT7620_SYSC_BASE + SYSC_REG_CHIP_NAME0);
u32 n0; }
u32 n1;
u32 rev;
u32 cfg0;
u32 pmu0;
u32 pmu1;
u32 bga;
n0 = __raw_readl(MT7620_SYSC_BASE + SYSC_REG_CHIP_NAME0); static unsigned int __init mt7620_get_soc_name1(void)
n1 = __raw_readl(MT7620_SYSC_BASE + SYSC_REG_CHIP_NAME1); {
rev = __raw_readl(MT7620_SYSC_BASE + SYSC_REG_CHIP_REV); return __raw_readl(MT7620_SYSC_BASE + SYSC_REG_CHIP_NAME1);
bga = (rev >> CHIP_REV_PKG_SHIFT) & CHIP_REV_PKG_MASK; }
static bool __init mt7620_soc_valid(void)
{
if (mt7620_get_soc_name0() == MT7620_CHIP_NAME0 &&
mt7620_get_soc_name1() == MT7620_CHIP_NAME1)
return true;
else
return false;
}
static bool __init mt7628_soc_valid(void)
{
if (mt7620_get_soc_name0() == MT7620_CHIP_NAME0 &&
mt7620_get_soc_name1() == MT7628_CHIP_NAME1)
return true;
else
return false;
}
static unsigned int __init mt7620_get_rev(void)
{
return __raw_readl(MT7620_SYSC_BASE + SYSC_REG_CHIP_REV);
}
static unsigned int __init mt7620_get_bga(void)
{
return (mt7620_get_rev() >> CHIP_REV_PKG_SHIFT) & CHIP_REV_PKG_MASK;
}
static unsigned int __init mt7620_get_efuse(void)
{
return __raw_readl(MT7620_SYSC_BASE + SYSC_REG_EFUSE_CFG);
}
static unsigned int __init mt7620_get_soc_ver(void)
{
return (mt7620_get_rev() >> CHIP_REV_VER_SHIFT) & CHIP_REV_VER_MASK;
}
static unsigned int __init mt7620_get_soc_eco(void)
{
return (mt7620_get_rev() & CHIP_REV_ECO_MASK);
}
static const char __init *mt7620_get_soc_name(struct ralink_soc_info *soc_info)
{
if (mt7620_soc_valid()) {
u32 bga = mt7620_get_bga();
if (n0 == MT7620_CHIP_NAME0 && n1 == MT7620_CHIP_NAME1) {
if (bga) { if (bga) {
ralink_soc = MT762X_SOC_MT7620A; ralink_soc = MT762X_SOC_MT7620A;
name = "MT7620A";
soc_info->compatible = "ralink,mt7620a-soc"; soc_info->compatible = "ralink,mt7620a-soc";
return "MT7620A";
} else { } else {
ralink_soc = MT762X_SOC_MT7620N; ralink_soc = MT762X_SOC_MT7620N;
name = "MT7620N";
soc_info->compatible = "ralink,mt7620n-soc"; soc_info->compatible = "ralink,mt7620n-soc";
return "MT7620N";
} }
} else if (n0 == MT7620_CHIP_NAME0 && n1 == MT7628_CHIP_NAME1) { } else if (mt7628_soc_valid()) {
u32 efuse = __raw_readl(MT7620_SYSC_BASE + SYSC_REG_EFUSE_CFG); u32 efuse = mt7620_get_efuse();
unsigned char *name = NULL;
if (efuse & EFUSE_MT7688) { if (efuse & EFUSE_MT7688) {
ralink_soc = MT762X_SOC_MT7688; ralink_soc = MT762X_SOC_MT7688;
...@@ -361,15 +403,23 @@ void __init prom_soc_init(struct ralink_soc_info *soc_info) ...@@ -361,15 +403,23 @@ void __init prom_soc_init(struct ralink_soc_info *soc_info)
name = "MT7628AN"; name = "MT7628AN";
} }
soc_info->compatible = "ralink,mt7628an-soc"; soc_info->compatible = "ralink,mt7628an-soc";
return name;
} else { } else {
panic("mt762x: unknown SoC, n0:%08x n1:%08x\n", n0, n1); panic("mt762x: unknown SoC, n0:%08x n1:%08x\n",
mt7620_get_soc_name0(), mt7620_get_soc_name1());
} }
}
void __init prom_soc_init(struct ralink_soc_info *soc_info)
{
const char *name = mt7620_get_soc_name(soc_info);
u32 cfg0;
u32 pmu0;
u32 pmu1;
snprintf(soc_info->sys_type, RAMIPS_SYS_TYPE_LEN, snprintf(soc_info->sys_type, RAMIPS_SYS_TYPE_LEN,
"MediaTek %s ver:%u eco:%u", "MediaTek %s ver:%u eco:%u",
name, name, mt7620_get_soc_ver(), mt7620_get_soc_eco());
(rev >> CHIP_REV_VER_SHIFT) & CHIP_REV_VER_MASK,
(rev & CHIP_REV_ECO_MASK));
cfg0 = __raw_readl(MT7620_SYSC_BASE + SYSC_REG_SYSTEM_CONFIG0); cfg0 = __raw_readl(MT7620_SYSC_BASE + SYSC_REG_SYSTEM_CONFIG0);
if (is_mt76x8()) { if (is_mt76x8()) {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment