diff options
author | Nobuhiro Iwamatsu <iwamatsu@nigauri.org> | 2008-01-15 23:25:25 +0900 |
---|---|---|
committer | Nobuhiro Iwamatsu <iwamatsu@nigauri.org> | 2008-01-15 23:30:40 +0900 |
commit | 76e49aa7fb8e76cc49092c1acd53fff921e26360 (patch) | |
tree | 58e64fc93d3c4e65656c8e295941fbde31e2f603 /include/asm-sh/cpu_sh3.h | |
parent | 63a11be68306870e04d3851ed9fa41955cdf4894 (diff) | |
download | u-boot-imx-76e49aa7fb8e76cc49092c1acd53fff921e26360.zip u-boot-imx-76e49aa7fb8e76cc49092c1acd53fff921e26360.tar.gz u-boot-imx-76e49aa7fb8e76cc49092c1acd53fff921e26360.tar.bz2 |
sh: Add support SH7710/SH7712
SH7710/SH7712 of SH3 CPU are supported.
SH771X is called SH-Ether, and has the Ether controller in CPU.
The driver of Ether is not included in this patch.
Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
Diffstat (limited to 'include/asm-sh/cpu_sh3.h')
-rw-r--r-- | include/asm-sh/cpu_sh3.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/include/asm-sh/cpu_sh3.h b/include/asm-sh/cpu_sh3.h index 68679c0..6db38a2 100644 --- a/include/asm-sh/cpu_sh3.h +++ b/include/asm-sh/cpu_sh3.h @@ -31,7 +31,9 @@ #define CACHE_OC_NUM_ENTRIES 256 #define CACHE_OC_ENTRY_SHIFT 4 -#if defined(CONFIG_CPU_SH7720) +#if defined(CONFIG_CPU_SH7710) +#include <asm/cpu_sh7710.h> +#elif defined(CONFIG_CPU_SH7720) #include <asm/cpu_sh7720.h> #else #error "Unknown SH3 variant" |