diff options
author | Tom Rini <trini@konsulko.com> | 2021-04-23 07:31:21 -0400 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2021-04-23 07:31:21 -0400 |
commit | e8b8c2085c3eabf6b5e8764dceda02cfc2d08b2f (patch) | |
tree | a2d2bcbe75d7c0a79bceba0363126f90c06e243f /arch/mips/mach-mtmips/mt7628/init.c | |
parent | 275a4490fd2f30df76f2aa07efa0f595fef4d46f (diff) | |
parent | 91ce06ad340ef12fc3fd0ee3a5d040cc0bba731e (diff) |
Merge tag 'mips-pull-2021-04-22' of https://source.denx.de/u-boot/custodians/u-boot-mips
- net: fix traffic problems in MSCC Jaguar 2 network driver
- MIPS: mt7628: fix DDR memory init
- MIPS: octeon: add MMC and USB support
Diffstat (limited to 'arch/mips/mach-mtmips/mt7628/init.c')
-rw-r--r-- | arch/mips/mach-mtmips/mt7628/init.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/arch/mips/mach-mtmips/mt7628/init.c b/arch/mips/mach-mtmips/mt7628/init.c index 7c531ff6867..6b535129df1 100644 --- a/arch/mips/mach-mtmips/mt7628/init.c +++ b/arch/mips/mach-mtmips/mt7628/init.c @@ -68,6 +68,9 @@ int print_cpuinfo(void) val = readl(sysc + SYSCTL_EFUSE_CFG_REG); ee = val & EFUSE_MT7688; + if (pkg == PKG_ID_KN) + ddr = DRAM_DDR1; + printf("CPU: MediaTek MT%u%c ver:%u eco:%u\n", ee ? 7688 : 7628, pkg ? 'A' : 'K', ver, eco); |