1*5a4dcfacSGabor Juhos /* 2*5a4dcfacSGabor Juhos * Copyright (C) 2013 Gabor Juhos <juhosg@openwrt.org> 3*5a4dcfacSGabor Juhos * 4*5a4dcfacSGabor Juhos * This program is free software; you can redistribute it and/or modify it 5*5a4dcfacSGabor Juhos * under the terms of the GNU General Public License version 2 as published 6*5a4dcfacSGabor Juhos * by the Free Software Foundation. 7*5a4dcfacSGabor Juhos */ 8*5a4dcfacSGabor Juhos 9*5a4dcfacSGabor Juhos #ifndef _MIPS_ASM_MALTA_H 10*5a4dcfacSGabor Juhos #define _MIPS_ASM_MALTA_H 11*5a4dcfacSGabor Juhos 12*5a4dcfacSGabor Juhos #define MALTA_IO_PORT_BASE 0x10000000 13*5a4dcfacSGabor Juhos 14*5a4dcfacSGabor Juhos #define MALTA_UART_BASE (MALTA_IO_PORT_BASE + 0x3f8) 15*5a4dcfacSGabor Juhos 16*5a4dcfacSGabor Juhos #endif /* _MIPS_ASM_MALTA_H */ 17