Varun Wadekar | 0f3baa0 | 2015-07-16 11:36:33 +0530 | [diff] [blame] | 1 | /* |
Varun Wadekar | b7b4575 | 2015-12-28 14:55:41 -0800 | [diff] [blame] | 2 | * Copyright (c) 2015-2016, ARM Limited and Contributors. All rights reserved. |
Varun Wadekar | 0f3baa0 | 2015-07-16 11:36:33 +0530 | [diff] [blame] | 3 | * |
| 4 | * Redistribution and use in source and binary forms, with or without |
| 5 | * modification, are permitted provided that the following conditions are met: |
| 6 | * |
| 7 | * Redistributions of source code must retain the above copyright notice, this |
| 8 | * list of conditions and the following disclaimer. |
| 9 | * |
| 10 | * Redistributions in binary form must reproduce the above copyright notice, |
| 11 | * this list of conditions and the following disclaimer in the documentation |
| 12 | * and/or other materials provided with the distribution. |
| 13 | * |
| 14 | * Neither the name of ARM nor the names of its contributors may be used |
| 15 | * to endorse or promote products derived from this software without specific |
| 16 | * prior written permission. |
| 17 | * |
| 18 | * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" |
| 19 | * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 20 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 21 | * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE |
| 22 | * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR |
| 23 | * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF |
| 24 | * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS |
| 25 | * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN |
| 26 | * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) |
| 27 | * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE |
| 28 | * POSSIBILITY OF SUCH DAMAGE. |
| 29 | */ |
| 30 | |
Varun Wadekar | b7b4575 | 2015-12-28 14:55:41 -0800 | [diff] [blame] | 31 | #include <arch_helpers.h> |
| 32 | #include <bl_common.h> |
Varun Wadekar | 0f3baa0 | 2015-07-16 11:36:33 +0530 | [diff] [blame] | 33 | #include <tegra_def.h> |
Varun Wadekar | b7b4575 | 2015-12-28 14:55:41 -0800 | [diff] [blame] | 34 | #include <tegra_private.h> |
| 35 | #include <xlat_tables.h> |
Varun Wadekar | 0f3baa0 | 2015-07-16 11:36:33 +0530 | [diff] [blame] | 36 | |
Varun Wadekar | a78bb1b | 2015-08-07 10:03:00 +0530 | [diff] [blame] | 37 | /******************************************************************************* |
| 38 | * The Tegra power domain tree has a single system level power domain i.e. a |
| 39 | * single root node. The first entry in the power domain descriptor specifies |
| 40 | * the number of power domains at the highest power level. |
| 41 | ******************************************************************************* |
| 42 | */ |
| 43 | const unsigned char tegra_power_domain_tree_desc[] = { |
| 44 | /* No of root nodes */ |
| 45 | 1, |
| 46 | /* No of clusters */ |
| 47 | PLATFORM_CLUSTER_COUNT, |
| 48 | /* No of CPU cores */ |
| 49 | PLATFORM_CORE_COUNT, |
| 50 | }; |
| 51 | |
Varun Wadekar | 0f3baa0 | 2015-07-16 11:36:33 +0530 | [diff] [blame] | 52 | /* sets of MMIO ranges setup */ |
| 53 | #define MMIO_RANGE_0_ADDR 0x50000000 |
| 54 | #define MMIO_RANGE_1_ADDR 0x60000000 |
| 55 | #define MMIO_RANGE_2_ADDR 0x70000000 |
| 56 | #define MMIO_RANGE_SIZE 0x200000 |
| 57 | |
| 58 | /* |
| 59 | * Table of regions to map using the MMU. |
| 60 | */ |
| 61 | static const mmap_region_t tegra_mmap[] = { |
| 62 | MAP_REGION_FLAT(MMIO_RANGE_0_ADDR, MMIO_RANGE_SIZE, |
| 63 | MT_DEVICE | MT_RW | MT_SECURE), |
| 64 | MAP_REGION_FLAT(MMIO_RANGE_1_ADDR, MMIO_RANGE_SIZE, |
| 65 | MT_DEVICE | MT_RW | MT_SECURE), |
| 66 | MAP_REGION_FLAT(MMIO_RANGE_2_ADDR, MMIO_RANGE_SIZE, |
| 67 | MT_DEVICE | MT_RW | MT_SECURE), |
| 68 | {0} |
| 69 | }; |
| 70 | |
| 71 | /******************************************************************************* |
| 72 | * Set up the pagetables as per the platform memory map & initialize the MMU |
| 73 | ******************************************************************************/ |
| 74 | const mmap_region_t *plat_get_mmio_map(void) |
| 75 | { |
| 76 | /* MMIO space */ |
| 77 | return tegra_mmap; |
| 78 | } |
| 79 | |
Antonio Nino Diaz | e82e29c | 2016-05-19 10:00:28 +0100 | [diff] [blame] | 80 | unsigned int plat_get_syscnt_freq2(void) |
Varun Wadekar | 0f3baa0 | 2015-07-16 11:36:33 +0530 | [diff] [blame] | 81 | { |
| 82 | return 12000000; |
| 83 | } |
Varun Wadekar | d2014c6 | 2015-10-29 10:37:28 +0530 | [diff] [blame] | 84 | |
| 85 | /******************************************************************************* |
| 86 | * Maximum supported UART controllers |
| 87 | ******************************************************************************/ |
| 88 | #define TEGRA132_MAX_UART_PORTS 5 |
| 89 | |
| 90 | /******************************************************************************* |
| 91 | * This variable holds the UART port base addresses |
| 92 | ******************************************************************************/ |
| 93 | static uint32_t tegra132_uart_addresses[TEGRA132_MAX_UART_PORTS + 1] = { |
| 94 | 0, /* undefined - treated as an error case */ |
| 95 | TEGRA_UARTA_BASE, |
| 96 | TEGRA_UARTB_BASE, |
| 97 | TEGRA_UARTC_BASE, |
| 98 | TEGRA_UARTD_BASE, |
| 99 | TEGRA_UARTE_BASE, |
| 100 | }; |
| 101 | |
| 102 | /******************************************************************************* |
| 103 | * Retrieve the UART controller base to be used as the console |
| 104 | ******************************************************************************/ |
| 105 | uint32_t plat_get_console_from_id(int id) |
| 106 | { |
| 107 | if (id > TEGRA132_MAX_UART_PORTS) |
| 108 | return 0; |
| 109 | |
| 110 | return tegra132_uart_addresses[id]; |
| 111 | } |
Varun Wadekar | b7b4575 | 2015-12-28 14:55:41 -0800 | [diff] [blame] | 112 | |
| 113 | /******************************************************************************* |
| 114 | * Initialize the GIC and SGIs |
| 115 | ******************************************************************************/ |
| 116 | void plat_gic_setup(void) |
| 117 | { |
| 118 | tegra_gic_setup(NULL, 0); |
| 119 | } |