From 756f586a73d756f163dc03a049d650cc1a5b5899 Mon Sep 17 00:00:00 2001 From: wdenk Date: Sun, 3 Apr 2005 15:51:42 +0000 Subject: * Patch by Yusdi Santoso, 22 Oct 2004: - Add support for HIDDEN_DRAGON board - fix endianess problem in driver/rtl1839.c * Patch by Allen Curtis, 21 Oct 2004: support multiple serial ports --- include/asm-ppc/global_data.h | 7 ++++--- include/asm-ppc/processor.h | 3 +++ 2 files changed, 7 insertions(+), 3 deletions(-) (limited to 'include/asm-ppc') diff --git a/include/asm-ppc/global_data.h b/include/asm-ppc/global_data.h index b12fe3af4e..c800f63cc0 100644 --- a/include/asm-ppc/global_data.h +++ b/include/asm-ppc/global_data.h @@ -71,9 +71,10 @@ typedef struct global_data { #if defined(CFG_GT_6426x) unsigned int mirror_hack[16]; #endif -#if defined(CONFIG_SANDPOINT) || \ - defined(CONFIG_MUSENKI) || \ - defined(CONFIG_A3000) +#if defined(CONFIG_A3000) || \ + defined(CONFIG_HIDDEN_DRAGON) || \ + defined(CONFIG_MUSENKI) || \ + defined(CONFIG_SANDPOINT) void * console_addr; #endif #ifdef CONFIG_AMIGAONEG3SE diff --git a/include/asm-ppc/processor.h b/include/asm-ppc/processor.h index 15bfae8524..8dbcc4750e 100644 --- a/include/asm-ppc/processor.h +++ b/include/asm-ppc/processor.h @@ -818,6 +818,7 @@ #define _MACH_sandpoint 0x00004000 /* Motorola SPS Processor eval board */ #define _MACH_tqm860 0x00008000 /* TQM860/L */ #define _MACH_tqm8xxL 0x00010000 /* TQM8xxL */ +#define _MACH_hidden_dragon 0x00020000 /* Motorola Hidden Dragon eval board */ /* see residual.h for these */ @@ -1036,6 +1037,8 @@ void _nmask_and_or_msr(unsigned long nmask, unsigned long or_val); #define have_of 0 #elif defined(CONFIG_SANDPOINT) #define _machine _MACH_sandpoint +#elif defined(CONFIG_HIDDEN_DRAGON) +#define _machine _MACH_hidden_dragon #define have_of 0 #else #error "Machine not defined correctly" -- cgit