Skip to content

Commit

Permalink
RealView: Add uncompressing support for PB1176
Browse files Browse the repository at this point in the history
This patch adds the UART0 base address detection in uncompress.h.

Signed-off-by: Catalin Marinas <catalin.marinas@arm.com>
  • Loading branch information
Catalin Marinas committed Apr 18, 2008
1 parent a0316b2 commit 14a6acc
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions include/asm-arm/arch-realview/uncompress.h
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@

#include <asm/arch/board-eb.h>
#include <asm/arch/board-pb11mp.h>
#include <asm/arch/board-pb1176.h>

#define AMBA_UART_DR(base) (*(volatile unsigned char *)((base) + 0x00))
#define AMBA_UART_LCRH(base) (*(volatile unsigned char *)((base) + 0x2c))
Expand All @@ -37,6 +38,8 @@ static inline unsigned long get_uart_base(void)
return REALVIEW_EB_UART0_BASE;
else if (machine_is_realview_pb11mp())
return REALVIEW_PB11MP_UART0_BASE;
else if (machine_is_realview_pb1176())
return REALVIEW_PB1176_UART0_BASE;
else
return 0;
}
Expand Down

0 comments on commit 14a6acc

Please sign in to comment.