diff options
author | Bin Meng | 2015-12-08 17:31:39 -0800 |
---|---|---|
committer | Bin Meng | 2015-12-09 17:44:44 +0800 |
commit | 4932443d260d23c882e48eefcc66a83dfca7ee5a (patch) | |
tree | 35326f67305f69e945eff5b9bd16ba41cd2b149d /arch | |
parent | c5c5c201fe37a02e9edf99b0a2ba9353d9d55ddf (diff) |
x86: Move i8254_init() to x86_cpu_init_f()
Right now i8254_init() is called from timer_init() in the tsc timer
driver. But actually i8254 and tsc are completely different things.
Since tsc timer has been converted to driver model, we should find
a new place that is appropriate for U-Boot to call i8254_init(),
which is now x86_cpu_init_f().
Signed-off-by: Bin Meng <bmeng.cn@gmail.com>
Acked-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/x86/cpu/cpu.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/arch/x86/cpu/cpu.c b/arch/x86/cpu/cpu.c index 17079934098..381d83526fb 100644 --- a/arch/x86/cpu/cpu.c +++ b/arch/x86/cpu/cpu.c @@ -399,6 +399,11 @@ int x86_cpu_init_f(void) } } +#ifdef CONFIG_I8254_TIMER + /* Set up the i8254 timer if required */ + i8254_init(); +#endif + return 0; } |