1 /* 2 * Copyright (C) 2013 Gabor Juhos <juhosg@openwrt.org> 3 * 4 * This program is free software; you can redistribute it and/or modify it 5 * under the terms of the GNU General Public License version 2 as published 6 * by the Free Software Foundation. 7 */ 8 9 #ifndef _MIPS_ASM_MALTA_H 10 #define _MIPS_ASM_MALTA_H 11 12 #define MALTA_GT_BASE 0x1be00000 13 #define MALTA_GT_PCIIO_BASE 0x18000000 14 #define MALTA_GT_UART0_BASE (MALTA_GT_PCIIO_BASE + 0x3f8) 15 16 #define MALTA_MSC01_BIU_BASE 0x1bc80000 17 #define MALTA_MSC01_PCI_BASE 0x1bd00000 18 #define MALTA_MSC01_PBC_BASE 0x1bd40000 19 #define MALTA_MSC01_IP1_BASE 0x1bc00000 20 #define MALTA_MSC01_IP1_SIZE 0x00400000 21 #define MALTA_MSC01_IP2_BASE1 0x10000000 22 #define MALTA_MSC01_IP2_SIZE1 0x08000000 23 #define MALTA_MSC01_IP2_BASE2 0x18000000 24 #define MALTA_MSC01_IP2_SIZE2 0x04000000 25 #define MALTA_MSC01_IP3_BASE 0x1c000000 26 #define MALTA_MSC01_IP3_SIZE 0x04000000 27 #define MALTA_MSC01_PCIMEM_BASE 0x10000000 28 #define MALTA_MSC01_PCIMEM_SIZE 0x10000000 29 #define MALTA_MSC01_PCIMEM_MAP 0x10000000 30 #define MALTA_MSC01_PCIIO_BASE 0x1b000000 31 #define MALTA_MSC01_PCIIO_SIZE 0x00800000 32 #define MALTA_MSC01_PCIIO_MAP 0x00000000 33 #define MALTA_MSC01_UART0_BASE (MALTA_MSC01_PCIIO_BASE + 0x3f8) 34 35 #define MALTA_RESET_BASE 0x1f000500 36 #define GORESET 0x42 37 38 #define MALTA_FLASH_BASE 0x1fc00000 39 40 #define MALTA_REVISION 0x1fc00010 41 #define MALTA_REVISION_CORID_SHF 10 42 #define MALTA_REVISION_CORID_MSK (0x3f << MALTA_REVISION_CORID_SHF) 43 #define MALTA_REVISION_CORID_CORE_LV 1 44 #define MALTA_REVISION_CORID_CORE_FPGA6 14 45 46 #endif /* _MIPS_ASM_MALTA_H */ 47