blob: 60fd300676833d66763744bbc131e4d85c72a7b7 [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{
Varun Wadekar27155fc2017-04-20 18:56:09 -070090 uint32_t i, num_entries = 0;
Pritesh Raithathac88654f2017-01-02 20:11:32 +053091 smmu_regs_t *smmu_ctx_regs;
Varun Wadekar93bed2a2016-03-18 13:07:33 -070092 plat_params_from_bl2_t *params_from_bl2 = bl31_get_plat_params();
93 uint64_t tzdram_base = params_from_bl2->tzdram_base;
94 uint64_t tzdram_end = tzdram_base + params_from_bl2->tzdram_size;
Varun Wadekar3c959932016-03-03 13:09:08 -080095 uint32_t reg_id1, pgshift, cb_size;
96
97 /* sanity check SMMU settings c*/
Pritesh Raithatha0de6e532017-01-24 13:49:46 +053098 reg_id1 = mmio_read_32((TEGRA_SMMU0_BASE + SMMU_GNSR0_IDR1));
Varun Wadekar3c959932016-03-03 13:09:08 -080099 pgshift = (reg_id1 & ID1_PAGESIZE) ? 16 : 12;
100 cb_size = (2 << pgshift) * \
101 (1 << (((reg_id1 >> ID1_NUMPAGENDXB_SHIFT) & ID1_NUMPAGENDXB_MASK) + 1));
102
103 assert(!((pgshift != PGSHIFT) || (cb_size != CB_SIZE)));
Varun Wadekar93bed2a2016-03-18 13:07:33 -0700104 assert((smmu_ctx_addr >= tzdram_base) && (smmu_ctx_addr <= tzdram_end));
105
Pritesh Raithathac88654f2017-01-02 20:11:32 +0530106 /* get SMMU context table */
107 smmu_ctx_regs = plat_get_smmu_ctx();
108 assert(smmu_ctx_regs);
Varun Wadekar3c959932016-03-03 13:09:08 -0800109
Varun Wadekar27155fc2017-04-20 18:56:09 -0700110 /*
111 * smmu_ctx_regs[0].val contains the size of the context table minus
112 * the last entry. Sanity check the table size before we start with
113 * the context save operation.
114 */
115 while (smmu_ctx_regs[num_entries].val != 0xFFFFFFFFU) {
116 num_entries++;
117 }
118
119 /* panic if the sizes do not match */
120 if (num_entries != smmu_ctx_regs[0].val)
121 panic();
122
Varun Wadekar3c959932016-03-03 13:09:08 -0800123 /* save SMMU register values */
Varun Wadekar27155fc2017-04-20 18:56:09 -0700124 for (i = 1; i < num_entries; i++)
Varun Wadekar3c959932016-03-03 13:09:08 -0800125 smmu_ctx_regs[i].val = mmio_read_32(smmu_ctx_regs[i].reg);
126
Varun Wadekar27155fc2017-04-20 18:56:09 -0700127 /* increment by 1 to take care of the last entry */
128 num_entries++;
129
Varun Wadekar93bed2a2016-03-18 13:07:33 -0700130 /* Save SMMU config settings */
131 memcpy16((void *)(uintptr_t)smmu_ctx_addr, (void *)smmu_ctx_regs,
Varun Wadekar27155fc2017-04-20 18:56:09 -0700132 (sizeof(smmu_regs_t) * num_entries));
Varun Wadekar93bed2a2016-03-18 13:07:33 -0700133
Varun Wadekar3c959932016-03-03 13:09:08 -0800134 /* save the SMMU table address */
135 mmio_write_32(TEGRA_SCRATCH_BASE + SECURE_SCRATCH_RSV11_LO,
Varun Wadekar93bed2a2016-03-18 13:07:33 -0700136 (uint32_t)smmu_ctx_addr);
Varun Wadekar3c959932016-03-03 13:09:08 -0800137 mmio_write_32(TEGRA_SCRATCH_BASE + SECURE_SCRATCH_RSV11_HI,
Varun Wadekar93bed2a2016-03-18 13:07:33 -0700138 (uint32_t)(smmu_ctx_addr >> 32));
Varun Wadekar3c959932016-03-03 13:09:08 -0800139}
140
Varun Wadekarea709c32016-04-20 17:14:15 -0700141#define SMMU_NUM_CONTEXTS 64
142#define SMMU_CONTEXT_BANK_MAX_IDX 64
143
Varun Wadekar3c959932016-03-03 13:09:08 -0800144/*
145 * Init SMMU during boot or "System Suspend" exit
146 */
147void tegra_smmu_init(void)
148{
Pritesh Raithatha0de6e532017-01-24 13:49:46 +0530149 uint32_t val, cb_idx, smmu_id, ctx_base;
Varun Wadekar3c959932016-03-03 13:09:08 -0800150
Pritesh Raithatha0de6e532017-01-24 13:49:46 +0530151 for (smmu_id = 0; smmu_id < NUM_SMMU_DEVICES; smmu_id++) {
152 /* Program the SMMU pagesize and reset CACHE_LOCK bit */
153 val = tegra_smmu_read_32(smmu_id, SMMU_GSR0_SECURE_ACR);
154 val |= SMMU_GSR0_PGSIZE_64K;
155 val &= ~SMMU_ACR_CACHE_LOCK_ENABLE_BIT;
156 tegra_smmu_write_32(smmu_id, SMMU_GSR0_SECURE_ACR, val);
Varun Wadekarea709c32016-04-20 17:14:15 -0700157
Pritesh Raithatha0de6e532017-01-24 13:49:46 +0530158 /* reset CACHE LOCK bit for NS Aux. Config. Register */
159 val = tegra_smmu_read_32(smmu_id, SMMU_GNSR_ACR);
160 val &= ~SMMU_ACR_CACHE_LOCK_ENABLE_BIT;
161 tegra_smmu_write_32(smmu_id, SMMU_GNSR_ACR, val);
Varun Wadekarea709c32016-04-20 17:14:15 -0700162
Pritesh Raithatha0de6e532017-01-24 13:49:46 +0530163 /* disable TCU prefetch for all contexts */
164 ctx_base = (SMMU_GSR0_PGSIZE_64K * SMMU_NUM_CONTEXTS)
165 + SMMU_CBn_ACTLR;
166 for (cb_idx = 0; cb_idx < SMMU_CONTEXT_BANK_MAX_IDX; cb_idx++) {
167 val = tegra_smmu_read_32(smmu_id,
168 ctx_base + (SMMU_GSR0_PGSIZE_64K * cb_idx));
169 val &= ~SMMU_CBn_ACTLR_CPRE_BIT;
170 tegra_smmu_write_32(smmu_id, ctx_base +
171 (SMMU_GSR0_PGSIZE_64K * cb_idx), val);
172 }
Varun Wadekarea709c32016-04-20 17:14:15 -0700173
Pritesh Raithatha0de6e532017-01-24 13:49:46 +0530174 /* set CACHE LOCK bit for NS Aux. Config. Register */
175 val = tegra_smmu_read_32(smmu_id, SMMU_GNSR_ACR);
176 val |= SMMU_ACR_CACHE_LOCK_ENABLE_BIT;
177 tegra_smmu_write_32(smmu_id, SMMU_GNSR_ACR, val);
Varun Wadekarea709c32016-04-20 17:14:15 -0700178
Pritesh Raithatha0de6e532017-01-24 13:49:46 +0530179 /* set CACHE LOCK bit for S Aux. Config. Register */
180 val = tegra_smmu_read_32(smmu_id, SMMU_GSR0_SECURE_ACR);
181 val |= SMMU_ACR_CACHE_LOCK_ENABLE_BIT;
182 tegra_smmu_write_32(smmu_id, SMMU_GSR0_SECURE_ACR, val);
183 }
Varun Wadekar3c959932016-03-03 13:09:08 -0800184}