/* SPDX-License-Identifier: BSD-2-Clause */ /* * Copyright (C) 2015 Freescale Semiconductor, Inc. * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * * 1. Redistributions of source code must retain the above copyright notice, * this list of conditions and the following disclaimer. * * 2. 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. * * 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 PLATFORM_CONFIG_H #define PLATFORM_CONFIG_H #include #define STACK_ALIGNMENT 64 /* console uart define */ #define CONSOLE_UART_BASE UART0_BASE /* Platform specific defines */ #if defined(PLATFORM_FLAVOR_ls1021aqds) || defined(PLATFORM_FLAVOR_ls1021atwr) /* DUART 1 */ #define UART0_BASE 0x021C0500 #define DCFG_BASE 0x01EE0000 #define DCFG_CCSR_BRR 0xE4 #define DCFG_SCRATCHRW1 0x200 #define CSU_BASE 0x01510000 #define CSU_CSL_START 0x0 #define CSU_CSL_END 0xE8 #define CSU_CSL30 0x78 #define CSU_CSL37 0x94 /* Central Security Unit register values */ #define CSU_ACCESS_ALL 0x00FF00FF #define CSU_ACCESS_SEC_ONLY 0x003F003F #define CSU_SETTING_LOCK 0x01000100 #define GIC_BASE 0x01400000 #define GICC_OFFSET 0x2000 #define GICD_OFFSET 0x1000 #endif #if defined(PLATFORM_FLAVOR_ls1043ardb) || defined(PLATFORM_FLAVOR_ls1046ardb) \ || defined(PLATFORM_FLAVOR_ls1012ardb) || defined(PLATFORM_FLAVOR_ls1012afrwy) /* DUART 1 */ #define UART0_BASE 0x021C0500 #define GIC_BASE 0x01400000 #define GICC_OFFSET 0x2000 #define GICD_OFFSET 0x1000 #endif #if defined(PLATFORM_FLAVOR_ls1088ardb) /* DUART 1 */ #define UART0_BASE 0x021C0500 #define GIC_BASE 0x06000000 #define GICC_OFFSET 0x0 #define GICD_OFFSET 0x0 #endif #if defined(PLATFORM_FLAVOR_ls2088ardb) /* DUART 1 */ #define UART0_BASE 0x021C0600 #define GIC_BASE 0x06000000 #define GICC_OFFSET 0x0 #define GICD_OFFSET 0x0 #endif #if defined(PLATFORM_FLAVOR_lx2160ardb) /* DUART 1 */ #define UART0_BASE 0x021C0000 #define CONSOLE_BAUDRATE 0x1C200 /* As per LX2 Clock tree, UART clock is 1/4th of the platform clock. * Currently hard-coding for Platform clock = 700MHz. */ #define CONSOLE_UART_CLK_IN_HZ 0xA6E49C0 #define UART1_BASE 0x021D0000 #define GIC_BASE 0x06000000 #define GICC_OFFSET 0x0 #define GICD_OFFSET 0x0 #endif #endif /*PLATFORM_CONFIG_H*/