blob: a57db8b1d1265787f108170a2c7f5da5164efa87 [file] [log] [blame]
Varun Wadekar3c959932016-03-03 13:09:08 -08001/*
Pritesh Raithatha9eb5db52017-01-02 19:42:31 +05302 * Copyright (c) 2016-2017, ARM Limited and Contributors. All rights reserved.
Varun Wadekar3c959932016-03-03 13:09:08 -08003 *
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
31#include <assert.h>
Varun Wadekar66ff0122016-04-26 11:34:54 -070032#include <bl_common.h>
Varun Wadekar3c959932016-03-03 13:09:08 -080033#include <debug.h>
Varun Wadekar93bed2a2016-03-18 13:07:33 -070034#include <platform_def.h>
Varun Wadekar3c959932016-03-03 13:09:08 -080035#include <smmu.h>
Varun Wadekar93bed2a2016-03-18 13:07:33 -070036#include <string.h>
37#include <tegra_private.h>
Varun Wadekar3c959932016-03-03 13:09:08 -080038
Pritesh Raithatha0de6e532017-01-24 13:49:46 +053039/* SMMU IDs currently supported by the driver */
40enum {
41 TEGRA_SMMU0,
42 TEGRA_SMMU1,
43 TEGRA_SMMU2
44};
45
46static uint32_t tegra_smmu_read_32(uint32_t smmu_id, uint32_t off)
47{
48#if defined(TEGRA_SMMU0_BASE)
49 if (smmu_id == TEGRA_SMMU0)
50 return mmio_read_32(TEGRA_SMMU0_BASE + off);
51#endif
52
53#if defined(TEGRA_SMMU1_BASE)
54 if (smmu_id == TEGRA_SMMU1)
55 return mmio_read_32(TEGRA_SMMU1_BASE + off);
56#endif
57
58#if defined(TEGRA_SMMU2_BASE)
59 if (smmu_id == TEGRA_SMMU2)
60 return mmio_read_32(TEGRA_SMMU2_BASE + off);
61#endif
62
63 return 0;
64}
65
66static void tegra_smmu_write_32(uint32_t smmu_id,
67 uint32_t off, uint32_t val)
68{
69#if defined(TEGRA_SMMU0_BASE)
70 if (smmu_id == TEGRA_SMMU0)
71 mmio_write_32(TEGRA_SMMU0_BASE + off, val);
72#endif
73
74#if defined(TEGRA_SMMU1_BASE)
75 if (smmu_id == TEGRA_SMMU1)
76 mmio_write_32(TEGRA_SMMU1_BASE + off, val);
77#endif
78
79#if defined(TEGRA_SMMU2_BASE)
80 if (smmu_id == TEGRA_SMMU2)
81 mmio_write_32(TEGRA_SMMU2_BASE + off, val);
82#endif
83}
84
Varun Wadekar3c959932016-03-03 13:09:08 -080085/*
Varun Wadekar93bed2a2016-03-18 13:07:33 -070086 * Save SMMU settings before "System Suspend" to TZDRAM
Varun Wadekar3c959932016-03-03 13:09:08 -080087 */
Varun Wadekar93bed2a2016-03-18 13:07:33 -070088void tegra_smmu_save_context(uint64_t smmu_ctx_addr)
Varun Wadekar3c959932016-03-03 13:09:08 -080089{
90 uint32_t i;
Pritesh Raithathac88654f2017-01-02 20:11:32 +053091 smmu_regs_t *smmu_ctx_regs;
Varun Wadekar3c959932016-03-03 13:09:08 -080092#if DEBUG
Varun Wadekar93bed2a2016-03-18 13:07:33 -070093 plat_params_from_bl2_t *params_from_bl2 = bl31_get_plat_params();
94 uint64_t tzdram_base = params_from_bl2->tzdram_base;
95 uint64_t tzdram_end = tzdram_base + params_from_bl2->tzdram_size;
Varun Wadekar3c959932016-03-03 13:09:08 -080096 uint32_t reg_id1, pgshift, cb_size;
97
98 /* sanity check SMMU settings c*/
Pritesh Raithatha0de6e532017-01-24 13:49:46 +053099 reg_id1 = mmio_read_32((TEGRA_SMMU0_BASE + SMMU_GNSR0_IDR1));
Varun Wadekar3c959932016-03-03 13:09:08 -0800100 pgshift = (reg_id1 & ID1_PAGESIZE) ? 16 : 12;
101 cb_size = (2 << pgshift) * \
102 (1 << (((reg_id1 >> ID1_NUMPAGENDXB_SHIFT) & ID1_NUMPAGENDXB_MASK) + 1));
103
104 assert(!((pgshift != PGSHIFT) || (cb_size != CB_SIZE)));
105#endif
106
Varun Wadekar93bed2a2016-03-18 13:07:33 -0700107 assert((smmu_ctx_addr >= tzdram_base) && (smmu_ctx_addr <= tzdram_end));
108
Pritesh Raithathac88654f2017-01-02 20:11:32 +0530109 /* get SMMU context table */
110 smmu_ctx_regs = plat_get_smmu_ctx();
111 assert(smmu_ctx_regs);
Varun Wadekar3c959932016-03-03 13:09:08 -0800112
113 /* save SMMU register values */
Pritesh Raithathac88654f2017-01-02 20:11:32 +0530114 for (i = 1; i < smmu_ctx_regs[0].val; i++)
Varun Wadekar3c959932016-03-03 13:09:08 -0800115 smmu_ctx_regs[i].val = mmio_read_32(smmu_ctx_regs[i].reg);
116
Varun Wadekar93bed2a2016-03-18 13:07:33 -0700117 /* Save SMMU config settings */
118 memcpy16((void *)(uintptr_t)smmu_ctx_addr, (void *)smmu_ctx_regs,
119 sizeof(smmu_ctx_regs));
120
Varun Wadekar3c959932016-03-03 13:09:08 -0800121 /* save the SMMU table address */
122 mmio_write_32(TEGRA_SCRATCH_BASE + SECURE_SCRATCH_RSV11_LO,
Varun Wadekar93bed2a2016-03-18 13:07:33 -0700123 (uint32_t)smmu_ctx_addr);
Varun Wadekar3c959932016-03-03 13:09:08 -0800124 mmio_write_32(TEGRA_SCRATCH_BASE + SECURE_SCRATCH_RSV11_HI,
Varun Wadekar93bed2a2016-03-18 13:07:33 -0700125 (uint32_t)(smmu_ctx_addr >> 32));
Varun Wadekar3c959932016-03-03 13:09:08 -0800126}
127
Varun Wadekarea709c32016-04-20 17:14:15 -0700128#define SMMU_NUM_CONTEXTS 64
129#define SMMU_CONTEXT_BANK_MAX_IDX 64
130
Varun Wadekar3c959932016-03-03 13:09:08 -0800131/*
132 * Init SMMU during boot or "System Suspend" exit
133 */
134void tegra_smmu_init(void)
135{
Pritesh Raithatha0de6e532017-01-24 13:49:46 +0530136 uint32_t val, cb_idx, smmu_id, ctx_base;
Varun Wadekar3c959932016-03-03 13:09:08 -0800137
Pritesh Raithatha0de6e532017-01-24 13:49:46 +0530138 for (smmu_id = 0; smmu_id < NUM_SMMU_DEVICES; smmu_id++) {
139 /* Program the SMMU pagesize and reset CACHE_LOCK bit */
140 val = tegra_smmu_read_32(smmu_id, SMMU_GSR0_SECURE_ACR);
141 val |= SMMU_GSR0_PGSIZE_64K;
142 val &= ~SMMU_ACR_CACHE_LOCK_ENABLE_BIT;
143 tegra_smmu_write_32(smmu_id, SMMU_GSR0_SECURE_ACR, val);
Varun Wadekarea709c32016-04-20 17:14:15 -0700144
Pritesh Raithatha0de6e532017-01-24 13:49:46 +0530145 /* reset CACHE LOCK bit for NS Aux. Config. Register */
146 val = tegra_smmu_read_32(smmu_id, SMMU_GNSR_ACR);
147 val &= ~SMMU_ACR_CACHE_LOCK_ENABLE_BIT;
148 tegra_smmu_write_32(smmu_id, SMMU_GNSR_ACR, val);
Varun Wadekarea709c32016-04-20 17:14:15 -0700149
Pritesh Raithatha0de6e532017-01-24 13:49:46 +0530150 /* disable TCU prefetch for all contexts */
151 ctx_base = (SMMU_GSR0_PGSIZE_64K * SMMU_NUM_CONTEXTS)
152 + SMMU_CBn_ACTLR;
153 for (cb_idx = 0; cb_idx < SMMU_CONTEXT_BANK_MAX_IDX; cb_idx++) {
154 val = tegra_smmu_read_32(smmu_id,
155 ctx_base + (SMMU_GSR0_PGSIZE_64K * cb_idx));
156 val &= ~SMMU_CBn_ACTLR_CPRE_BIT;
157 tegra_smmu_write_32(smmu_id, ctx_base +
158 (SMMU_GSR0_PGSIZE_64K * cb_idx), val);
159 }
Varun Wadekarea709c32016-04-20 17:14:15 -0700160
Pritesh Raithatha0de6e532017-01-24 13:49:46 +0530161 /* set CACHE LOCK bit for NS Aux. Config. Register */
162 val = tegra_smmu_read_32(smmu_id, SMMU_GNSR_ACR);
163 val |= SMMU_ACR_CACHE_LOCK_ENABLE_BIT;
164 tegra_smmu_write_32(smmu_id, SMMU_GNSR_ACR, val);
Varun Wadekarea709c32016-04-20 17:14:15 -0700165
Pritesh Raithatha0de6e532017-01-24 13:49:46 +0530166 /* set CACHE LOCK bit for S Aux. Config. Register */
167 val = tegra_smmu_read_32(smmu_id, SMMU_GSR0_SECURE_ACR);
168 val |= SMMU_ACR_CACHE_LOCK_ENABLE_BIT;
169 tegra_smmu_write_32(smmu_id, SMMU_GSR0_SECURE_ACR, val);
170 }
Varun Wadekar3c959932016-03-03 13:09:08 -0800171}