diff options
| author | Tom Rini <trini@konsulko.com> | 2019-01-23 17:24:31 -0500 |
|---|---|---|
| committer | Tom Rini <trini@konsulko.com> | 2019-01-23 17:24:31 -0500 |
| commit | aff66f22d6eeb27c6329c0a3c1ebc52914c8affa (patch) | |
| tree | 1c98306ac2c12c2654bf37e65f19de77faaab28f /include | |
| parent | 7794fe2c8c1303d303dbc515955c6c5be706da88 (diff) | |
| parent | a834cb817fb1a11607ea8e6394235843be079fdd (diff) | |
| download | u-boot-aff66f22d6eeb27c6329c0a3c1ebc52914c8affa.tar.gz u-boot-aff66f22d6eeb27c6329c0a3c1ebc52914c8affa.tar.xz u-boot-aff66f22d6eeb27c6329c0a3c1ebc52914c8affa.zip | |
Merge tag 'mips-pull-2019-01-23' of git://git.denx.de/u-boot-mips
- MIPS: mscc: ocelot: add ethernet switch and network support
- MIPS: mscc: add support for ServalT SoC family
- MIPS: mscc: add support for Serval SoC family
Diffstat (limited to 'include')
| -rw-r--r-- | include/configs/vcoreiii.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/include/configs/vcoreiii.h b/include/configs/vcoreiii.h index 4ea5f40ec5..8c30c6f09a 100644 --- a/include/configs/vcoreiii.h +++ b/include/configs/vcoreiii.h @@ -14,10 +14,11 @@ #define CONFIG_SYS_LOAD_ADDR 0x00100000 #define CONFIG_SYS_INIT_SP_OFFSET 0x400000 -#define CPU_CLOCK_RATE 500000000 /* Clock for the MIPS core */ -#ifdef CONFIG_SOC_LUTON +#if defined(CONFIG_SOC_LUTON) || defined(CONFIG_SOC_SERVAL) +#define CPU_CLOCK_RATE 416666666 /* Clock for the MIPS core */ #define CONFIG_SYS_MIPS_TIMER_FREQ 208333333 #else +#define CPU_CLOCK_RATE 500000000 /* Clock for the MIPS core */ #define CONFIG_SYS_MIPS_TIMER_FREQ (CPU_CLOCK_RATE / 2) #endif #define CONFIG_SYS_NS16550_CLK CONFIG_SYS_MIPS_TIMER_FREQ |
