Hiroshi DOYU | 7a31f6f | 2011-11-17 07:31:31 +0200 | [diff] [blame] | 1 | /* |
Thierry Reding | 8918465 | 2014-04-16 09:24:44 +0200 | [diff] [blame] | 2 | * Copyright (C) 2011-2014 NVIDIA CORPORATION. All rights reserved. |
Hiroshi DOYU | 7a31f6f | 2011-11-17 07:31:31 +0200 | [diff] [blame] | 3 | * |
Thierry Reding | 8918465 | 2014-04-16 09:24:44 +0200 | [diff] [blame] | 4 | * This program is free software; you can redistribute it and/or modify |
| 5 | * it under the terms of the GNU General Public License version 2 as |
| 6 | * published by the Free Software Foundation. |
Hiroshi DOYU | 7a31f6f | 2011-11-17 07:31:31 +0200 | [diff] [blame] | 7 | */ |
| 8 | |
Thierry Reding | 804cb54 | 2015-03-27 11:07:27 +0100 | [diff] [blame] | 9 | #include <linux/bitops.h> |
Thierry Reding | d1313e7 | 2015-01-23 09:49:25 +0100 | [diff] [blame] | 10 | #include <linux/debugfs.h> |
Thierry Reding | bc5e6de | 2013-01-21 11:09:06 +0100 | [diff] [blame] | 11 | #include <linux/err.h> |
Hiroshi DOYU | 7a31f6f | 2011-11-17 07:31:31 +0200 | [diff] [blame] | 12 | #include <linux/iommu.h> |
Thierry Reding | 8918465 | 2014-04-16 09:24:44 +0200 | [diff] [blame] | 13 | #include <linux/kernel.h> |
Hiroshi Doyu | 0760e8f | 2012-06-25 14:23:55 +0300 | [diff] [blame] | 14 | #include <linux/of.h> |
Thierry Reding | 8918465 | 2014-04-16 09:24:44 +0200 | [diff] [blame] | 15 | #include <linux/of_device.h> |
| 16 | #include <linux/platform_device.h> |
| 17 | #include <linux/slab.h> |
Thierry Reding | 306a7f9 | 2014-07-17 13:17:24 +0200 | [diff] [blame] | 18 | |
| 19 | #include <soc/tegra/ahb.h> |
Thierry Reding | 8918465 | 2014-04-16 09:24:44 +0200 | [diff] [blame] | 20 | #include <soc/tegra/mc.h> |
Hiroshi DOYU | 7a31f6f | 2011-11-17 07:31:31 +0200 | [diff] [blame] | 21 | |
Thierry Reding | 8918465 | 2014-04-16 09:24:44 +0200 | [diff] [blame] | 22 | struct tegra_smmu { |
| 23 | void __iomem *regs; |
| 24 | struct device *dev; |
Hiroshi DOYU | 7a31f6f | 2011-11-17 07:31:31 +0200 | [diff] [blame] | 25 | |
Thierry Reding | 8918465 | 2014-04-16 09:24:44 +0200 | [diff] [blame] | 26 | struct tegra_mc *mc; |
| 27 | const struct tegra_smmu_soc *soc; |
Stephen Warren | e6bc593 | 2012-09-04 16:36:15 -0600 | [diff] [blame] | 28 | |
Thierry Reding | 804cb54 | 2015-03-27 11:07:27 +0100 | [diff] [blame] | 29 | unsigned long pfn_mask; |
| 30 | |
Thierry Reding | 8918465 | 2014-04-16 09:24:44 +0200 | [diff] [blame] | 31 | unsigned long *asids; |
| 32 | struct mutex lock; |
Stephen Warren | e6bc593 | 2012-09-04 16:36:15 -0600 | [diff] [blame] | 33 | |
Thierry Reding | 8918465 | 2014-04-16 09:24:44 +0200 | [diff] [blame] | 34 | struct list_head list; |
Thierry Reding | d1313e7 | 2015-01-23 09:49:25 +0100 | [diff] [blame] | 35 | |
| 36 | struct dentry *debugfs; |
Stephen Warren | e6bc593 | 2012-09-04 16:36:15 -0600 | [diff] [blame] | 37 | }; |
| 38 | |
Thierry Reding | 8918465 | 2014-04-16 09:24:44 +0200 | [diff] [blame] | 39 | struct tegra_smmu_as { |
Joerg Roedel | d5f1a81 | 2015-03-26 13:43:12 +0100 | [diff] [blame] | 40 | struct iommu_domain domain; |
Thierry Reding | 8918465 | 2014-04-16 09:24:44 +0200 | [diff] [blame] | 41 | struct tegra_smmu *smmu; |
| 42 | unsigned int use_count; |
Russell King | 32924c7 | 2015-07-27 13:29:31 +0100 | [diff] [blame] | 43 | u32 *count; |
Russell King | 853520f | 2015-07-27 13:29:26 +0100 | [diff] [blame] | 44 | struct page **pts; |
Thierry Reding | 8918465 | 2014-04-16 09:24:44 +0200 | [diff] [blame] | 45 | struct page *pd; |
Russell King | e3c9719 | 2015-07-27 13:29:52 +0100 | [diff] [blame] | 46 | dma_addr_t pd_dma; |
Thierry Reding | 8918465 | 2014-04-16 09:24:44 +0200 | [diff] [blame] | 47 | unsigned id; |
| 48 | u32 attr; |
Hiroshi Doyu | 39abf8a | 2012-08-02 11:46:40 +0300 | [diff] [blame] | 49 | }; |
| 50 | |
Joerg Roedel | d5f1a81 | 2015-03-26 13:43:12 +0100 | [diff] [blame] | 51 | static struct tegra_smmu_as *to_smmu_as(struct iommu_domain *dom) |
| 52 | { |
| 53 | return container_of(dom, struct tegra_smmu_as, domain); |
| 54 | } |
| 55 | |
Thierry Reding | 8918465 | 2014-04-16 09:24:44 +0200 | [diff] [blame] | 56 | static inline void smmu_writel(struct tegra_smmu *smmu, u32 value, |
| 57 | unsigned long offset) |
Hiroshi DOYU | 7a31f6f | 2011-11-17 07:31:31 +0200 | [diff] [blame] | 58 | { |
Thierry Reding | 8918465 | 2014-04-16 09:24:44 +0200 | [diff] [blame] | 59 | writel(value, smmu->regs + offset); |
Joerg Roedel | fe1229b | 2013-02-04 20:40:58 +0100 | [diff] [blame] | 60 | } |
| 61 | |
Thierry Reding | 8918465 | 2014-04-16 09:24:44 +0200 | [diff] [blame] | 62 | static inline u32 smmu_readl(struct tegra_smmu *smmu, unsigned long offset) |
Hiroshi DOYU | 7a31f6f | 2011-11-17 07:31:31 +0200 | [diff] [blame] | 63 | { |
Thierry Reding | 8918465 | 2014-04-16 09:24:44 +0200 | [diff] [blame] | 64 | return readl(smmu->regs + offset); |
Hiroshi DOYU | 7a31f6f | 2011-11-17 07:31:31 +0200 | [diff] [blame] | 65 | } |
| 66 | |
Thierry Reding | 8918465 | 2014-04-16 09:24:44 +0200 | [diff] [blame] | 67 | #define SMMU_CONFIG 0x010 |
| 68 | #define SMMU_CONFIG_ENABLE (1 << 0) |
| 69 | |
| 70 | #define SMMU_TLB_CONFIG 0x14 |
| 71 | #define SMMU_TLB_CONFIG_HIT_UNDER_MISS (1 << 29) |
| 72 | #define SMMU_TLB_CONFIG_ROUND_ROBIN_ARBITRATION (1 << 28) |
| 73 | #define SMMU_TLB_CONFIG_ACTIVE_LINES(x) ((x) & 0x3f) |
| 74 | |
| 75 | #define SMMU_PTC_CONFIG 0x18 |
| 76 | #define SMMU_PTC_CONFIG_ENABLE (1 << 29) |
| 77 | #define SMMU_PTC_CONFIG_REQ_LIMIT(x) (((x) & 0x0f) << 24) |
| 78 | #define SMMU_PTC_CONFIG_INDEX_MAP(x) ((x) & 0x3f) |
| 79 | |
| 80 | #define SMMU_PTB_ASID 0x01c |
| 81 | #define SMMU_PTB_ASID_VALUE(x) ((x) & 0x7f) |
| 82 | |
| 83 | #define SMMU_PTB_DATA 0x020 |
Russell King | e3c9719 | 2015-07-27 13:29:52 +0100 | [diff] [blame] | 84 | #define SMMU_PTB_DATA_VALUE(dma, attr) ((dma) >> 12 | (attr)) |
Thierry Reding | 8918465 | 2014-04-16 09:24:44 +0200 | [diff] [blame] | 85 | |
Russell King | e3c9719 | 2015-07-27 13:29:52 +0100 | [diff] [blame] | 86 | #define SMMU_MK_PDE(dma, attr) ((dma) >> SMMU_PTE_SHIFT | (attr)) |
Thierry Reding | 8918465 | 2014-04-16 09:24:44 +0200 | [diff] [blame] | 87 | |
| 88 | #define SMMU_TLB_FLUSH 0x030 |
| 89 | #define SMMU_TLB_FLUSH_VA_MATCH_ALL (0 << 0) |
| 90 | #define SMMU_TLB_FLUSH_VA_MATCH_SECTION (2 << 0) |
| 91 | #define SMMU_TLB_FLUSH_VA_MATCH_GROUP (3 << 0) |
| 92 | #define SMMU_TLB_FLUSH_ASID(x) (((x) & 0x7f) << 24) |
| 93 | #define SMMU_TLB_FLUSH_VA_SECTION(addr) ((((addr) & 0xffc00000) >> 12) | \ |
| 94 | SMMU_TLB_FLUSH_VA_MATCH_SECTION) |
| 95 | #define SMMU_TLB_FLUSH_VA_GROUP(addr) ((((addr) & 0xffffc000) >> 12) | \ |
| 96 | SMMU_TLB_FLUSH_VA_MATCH_GROUP) |
| 97 | #define SMMU_TLB_FLUSH_ASID_MATCH (1 << 31) |
| 98 | |
| 99 | #define SMMU_PTC_FLUSH 0x034 |
| 100 | #define SMMU_PTC_FLUSH_TYPE_ALL (0 << 0) |
| 101 | #define SMMU_PTC_FLUSH_TYPE_ADR (1 << 0) |
| 102 | |
| 103 | #define SMMU_PTC_FLUSH_HI 0x9b8 |
| 104 | #define SMMU_PTC_FLUSH_HI_MASK 0x3 |
| 105 | |
| 106 | /* per-SWGROUP SMMU_*_ASID register */ |
| 107 | #define SMMU_ASID_ENABLE (1 << 31) |
| 108 | #define SMMU_ASID_MASK 0x7f |
| 109 | #define SMMU_ASID_VALUE(x) ((x) & SMMU_ASID_MASK) |
| 110 | |
| 111 | /* page table definitions */ |
| 112 | #define SMMU_NUM_PDE 1024 |
| 113 | #define SMMU_NUM_PTE 1024 |
| 114 | |
| 115 | #define SMMU_SIZE_PD (SMMU_NUM_PDE * 4) |
| 116 | #define SMMU_SIZE_PT (SMMU_NUM_PTE * 4) |
| 117 | |
| 118 | #define SMMU_PDE_SHIFT 22 |
| 119 | #define SMMU_PTE_SHIFT 12 |
| 120 | |
Thierry Reding | 8918465 | 2014-04-16 09:24:44 +0200 | [diff] [blame] | 121 | #define SMMU_PD_READABLE (1 << 31) |
| 122 | #define SMMU_PD_WRITABLE (1 << 30) |
| 123 | #define SMMU_PD_NONSECURE (1 << 29) |
| 124 | |
| 125 | #define SMMU_PDE_READABLE (1 << 31) |
| 126 | #define SMMU_PDE_WRITABLE (1 << 30) |
| 127 | #define SMMU_PDE_NONSECURE (1 << 29) |
| 128 | #define SMMU_PDE_NEXT (1 << 28) |
| 129 | |
| 130 | #define SMMU_PTE_READABLE (1 << 31) |
| 131 | #define SMMU_PTE_WRITABLE (1 << 30) |
| 132 | #define SMMU_PTE_NONSECURE (1 << 29) |
| 133 | |
| 134 | #define SMMU_PDE_ATTR (SMMU_PDE_READABLE | SMMU_PDE_WRITABLE | \ |
| 135 | SMMU_PDE_NONSECURE) |
| 136 | #define SMMU_PTE_ATTR (SMMU_PTE_READABLE | SMMU_PTE_WRITABLE | \ |
| 137 | SMMU_PTE_NONSECURE) |
| 138 | |
Russell King | 34d35f8 | 2015-07-27 13:29:16 +0100 | [diff] [blame] | 139 | static unsigned int iova_pd_index(unsigned long iova) |
| 140 | { |
| 141 | return (iova >> SMMU_PDE_SHIFT) & (SMMU_NUM_PDE - 1); |
| 142 | } |
| 143 | |
| 144 | static unsigned int iova_pt_index(unsigned long iova) |
| 145 | { |
| 146 | return (iova >> SMMU_PTE_SHIFT) & (SMMU_NUM_PTE - 1); |
| 147 | } |
| 148 | |
Russell King | e3c9719 | 2015-07-27 13:29:52 +0100 | [diff] [blame] | 149 | static bool smmu_dma_addr_valid(struct tegra_smmu *smmu, dma_addr_t addr) |
Russell King | 4b3c7d1 | 2015-07-27 13:29:36 +0100 | [diff] [blame] | 150 | { |
Russell King | e3c9719 | 2015-07-27 13:29:52 +0100 | [diff] [blame] | 151 | addr >>= 12; |
| 152 | return (addr & smmu->pfn_mask) == addr; |
| 153 | } |
Russell King | 4b3c7d1 | 2015-07-27 13:29:36 +0100 | [diff] [blame] | 154 | |
Russell King | e3c9719 | 2015-07-27 13:29:52 +0100 | [diff] [blame] | 155 | static dma_addr_t smmu_pde_to_dma(u32 pde) |
| 156 | { |
| 157 | return pde << 12; |
Russell King | 4b3c7d1 | 2015-07-27 13:29:36 +0100 | [diff] [blame] | 158 | } |
| 159 | |
Russell King | b8fe038 | 2015-07-27 13:29:41 +0100 | [diff] [blame] | 160 | static void smmu_flush_ptc_all(struct tegra_smmu *smmu) |
| 161 | { |
| 162 | smmu_writel(smmu, SMMU_PTC_FLUSH_TYPE_ALL, SMMU_PTC_FLUSH); |
| 163 | } |
| 164 | |
Russell King | e3c9719 | 2015-07-27 13:29:52 +0100 | [diff] [blame] | 165 | static inline void smmu_flush_ptc(struct tegra_smmu *smmu, dma_addr_t dma, |
Thierry Reding | 8918465 | 2014-04-16 09:24:44 +0200 | [diff] [blame] | 166 | unsigned long offset) |
Hiroshi DOYU | 7a31f6f | 2011-11-17 07:31:31 +0200 | [diff] [blame] | 167 | { |
Thierry Reding | 8918465 | 2014-04-16 09:24:44 +0200 | [diff] [blame] | 168 | u32 value; |
Hiroshi Doyu | a6870e9 | 2013-01-31 10:14:10 +0200 | [diff] [blame] | 169 | |
Russell King | b8fe038 | 2015-07-27 13:29:41 +0100 | [diff] [blame] | 170 | offset &= ~(smmu->mc->soc->atom_size - 1); |
Hiroshi Doyu | a6870e9 | 2013-01-31 10:14:10 +0200 | [diff] [blame] | 171 | |
Russell King | b8fe038 | 2015-07-27 13:29:41 +0100 | [diff] [blame] | 172 | if (smmu->mc->soc->num_address_bits > 32) { |
Russell King | e3c9719 | 2015-07-27 13:29:52 +0100 | [diff] [blame] | 173 | #ifdef CONFIG_ARCH_DMA_ADDR_T_64BIT |
| 174 | value = (dma >> 32) & SMMU_PTC_FLUSH_HI_MASK; |
Hiroshi DOYU | 7a31f6f | 2011-11-17 07:31:31 +0200 | [diff] [blame] | 175 | #else |
Russell King | b8fe038 | 2015-07-27 13:29:41 +0100 | [diff] [blame] | 176 | value = 0; |
Hiroshi DOYU | 7a31f6f | 2011-11-17 07:31:31 +0200 | [diff] [blame] | 177 | #endif |
Russell King | b8fe038 | 2015-07-27 13:29:41 +0100 | [diff] [blame] | 178 | smmu_writel(smmu, value, SMMU_PTC_FLUSH_HI); |
Hiroshi DOYU | 7a31f6f | 2011-11-17 07:31:31 +0200 | [diff] [blame] | 179 | } |
Hiroshi DOYU | 9e971a0 | 2012-07-02 14:26:38 +0300 | [diff] [blame] | 180 | |
Russell King | e3c9719 | 2015-07-27 13:29:52 +0100 | [diff] [blame] | 181 | value = (dma + offset) | SMMU_PTC_FLUSH_TYPE_ADR; |
Thierry Reding | 8918465 | 2014-04-16 09:24:44 +0200 | [diff] [blame] | 182 | smmu_writel(smmu, value, SMMU_PTC_FLUSH); |
| 183 | } |
| 184 | |
| 185 | static inline void smmu_flush_tlb(struct tegra_smmu *smmu) |
| 186 | { |
| 187 | smmu_writel(smmu, SMMU_TLB_FLUSH_VA_MATCH_ALL, SMMU_TLB_FLUSH); |
| 188 | } |
| 189 | |
| 190 | static inline void smmu_flush_tlb_asid(struct tegra_smmu *smmu, |
| 191 | unsigned long asid) |
| 192 | { |
| 193 | u32 value; |
| 194 | |
| 195 | value = SMMU_TLB_FLUSH_ASID_MATCH | SMMU_TLB_FLUSH_ASID(asid) | |
| 196 | SMMU_TLB_FLUSH_VA_MATCH_ALL; |
| 197 | smmu_writel(smmu, value, SMMU_TLB_FLUSH); |
| 198 | } |
| 199 | |
| 200 | static inline void smmu_flush_tlb_section(struct tegra_smmu *smmu, |
| 201 | unsigned long asid, |
| 202 | unsigned long iova) |
| 203 | { |
| 204 | u32 value; |
| 205 | |
| 206 | value = SMMU_TLB_FLUSH_ASID_MATCH | SMMU_TLB_FLUSH_ASID(asid) | |
| 207 | SMMU_TLB_FLUSH_VA_SECTION(iova); |
| 208 | smmu_writel(smmu, value, SMMU_TLB_FLUSH); |
| 209 | } |
| 210 | |
| 211 | static inline void smmu_flush_tlb_group(struct tegra_smmu *smmu, |
| 212 | unsigned long asid, |
| 213 | unsigned long iova) |
| 214 | { |
| 215 | u32 value; |
| 216 | |
| 217 | value = SMMU_TLB_FLUSH_ASID_MATCH | SMMU_TLB_FLUSH_ASID(asid) | |
| 218 | SMMU_TLB_FLUSH_VA_GROUP(iova); |
| 219 | smmu_writel(smmu, value, SMMU_TLB_FLUSH); |
| 220 | } |
| 221 | |
| 222 | static inline void smmu_flush(struct tegra_smmu *smmu) |
| 223 | { |
| 224 | smmu_readl(smmu, SMMU_CONFIG); |
| 225 | } |
| 226 | |
| 227 | static int tegra_smmu_alloc_asid(struct tegra_smmu *smmu, unsigned int *idp) |
| 228 | { |
| 229 | unsigned long id; |
| 230 | |
| 231 | mutex_lock(&smmu->lock); |
| 232 | |
| 233 | id = find_first_zero_bit(smmu->asids, smmu->soc->num_asids); |
| 234 | if (id >= smmu->soc->num_asids) { |
| 235 | mutex_unlock(&smmu->lock); |
| 236 | return -ENOSPC; |
Hiroshi DOYU | 7a31f6f | 2011-11-17 07:31:31 +0200 | [diff] [blame] | 237 | } |
Hiroshi DOYU | 9e971a0 | 2012-07-02 14:26:38 +0300 | [diff] [blame] | 238 | |
Thierry Reding | 8918465 | 2014-04-16 09:24:44 +0200 | [diff] [blame] | 239 | set_bit(id, smmu->asids); |
| 240 | *idp = id; |
Hiroshi DOYU | 9e971a0 | 2012-07-02 14:26:38 +0300 | [diff] [blame] | 241 | |
Thierry Reding | 8918465 | 2014-04-16 09:24:44 +0200 | [diff] [blame] | 242 | mutex_unlock(&smmu->lock); |
Hiroshi DOYU | 7a31f6f | 2011-11-17 07:31:31 +0200 | [diff] [blame] | 243 | return 0; |
| 244 | } |
| 245 | |
Thierry Reding | 8918465 | 2014-04-16 09:24:44 +0200 | [diff] [blame] | 246 | static void tegra_smmu_free_asid(struct tegra_smmu *smmu, unsigned int id) |
Hiroshi DOYU | 7a31f6f | 2011-11-17 07:31:31 +0200 | [diff] [blame] | 247 | { |
Thierry Reding | 8918465 | 2014-04-16 09:24:44 +0200 | [diff] [blame] | 248 | mutex_lock(&smmu->lock); |
| 249 | clear_bit(id, smmu->asids); |
| 250 | mutex_unlock(&smmu->lock); |
Hiroshi DOYU | 7a31f6f | 2011-11-17 07:31:31 +0200 | [diff] [blame] | 251 | } |
| 252 | |
Thierry Reding | 8918465 | 2014-04-16 09:24:44 +0200 | [diff] [blame] | 253 | static bool tegra_smmu_capable(enum iommu_cap cap) |
Hiroshi DOYU | 7a31f6f | 2011-11-17 07:31:31 +0200 | [diff] [blame] | 254 | { |
Joerg Roedel | 7c2aa64 | 2014-09-05 10:51:37 +0200 | [diff] [blame] | 255 | return false; |
Hiroshi DOYU | 7a31f6f | 2011-11-17 07:31:31 +0200 | [diff] [blame] | 256 | } |
| 257 | |
Joerg Roedel | d5f1a81 | 2015-03-26 13:43:12 +0100 | [diff] [blame] | 258 | static struct iommu_domain *tegra_smmu_domain_alloc(unsigned type) |
Hiroshi DOYU | 7a31f6f | 2011-11-17 07:31:31 +0200 | [diff] [blame] | 259 | { |
Thierry Reding | 8918465 | 2014-04-16 09:24:44 +0200 | [diff] [blame] | 260 | struct tegra_smmu_as *as; |
| 261 | unsigned int i; |
| 262 | uint32_t *pd; |
Hiroshi DOYU | 7a31f6f | 2011-11-17 07:31:31 +0200 | [diff] [blame] | 263 | |
Joerg Roedel | d5f1a81 | 2015-03-26 13:43:12 +0100 | [diff] [blame] | 264 | if (type != IOMMU_DOMAIN_UNMANAGED) |
| 265 | return NULL; |
| 266 | |
Thierry Reding | 8918465 | 2014-04-16 09:24:44 +0200 | [diff] [blame] | 267 | as = kzalloc(sizeof(*as), GFP_KERNEL); |
| 268 | if (!as) |
Joerg Roedel | d5f1a81 | 2015-03-26 13:43:12 +0100 | [diff] [blame] | 269 | return NULL; |
Hiroshi DOYU | 7a31f6f | 2011-11-17 07:31:31 +0200 | [diff] [blame] | 270 | |
Thierry Reding | 8918465 | 2014-04-16 09:24:44 +0200 | [diff] [blame] | 271 | as->attr = SMMU_PD_READABLE | SMMU_PD_WRITABLE | SMMU_PD_NONSECURE; |
Hiroshi DOYU | 7a31f6f | 2011-11-17 07:31:31 +0200 | [diff] [blame] | 272 | |
Thierry Reding | 8918465 | 2014-04-16 09:24:44 +0200 | [diff] [blame] | 273 | as->pd = alloc_page(GFP_KERNEL | __GFP_DMA); |
| 274 | if (!as->pd) { |
| 275 | kfree(as); |
Joerg Roedel | d5f1a81 | 2015-03-26 13:43:12 +0100 | [diff] [blame] | 276 | return NULL; |
Hiroshi DOYU | 7a31f6f | 2011-11-17 07:31:31 +0200 | [diff] [blame] | 277 | } |
| 278 | |
Russell King | 32924c7 | 2015-07-27 13:29:31 +0100 | [diff] [blame] | 279 | as->count = kcalloc(SMMU_NUM_PDE, sizeof(u32), GFP_KERNEL); |
Thierry Reding | 8918465 | 2014-04-16 09:24:44 +0200 | [diff] [blame] | 280 | if (!as->count) { |
| 281 | __free_page(as->pd); |
| 282 | kfree(as); |
Joerg Roedel | d5f1a81 | 2015-03-26 13:43:12 +0100 | [diff] [blame] | 283 | return NULL; |
Hiroshi DOYU | 7a31f6f | 2011-11-17 07:31:31 +0200 | [diff] [blame] | 284 | } |
Hiroshi DOYU | 7a31f6f | 2011-11-17 07:31:31 +0200 | [diff] [blame] | 285 | |
Russell King | 853520f | 2015-07-27 13:29:26 +0100 | [diff] [blame] | 286 | as->pts = kcalloc(SMMU_NUM_PDE, sizeof(*as->pts), GFP_KERNEL); |
| 287 | if (!as->pts) { |
Russell King | 32924c7 | 2015-07-27 13:29:31 +0100 | [diff] [blame] | 288 | kfree(as->count); |
Russell King | 853520f | 2015-07-27 13:29:26 +0100 | [diff] [blame] | 289 | __free_page(as->pd); |
| 290 | kfree(as); |
| 291 | return NULL; |
| 292 | } |
| 293 | |
Thierry Reding | 8918465 | 2014-04-16 09:24:44 +0200 | [diff] [blame] | 294 | /* clear PDEs */ |
| 295 | pd = page_address(as->pd); |
Hiroshi DOYU | 7a31f6f | 2011-11-17 07:31:31 +0200 | [diff] [blame] | 296 | |
Thierry Reding | 8918465 | 2014-04-16 09:24:44 +0200 | [diff] [blame] | 297 | for (i = 0; i < SMMU_NUM_PDE; i++) |
| 298 | pd[i] = 0; |
Hiroshi Doyu | d2453b2 | 2012-07-30 08:39:18 +0300 | [diff] [blame] | 299 | |
Thierry Reding | 471d914 | 2015-03-27 11:07:25 +0100 | [diff] [blame] | 300 | /* setup aperture */ |
Joerg Roedel | 7f65ef0 | 2015-04-02 13:33:19 +0200 | [diff] [blame] | 301 | as->domain.geometry.aperture_start = 0; |
| 302 | as->domain.geometry.aperture_end = 0xffffffff; |
| 303 | as->domain.geometry.force_aperture = true; |
Hiroshi DOYU | 7a31f6f | 2011-11-17 07:31:31 +0200 | [diff] [blame] | 304 | |
Joerg Roedel | d5f1a81 | 2015-03-26 13:43:12 +0100 | [diff] [blame] | 305 | return &as->domain; |
Hiroshi DOYU | 7a31f6f | 2011-11-17 07:31:31 +0200 | [diff] [blame] | 306 | } |
| 307 | |
Joerg Roedel | d5f1a81 | 2015-03-26 13:43:12 +0100 | [diff] [blame] | 308 | static void tegra_smmu_domain_free(struct iommu_domain *domain) |
Hiroshi DOYU | 7a31f6f | 2011-11-17 07:31:31 +0200 | [diff] [blame] | 309 | { |
Joerg Roedel | d5f1a81 | 2015-03-26 13:43:12 +0100 | [diff] [blame] | 310 | struct tegra_smmu_as *as = to_smmu_as(domain); |
Hiroshi DOYU | 7a31f6f | 2011-11-17 07:31:31 +0200 | [diff] [blame] | 311 | |
Thierry Reding | 8918465 | 2014-04-16 09:24:44 +0200 | [diff] [blame] | 312 | /* TODO: free page directory and page tables */ |
Hiroshi DOYU | 7a31f6f | 2011-11-17 07:31:31 +0200 | [diff] [blame] | 313 | |
Thierry Reding | 8918465 | 2014-04-16 09:24:44 +0200 | [diff] [blame] | 314 | kfree(as); |
Hiroshi DOYU | 7a31f6f | 2011-11-17 07:31:31 +0200 | [diff] [blame] | 315 | } |
| 316 | |
Thierry Reding | 8918465 | 2014-04-16 09:24:44 +0200 | [diff] [blame] | 317 | static const struct tegra_smmu_swgroup * |
| 318 | tegra_smmu_find_swgroup(struct tegra_smmu *smmu, unsigned int swgroup) |
Hiroshi Doyu | 39abf8a | 2012-08-02 11:46:40 +0300 | [diff] [blame] | 319 | { |
Thierry Reding | 8918465 | 2014-04-16 09:24:44 +0200 | [diff] [blame] | 320 | const struct tegra_smmu_swgroup *group = NULL; |
| 321 | unsigned int i; |
Hiroshi Doyu | 39abf8a | 2012-08-02 11:46:40 +0300 | [diff] [blame] | 322 | |
Thierry Reding | 8918465 | 2014-04-16 09:24:44 +0200 | [diff] [blame] | 323 | for (i = 0; i < smmu->soc->num_swgroups; i++) { |
| 324 | if (smmu->soc->swgroups[i].swgroup == swgroup) { |
| 325 | group = &smmu->soc->swgroups[i]; |
Hiroshi Doyu | 39abf8a | 2012-08-02 11:46:40 +0300 | [diff] [blame] | 326 | break; |
Hiroshi Doyu | 39abf8a | 2012-08-02 11:46:40 +0300 | [diff] [blame] | 327 | } |
| 328 | } |
| 329 | |
Thierry Reding | 8918465 | 2014-04-16 09:24:44 +0200 | [diff] [blame] | 330 | return group; |
Hiroshi Doyu | 39abf8a | 2012-08-02 11:46:40 +0300 | [diff] [blame] | 331 | } |
| 332 | |
Thierry Reding | 8918465 | 2014-04-16 09:24:44 +0200 | [diff] [blame] | 333 | static void tegra_smmu_enable(struct tegra_smmu *smmu, unsigned int swgroup, |
| 334 | unsigned int asid) |
Hiroshi DOYU | 7a31f6f | 2011-11-17 07:31:31 +0200 | [diff] [blame] | 335 | { |
Thierry Reding | 8918465 | 2014-04-16 09:24:44 +0200 | [diff] [blame] | 336 | const struct tegra_smmu_swgroup *group; |
| 337 | unsigned int i; |
| 338 | u32 value; |
Hiroshi DOYU | 7a31f6f | 2011-11-17 07:31:31 +0200 | [diff] [blame] | 339 | |
Thierry Reding | 8918465 | 2014-04-16 09:24:44 +0200 | [diff] [blame] | 340 | for (i = 0; i < smmu->soc->num_clients; i++) { |
| 341 | const struct tegra_mc_client *client = &smmu->soc->clients[i]; |
| 342 | |
| 343 | if (client->swgroup != swgroup) |
| 344 | continue; |
| 345 | |
| 346 | value = smmu_readl(smmu, client->smmu.reg); |
| 347 | value |= BIT(client->smmu.bit); |
| 348 | smmu_writel(smmu, value, client->smmu.reg); |
| 349 | } |
| 350 | |
| 351 | group = tegra_smmu_find_swgroup(smmu, swgroup); |
| 352 | if (group) { |
| 353 | value = smmu_readl(smmu, group->reg); |
| 354 | value &= ~SMMU_ASID_MASK; |
| 355 | value |= SMMU_ASID_VALUE(asid); |
| 356 | value |= SMMU_ASID_ENABLE; |
| 357 | smmu_writel(smmu, value, group->reg); |
| 358 | } |
Hiroshi DOYU | 7a31f6f | 2011-11-17 07:31:31 +0200 | [diff] [blame] | 359 | } |
| 360 | |
Thierry Reding | 8918465 | 2014-04-16 09:24:44 +0200 | [diff] [blame] | 361 | static void tegra_smmu_disable(struct tegra_smmu *smmu, unsigned int swgroup, |
| 362 | unsigned int asid) |
Hiroshi DOYU | 7a31f6f | 2011-11-17 07:31:31 +0200 | [diff] [blame] | 363 | { |
Thierry Reding | 8918465 | 2014-04-16 09:24:44 +0200 | [diff] [blame] | 364 | const struct tegra_smmu_swgroup *group; |
| 365 | unsigned int i; |
| 366 | u32 value; |
| 367 | |
| 368 | group = tegra_smmu_find_swgroup(smmu, swgroup); |
| 369 | if (group) { |
| 370 | value = smmu_readl(smmu, group->reg); |
| 371 | value &= ~SMMU_ASID_MASK; |
| 372 | value |= SMMU_ASID_VALUE(asid); |
| 373 | value &= ~SMMU_ASID_ENABLE; |
| 374 | smmu_writel(smmu, value, group->reg); |
| 375 | } |
| 376 | |
| 377 | for (i = 0; i < smmu->soc->num_clients; i++) { |
| 378 | const struct tegra_mc_client *client = &smmu->soc->clients[i]; |
| 379 | |
| 380 | if (client->swgroup != swgroup) |
| 381 | continue; |
| 382 | |
| 383 | value = smmu_readl(smmu, client->smmu.reg); |
| 384 | value &= ~BIT(client->smmu.bit); |
| 385 | smmu_writel(smmu, value, client->smmu.reg); |
| 386 | } |
| 387 | } |
| 388 | |
| 389 | static int tegra_smmu_as_prepare(struct tegra_smmu *smmu, |
| 390 | struct tegra_smmu_as *as) |
| 391 | { |
| 392 | u32 value; |
Hiroshi Doyu | 0760e8f | 2012-06-25 14:23:55 +0300 | [diff] [blame] | 393 | int err; |
Hiroshi DOYU | 7a31f6f | 2011-11-17 07:31:31 +0200 | [diff] [blame] | 394 | |
Thierry Reding | 8918465 | 2014-04-16 09:24:44 +0200 | [diff] [blame] | 395 | if (as->use_count > 0) { |
| 396 | as->use_count++; |
| 397 | return 0; |
Hiroshi DOYU | 7a31f6f | 2011-11-17 07:31:31 +0200 | [diff] [blame] | 398 | } |
| 399 | |
Russell King | e3c9719 | 2015-07-27 13:29:52 +0100 | [diff] [blame] | 400 | as->pd_dma = dma_map_page(smmu->dev, as->pd, 0, SMMU_SIZE_PD, |
| 401 | DMA_TO_DEVICE); |
| 402 | if (dma_mapping_error(smmu->dev, as->pd_dma)) |
| 403 | return -ENOMEM; |
| 404 | |
| 405 | /* We can't handle 64-bit DMA addresses */ |
| 406 | if (!smmu_dma_addr_valid(smmu, as->pd_dma)) { |
| 407 | err = -ENOMEM; |
| 408 | goto err_unmap; |
| 409 | } |
| 410 | |
Thierry Reding | 8918465 | 2014-04-16 09:24:44 +0200 | [diff] [blame] | 411 | err = tegra_smmu_alloc_asid(smmu, &as->id); |
| 412 | if (err < 0) |
Russell King | e3c9719 | 2015-07-27 13:29:52 +0100 | [diff] [blame] | 413 | goto err_unmap; |
Hiroshi DOYU | 7a31f6f | 2011-11-17 07:31:31 +0200 | [diff] [blame] | 414 | |
Russell King | e3c9719 | 2015-07-27 13:29:52 +0100 | [diff] [blame] | 415 | smmu_flush_ptc(smmu, as->pd_dma, 0); |
Thierry Reding | 8918465 | 2014-04-16 09:24:44 +0200 | [diff] [blame] | 416 | smmu_flush_tlb_asid(smmu, as->id); |
| 417 | |
| 418 | smmu_writel(smmu, as->id & 0x7f, SMMU_PTB_ASID); |
Russell King | e3c9719 | 2015-07-27 13:29:52 +0100 | [diff] [blame] | 419 | value = SMMU_PTB_DATA_VALUE(as->pd_dma, as->attr); |
Thierry Reding | 8918465 | 2014-04-16 09:24:44 +0200 | [diff] [blame] | 420 | smmu_writel(smmu, value, SMMU_PTB_DATA); |
| 421 | smmu_flush(smmu); |
| 422 | |
| 423 | as->smmu = smmu; |
| 424 | as->use_count++; |
| 425 | |
| 426 | return 0; |
Russell King | e3c9719 | 2015-07-27 13:29:52 +0100 | [diff] [blame] | 427 | |
| 428 | err_unmap: |
| 429 | dma_unmap_page(smmu->dev, as->pd_dma, SMMU_SIZE_PD, DMA_TO_DEVICE); |
| 430 | return err; |
Thierry Reding | 8918465 | 2014-04-16 09:24:44 +0200 | [diff] [blame] | 431 | } |
| 432 | |
| 433 | static void tegra_smmu_as_unprepare(struct tegra_smmu *smmu, |
| 434 | struct tegra_smmu_as *as) |
| 435 | { |
| 436 | if (--as->use_count > 0) |
| 437 | return; |
| 438 | |
| 439 | tegra_smmu_free_asid(smmu, as->id); |
Russell King | e3c9719 | 2015-07-27 13:29:52 +0100 | [diff] [blame] | 440 | |
| 441 | dma_unmap_page(smmu->dev, as->pd_dma, SMMU_SIZE_PD, DMA_TO_DEVICE); |
| 442 | |
Thierry Reding | 8918465 | 2014-04-16 09:24:44 +0200 | [diff] [blame] | 443 | as->smmu = NULL; |
| 444 | } |
| 445 | |
| 446 | static int tegra_smmu_attach_dev(struct iommu_domain *domain, |
| 447 | struct device *dev) |
| 448 | { |
| 449 | struct tegra_smmu *smmu = dev->archdata.iommu; |
Joerg Roedel | d5f1a81 | 2015-03-26 13:43:12 +0100 | [diff] [blame] | 450 | struct tegra_smmu_as *as = to_smmu_as(domain); |
Thierry Reding | 8918465 | 2014-04-16 09:24:44 +0200 | [diff] [blame] | 451 | struct device_node *np = dev->of_node; |
| 452 | struct of_phandle_args args; |
| 453 | unsigned int index = 0; |
| 454 | int err = 0; |
| 455 | |
| 456 | while (!of_parse_phandle_with_args(np, "iommus", "#iommu-cells", index, |
| 457 | &args)) { |
| 458 | unsigned int swgroup = args.args[0]; |
| 459 | |
| 460 | if (args.np != smmu->dev->of_node) { |
| 461 | of_node_put(args.np); |
| 462 | continue; |
| 463 | } |
| 464 | |
| 465 | of_node_put(args.np); |
| 466 | |
| 467 | err = tegra_smmu_as_prepare(smmu, as); |
| 468 | if (err < 0) |
| 469 | return err; |
| 470 | |
| 471 | tegra_smmu_enable(smmu, swgroup, as->id); |
| 472 | index++; |
| 473 | } |
| 474 | |
| 475 | if (index == 0) |
| 476 | return -ENODEV; |
| 477 | |
| 478 | return 0; |
| 479 | } |
| 480 | |
| 481 | static void tegra_smmu_detach_dev(struct iommu_domain *domain, struct device *dev) |
| 482 | { |
Joerg Roedel | d5f1a81 | 2015-03-26 13:43:12 +0100 | [diff] [blame] | 483 | struct tegra_smmu_as *as = to_smmu_as(domain); |
Thierry Reding | 8918465 | 2014-04-16 09:24:44 +0200 | [diff] [blame] | 484 | struct device_node *np = dev->of_node; |
| 485 | struct tegra_smmu *smmu = as->smmu; |
| 486 | struct of_phandle_args args; |
| 487 | unsigned int index = 0; |
| 488 | |
| 489 | while (!of_parse_phandle_with_args(np, "iommus", "#iommu-cells", index, |
| 490 | &args)) { |
| 491 | unsigned int swgroup = args.args[0]; |
| 492 | |
| 493 | if (args.np != smmu->dev->of_node) { |
| 494 | of_node_put(args.np); |
| 495 | continue; |
| 496 | } |
| 497 | |
| 498 | of_node_put(args.np); |
| 499 | |
| 500 | tegra_smmu_disable(smmu, swgroup, as->id); |
| 501 | tegra_smmu_as_unprepare(smmu, as); |
| 502 | index++; |
| 503 | } |
| 504 | } |
| 505 | |
Russell King | 0b42c7c | 2015-07-27 13:29:21 +0100 | [diff] [blame] | 506 | static u32 *tegra_smmu_pte_offset(struct page *pt_page, unsigned long iova) |
| 507 | { |
| 508 | u32 *pt = page_address(pt_page); |
| 509 | |
| 510 | return pt + iova_pt_index(iova); |
| 511 | } |
| 512 | |
| 513 | static u32 *tegra_smmu_pte_lookup(struct tegra_smmu_as *as, unsigned long iova, |
Russell King | e3c9719 | 2015-07-27 13:29:52 +0100 | [diff] [blame] | 514 | dma_addr_t *dmap) |
Russell King | 0b42c7c | 2015-07-27 13:29:21 +0100 | [diff] [blame] | 515 | { |
| 516 | unsigned int pd_index = iova_pd_index(iova); |
| 517 | struct page *pt_page; |
Russell King | e3c9719 | 2015-07-27 13:29:52 +0100 | [diff] [blame] | 518 | u32 *pd; |
Russell King | 0b42c7c | 2015-07-27 13:29:21 +0100 | [diff] [blame] | 519 | |
Russell King | 853520f | 2015-07-27 13:29:26 +0100 | [diff] [blame] | 520 | pt_page = as->pts[pd_index]; |
| 521 | if (!pt_page) |
Russell King | 0b42c7c | 2015-07-27 13:29:21 +0100 | [diff] [blame] | 522 | return NULL; |
| 523 | |
Russell King | e3c9719 | 2015-07-27 13:29:52 +0100 | [diff] [blame] | 524 | pd = page_address(as->pd); |
| 525 | *dmap = smmu_pde_to_dma(pd[pd_index]); |
Russell King | 0b42c7c | 2015-07-27 13:29:21 +0100 | [diff] [blame] | 526 | |
| 527 | return tegra_smmu_pte_offset(pt_page, iova); |
| 528 | } |
| 529 | |
Thierry Reding | 8918465 | 2014-04-16 09:24:44 +0200 | [diff] [blame] | 530 | static u32 *as_get_pte(struct tegra_smmu_as *as, dma_addr_t iova, |
Russell King | e3c9719 | 2015-07-27 13:29:52 +0100 | [diff] [blame] | 531 | dma_addr_t *dmap) |
Thierry Reding | 8918465 | 2014-04-16 09:24:44 +0200 | [diff] [blame] | 532 | { |
Russell King | 32924c7 | 2015-07-27 13:29:31 +0100 | [diff] [blame] | 533 | u32 *pd = page_address(as->pd), *pt; |
Russell King | 34d35f8 | 2015-07-27 13:29:16 +0100 | [diff] [blame] | 534 | unsigned int pde = iova_pd_index(iova); |
Thierry Reding | 8918465 | 2014-04-16 09:24:44 +0200 | [diff] [blame] | 535 | struct tegra_smmu *smmu = as->smmu; |
Thierry Reding | 8918465 | 2014-04-16 09:24:44 +0200 | [diff] [blame] | 536 | unsigned int i; |
| 537 | |
Russell King | 853520f | 2015-07-27 13:29:26 +0100 | [diff] [blame] | 538 | if (!as->pts[pde]) { |
Russell King | e3c9719 | 2015-07-27 13:29:52 +0100 | [diff] [blame] | 539 | struct page *page; |
| 540 | dma_addr_t dma; |
| 541 | |
Thierry Reding | 8918465 | 2014-04-16 09:24:44 +0200 | [diff] [blame] | 542 | page = alloc_page(GFP_KERNEL | __GFP_DMA); |
| 543 | if (!page) |
| 544 | return NULL; |
| 545 | |
| 546 | pt = page_address(page); |
Thierry Reding | 8918465 | 2014-04-16 09:24:44 +0200 | [diff] [blame] | 547 | |
| 548 | for (i = 0; i < SMMU_NUM_PTE; i++) |
| 549 | pt[i] = 0; |
| 550 | |
Russell King | e3c9719 | 2015-07-27 13:29:52 +0100 | [diff] [blame] | 551 | dma = dma_map_page(smmu->dev, page, 0, SMMU_SIZE_PT, |
| 552 | DMA_TO_DEVICE); |
| 553 | if (dma_mapping_error(smmu->dev, dma)) { |
| 554 | __free_page(page); |
| 555 | return NULL; |
| 556 | } |
| 557 | |
| 558 | if (!smmu_dma_addr_valid(smmu, dma)) { |
| 559 | dma_unmap_page(smmu->dev, dma, SMMU_SIZE_PT, |
| 560 | DMA_TO_DEVICE); |
| 561 | __free_page(page); |
| 562 | return NULL; |
| 563 | } |
| 564 | |
Russell King | 853520f | 2015-07-27 13:29:26 +0100 | [diff] [blame] | 565 | as->pts[pde] = page; |
| 566 | |
Russell King | e3c9719 | 2015-07-27 13:29:52 +0100 | [diff] [blame] | 567 | pd[pde] = SMMU_MK_PDE(dma, SMMU_PDE_ATTR | SMMU_PDE_NEXT); |
Thierry Reding | 8918465 | 2014-04-16 09:24:44 +0200 | [diff] [blame] | 568 | |
Russell King | e3c9719 | 2015-07-27 13:29:52 +0100 | [diff] [blame] | 569 | dma_sync_single_range_for_device(smmu->dev, as->pd_dma, |
| 570 | pde << 2, 4, DMA_TO_DEVICE); |
| 571 | smmu_flush_ptc(smmu, as->pd_dma, pde << 2); |
Thierry Reding | 8918465 | 2014-04-16 09:24:44 +0200 | [diff] [blame] | 572 | smmu_flush_tlb_section(smmu, as->id, iova); |
| 573 | smmu_flush(smmu); |
Russell King | e3c9719 | 2015-07-27 13:29:52 +0100 | [diff] [blame] | 574 | |
| 575 | *dmap = dma; |
Thierry Reding | 8918465 | 2014-04-16 09:24:44 +0200 | [diff] [blame] | 576 | } else { |
Russell King | e3c9719 | 2015-07-27 13:29:52 +0100 | [diff] [blame] | 577 | *dmap = smmu_pde_to_dma(pd[pde]); |
Thierry Reding | 8918465 | 2014-04-16 09:24:44 +0200 | [diff] [blame] | 578 | } |
| 579 | |
Russell King | e3c9719 | 2015-07-27 13:29:52 +0100 | [diff] [blame] | 580 | pt = tegra_smmu_pte_offset(as->pts[pde], iova); |
Russell King | 0b42c7c | 2015-07-27 13:29:21 +0100 | [diff] [blame] | 581 | |
Thierry Reding | 8918465 | 2014-04-16 09:24:44 +0200 | [diff] [blame] | 582 | /* Keep track of entries in this page table. */ |
Russell King | e3c9719 | 2015-07-27 13:29:52 +0100 | [diff] [blame] | 583 | if (*pt == 0) |
Russell King | 32924c7 | 2015-07-27 13:29:31 +0100 | [diff] [blame] | 584 | as->count[pde]++; |
Thierry Reding | 8918465 | 2014-04-16 09:24:44 +0200 | [diff] [blame] | 585 | |
Russell King | e3c9719 | 2015-07-27 13:29:52 +0100 | [diff] [blame] | 586 | return pt; |
Thierry Reding | 8918465 | 2014-04-16 09:24:44 +0200 | [diff] [blame] | 587 | } |
| 588 | |
Russell King | b98e34f | 2015-07-27 13:29:05 +0100 | [diff] [blame] | 589 | static void tegra_smmu_pte_put_use(struct tegra_smmu_as *as, unsigned long iova) |
Thierry Reding | 8918465 | 2014-04-16 09:24:44 +0200 | [diff] [blame] | 590 | { |
Russell King | b98e34f | 2015-07-27 13:29:05 +0100 | [diff] [blame] | 591 | struct tegra_smmu *smmu = as->smmu; |
Russell King | 34d35f8 | 2015-07-27 13:29:16 +0100 | [diff] [blame] | 592 | unsigned int pde = iova_pd_index(iova); |
Russell King | b98e34f | 2015-07-27 13:29:05 +0100 | [diff] [blame] | 593 | u32 *pd = page_address(as->pd); |
Russell King | 853520f | 2015-07-27 13:29:26 +0100 | [diff] [blame] | 594 | struct page *page = as->pts[pde]; |
Thierry Reding | 8918465 | 2014-04-16 09:24:44 +0200 | [diff] [blame] | 595 | |
| 596 | /* |
| 597 | * When no entries in this page table are used anymore, return the |
| 598 | * memory page to the system. |
| 599 | */ |
Russell King | 32924c7 | 2015-07-27 13:29:31 +0100 | [diff] [blame] | 600 | if (--as->count[pde] == 0) { |
Russell King | b98e34f | 2015-07-27 13:29:05 +0100 | [diff] [blame] | 601 | unsigned int offset = pde * sizeof(*pd); |
Russell King | e3c9719 | 2015-07-27 13:29:52 +0100 | [diff] [blame] | 602 | dma_addr_t pte_dma = smmu_pde_to_dma(pd[pde]); |
Thierry Reding | 8918465 | 2014-04-16 09:24:44 +0200 | [diff] [blame] | 603 | |
Russell King | b98e34f | 2015-07-27 13:29:05 +0100 | [diff] [blame] | 604 | /* Clear the page directory entry first */ |
| 605 | pd[pde] = 0; |
| 606 | |
| 607 | /* Flush the page directory entry */ |
Russell King | e3c9719 | 2015-07-27 13:29:52 +0100 | [diff] [blame] | 608 | dma_sync_single_range_for_device(smmu->dev, as->pd_dma, offset, |
| 609 | sizeof(*pd), DMA_TO_DEVICE); |
| 610 | smmu_flush_ptc(smmu, as->pd_dma, offset); |
Russell King | b98e34f | 2015-07-27 13:29:05 +0100 | [diff] [blame] | 611 | smmu_flush_tlb_section(smmu, as->id, iova); |
| 612 | smmu_flush(smmu); |
| 613 | |
| 614 | /* Finally, free the page */ |
Russell King | e3c9719 | 2015-07-27 13:29:52 +0100 | [diff] [blame] | 615 | dma_unmap_page(smmu->dev, pte_dma, SMMU_SIZE_PT, DMA_TO_DEVICE); |
Russell King | b98e34f | 2015-07-27 13:29:05 +0100 | [diff] [blame] | 616 | __free_page(page); |
Russell King | 853520f | 2015-07-27 13:29:26 +0100 | [diff] [blame] | 617 | as->pts[pde] = NULL; |
Thierry Reding | 8918465 | 2014-04-16 09:24:44 +0200 | [diff] [blame] | 618 | } |
| 619 | } |
| 620 | |
Russell King | 8482ee5 | 2015-07-27 13:29:10 +0100 | [diff] [blame] | 621 | static void tegra_smmu_set_pte(struct tegra_smmu_as *as, unsigned long iova, |
Russell King | e3c9719 | 2015-07-27 13:29:52 +0100 | [diff] [blame] | 622 | u32 *pte, dma_addr_t pte_dma, u32 val) |
Russell King | 8482ee5 | 2015-07-27 13:29:10 +0100 | [diff] [blame] | 623 | { |
| 624 | struct tegra_smmu *smmu = as->smmu; |
| 625 | unsigned long offset = offset_in_page(pte); |
| 626 | |
| 627 | *pte = val; |
| 628 | |
Russell King | e3c9719 | 2015-07-27 13:29:52 +0100 | [diff] [blame] | 629 | dma_sync_single_range_for_device(smmu->dev, pte_dma, offset, |
| 630 | 4, DMA_TO_DEVICE); |
| 631 | smmu_flush_ptc(smmu, pte_dma, offset); |
Russell King | 8482ee5 | 2015-07-27 13:29:10 +0100 | [diff] [blame] | 632 | smmu_flush_tlb_group(smmu, as->id, iova); |
| 633 | smmu_flush(smmu); |
| 634 | } |
| 635 | |
Thierry Reding | 8918465 | 2014-04-16 09:24:44 +0200 | [diff] [blame] | 636 | static int tegra_smmu_map(struct iommu_domain *domain, unsigned long iova, |
| 637 | phys_addr_t paddr, size_t size, int prot) |
| 638 | { |
Joerg Roedel | d5f1a81 | 2015-03-26 13:43:12 +0100 | [diff] [blame] | 639 | struct tegra_smmu_as *as = to_smmu_as(domain); |
Russell King | e3c9719 | 2015-07-27 13:29:52 +0100 | [diff] [blame] | 640 | dma_addr_t pte_dma; |
Thierry Reding | 8918465 | 2014-04-16 09:24:44 +0200 | [diff] [blame] | 641 | u32 *pte; |
| 642 | |
Russell King | e3c9719 | 2015-07-27 13:29:52 +0100 | [diff] [blame] | 643 | pte = as_get_pte(as, iova, &pte_dma); |
Thierry Reding | 8918465 | 2014-04-16 09:24:44 +0200 | [diff] [blame] | 644 | if (!pte) |
Hiroshi Doyu | 0547c2f | 2012-06-25 14:23:57 +0300 | [diff] [blame] | 645 | return -ENOMEM; |
Hiroshi DOYU | 7a31f6f | 2011-11-17 07:31:31 +0200 | [diff] [blame] | 646 | |
Russell King | e3c9719 | 2015-07-27 13:29:52 +0100 | [diff] [blame] | 647 | tegra_smmu_set_pte(as, iova, pte, pte_dma, |
Russell King | 8482ee5 | 2015-07-27 13:29:10 +0100 | [diff] [blame] | 648 | __phys_to_pfn(paddr) | SMMU_PTE_ATTR); |
Thierry Reding | 8918465 | 2014-04-16 09:24:44 +0200 | [diff] [blame] | 649 | |
Hiroshi DOYU | 7a31f6f | 2011-11-17 07:31:31 +0200 | [diff] [blame] | 650 | return 0; |
Hiroshi DOYU | 7a31f6f | 2011-11-17 07:31:31 +0200 | [diff] [blame] | 651 | } |
| 652 | |
Thierry Reding | 8918465 | 2014-04-16 09:24:44 +0200 | [diff] [blame] | 653 | static size_t tegra_smmu_unmap(struct iommu_domain *domain, unsigned long iova, |
| 654 | size_t size) |
Hiroshi DOYU | 7a31f6f | 2011-11-17 07:31:31 +0200 | [diff] [blame] | 655 | { |
Joerg Roedel | d5f1a81 | 2015-03-26 13:43:12 +0100 | [diff] [blame] | 656 | struct tegra_smmu_as *as = to_smmu_as(domain); |
Russell King | e3c9719 | 2015-07-27 13:29:52 +0100 | [diff] [blame] | 657 | dma_addr_t pte_dma; |
Thierry Reding | 8918465 | 2014-04-16 09:24:44 +0200 | [diff] [blame] | 658 | u32 *pte; |
Hiroshi DOYU | 7a31f6f | 2011-11-17 07:31:31 +0200 | [diff] [blame] | 659 | |
Russell King | e3c9719 | 2015-07-27 13:29:52 +0100 | [diff] [blame] | 660 | pte = tegra_smmu_pte_lookup(as, iova, &pte_dma); |
Russell King | b98e34f | 2015-07-27 13:29:05 +0100 | [diff] [blame] | 661 | if (!pte || !*pte) |
Thierry Reding | 8918465 | 2014-04-16 09:24:44 +0200 | [diff] [blame] | 662 | return 0; |
Hiroshi Doyu | 39abf8a | 2012-08-02 11:46:40 +0300 | [diff] [blame] | 663 | |
Russell King | e3c9719 | 2015-07-27 13:29:52 +0100 | [diff] [blame] | 664 | tegra_smmu_set_pte(as, iova, pte, pte_dma, 0); |
Russell King | b98e34f | 2015-07-27 13:29:05 +0100 | [diff] [blame] | 665 | tegra_smmu_pte_put_use(as, iova); |
| 666 | |
Thierry Reding | 8918465 | 2014-04-16 09:24:44 +0200 | [diff] [blame] | 667 | return size; |
| 668 | } |
| 669 | |
| 670 | static phys_addr_t tegra_smmu_iova_to_phys(struct iommu_domain *domain, |
| 671 | dma_addr_t iova) |
| 672 | { |
Joerg Roedel | d5f1a81 | 2015-03-26 13:43:12 +0100 | [diff] [blame] | 673 | struct tegra_smmu_as *as = to_smmu_as(domain); |
Thierry Reding | 8918465 | 2014-04-16 09:24:44 +0200 | [diff] [blame] | 674 | unsigned long pfn; |
Russell King | e3c9719 | 2015-07-27 13:29:52 +0100 | [diff] [blame] | 675 | dma_addr_t pte_dma; |
Thierry Reding | 8918465 | 2014-04-16 09:24:44 +0200 | [diff] [blame] | 676 | u32 *pte; |
| 677 | |
Russell King | e3c9719 | 2015-07-27 13:29:52 +0100 | [diff] [blame] | 678 | pte = tegra_smmu_pte_lookup(as, iova, &pte_dma); |
Russell King | 9113785 | 2015-07-27 13:29:00 +0100 | [diff] [blame] | 679 | if (!pte || !*pte) |
| 680 | return 0; |
| 681 | |
Thierry Reding | 804cb54 | 2015-03-27 11:07:27 +0100 | [diff] [blame] | 682 | pfn = *pte & as->smmu->pfn_mask; |
Thierry Reding | 8918465 | 2014-04-16 09:24:44 +0200 | [diff] [blame] | 683 | |
| 684 | return PFN_PHYS(pfn); |
| 685 | } |
| 686 | |
| 687 | static struct tegra_smmu *tegra_smmu_find(struct device_node *np) |
| 688 | { |
| 689 | struct platform_device *pdev; |
| 690 | struct tegra_mc *mc; |
| 691 | |
| 692 | pdev = of_find_device_by_node(np); |
| 693 | if (!pdev) |
| 694 | return NULL; |
| 695 | |
| 696 | mc = platform_get_drvdata(pdev); |
| 697 | if (!mc) |
| 698 | return NULL; |
| 699 | |
| 700 | return mc->smmu; |
| 701 | } |
| 702 | |
| 703 | static int tegra_smmu_add_device(struct device *dev) |
| 704 | { |
| 705 | struct device_node *np = dev->of_node; |
| 706 | struct of_phandle_args args; |
| 707 | unsigned int index = 0; |
| 708 | |
| 709 | while (of_parse_phandle_with_args(np, "iommus", "#iommu-cells", index, |
| 710 | &args) == 0) { |
| 711 | struct tegra_smmu *smmu; |
| 712 | |
| 713 | smmu = tegra_smmu_find(args.np); |
| 714 | if (smmu) { |
| 715 | /* |
| 716 | * Only a single IOMMU master interface is currently |
| 717 | * supported by the Linux kernel, so abort after the |
| 718 | * first match. |
| 719 | */ |
| 720 | dev->archdata.iommu = smmu; |
| 721 | break; |
| 722 | } |
| 723 | |
| 724 | index++; |
| 725 | } |
| 726 | |
Hiroshi DOYU | 7a31f6f | 2011-11-17 07:31:31 +0200 | [diff] [blame] | 727 | return 0; |
| 728 | } |
| 729 | |
Thierry Reding | 8918465 | 2014-04-16 09:24:44 +0200 | [diff] [blame] | 730 | static void tegra_smmu_remove_device(struct device *dev) |
Hiroshi DOYU | 7a31f6f | 2011-11-17 07:31:31 +0200 | [diff] [blame] | 731 | { |
Thierry Reding | 8918465 | 2014-04-16 09:24:44 +0200 | [diff] [blame] | 732 | dev->archdata.iommu = NULL; |
Hiroshi DOYU | 7a31f6f | 2011-11-17 07:31:31 +0200 | [diff] [blame] | 733 | } |
| 734 | |
Thierry Reding | 8918465 | 2014-04-16 09:24:44 +0200 | [diff] [blame] | 735 | static const struct iommu_ops tegra_smmu_ops = { |
| 736 | .capable = tegra_smmu_capable, |
Joerg Roedel | d5f1a81 | 2015-03-26 13:43:12 +0100 | [diff] [blame] | 737 | .domain_alloc = tegra_smmu_domain_alloc, |
| 738 | .domain_free = tegra_smmu_domain_free, |
Thierry Reding | 8918465 | 2014-04-16 09:24:44 +0200 | [diff] [blame] | 739 | .attach_dev = tegra_smmu_attach_dev, |
| 740 | .detach_dev = tegra_smmu_detach_dev, |
| 741 | .add_device = tegra_smmu_add_device, |
| 742 | .remove_device = tegra_smmu_remove_device, |
| 743 | .map = tegra_smmu_map, |
| 744 | .unmap = tegra_smmu_unmap, |
| 745 | .map_sg = default_iommu_map_sg, |
| 746 | .iova_to_phys = tegra_smmu_iova_to_phys, |
| 747 | |
| 748 | .pgsize_bitmap = SZ_4K, |
| 749 | }; |
| 750 | |
| 751 | static void tegra_smmu_ahb_enable(void) |
Hiroshi DOYU | 7a31f6f | 2011-11-17 07:31:31 +0200 | [diff] [blame] | 752 | { |
Thierry Reding | 8918465 | 2014-04-16 09:24:44 +0200 | [diff] [blame] | 753 | static const struct of_device_id ahb_match[] = { |
| 754 | { .compatible = "nvidia,tegra30-ahb", }, |
| 755 | { } |
| 756 | }; |
| 757 | struct device_node *ahb; |
| 758 | |
| 759 | ahb = of_find_matching_node(NULL, ahb_match); |
| 760 | if (ahb) { |
| 761 | tegra_ahb_enable_smmu(ahb); |
| 762 | of_node_put(ahb); |
| 763 | } |
Hiroshi DOYU | 7a31f6f | 2011-11-17 07:31:31 +0200 | [diff] [blame] | 764 | } |
| 765 | |
Thierry Reding | d1313e7 | 2015-01-23 09:49:25 +0100 | [diff] [blame] | 766 | static int tegra_smmu_swgroups_show(struct seq_file *s, void *data) |
| 767 | { |
| 768 | struct tegra_smmu *smmu = s->private; |
| 769 | unsigned int i; |
| 770 | u32 value; |
| 771 | |
| 772 | seq_printf(s, "swgroup enabled ASID\n"); |
| 773 | seq_printf(s, "------------------------\n"); |
| 774 | |
| 775 | for (i = 0; i < smmu->soc->num_swgroups; i++) { |
| 776 | const struct tegra_smmu_swgroup *group = &smmu->soc->swgroups[i]; |
| 777 | const char *status; |
| 778 | unsigned int asid; |
| 779 | |
| 780 | value = smmu_readl(smmu, group->reg); |
| 781 | |
| 782 | if (value & SMMU_ASID_ENABLE) |
| 783 | status = "yes"; |
| 784 | else |
| 785 | status = "no"; |
| 786 | |
| 787 | asid = value & SMMU_ASID_MASK; |
| 788 | |
| 789 | seq_printf(s, "%-9s %-7s %#04x\n", group->name, status, |
| 790 | asid); |
| 791 | } |
| 792 | |
| 793 | return 0; |
| 794 | } |
| 795 | |
| 796 | static int tegra_smmu_swgroups_open(struct inode *inode, struct file *file) |
| 797 | { |
| 798 | return single_open(file, tegra_smmu_swgroups_show, inode->i_private); |
| 799 | } |
| 800 | |
| 801 | static const struct file_operations tegra_smmu_swgroups_fops = { |
| 802 | .open = tegra_smmu_swgroups_open, |
| 803 | .read = seq_read, |
| 804 | .llseek = seq_lseek, |
| 805 | .release = single_release, |
| 806 | }; |
| 807 | |
| 808 | static int tegra_smmu_clients_show(struct seq_file *s, void *data) |
| 809 | { |
| 810 | struct tegra_smmu *smmu = s->private; |
| 811 | unsigned int i; |
| 812 | u32 value; |
| 813 | |
| 814 | seq_printf(s, "client enabled\n"); |
| 815 | seq_printf(s, "--------------------\n"); |
| 816 | |
| 817 | for (i = 0; i < smmu->soc->num_clients; i++) { |
| 818 | const struct tegra_mc_client *client = &smmu->soc->clients[i]; |
| 819 | const char *status; |
| 820 | |
| 821 | value = smmu_readl(smmu, client->smmu.reg); |
| 822 | |
| 823 | if (value & BIT(client->smmu.bit)) |
| 824 | status = "yes"; |
| 825 | else |
| 826 | status = "no"; |
| 827 | |
| 828 | seq_printf(s, "%-12s %s\n", client->name, status); |
| 829 | } |
| 830 | |
| 831 | return 0; |
| 832 | } |
| 833 | |
| 834 | static int tegra_smmu_clients_open(struct inode *inode, struct file *file) |
| 835 | { |
| 836 | return single_open(file, tegra_smmu_clients_show, inode->i_private); |
| 837 | } |
| 838 | |
| 839 | static const struct file_operations tegra_smmu_clients_fops = { |
| 840 | .open = tegra_smmu_clients_open, |
| 841 | .read = seq_read, |
| 842 | .llseek = seq_lseek, |
| 843 | .release = single_release, |
| 844 | }; |
| 845 | |
| 846 | static void tegra_smmu_debugfs_init(struct tegra_smmu *smmu) |
| 847 | { |
| 848 | smmu->debugfs = debugfs_create_dir("smmu", NULL); |
| 849 | if (!smmu->debugfs) |
| 850 | return; |
| 851 | |
| 852 | debugfs_create_file("swgroups", S_IRUGO, smmu->debugfs, smmu, |
| 853 | &tegra_smmu_swgroups_fops); |
| 854 | debugfs_create_file("clients", S_IRUGO, smmu->debugfs, smmu, |
| 855 | &tegra_smmu_clients_fops); |
| 856 | } |
| 857 | |
| 858 | static void tegra_smmu_debugfs_exit(struct tegra_smmu *smmu) |
| 859 | { |
| 860 | debugfs_remove_recursive(smmu->debugfs); |
| 861 | } |
| 862 | |
Thierry Reding | 8918465 | 2014-04-16 09:24:44 +0200 | [diff] [blame] | 863 | struct tegra_smmu *tegra_smmu_probe(struct device *dev, |
| 864 | const struct tegra_smmu_soc *soc, |
| 865 | struct tegra_mc *mc) |
| 866 | { |
| 867 | struct tegra_smmu *smmu; |
| 868 | size_t size; |
| 869 | u32 value; |
| 870 | int err; |
Hiroshi DOYU | 7a31f6f | 2011-11-17 07:31:31 +0200 | [diff] [blame] | 871 | |
Thierry Reding | 8918465 | 2014-04-16 09:24:44 +0200 | [diff] [blame] | 872 | /* This can happen on Tegra20 which doesn't have an SMMU */ |
| 873 | if (!soc) |
| 874 | return NULL; |
| 875 | |
| 876 | smmu = devm_kzalloc(dev, sizeof(*smmu), GFP_KERNEL); |
| 877 | if (!smmu) |
| 878 | return ERR_PTR(-ENOMEM); |
| 879 | |
| 880 | /* |
| 881 | * This is a bit of a hack. Ideally we'd want to simply return this |
| 882 | * value. However the IOMMU registration process will attempt to add |
| 883 | * all devices to the IOMMU when bus_set_iommu() is called. In order |
| 884 | * not to rely on global variables to track the IOMMU instance, we |
| 885 | * set it here so that it can be looked up from the .add_device() |
| 886 | * callback via the IOMMU device's .drvdata field. |
| 887 | */ |
| 888 | mc->smmu = smmu; |
| 889 | |
| 890 | size = BITS_TO_LONGS(soc->num_asids) * sizeof(long); |
| 891 | |
| 892 | smmu->asids = devm_kzalloc(dev, size, GFP_KERNEL); |
| 893 | if (!smmu->asids) |
| 894 | return ERR_PTR(-ENOMEM); |
| 895 | |
| 896 | mutex_init(&smmu->lock); |
| 897 | |
| 898 | smmu->regs = mc->regs; |
| 899 | smmu->soc = soc; |
| 900 | smmu->dev = dev; |
| 901 | smmu->mc = mc; |
| 902 | |
Thierry Reding | 804cb54 | 2015-03-27 11:07:27 +0100 | [diff] [blame] | 903 | smmu->pfn_mask = BIT_MASK(mc->soc->num_address_bits - PAGE_SHIFT) - 1; |
| 904 | dev_dbg(dev, "address bits: %u, PFN mask: %#lx\n", |
| 905 | mc->soc->num_address_bits, smmu->pfn_mask); |
| 906 | |
Thierry Reding | 8918465 | 2014-04-16 09:24:44 +0200 | [diff] [blame] | 907 | value = SMMU_PTC_CONFIG_ENABLE | SMMU_PTC_CONFIG_INDEX_MAP(0x3f); |
| 908 | |
| 909 | if (soc->supports_request_limit) |
| 910 | value |= SMMU_PTC_CONFIG_REQ_LIMIT(8); |
| 911 | |
| 912 | smmu_writel(smmu, value, SMMU_PTC_CONFIG); |
| 913 | |
| 914 | value = SMMU_TLB_CONFIG_HIT_UNDER_MISS | |
| 915 | SMMU_TLB_CONFIG_ACTIVE_LINES(0x20); |
| 916 | |
| 917 | if (soc->supports_round_robin_arbitration) |
| 918 | value |= SMMU_TLB_CONFIG_ROUND_ROBIN_ARBITRATION; |
| 919 | |
| 920 | smmu_writel(smmu, value, SMMU_TLB_CONFIG); |
| 921 | |
Russell King | b8fe038 | 2015-07-27 13:29:41 +0100 | [diff] [blame] | 922 | smmu_flush_ptc_all(smmu); |
Thierry Reding | 8918465 | 2014-04-16 09:24:44 +0200 | [diff] [blame] | 923 | smmu_flush_tlb(smmu); |
| 924 | smmu_writel(smmu, SMMU_CONFIG_ENABLE, SMMU_CONFIG); |
| 925 | smmu_flush(smmu); |
| 926 | |
| 927 | tegra_smmu_ahb_enable(); |
| 928 | |
| 929 | err = bus_set_iommu(&platform_bus_type, &tegra_smmu_ops); |
| 930 | if (err < 0) |
| 931 | return ERR_PTR(err); |
| 932 | |
Thierry Reding | d1313e7 | 2015-01-23 09:49:25 +0100 | [diff] [blame] | 933 | if (IS_ENABLED(CONFIG_DEBUG_FS)) |
| 934 | tegra_smmu_debugfs_init(smmu); |
| 935 | |
Thierry Reding | 8918465 | 2014-04-16 09:24:44 +0200 | [diff] [blame] | 936 | return smmu; |
| 937 | } |
Thierry Reding | d1313e7 | 2015-01-23 09:49:25 +0100 | [diff] [blame] | 938 | |
| 939 | void tegra_smmu_remove(struct tegra_smmu *smmu) |
| 940 | { |
| 941 | if (IS_ENABLED(CONFIG_DEBUG_FS)) |
| 942 | tegra_smmu_debugfs_exit(smmu); |
| 943 | } |