blob: abb3408f6befbaa39209f8e90f15f7fe56c6d7ee [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
Varun Wadekar3c959932016-03-03 13:09:08 -080039/*
Varun Wadekar93bed2a2016-03-18 13:07:33 -070040 * Save SMMU settings before "System Suspend" to TZDRAM
Varun Wadekar3c959932016-03-03 13:09:08 -080041 */
Varun Wadekar93bed2a2016-03-18 13:07:33 -070042void tegra_smmu_save_context(uint64_t smmu_ctx_addr)
Varun Wadekar3c959932016-03-03 13:09:08 -080043{
44 uint32_t i;
Pritesh Raithathac88654f2017-01-02 20:11:32 +053045 smmu_regs_t *smmu_ctx_regs;
Varun Wadekar3c959932016-03-03 13:09:08 -080046#if DEBUG
Varun Wadekar93bed2a2016-03-18 13:07:33 -070047 plat_params_from_bl2_t *params_from_bl2 = bl31_get_plat_params();
48 uint64_t tzdram_base = params_from_bl2->tzdram_base;
49 uint64_t tzdram_end = tzdram_base + params_from_bl2->tzdram_size;
Varun Wadekar3c959932016-03-03 13:09:08 -080050 uint32_t reg_id1, pgshift, cb_size;
51
52 /* sanity check SMMU settings c*/
53 reg_id1 = mmio_read_32((TEGRA_SMMU_BASE + SMMU_GNSR0_IDR1));
54 pgshift = (reg_id1 & ID1_PAGESIZE) ? 16 : 12;
55 cb_size = (2 << pgshift) * \
56 (1 << (((reg_id1 >> ID1_NUMPAGENDXB_SHIFT) & ID1_NUMPAGENDXB_MASK) + 1));
57
58 assert(!((pgshift != PGSHIFT) || (cb_size != CB_SIZE)));
59#endif
60
Varun Wadekar93bed2a2016-03-18 13:07:33 -070061 assert((smmu_ctx_addr >= tzdram_base) && (smmu_ctx_addr <= tzdram_end));
62
Pritesh Raithathac88654f2017-01-02 20:11:32 +053063 /* get SMMU context table */
64 smmu_ctx_regs = plat_get_smmu_ctx();
65 assert(smmu_ctx_regs);
Varun Wadekar3c959932016-03-03 13:09:08 -080066
67 /* save SMMU register values */
Pritesh Raithathac88654f2017-01-02 20:11:32 +053068 for (i = 1; i < smmu_ctx_regs[0].val; i++)
Varun Wadekar3c959932016-03-03 13:09:08 -080069 smmu_ctx_regs[i].val = mmio_read_32(smmu_ctx_regs[i].reg);
70
Varun Wadekar93bed2a2016-03-18 13:07:33 -070071 /* Save SMMU config settings */
72 memcpy16((void *)(uintptr_t)smmu_ctx_addr, (void *)smmu_ctx_regs,
73 sizeof(smmu_ctx_regs));
74
Varun Wadekar3c959932016-03-03 13:09:08 -080075 /* save the SMMU table address */
76 mmio_write_32(TEGRA_SCRATCH_BASE + SECURE_SCRATCH_RSV11_LO,
Varun Wadekar93bed2a2016-03-18 13:07:33 -070077 (uint32_t)smmu_ctx_addr);
Varun Wadekar3c959932016-03-03 13:09:08 -080078 mmio_write_32(TEGRA_SCRATCH_BASE + SECURE_SCRATCH_RSV11_HI,
Varun Wadekar93bed2a2016-03-18 13:07:33 -070079 (uint32_t)(smmu_ctx_addr >> 32));
Varun Wadekar3c959932016-03-03 13:09:08 -080080}
81
Varun Wadekarea709c32016-04-20 17:14:15 -070082#define SMMU_NUM_CONTEXTS 64
83#define SMMU_CONTEXT_BANK_MAX_IDX 64
84
Varun Wadekar3c959932016-03-03 13:09:08 -080085/*
86 * Init SMMU during boot or "System Suspend" exit
87 */
88void tegra_smmu_init(void)
89{
Varun Wadekarea709c32016-04-20 17:14:15 -070090 uint32_t val, i, ctx_base;
Varun Wadekar3c959932016-03-03 13:09:08 -080091
Varun Wadekarea709c32016-04-20 17:14:15 -070092 /* Program the SMMU pagesize and reset CACHE_LOCK bit */
Varun Wadekar3c959932016-03-03 13:09:08 -080093 val = tegra_smmu_read_32(SMMU_GSR0_SECURE_ACR);
94 val |= SMMU_GSR0_PGSIZE_64K;
Varun Wadekarea709c32016-04-20 17:14:15 -070095 val &= ~SMMU_ACR_CACHE_LOCK_ENABLE_BIT;
96 tegra_smmu_write_32(SMMU_GSR0_SECURE_ACR, val);
97
98 /* reset CACHE LOCK bit for NS Aux. Config. Register */
99 val = tegra_smmu_read_32(SMMU_GNSR_ACR);
100 val &= ~SMMU_ACR_CACHE_LOCK_ENABLE_BIT;
101 tegra_smmu_write_32(SMMU_GNSR_ACR, val);
102
103 /* disable TCU prefetch for all contexts */
104 ctx_base = (SMMU_GSR0_PGSIZE_64K * SMMU_NUM_CONTEXTS) + SMMU_CBn_ACTLR;
105 for (i = 0; i < SMMU_CONTEXT_BANK_MAX_IDX; i++) {
106 val = tegra_smmu_read_32(ctx_base + (SMMU_GSR0_PGSIZE_64K * i));
107 val &= ~SMMU_CBn_ACTLR_CPRE_BIT;
108 tegra_smmu_write_32(ctx_base + (SMMU_GSR0_PGSIZE_64K * i), val);
109 }
110
111 /* set CACHE LOCK bit for NS Aux. Config. Register */
112 val = tegra_smmu_read_32(SMMU_GNSR_ACR);
113 val |= SMMU_ACR_CACHE_LOCK_ENABLE_BIT;
114 tegra_smmu_write_32(SMMU_GNSR_ACR, val);
115
116 /* set CACHE LOCK bit for S Aux. Config. Register */
117 val = tegra_smmu_read_32(SMMU_GSR0_SECURE_ACR);
118 val |= SMMU_ACR_CACHE_LOCK_ENABLE_BIT;
Varun Wadekar3c959932016-03-03 13:09:08 -0800119 tegra_smmu_write_32(SMMU_GSR0_SECURE_ACR, val);
120}