blob: 651bd089f13c1001a0dc65f91f37204243bb1882 [file] [log] [blame]
Varun Wadekar0f3baa02015-07-16 11:36:33 +05301/*
Varun Wadekarb7b45752015-12-28 14:55:41 -08002 * Copyright (c) 2015-2016, ARM Limited and Contributors. All rights reserved.
Varun Wadekar0f3baa02015-07-16 11:36:33 +05303 *
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 Wadekarb7b45752015-12-28 14:55:41 -080031#include <arch_helpers.h>
32#include <bl_common.h>
Varun Wadekar0f3baa02015-07-16 11:36:33 +053033#include <tegra_def.h>
Varun Wadekarb7b45752015-12-28 14:55:41 -080034#include <tegra_private.h>
35#include <xlat_tables.h>
Varun Wadekar0f3baa02015-07-16 11:36:33 +053036
Varun Wadekara78bb1b2015-08-07 10:03:00 +053037/*******************************************************************************
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 */
43const 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 Wadekar0f3baa02015-07-16 11:36:33 +053052/* 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 */
61static 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 ******************************************************************************/
74const mmap_region_t *plat_get_mmio_map(void)
75{
76 /* MMIO space */
77 return tegra_mmap;
78}
79
Antonio Nino Diaze82e29c2016-05-19 10:00:28 +010080unsigned int plat_get_syscnt_freq2(void)
Varun Wadekar0f3baa02015-07-16 11:36:33 +053081{
82 return 12000000;
83}
Varun Wadekard2014c62015-10-29 10:37:28 +053084
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 ******************************************************************************/
93static 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 ******************************************************************************/
105uint32_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 Wadekarb7b45752015-12-28 14:55:41 -0800112
113/*******************************************************************************
114 * Initialize the GIC and SGIs
115 ******************************************************************************/
116void plat_gic_setup(void)
117{
118 tegra_gic_setup(NULL, 0);
119}