| /* |
| * Copyright (c) 2014-2015, Linaro Ltd and Contributors. All rights reserved. |
| * Copyright (c) 2014-2015, Hisilicon Ltd and Contributors. All rights reserved. |
| * |
| * Redistribution and use in source and binary forms, with or without |
| * modification, are permitted provided that the following conditions are met: |
| * |
| * Redistributions of source code must retain the above copyright notice, this |
| * list of conditions and the following disclaimer. |
| * |
| * Redistributions in binary form must reproduce the above copyright notice, |
| * this list of conditions and the following disclaimer in the documentation |
| * and/or other materials provided with the distribution. |
| * |
| * Neither the name of ARM nor the names of its contributors may be used |
| * to endorse or promote products derived from this software without specific |
| * prior written permission. |
| * |
| * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" |
| * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE |
| * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR |
| * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF |
| * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS |
| * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN |
| * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) |
| * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE |
| * POSSIBILITY OF SUCH DAMAGE. |
| */ |
| |
| #ifndef __HIKEY_DEF_H__ |
| #define __HIKEY_DEF_H__ |
| |
| #define DEVICE_BASE 0xf4000000 |
| #define DEVICE_SIZE 0x05800000 |
| |
| /* The size of DDR RAM is 1GB. */ |
| #define DRAM_BASE 0x00000000 |
| #define DRAM_SIZE 0x40000000 |
| |
| #define XG2RAM0_BASE 0xF9800000 |
| #define XG2RAM0_SIZE 0x00400000 |
| |
| #define PLAT_TRUSTED_SRAM_ID 0 |
| #define PLAT_TRUSTED_DRAM_ID 1 |
| |
| /* |
| * DRAM at 0x0000_0000 is divided in two regions: |
| * - Secure DRAM (default is the top 16MB) |
| * - Non-Secure DRAM (remaining DRAM starting at DRAM_BASE) |
| */ |
| #define DRAM_SEC_SIZE 0x01000000 |
| #define DRAM_SEC_BASE (DRAM_BASE + DRAM_SIZE - DRAM_SEC_SIZE) |
| |
| #define DRAM_NS_BASE DRAM_BASE |
| #define DRAM_NS_SIZE (DRAM_SIZE - DRAM_SEC_SIZE) |
| |
| #define SRAM_BASE 0xFFF80000 |
| #define SRAM_SIZE 0x00012000 |
| |
| /******************************************************************************* |
| * GIC-400 & interrupt handling related constants |
| ******************************************************************************/ |
| #define GICD_BASE 0xF6801000 |
| #define GICC_BASE 0xF6802000 |
| |
| #define IRQ_SEC_PHY_TIMER 29 |
| #define IRQ_SEC_SGI_0 8 |
| #define IRQ_SEC_SGI_1 9 |
| #define IRQ_SEC_SGI_2 10 |
| #define IRQ_SEC_SGI_3 11 |
| #define IRQ_SEC_SGI_4 12 |
| #define IRQ_SEC_SGI_5 13 |
| #define IRQ_SEC_SGI_6 14 |
| #define IRQ_SEC_SGI_7 15 |
| #define IRQ_SEC_SGI_8 16 |
| |
| /******************************************************************************* |
| * PL011 related constants |
| ******************************************************************************/ |
| #define PL011_UART0_BASE 0xF8015000 |
| #define PL011_UART3_BASE 0xF7113000 |
| |
| #define PL011_BAUDRATE 115200 |
| |
| #define PL011_UART_CLK_IN_HZ 19200000 |
| |
| /******************************************************************************* |
| * CCI-400 related constants |
| ******************************************************************************/ |
| #define CCI400_BASE 0xF6E90000 |
| #define CCI400_SL_IFACE3_CLUSTER_IX 0 |
| #define CCI400_SL_IFACE4_CLUSTER_IX 1 |
| |
| #endif /* __HIKEY_DEF_H__ */ |