mirror of
https://github.com/u-boot/u-boot.git
synced 2025-05-09 03:21:51 +00:00
x86: Use a common bus clock for Intel CPUs
Modern Intel CPUs use a standard bus clock value of 100MHz, so put this in a common file and tidy up the copies. Signed-off-by: Simon Glass <sjg@chromium.org> Reviewed-by: Bin Meng <bmeng.cn@gmail.com>
This commit is contained in:
parent
246ac08b03
commit
55a6b13a75
7 changed files with 10 additions and 14 deletions
|
@ -6,6 +6,11 @@
|
|||
#ifndef __ASM_CPU_COMMON_H
|
||||
#define __ASM_CPU_COMMON_H
|
||||
|
||||
/* Standard Intel bus clock is fixed at 100MHz */
|
||||
enum {
|
||||
INTEL_BCLK_MHZ = 100
|
||||
};
|
||||
|
||||
struct cpu_info;
|
||||
|
||||
/**
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue