Varun Wadekar | 3c95993 | 2016-03-03 13:09:08 -0800 | [diff] [blame] | 1 | /* |
Antonio Nino Diaz | 4b32e62 | 2018-08-16 16:52:57 +0100 | [diff] [blame] | 2 | * Copyright (c) 2016-2018, ARM Limited and Contributors. All rights reserved. |
Varun Wadekar | 3c95993 | 2016-03-03 13:09:08 -0800 | [diff] [blame] | 3 | * |
dp-arm | fa3cf0b | 2017-05-03 09:38:09 +0100 | [diff] [blame] | 4 | * SPDX-License-Identifier: BSD-3-Clause |
Varun Wadekar | 3c95993 | 2016-03-03 13:09:08 -0800 | [diff] [blame] | 5 | */ |
| 6 | |
| 7 | #include <assert.h> |
Antonio Nino Diaz | e0f9063 | 2018-12-14 00:18:21 +0000 | [diff] [blame] | 8 | #include <string.h> |
| 9 | |
Varun Wadekar | 93bed2a | 2016-03-18 13:07:33 -0700 | [diff] [blame] | 10 | #include <platform_def.h> |
Antonio Nino Diaz | e0f9063 | 2018-12-14 00:18:21 +0000 | [diff] [blame] | 11 | |
| 12 | #include <common/bl_common.h> |
| 13 | #include <common/debug.h> |
| 14 | |
Varun Wadekar | 3c95993 | 2016-03-03 13:09:08 -0800 | [diff] [blame] | 15 | #include <smmu.h> |
Varun Wadekar | 93bed2a | 2016-03-18 13:07:33 -0700 | [diff] [blame] | 16 | #include <tegra_private.h> |
Varun Wadekar | 3c95993 | 2016-03-03 13:09:08 -0800 | [diff] [blame] | 17 | |
Antonio Nino Diaz | 4b32e62 | 2018-08-16 16:52:57 +0100 | [diff] [blame] | 18 | extern void memcpy16(void *dest, const void *src, unsigned int length); |
| 19 | |
Pritesh Raithatha | 0de6e53 | 2017-01-24 13:49:46 +0530 | [diff] [blame] | 20 | /* SMMU IDs currently supported by the driver */ |
| 21 | enum { |
| 22 | TEGRA_SMMU0, |
| 23 | TEGRA_SMMU1, |
| 24 | TEGRA_SMMU2 |
| 25 | }; |
| 26 | |
| 27 | static uint32_t tegra_smmu_read_32(uint32_t smmu_id, uint32_t off) |
| 28 | { |
Anthony Zhou | 0844b97 | 2017-06-28 16:35:54 +0800 | [diff] [blame] | 29 | uint32_t ret = 0U; |
| 30 | |
Pritesh Raithatha | 0de6e53 | 2017-01-24 13:49:46 +0530 | [diff] [blame] | 31 | #if defined(TEGRA_SMMU0_BASE) |
Anthony Zhou | 0844b97 | 2017-06-28 16:35:54 +0800 | [diff] [blame] | 32 | if (smmu_id == TEGRA_SMMU0) { |
| 33 | ret = mmio_read_32(TEGRA_SMMU0_BASE + (uint64_t)off); |
| 34 | } |
Pritesh Raithatha | 0de6e53 | 2017-01-24 13:49:46 +0530 | [diff] [blame] | 35 | #endif |
| 36 | |
| 37 | #if defined(TEGRA_SMMU1_BASE) |
Anthony Zhou | 0844b97 | 2017-06-28 16:35:54 +0800 | [diff] [blame] | 38 | if (smmu_id == TEGRA_SMMU1) { |
| 39 | ret = mmio_read_32(TEGRA_SMMU1_BASE + (uint64_t)off); |
| 40 | } |
Pritesh Raithatha | 0de6e53 | 2017-01-24 13:49:46 +0530 | [diff] [blame] | 41 | #endif |
| 42 | |
| 43 | #if defined(TEGRA_SMMU2_BASE) |
Anthony Zhou | 0844b97 | 2017-06-28 16:35:54 +0800 | [diff] [blame] | 44 | if (smmu_id == TEGRA_SMMU2) { |
| 45 | ret = mmio_read_32(TEGRA_SMMU2_BASE + (uint64_t)off); |
| 46 | } |
Pritesh Raithatha | 0de6e53 | 2017-01-24 13:49:46 +0530 | [diff] [blame] | 47 | #endif |
| 48 | |
Anthony Zhou | 0844b97 | 2017-06-28 16:35:54 +0800 | [diff] [blame] | 49 | return ret; |
Pritesh Raithatha | 0de6e53 | 2017-01-24 13:49:46 +0530 | [diff] [blame] | 50 | } |
| 51 | |
| 52 | static void tegra_smmu_write_32(uint32_t smmu_id, |
| 53 | uint32_t off, uint32_t val) |
| 54 | { |
| 55 | #if defined(TEGRA_SMMU0_BASE) |
Anthony Zhou | 0844b97 | 2017-06-28 16:35:54 +0800 | [diff] [blame] | 56 | if (smmu_id == TEGRA_SMMU0) { |
| 57 | mmio_write_32(TEGRA_SMMU0_BASE + (uint64_t)off, val); |
| 58 | } |
Pritesh Raithatha | 0de6e53 | 2017-01-24 13:49:46 +0530 | [diff] [blame] | 59 | #endif |
| 60 | |
| 61 | #if defined(TEGRA_SMMU1_BASE) |
Anthony Zhou | 0844b97 | 2017-06-28 16:35:54 +0800 | [diff] [blame] | 62 | if (smmu_id == TEGRA_SMMU1) { |
| 63 | mmio_write_32(TEGRA_SMMU1_BASE + (uint64_t)off, val); |
| 64 | } |
Pritesh Raithatha | 0de6e53 | 2017-01-24 13:49:46 +0530 | [diff] [blame] | 65 | #endif |
| 66 | |
| 67 | #if defined(TEGRA_SMMU2_BASE) |
Anthony Zhou | 0844b97 | 2017-06-28 16:35:54 +0800 | [diff] [blame] | 68 | if (smmu_id == TEGRA_SMMU2) { |
| 69 | mmio_write_32(TEGRA_SMMU2_BASE + (uint64_t)off, val); |
| 70 | } |
Pritesh Raithatha | 0de6e53 | 2017-01-24 13:49:46 +0530 | [diff] [blame] | 71 | #endif |
| 72 | } |
| 73 | |
Varun Wadekar | 3c95993 | 2016-03-03 13:09:08 -0800 | [diff] [blame] | 74 | /* |
Varun Wadekar | 93bed2a | 2016-03-18 13:07:33 -0700 | [diff] [blame] | 75 | * Save SMMU settings before "System Suspend" to TZDRAM |
Varun Wadekar | 3c95993 | 2016-03-03 13:09:08 -0800 | [diff] [blame] | 76 | */ |
Varun Wadekar | 93bed2a | 2016-03-18 13:07:33 -0700 | [diff] [blame] | 77 | void tegra_smmu_save_context(uint64_t smmu_ctx_addr) |
Varun Wadekar | 3c95993 | 2016-03-03 13:09:08 -0800 | [diff] [blame] | 78 | { |
Varun Wadekar | 27155fc | 2017-04-20 18:56:09 -0700 | [diff] [blame] | 79 | uint32_t i, num_entries = 0; |
Pritesh Raithatha | c88654f | 2017-01-02 20:11:32 +0530 | [diff] [blame] | 80 | smmu_regs_t *smmu_ctx_regs; |
Anthony Zhou | 0844b97 | 2017-06-28 16:35:54 +0800 | [diff] [blame] | 81 | const plat_params_from_bl2_t *params_from_bl2 = bl31_get_plat_params(); |
Varun Wadekar | 93bed2a | 2016-03-18 13:07:33 -0700 | [diff] [blame] | 82 | uint64_t tzdram_base = params_from_bl2->tzdram_base; |
| 83 | uint64_t tzdram_end = tzdram_base + params_from_bl2->tzdram_size; |
Varun Wadekar | 3c95993 | 2016-03-03 13:09:08 -0800 | [diff] [blame] | 84 | uint32_t reg_id1, pgshift, cb_size; |
| 85 | |
| 86 | /* sanity check SMMU settings c*/ |
Pritesh Raithatha | 0de6e53 | 2017-01-24 13:49:46 +0530 | [diff] [blame] | 87 | reg_id1 = mmio_read_32((TEGRA_SMMU0_BASE + SMMU_GNSR0_IDR1)); |
Anthony Zhou | 0844b97 | 2017-06-28 16:35:54 +0800 | [diff] [blame] | 88 | pgshift = ((reg_id1 & ID1_PAGESIZE) != 0U) ? 16U : 12U; |
| 89 | cb_size = (2UL << pgshift) * \ |
| 90 | (1UL << (((reg_id1 >> ID1_NUMPAGENDXB_SHIFT) & ID1_NUMPAGENDXB_MASK) + 1UL)); |
Varun Wadekar | 3c95993 | 2016-03-03 13:09:08 -0800 | [diff] [blame] | 91 | |
| 92 | assert(!((pgshift != PGSHIFT) || (cb_size != CB_SIZE))); |
Varun Wadekar | 93bed2a | 2016-03-18 13:07:33 -0700 | [diff] [blame] | 93 | assert((smmu_ctx_addr >= tzdram_base) && (smmu_ctx_addr <= tzdram_end)); |
| 94 | |
Pritesh Raithatha | c88654f | 2017-01-02 20:11:32 +0530 | [diff] [blame] | 95 | /* get SMMU context table */ |
| 96 | smmu_ctx_regs = plat_get_smmu_ctx(); |
| 97 | assert(smmu_ctx_regs); |
Varun Wadekar | 3c95993 | 2016-03-03 13:09:08 -0800 | [diff] [blame] | 98 | |
Varun Wadekar | 27155fc | 2017-04-20 18:56:09 -0700 | [diff] [blame] | 99 | /* |
| 100 | * smmu_ctx_regs[0].val contains the size of the context table minus |
| 101 | * the last entry. Sanity check the table size before we start with |
| 102 | * the context save operation. |
| 103 | */ |
| 104 | while (smmu_ctx_regs[num_entries].val != 0xFFFFFFFFU) { |
| 105 | num_entries++; |
| 106 | } |
| 107 | |
| 108 | /* panic if the sizes do not match */ |
Anthony Zhou | 0844b97 | 2017-06-28 16:35:54 +0800 | [diff] [blame] | 109 | if (num_entries != smmu_ctx_regs[0].val) { |
Varun Wadekar | 27155fc | 2017-04-20 18:56:09 -0700 | [diff] [blame] | 110 | panic(); |
Anthony Zhou | 0844b97 | 2017-06-28 16:35:54 +0800 | [diff] [blame] | 111 | } |
Varun Wadekar | 27155fc | 2017-04-20 18:56:09 -0700 | [diff] [blame] | 112 | |
Varun Wadekar | 3c95993 | 2016-03-03 13:09:08 -0800 | [diff] [blame] | 113 | /* save SMMU register values */ |
Varun Wadekar | 27155fc | 2017-04-20 18:56:09 -0700 | [diff] [blame] | 114 | for (i = 1; i < num_entries; i++) |
Varun Wadekar | 3c95993 | 2016-03-03 13:09:08 -0800 | [diff] [blame] | 115 | smmu_ctx_regs[i].val = mmio_read_32(smmu_ctx_regs[i].reg); |
| 116 | |
Varun Wadekar | 27155fc | 2017-04-20 18:56:09 -0700 | [diff] [blame] | 117 | /* increment by 1 to take care of the last entry */ |
| 118 | num_entries++; |
| 119 | |
Varun Wadekar | 93bed2a | 2016-03-18 13:07:33 -0700 | [diff] [blame] | 120 | /* Save SMMU config settings */ |
Anthony Zhou | 0844b97 | 2017-06-28 16:35:54 +0800 | [diff] [blame] | 121 | (void)memcpy16((uint8_t *)smmu_ctx_addr, (uint8_t *)smmu_ctx_regs, |
| 122 | (sizeof(smmu_regs_t) * num_entries)); |
Varun Wadekar | 93bed2a | 2016-03-18 13:07:33 -0700 | [diff] [blame] | 123 | |
Varun Wadekar | 3c95993 | 2016-03-03 13:09:08 -0800 | [diff] [blame] | 124 | /* save the SMMU table address */ |
| 125 | mmio_write_32(TEGRA_SCRATCH_BASE + SECURE_SCRATCH_RSV11_LO, |
Varun Wadekar | 93bed2a | 2016-03-18 13:07:33 -0700 | [diff] [blame] | 126 | (uint32_t)smmu_ctx_addr); |
Varun Wadekar | 3c95993 | 2016-03-03 13:09:08 -0800 | [diff] [blame] | 127 | mmio_write_32(TEGRA_SCRATCH_BASE + SECURE_SCRATCH_RSV11_HI, |
Varun Wadekar | 93bed2a | 2016-03-18 13:07:33 -0700 | [diff] [blame] | 128 | (uint32_t)(smmu_ctx_addr >> 32)); |
Varun Wadekar | 3c95993 | 2016-03-03 13:09:08 -0800 | [diff] [blame] | 129 | } |
| 130 | |
Varun Wadekar | ea709c3 | 2016-04-20 17:14:15 -0700 | [diff] [blame] | 131 | #define SMMU_NUM_CONTEXTS 64 |
| 132 | #define SMMU_CONTEXT_BANK_MAX_IDX 64 |
| 133 | |
Varun Wadekar | 3c95993 | 2016-03-03 13:09:08 -0800 | [diff] [blame] | 134 | /* |
| 135 | * Init SMMU during boot or "System Suspend" exit |
| 136 | */ |
| 137 | void tegra_smmu_init(void) |
| 138 | { |
Pritesh Raithatha | 0de6e53 | 2017-01-24 13:49:46 +0530 | [diff] [blame] | 139 | uint32_t val, cb_idx, smmu_id, ctx_base; |
Varun Wadekar | 3c95993 | 2016-03-03 13:09:08 -0800 | [diff] [blame] | 140 | |
Pritesh Raithatha | 0de6e53 | 2017-01-24 13:49:46 +0530 | [diff] [blame] | 141 | for (smmu_id = 0; smmu_id < NUM_SMMU_DEVICES; smmu_id++) { |
| 142 | /* Program the SMMU pagesize and reset CACHE_LOCK bit */ |
| 143 | val = tegra_smmu_read_32(smmu_id, SMMU_GSR0_SECURE_ACR); |
| 144 | val |= SMMU_GSR0_PGSIZE_64K; |
| 145 | val &= ~SMMU_ACR_CACHE_LOCK_ENABLE_BIT; |
| 146 | tegra_smmu_write_32(smmu_id, SMMU_GSR0_SECURE_ACR, val); |
Varun Wadekar | ea709c3 | 2016-04-20 17:14:15 -0700 | [diff] [blame] | 147 | |
Pritesh Raithatha | 0de6e53 | 2017-01-24 13:49:46 +0530 | [diff] [blame] | 148 | /* reset CACHE LOCK bit for NS Aux. Config. Register */ |
| 149 | val = tegra_smmu_read_32(smmu_id, SMMU_GNSR_ACR); |
| 150 | val &= ~SMMU_ACR_CACHE_LOCK_ENABLE_BIT; |
| 151 | tegra_smmu_write_32(smmu_id, SMMU_GNSR_ACR, val); |
Varun Wadekar | ea709c3 | 2016-04-20 17:14:15 -0700 | [diff] [blame] | 152 | |
Pritesh Raithatha | 0de6e53 | 2017-01-24 13:49:46 +0530 | [diff] [blame] | 153 | /* disable TCU prefetch for all contexts */ |
| 154 | ctx_base = (SMMU_GSR0_PGSIZE_64K * SMMU_NUM_CONTEXTS) |
| 155 | + SMMU_CBn_ACTLR; |
| 156 | for (cb_idx = 0; cb_idx < SMMU_CONTEXT_BANK_MAX_IDX; cb_idx++) { |
| 157 | val = tegra_smmu_read_32(smmu_id, |
| 158 | ctx_base + (SMMU_GSR0_PGSIZE_64K * cb_idx)); |
| 159 | val &= ~SMMU_CBn_ACTLR_CPRE_BIT; |
| 160 | tegra_smmu_write_32(smmu_id, ctx_base + |
| 161 | (SMMU_GSR0_PGSIZE_64K * cb_idx), val); |
| 162 | } |
Varun Wadekar | ea709c3 | 2016-04-20 17:14:15 -0700 | [diff] [blame] | 163 | |
Pritesh Raithatha | 0de6e53 | 2017-01-24 13:49:46 +0530 | [diff] [blame] | 164 | /* set CACHE LOCK bit for NS Aux. Config. Register */ |
| 165 | val = tegra_smmu_read_32(smmu_id, SMMU_GNSR_ACR); |
| 166 | val |= SMMU_ACR_CACHE_LOCK_ENABLE_BIT; |
| 167 | tegra_smmu_write_32(smmu_id, SMMU_GNSR_ACR, val); |
Varun Wadekar | ea709c3 | 2016-04-20 17:14:15 -0700 | [diff] [blame] | 168 | |
Pritesh Raithatha | 0de6e53 | 2017-01-24 13:49:46 +0530 | [diff] [blame] | 169 | /* set CACHE LOCK bit for S Aux. Config. Register */ |
| 170 | val = tegra_smmu_read_32(smmu_id, SMMU_GSR0_SECURE_ACR); |
| 171 | val |= SMMU_ACR_CACHE_LOCK_ENABLE_BIT; |
| 172 | tegra_smmu_write_32(smmu_id, SMMU_GSR0_SECURE_ACR, val); |
| 173 | } |
Varun Wadekar | 3c95993 | 2016-03-03 13:09:08 -0800 | [diff] [blame] | 174 | } |