]> git.proxmox.com Git - mirror_ubuntu-hirsute-kernel.git/blame - drivers/iommu/rockchip-iommu.c
iommu/amd: Hide unused iommu_table_lock
[mirror_ubuntu-hirsute-kernel.git] / drivers / iommu / rockchip-iommu.c
CommitLineData
c68a2921
DK
1/*
2 * This program is free software; you can redistribute it and/or modify
3 * it under the terms of the GNU General Public License version 2 as
4 * published by the Free Software Foundation.
5 */
6
f2e3a5f5 7#include <linux/clk.h>
c68a2921
DK
8#include <linux/compiler.h>
9#include <linux/delay.h>
10#include <linux/device.h>
4f0aba67 11#include <linux/dma-iommu.h>
461a6946 12#include <linux/dma-mapping.h>
c68a2921
DK
13#include <linux/errno.h>
14#include <linux/interrupt.h>
15#include <linux/io.h>
16#include <linux/iommu.h>
0416bf64 17#include <linux/iopoll.h>
c68a2921
DK
18#include <linux/list.h>
19#include <linux/mm.h>
20#include <linux/module.h>
21#include <linux/of.h>
5fd577c3 22#include <linux/of_iommu.h>
c68a2921
DK
23#include <linux/of_platform.h>
24#include <linux/platform_device.h>
0f181d3c 25#include <linux/pm_runtime.h>
c68a2921
DK
26#include <linux/slab.h>
27#include <linux/spinlock.h>
28
29/** MMU register offsets */
30#define RK_MMU_DTE_ADDR 0x00 /* Directory table address */
31#define RK_MMU_STATUS 0x04
32#define RK_MMU_COMMAND 0x08
33#define RK_MMU_PAGE_FAULT_ADDR 0x0C /* IOVA of last page fault */
34#define RK_MMU_ZAP_ONE_LINE 0x10 /* Shootdown one IOTLB entry */
35#define RK_MMU_INT_RAWSTAT 0x14 /* IRQ status ignoring mask */
36#define RK_MMU_INT_CLEAR 0x18 /* Acknowledge and re-arm irq */
37#define RK_MMU_INT_MASK 0x1C /* IRQ enable */
38#define RK_MMU_INT_STATUS 0x20 /* IRQ status after masking */
39#define RK_MMU_AUTO_GATING 0x24
40
41#define DTE_ADDR_DUMMY 0xCAFEBABE
0416bf64
TF
42
43#define RK_MMU_POLL_PERIOD_US 100
44#define RK_MMU_FORCE_RESET_TIMEOUT_US 100000
45#define RK_MMU_POLL_TIMEOUT_US 1000
c68a2921
DK
46
47/* RK_MMU_STATUS fields */
48#define RK_MMU_STATUS_PAGING_ENABLED BIT(0)
49#define RK_MMU_STATUS_PAGE_FAULT_ACTIVE BIT(1)
50#define RK_MMU_STATUS_STALL_ACTIVE BIT(2)
51#define RK_MMU_STATUS_IDLE BIT(3)
52#define RK_MMU_STATUS_REPLAY_BUFFER_EMPTY BIT(4)
53#define RK_MMU_STATUS_PAGE_FAULT_IS_WRITE BIT(5)
54#define RK_MMU_STATUS_STALL_NOT_ACTIVE BIT(31)
55
56/* RK_MMU_COMMAND command values */
57#define RK_MMU_CMD_ENABLE_PAGING 0 /* Enable memory translation */
58#define RK_MMU_CMD_DISABLE_PAGING 1 /* Disable memory translation */
59#define RK_MMU_CMD_ENABLE_STALL 2 /* Stall paging to allow other cmds */
60#define RK_MMU_CMD_DISABLE_STALL 3 /* Stop stall re-enables paging */
61#define RK_MMU_CMD_ZAP_CACHE 4 /* Shoot down entire IOTLB */
62#define RK_MMU_CMD_PAGE_FAULT_DONE 5 /* Clear page fault */
63#define RK_MMU_CMD_FORCE_RESET 6 /* Reset all registers */
64
65/* RK_MMU_INT_* register fields */
66#define RK_MMU_IRQ_PAGE_FAULT 0x01 /* page fault */
67#define RK_MMU_IRQ_BUS_ERROR 0x02 /* bus read error */
68#define RK_MMU_IRQ_MASK (RK_MMU_IRQ_PAGE_FAULT | RK_MMU_IRQ_BUS_ERROR)
69
70#define NUM_DT_ENTRIES 1024
71#define NUM_PT_ENTRIES 1024
72
73#define SPAGE_ORDER 12
74#define SPAGE_SIZE (1 << SPAGE_ORDER)
75
76 /*
77 * Support mapping any size that fits in one page table:
78 * 4 KiB to 4 MiB
79 */
80#define RK_IOMMU_PGSIZE_BITMAP 0x007ff000
81
c68a2921
DK
82struct rk_iommu_domain {
83 struct list_head iommus;
84 u32 *dt; /* page directory table */
4f0aba67 85 dma_addr_t dt_dma;
c68a2921
DK
86 spinlock_t iommus_lock; /* lock for iommus list */
87 spinlock_t dt_lock; /* lock for modifying page directory table */
bcd516a3
JR
88
89 struct iommu_domain domain;
c68a2921
DK
90};
91
f2e3a5f5
TF
92/* list of clocks required by IOMMU */
93static const char * const rk_iommu_clocks[] = {
94 "aclk", "iface",
95};
96
c68a2921
DK
97struct rk_iommu {
98 struct device *dev;
cd6438c5
Z
99 void __iomem **bases;
100 int num_mmu;
f2e3a5f5
TF
101 struct clk_bulk_data *clocks;
102 int num_clocks;
c3aa4742 103 bool reset_disabled;
c9d9f239 104 struct iommu_device iommu;
c68a2921
DK
105 struct list_head node; /* entry in rk_iommu_domain.iommus */
106 struct iommu_domain *domain; /* domain to which iommu is attached */
57c26957 107 struct iommu_group *group;
c68a2921
DK
108};
109
5fd577c3 110struct rk_iommudata {
0f181d3c 111 struct device_link *link; /* runtime PM link from IOMMU to master */
5fd577c3
JC
112 struct rk_iommu *iommu;
113};
114
9176a303
JC
115static struct device *dma_dev;
116
4f0aba67
SZ
117static inline void rk_table_flush(struct rk_iommu_domain *dom, dma_addr_t dma,
118 unsigned int count)
c68a2921 119{
4f0aba67 120 size_t size = count * sizeof(u32); /* count of u32 entry */
c68a2921 121
9176a303 122 dma_sync_single_for_device(dma_dev, dma, size, DMA_TO_DEVICE);
c68a2921
DK
123}
124
bcd516a3
JR
125static struct rk_iommu_domain *to_rk_domain(struct iommu_domain *dom)
126{
127 return container_of(dom, struct rk_iommu_domain, domain);
128}
129
c68a2921
DK
130/*
131 * The Rockchip rk3288 iommu uses a 2-level page table.
132 * The first level is the "Directory Table" (DT).
133 * The DT consists of 1024 4-byte Directory Table Entries (DTEs), each pointing
134 * to a "Page Table".
135 * The second level is the 1024 Page Tables (PT).
136 * Each PT consists of 1024 4-byte Page Table Entries (PTEs), each pointing to
137 * a 4 KB page of physical memory.
138 *
139 * The DT and each PT fits in a single 4 KB page (4-bytes * 1024 entries).
140 * Each iommu device has a MMU_DTE_ADDR register that contains the physical
141 * address of the start of the DT page.
142 *
143 * The structure of the page table is as follows:
144 *
145 * DT
146 * MMU_DTE_ADDR -> +-----+
147 * | |
148 * +-----+ PT
149 * | DTE | -> +-----+
150 * +-----+ | | Memory
151 * | | +-----+ Page
152 * | | | PTE | -> +-----+
153 * +-----+ +-----+ | |
154 * | | | |
155 * | | | |
156 * +-----+ | |
157 * | |
158 * | |
159 * +-----+
160 */
161
162/*
163 * Each DTE has a PT address and a valid bit:
164 * +---------------------+-----------+-+
165 * | PT address | Reserved |V|
166 * +---------------------+-----------+-+
167 * 31:12 - PT address (PTs always starts on a 4 KB boundary)
168 * 11: 1 - Reserved
169 * 0 - 1 if PT @ PT address is valid
170 */
171#define RK_DTE_PT_ADDRESS_MASK 0xfffff000
172#define RK_DTE_PT_VALID BIT(0)
173
174static inline phys_addr_t rk_dte_pt_address(u32 dte)
175{
176 return (phys_addr_t)dte & RK_DTE_PT_ADDRESS_MASK;
177}
178
179static inline bool rk_dte_is_pt_valid(u32 dte)
180{
181 return dte & RK_DTE_PT_VALID;
182}
183
4f0aba67 184static inline u32 rk_mk_dte(dma_addr_t pt_dma)
c68a2921 185{
4f0aba67 186 return (pt_dma & RK_DTE_PT_ADDRESS_MASK) | RK_DTE_PT_VALID;
c68a2921
DK
187}
188
189/*
190 * Each PTE has a Page address, some flags and a valid bit:
191 * +---------------------+---+-------+-+
192 * | Page address |Rsv| Flags |V|
193 * +---------------------+---+-------+-+
194 * 31:12 - Page address (Pages always start on a 4 KB boundary)
195 * 11: 9 - Reserved
196 * 8: 1 - Flags
197 * 8 - Read allocate - allocate cache space on read misses
198 * 7 - Read cache - enable cache & prefetch of data
199 * 6 - Write buffer - enable delaying writes on their way to memory
200 * 5 - Write allocate - allocate cache space on write misses
201 * 4 - Write cache - different writes can be merged together
202 * 3 - Override cache attributes
203 * if 1, bits 4-8 control cache attributes
204 * if 0, the system bus defaults are used
205 * 2 - Writable
206 * 1 - Readable
207 * 0 - 1 if Page @ Page address is valid
208 */
209#define RK_PTE_PAGE_ADDRESS_MASK 0xfffff000
210#define RK_PTE_PAGE_FLAGS_MASK 0x000001fe
211#define RK_PTE_PAGE_WRITABLE BIT(2)
212#define RK_PTE_PAGE_READABLE BIT(1)
213#define RK_PTE_PAGE_VALID BIT(0)
214
215static inline phys_addr_t rk_pte_page_address(u32 pte)
216{
217 return (phys_addr_t)pte & RK_PTE_PAGE_ADDRESS_MASK;
218}
219
220static inline bool rk_pte_is_page_valid(u32 pte)
221{
222 return pte & RK_PTE_PAGE_VALID;
223}
224
225/* TODO: set cache flags per prot IOMMU_CACHE */
226static u32 rk_mk_pte(phys_addr_t page, int prot)
227{
228 u32 flags = 0;
229 flags |= (prot & IOMMU_READ) ? RK_PTE_PAGE_READABLE : 0;
230 flags |= (prot & IOMMU_WRITE) ? RK_PTE_PAGE_WRITABLE : 0;
231 page &= RK_PTE_PAGE_ADDRESS_MASK;
232 return page | flags | RK_PTE_PAGE_VALID;
233}
234
235static u32 rk_mk_pte_invalid(u32 pte)
236{
237 return pte & ~RK_PTE_PAGE_VALID;
238}
239
240/*
241 * rk3288 iova (IOMMU Virtual Address) format
242 * 31 22.21 12.11 0
243 * +-----------+-----------+-------------+
244 * | DTE index | PTE index | Page offset |
245 * +-----------+-----------+-------------+
246 * 31:22 - DTE index - index of DTE in DT
247 * 21:12 - PTE index - index of PTE in PT @ DTE.pt_address
248 * 11: 0 - Page offset - offset into page @ PTE.page_address
249 */
250#define RK_IOVA_DTE_MASK 0xffc00000
251#define RK_IOVA_DTE_SHIFT 22
252#define RK_IOVA_PTE_MASK 0x003ff000
253#define RK_IOVA_PTE_SHIFT 12
254#define RK_IOVA_PAGE_MASK 0x00000fff
255#define RK_IOVA_PAGE_SHIFT 0
256
257static u32 rk_iova_dte_index(dma_addr_t iova)
258{
259 return (u32)(iova & RK_IOVA_DTE_MASK) >> RK_IOVA_DTE_SHIFT;
260}
261
262static u32 rk_iova_pte_index(dma_addr_t iova)
263{
264 return (u32)(iova & RK_IOVA_PTE_MASK) >> RK_IOVA_PTE_SHIFT;
265}
266
267static u32 rk_iova_page_offset(dma_addr_t iova)
268{
269 return (u32)(iova & RK_IOVA_PAGE_MASK) >> RK_IOVA_PAGE_SHIFT;
270}
271
cd6438c5 272static u32 rk_iommu_read(void __iomem *base, u32 offset)
c68a2921 273{
cd6438c5 274 return readl(base + offset);
c68a2921
DK
275}
276
cd6438c5 277static void rk_iommu_write(void __iomem *base, u32 offset, u32 value)
c68a2921 278{
cd6438c5 279 writel(value, base + offset);
c68a2921
DK
280}
281
282static void rk_iommu_command(struct rk_iommu *iommu, u32 command)
283{
cd6438c5
Z
284 int i;
285
286 for (i = 0; i < iommu->num_mmu; i++)
287 writel(command, iommu->bases[i] + RK_MMU_COMMAND);
c68a2921
DK
288}
289
cd6438c5
Z
290static void rk_iommu_base_command(void __iomem *base, u32 command)
291{
292 writel(command, base + RK_MMU_COMMAND);
293}
bf2a5e71 294static void rk_iommu_zap_lines(struct rk_iommu *iommu, dma_addr_t iova_start,
c68a2921
DK
295 size_t size)
296{
cd6438c5 297 int i;
bf2a5e71 298 dma_addr_t iova_end = iova_start + size;
c68a2921
DK
299 /*
300 * TODO(djkurtz): Figure out when it is more efficient to shootdown the
301 * entire iotlb rather than iterate over individual iovas.
302 */
bf2a5e71
TF
303 for (i = 0; i < iommu->num_mmu; i++) {
304 dma_addr_t iova;
305
306 for (iova = iova_start; iova < iova_end; iova += SPAGE_SIZE)
cd6438c5 307 rk_iommu_write(iommu->bases[i], RK_MMU_ZAP_ONE_LINE, iova);
bf2a5e71 308 }
c68a2921
DK
309}
310
311static bool rk_iommu_is_stall_active(struct rk_iommu *iommu)
312{
cd6438c5
Z
313 bool active = true;
314 int i;
315
316 for (i = 0; i < iommu->num_mmu; i++)
fbedd9b9
JK
317 active &= !!(rk_iommu_read(iommu->bases[i], RK_MMU_STATUS) &
318 RK_MMU_STATUS_STALL_ACTIVE);
cd6438c5
Z
319
320 return active;
c68a2921
DK
321}
322
323static bool rk_iommu_is_paging_enabled(struct rk_iommu *iommu)
324{
cd6438c5
Z
325 bool enable = true;
326 int i;
327
328 for (i = 0; i < iommu->num_mmu; i++)
fbedd9b9
JK
329 enable &= !!(rk_iommu_read(iommu->bases[i], RK_MMU_STATUS) &
330 RK_MMU_STATUS_PAGING_ENABLED);
cd6438c5
Z
331
332 return enable;
c68a2921
DK
333}
334
0416bf64
TF
335static bool rk_iommu_is_reset_done(struct rk_iommu *iommu)
336{
337 bool done = true;
338 int i;
339
340 for (i = 0; i < iommu->num_mmu; i++)
341 done &= rk_iommu_read(iommu->bases[i], RK_MMU_DTE_ADDR) == 0;
342
343 return done;
344}
345
c68a2921
DK
346static int rk_iommu_enable_stall(struct rk_iommu *iommu)
347{
cd6438c5 348 int ret, i;
0416bf64 349 bool val;
c68a2921
DK
350
351 if (rk_iommu_is_stall_active(iommu))
352 return 0;
353
354 /* Stall can only be enabled if paging is enabled */
355 if (!rk_iommu_is_paging_enabled(iommu))
356 return 0;
357
358 rk_iommu_command(iommu, RK_MMU_CMD_ENABLE_STALL);
359
0416bf64
TF
360 ret = readx_poll_timeout(rk_iommu_is_stall_active, iommu, val,
361 val, RK_MMU_POLL_PERIOD_US,
362 RK_MMU_POLL_TIMEOUT_US);
c68a2921 363 if (ret)
cd6438c5
Z
364 for (i = 0; i < iommu->num_mmu; i++)
365 dev_err(iommu->dev, "Enable stall request timed out, status: %#08x\n",
366 rk_iommu_read(iommu->bases[i], RK_MMU_STATUS));
c68a2921
DK
367
368 return ret;
369}
370
371static int rk_iommu_disable_stall(struct rk_iommu *iommu)
372{
cd6438c5 373 int ret, i;
0416bf64 374 bool val;
c68a2921
DK
375
376 if (!rk_iommu_is_stall_active(iommu))
377 return 0;
378
379 rk_iommu_command(iommu, RK_MMU_CMD_DISABLE_STALL);
380
0416bf64
TF
381 ret = readx_poll_timeout(rk_iommu_is_stall_active, iommu, val,
382 !val, RK_MMU_POLL_PERIOD_US,
383 RK_MMU_POLL_TIMEOUT_US);
c68a2921 384 if (ret)
cd6438c5
Z
385 for (i = 0; i < iommu->num_mmu; i++)
386 dev_err(iommu->dev, "Disable stall request timed out, status: %#08x\n",
387 rk_iommu_read(iommu->bases[i], RK_MMU_STATUS));
c68a2921
DK
388
389 return ret;
390}
391
392static int rk_iommu_enable_paging(struct rk_iommu *iommu)
393{
cd6438c5 394 int ret, i;
0416bf64 395 bool val;
c68a2921
DK
396
397 if (rk_iommu_is_paging_enabled(iommu))
398 return 0;
399
400 rk_iommu_command(iommu, RK_MMU_CMD_ENABLE_PAGING);
401
0416bf64
TF
402 ret = readx_poll_timeout(rk_iommu_is_paging_enabled, iommu, val,
403 val, RK_MMU_POLL_PERIOD_US,
404 RK_MMU_POLL_TIMEOUT_US);
c68a2921 405 if (ret)
cd6438c5
Z
406 for (i = 0; i < iommu->num_mmu; i++)
407 dev_err(iommu->dev, "Enable paging request timed out, status: %#08x\n",
408 rk_iommu_read(iommu->bases[i], RK_MMU_STATUS));
c68a2921
DK
409
410 return ret;
411}
412
413static int rk_iommu_disable_paging(struct rk_iommu *iommu)
414{
cd6438c5 415 int ret, i;
0416bf64 416 bool val;
c68a2921
DK
417
418 if (!rk_iommu_is_paging_enabled(iommu))
419 return 0;
420
421 rk_iommu_command(iommu, RK_MMU_CMD_DISABLE_PAGING);
422
0416bf64
TF
423 ret = readx_poll_timeout(rk_iommu_is_paging_enabled, iommu, val,
424 !val, RK_MMU_POLL_PERIOD_US,
425 RK_MMU_POLL_TIMEOUT_US);
c68a2921 426 if (ret)
cd6438c5
Z
427 for (i = 0; i < iommu->num_mmu; i++)
428 dev_err(iommu->dev, "Disable paging request timed out, status: %#08x\n",
429 rk_iommu_read(iommu->bases[i], RK_MMU_STATUS));
c68a2921
DK
430
431 return ret;
432}
433
434static int rk_iommu_force_reset(struct rk_iommu *iommu)
435{
cd6438c5 436 int ret, i;
c68a2921 437 u32 dte_addr;
0416bf64 438 bool val;
c68a2921 439
c3aa4742
SX
440 if (iommu->reset_disabled)
441 return 0;
442
c68a2921
DK
443 /*
444 * Check if register DTE_ADDR is working by writing DTE_ADDR_DUMMY
445 * and verifying that upper 5 nybbles are read back.
446 */
cd6438c5
Z
447 for (i = 0; i < iommu->num_mmu; i++) {
448 rk_iommu_write(iommu->bases[i], RK_MMU_DTE_ADDR, DTE_ADDR_DUMMY);
c68a2921 449
cd6438c5
Z
450 dte_addr = rk_iommu_read(iommu->bases[i], RK_MMU_DTE_ADDR);
451 if (dte_addr != (DTE_ADDR_DUMMY & RK_DTE_PT_ADDRESS_MASK)) {
452 dev_err(iommu->dev, "Error during raw reset. MMU_DTE_ADDR is not functioning\n");
453 return -EFAULT;
454 }
c68a2921
DK
455 }
456
457 rk_iommu_command(iommu, RK_MMU_CMD_FORCE_RESET);
458
0416bf64
TF
459 ret = readx_poll_timeout(rk_iommu_is_reset_done, iommu, val,
460 val, RK_MMU_FORCE_RESET_TIMEOUT_US,
461 RK_MMU_POLL_TIMEOUT_US);
462 if (ret) {
463 dev_err(iommu->dev, "FORCE_RESET command timed out\n");
464 return ret;
cd6438c5 465 }
c68a2921 466
cd6438c5 467 return 0;
c68a2921
DK
468}
469
cd6438c5 470static void log_iova(struct rk_iommu *iommu, int index, dma_addr_t iova)
c68a2921 471{
cd6438c5 472 void __iomem *base = iommu->bases[index];
c68a2921
DK
473 u32 dte_index, pte_index, page_offset;
474 u32 mmu_dte_addr;
475 phys_addr_t mmu_dte_addr_phys, dte_addr_phys;
476 u32 *dte_addr;
477 u32 dte;
478 phys_addr_t pte_addr_phys = 0;
479 u32 *pte_addr = NULL;
480 u32 pte = 0;
481 phys_addr_t page_addr_phys = 0;
482 u32 page_flags = 0;
483
484 dte_index = rk_iova_dte_index(iova);
485 pte_index = rk_iova_pte_index(iova);
486 page_offset = rk_iova_page_offset(iova);
487
cd6438c5 488 mmu_dte_addr = rk_iommu_read(base, RK_MMU_DTE_ADDR);
c68a2921
DK
489 mmu_dte_addr_phys = (phys_addr_t)mmu_dte_addr;
490
491 dte_addr_phys = mmu_dte_addr_phys + (4 * dte_index);
492 dte_addr = phys_to_virt(dte_addr_phys);
493 dte = *dte_addr;
494
495 if (!rk_dte_is_pt_valid(dte))
496 goto print_it;
497
498 pte_addr_phys = rk_dte_pt_address(dte) + (pte_index * 4);
499 pte_addr = phys_to_virt(pte_addr_phys);
500 pte = *pte_addr;
501
502 if (!rk_pte_is_page_valid(pte))
503 goto print_it;
504
505 page_addr_phys = rk_pte_page_address(pte) + page_offset;
506 page_flags = pte & RK_PTE_PAGE_FLAGS_MASK;
507
508print_it:
509 dev_err(iommu->dev, "iova = %pad: dte_index: %#03x pte_index: %#03x page_offset: %#03x\n",
510 &iova, dte_index, pte_index, page_offset);
511 dev_err(iommu->dev, "mmu_dte_addr: %pa dte@%pa: %#08x valid: %u pte@%pa: %#08x valid: %u page@%pa flags: %#03x\n",
512 &mmu_dte_addr_phys, &dte_addr_phys, dte,
513 rk_dte_is_pt_valid(dte), &pte_addr_phys, pte,
514 rk_pte_is_page_valid(pte), &page_addr_phys, page_flags);
515}
516
517static irqreturn_t rk_iommu_irq(int irq, void *dev_id)
518{
519 struct rk_iommu *iommu = dev_id;
520 u32 status;
521 u32 int_status;
522 dma_addr_t iova;
cd6438c5
Z
523 irqreturn_t ret = IRQ_NONE;
524 int i;
c68a2921 525
0f181d3c
JC
526 if (WARN_ON(!pm_runtime_get_if_in_use(iommu->dev)))
527 return 0;
528
529 if (WARN_ON(clk_bulk_enable(iommu->num_clocks, iommu->clocks)))
530 goto out;
f2e3a5f5 531
cd6438c5
Z
532 for (i = 0; i < iommu->num_mmu; i++) {
533 int_status = rk_iommu_read(iommu->bases[i], RK_MMU_INT_STATUS);
534 if (int_status == 0)
535 continue;
c68a2921 536
cd6438c5
Z
537 ret = IRQ_HANDLED;
538 iova = rk_iommu_read(iommu->bases[i], RK_MMU_PAGE_FAULT_ADDR);
c68a2921 539
cd6438c5
Z
540 if (int_status & RK_MMU_IRQ_PAGE_FAULT) {
541 int flags;
c68a2921 542
cd6438c5
Z
543 status = rk_iommu_read(iommu->bases[i], RK_MMU_STATUS);
544 flags = (status & RK_MMU_STATUS_PAGE_FAULT_IS_WRITE) ?
545 IOMMU_FAULT_WRITE : IOMMU_FAULT_READ;
c68a2921 546
cd6438c5
Z
547 dev_err(iommu->dev, "Page fault at %pad of type %s\n",
548 &iova,
549 (flags == IOMMU_FAULT_WRITE) ? "write" : "read");
c68a2921 550
cd6438c5 551 log_iova(iommu, i, iova);
c68a2921 552
cd6438c5
Z
553 /*
554 * Report page fault to any installed handlers.
555 * Ignore the return code, though, since we always zap cache
556 * and clear the page fault anyway.
557 */
558 if (iommu->domain)
559 report_iommu_fault(iommu->domain, iommu->dev, iova,
560 flags);
561 else
562 dev_err(iommu->dev, "Page fault while iommu not attached to domain?\n");
c68a2921 563
cd6438c5
Z
564 rk_iommu_base_command(iommu->bases[i], RK_MMU_CMD_ZAP_CACHE);
565 rk_iommu_base_command(iommu->bases[i], RK_MMU_CMD_PAGE_FAULT_DONE);
566 }
c68a2921 567
cd6438c5
Z
568 if (int_status & RK_MMU_IRQ_BUS_ERROR)
569 dev_err(iommu->dev, "BUS_ERROR occurred at %pad\n", &iova);
c68a2921 570
cd6438c5
Z
571 if (int_status & ~RK_MMU_IRQ_MASK)
572 dev_err(iommu->dev, "unexpected int_status: %#08x\n",
573 int_status);
c68a2921 574
cd6438c5
Z
575 rk_iommu_write(iommu->bases[i], RK_MMU_INT_CLEAR, int_status);
576 }
c68a2921 577
f2e3a5f5
TF
578 clk_bulk_disable(iommu->num_clocks, iommu->clocks);
579
0f181d3c
JC
580out:
581 pm_runtime_put(iommu->dev);
cd6438c5 582 return ret;
c68a2921
DK
583}
584
585static phys_addr_t rk_iommu_iova_to_phys(struct iommu_domain *domain,
586 dma_addr_t iova)
587{
bcd516a3 588 struct rk_iommu_domain *rk_domain = to_rk_domain(domain);
c68a2921
DK
589 unsigned long flags;
590 phys_addr_t pt_phys, phys = 0;
591 u32 dte, pte;
592 u32 *page_table;
593
594 spin_lock_irqsave(&rk_domain->dt_lock, flags);
595
596 dte = rk_domain->dt[rk_iova_dte_index(iova)];
597 if (!rk_dte_is_pt_valid(dte))
598 goto out;
599
600 pt_phys = rk_dte_pt_address(dte);
601 page_table = (u32 *)phys_to_virt(pt_phys);
602 pte = page_table[rk_iova_pte_index(iova)];
603 if (!rk_pte_is_page_valid(pte))
604 goto out;
605
606 phys = rk_pte_page_address(pte) + rk_iova_page_offset(iova);
607out:
608 spin_unlock_irqrestore(&rk_domain->dt_lock, flags);
609
610 return phys;
611}
612
613static void rk_iommu_zap_iova(struct rk_iommu_domain *rk_domain,
614 dma_addr_t iova, size_t size)
615{
616 struct list_head *pos;
617 unsigned long flags;
618
619 /* shootdown these iova from all iommus using this domain */
620 spin_lock_irqsave(&rk_domain->iommus_lock, flags);
621 list_for_each(pos, &rk_domain->iommus) {
622 struct rk_iommu *iommu;
0f181d3c 623
c68a2921 624 iommu = list_entry(pos, struct rk_iommu, node);
0f181d3c
JC
625
626 /* Only zap TLBs of IOMMUs that are powered on. */
627 if (pm_runtime_get_if_in_use(iommu->dev)) {
628 WARN_ON(clk_bulk_enable(iommu->num_clocks,
629 iommu->clocks));
630 rk_iommu_zap_lines(iommu, iova, size);
631 clk_bulk_disable(iommu->num_clocks, iommu->clocks);
632 pm_runtime_put(iommu->dev);
633 }
c68a2921
DK
634 }
635 spin_unlock_irqrestore(&rk_domain->iommus_lock, flags);
636}
637
d4dd920c
TF
638static void rk_iommu_zap_iova_first_last(struct rk_iommu_domain *rk_domain,
639 dma_addr_t iova, size_t size)
640{
641 rk_iommu_zap_iova(rk_domain, iova, SPAGE_SIZE);
642 if (size > SPAGE_SIZE)
643 rk_iommu_zap_iova(rk_domain, iova + size - SPAGE_SIZE,
644 SPAGE_SIZE);
645}
646
c68a2921
DK
647static u32 *rk_dte_get_page_table(struct rk_iommu_domain *rk_domain,
648 dma_addr_t iova)
649{
650 u32 *page_table, *dte_addr;
4f0aba67 651 u32 dte_index, dte;
c68a2921 652 phys_addr_t pt_phys;
4f0aba67 653 dma_addr_t pt_dma;
c68a2921
DK
654
655 assert_spin_locked(&rk_domain->dt_lock);
656
4f0aba67
SZ
657 dte_index = rk_iova_dte_index(iova);
658 dte_addr = &rk_domain->dt[dte_index];
c68a2921
DK
659 dte = *dte_addr;
660 if (rk_dte_is_pt_valid(dte))
661 goto done;
662
663 page_table = (u32 *)get_zeroed_page(GFP_ATOMIC | GFP_DMA32);
664 if (!page_table)
665 return ERR_PTR(-ENOMEM);
666
9176a303
JC
667 pt_dma = dma_map_single(dma_dev, page_table, SPAGE_SIZE, DMA_TO_DEVICE);
668 if (dma_mapping_error(dma_dev, pt_dma)) {
669 dev_err(dma_dev, "DMA mapping error while allocating page table\n");
4f0aba67
SZ
670 free_page((unsigned long)page_table);
671 return ERR_PTR(-ENOMEM);
672 }
c68a2921 673
4f0aba67
SZ
674 dte = rk_mk_dte(pt_dma);
675 *dte_addr = dte;
c68a2921 676
4f0aba67
SZ
677 rk_table_flush(rk_domain, pt_dma, NUM_PT_ENTRIES);
678 rk_table_flush(rk_domain,
679 rk_domain->dt_dma + dte_index * sizeof(u32), 1);
c68a2921
DK
680done:
681 pt_phys = rk_dte_pt_address(dte);
682 return (u32 *)phys_to_virt(pt_phys);
683}
684
685static size_t rk_iommu_unmap_iova(struct rk_iommu_domain *rk_domain,
4f0aba67
SZ
686 u32 *pte_addr, dma_addr_t pte_dma,
687 size_t size)
c68a2921
DK
688{
689 unsigned int pte_count;
690 unsigned int pte_total = size / SPAGE_SIZE;
691
692 assert_spin_locked(&rk_domain->dt_lock);
693
694 for (pte_count = 0; pte_count < pte_total; pte_count++) {
695 u32 pte = pte_addr[pte_count];
696 if (!rk_pte_is_page_valid(pte))
697 break;
698
699 pte_addr[pte_count] = rk_mk_pte_invalid(pte);
700 }
701
4f0aba67 702 rk_table_flush(rk_domain, pte_dma, pte_count);
c68a2921
DK
703
704 return pte_count * SPAGE_SIZE;
705}
706
707static int rk_iommu_map_iova(struct rk_iommu_domain *rk_domain, u32 *pte_addr,
4f0aba67
SZ
708 dma_addr_t pte_dma, dma_addr_t iova,
709 phys_addr_t paddr, size_t size, int prot)
c68a2921
DK
710{
711 unsigned int pte_count;
712 unsigned int pte_total = size / SPAGE_SIZE;
713 phys_addr_t page_phys;
714
715 assert_spin_locked(&rk_domain->dt_lock);
716
717 for (pte_count = 0; pte_count < pte_total; pte_count++) {
718 u32 pte = pte_addr[pte_count];
719
720 if (rk_pte_is_page_valid(pte))
721 goto unwind;
722
723 pte_addr[pte_count] = rk_mk_pte(paddr, prot);
724
725 paddr += SPAGE_SIZE;
726 }
727
4f0aba67 728 rk_table_flush(rk_domain, pte_dma, pte_total);
c68a2921 729
d4dd920c
TF
730 /*
731 * Zap the first and last iova to evict from iotlb any previously
732 * mapped cachelines holding stale values for its dte and pte.
733 * We only zap the first and last iova, since only they could have
734 * dte or pte shared with an existing mapping.
735 */
736 rk_iommu_zap_iova_first_last(rk_domain, iova, size);
737
c68a2921
DK
738 return 0;
739unwind:
740 /* Unmap the range of iovas that we just mapped */
4f0aba67
SZ
741 rk_iommu_unmap_iova(rk_domain, pte_addr, pte_dma,
742 pte_count * SPAGE_SIZE);
c68a2921
DK
743
744 iova += pte_count * SPAGE_SIZE;
745 page_phys = rk_pte_page_address(pte_addr[pte_count]);
746 pr_err("iova: %pad already mapped to %pa cannot remap to phys: %pa prot: %#x\n",
747 &iova, &page_phys, &paddr, prot);
748
749 return -EADDRINUSE;
750}
751
752static int rk_iommu_map(struct iommu_domain *domain, unsigned long _iova,
753 phys_addr_t paddr, size_t size, int prot)
754{
bcd516a3 755 struct rk_iommu_domain *rk_domain = to_rk_domain(domain);
c68a2921 756 unsigned long flags;
4f0aba67 757 dma_addr_t pte_dma, iova = (dma_addr_t)_iova;
c68a2921 758 u32 *page_table, *pte_addr;
4f0aba67 759 u32 dte_index, pte_index;
c68a2921
DK
760 int ret;
761
762 spin_lock_irqsave(&rk_domain->dt_lock, flags);
763
764 /*
765 * pgsize_bitmap specifies iova sizes that fit in one page table
766 * (1024 4-KiB pages = 4 MiB).
767 * So, size will always be 4096 <= size <= 4194304.
768 * Since iommu_map() guarantees that both iova and size will be
769 * aligned, we will always only be mapping from a single dte here.
770 */
771 page_table = rk_dte_get_page_table(rk_domain, iova);
772 if (IS_ERR(page_table)) {
773 spin_unlock_irqrestore(&rk_domain->dt_lock, flags);
774 return PTR_ERR(page_table);
775 }
776
4f0aba67
SZ
777 dte_index = rk_domain->dt[rk_iova_dte_index(iova)];
778 pte_index = rk_iova_pte_index(iova);
779 pte_addr = &page_table[pte_index];
780 pte_dma = rk_dte_pt_address(dte_index) + pte_index * sizeof(u32);
781 ret = rk_iommu_map_iova(rk_domain, pte_addr, pte_dma, iova,
782 paddr, size, prot);
783
c68a2921
DK
784 spin_unlock_irqrestore(&rk_domain->dt_lock, flags);
785
786 return ret;
787}
788
789static size_t rk_iommu_unmap(struct iommu_domain *domain, unsigned long _iova,
790 size_t size)
791{
bcd516a3 792 struct rk_iommu_domain *rk_domain = to_rk_domain(domain);
c68a2921 793 unsigned long flags;
4f0aba67 794 dma_addr_t pte_dma, iova = (dma_addr_t)_iova;
c68a2921
DK
795 phys_addr_t pt_phys;
796 u32 dte;
797 u32 *pte_addr;
798 size_t unmap_size;
799
800 spin_lock_irqsave(&rk_domain->dt_lock, flags);
801
802 /*
803 * pgsize_bitmap specifies iova sizes that fit in one page table
804 * (1024 4-KiB pages = 4 MiB).
805 * So, size will always be 4096 <= size <= 4194304.
806 * Since iommu_unmap() guarantees that both iova and size will be
807 * aligned, we will always only be unmapping from a single dte here.
808 */
809 dte = rk_domain->dt[rk_iova_dte_index(iova)];
810 /* Just return 0 if iova is unmapped */
811 if (!rk_dte_is_pt_valid(dte)) {
812 spin_unlock_irqrestore(&rk_domain->dt_lock, flags);
813 return 0;
814 }
815
816 pt_phys = rk_dte_pt_address(dte);
817 pte_addr = (u32 *)phys_to_virt(pt_phys) + rk_iova_pte_index(iova);
4f0aba67
SZ
818 pte_dma = pt_phys + rk_iova_pte_index(iova) * sizeof(u32);
819 unmap_size = rk_iommu_unmap_iova(rk_domain, pte_addr, pte_dma, size);
c68a2921
DK
820
821 spin_unlock_irqrestore(&rk_domain->dt_lock, flags);
822
823 /* Shootdown iotlb entries for iova range that was just unmapped */
824 rk_iommu_zap_iova(rk_domain, iova, unmap_size);
825
826 return unmap_size;
827}
828
829static struct rk_iommu *rk_iommu_from_dev(struct device *dev)
830{
5fd577c3 831 struct rk_iommudata *data = dev->archdata.iommu;
c68a2921 832
5fd577c3 833 return data ? data->iommu : NULL;
c68a2921
DK
834}
835
0f181d3c
JC
836/* Must be called with iommu powered on and attached */
837static void rk_iommu_disable(struct rk_iommu *iommu)
c68a2921 838{
0f181d3c
JC
839 int i;
840
841 /* Ignore error while disabling, just keep going */
842 WARN_ON(clk_bulk_enable(iommu->num_clocks, iommu->clocks));
843 rk_iommu_enable_stall(iommu);
844 rk_iommu_disable_paging(iommu);
845 for (i = 0; i < iommu->num_mmu; i++) {
846 rk_iommu_write(iommu->bases[i], RK_MMU_INT_MASK, 0);
847 rk_iommu_write(iommu->bases[i], RK_MMU_DTE_ADDR, 0);
848 }
849 rk_iommu_disable_stall(iommu);
850 clk_bulk_disable(iommu->num_clocks, iommu->clocks);
851}
852
853/* Must be called with iommu powered on and attached */
854static int rk_iommu_enable(struct rk_iommu *iommu)
855{
856 struct iommu_domain *domain = iommu->domain;
bcd516a3 857 struct rk_iommu_domain *rk_domain = to_rk_domain(domain);
cd6438c5 858 int ret, i;
c68a2921 859
f2e3a5f5 860 ret = clk_bulk_enable(iommu->num_clocks, iommu->clocks);
c68a2921
DK
861 if (ret)
862 return ret;
863
f2e3a5f5
TF
864 ret = rk_iommu_enable_stall(iommu);
865 if (ret)
866 goto out_disable_clocks;
867
c68a2921
DK
868 ret = rk_iommu_force_reset(iommu);
869 if (ret)
f6717d72 870 goto out_disable_stall;
c68a2921 871
cd6438c5 872 for (i = 0; i < iommu->num_mmu; i++) {
4f0aba67
SZ
873 rk_iommu_write(iommu->bases[i], RK_MMU_DTE_ADDR,
874 rk_domain->dt_dma);
ae8a7910 875 rk_iommu_base_command(iommu->bases[i], RK_MMU_CMD_ZAP_CACHE);
cd6438c5
Z
876 rk_iommu_write(iommu->bases[i], RK_MMU_INT_MASK, RK_MMU_IRQ_MASK);
877 }
c68a2921
DK
878
879 ret = rk_iommu_enable_paging(iommu);
c68a2921 880
f6717d72 881out_disable_stall:
c68a2921 882 rk_iommu_disable_stall(iommu);
f2e3a5f5
TF
883out_disable_clocks:
884 clk_bulk_disable(iommu->num_clocks, iommu->clocks);
f6717d72 885 return ret;
c68a2921
DK
886}
887
888static void rk_iommu_detach_device(struct iommu_domain *domain,
889 struct device *dev)
890{
891 struct rk_iommu *iommu;
bcd516a3 892 struct rk_iommu_domain *rk_domain = to_rk_domain(domain);
c68a2921
DK
893 unsigned long flags;
894
895 /* Allow 'virtual devices' (eg drm) to detach from domain */
896 iommu = rk_iommu_from_dev(dev);
897 if (!iommu)
898 return;
899
0f181d3c
JC
900 dev_dbg(dev, "Detaching from iommu domain\n");
901
902 /* iommu already detached */
903 if (iommu->domain != domain)
904 return;
905
906 iommu->domain = NULL;
907
c68a2921
DK
908 spin_lock_irqsave(&rk_domain->iommus_lock, flags);
909 list_del_init(&iommu->node);
910 spin_unlock_irqrestore(&rk_domain->iommus_lock, flags);
911
0f181d3c
JC
912 if (pm_runtime_get_if_in_use(iommu->dev)) {
913 rk_iommu_disable(iommu);
914 pm_runtime_put(iommu->dev);
cd6438c5 915 }
0f181d3c 916}
c68a2921 917
0f181d3c
JC
918static int rk_iommu_attach_device(struct iommu_domain *domain,
919 struct device *dev)
920{
921 struct rk_iommu *iommu;
922 struct rk_iommu_domain *rk_domain = to_rk_domain(domain);
923 unsigned long flags;
924 int ret;
c68a2921 925
0f181d3c
JC
926 /*
927 * Allow 'virtual devices' (e.g., drm) to attach to domain.
928 * Such a device does not belong to an iommu group.
929 */
930 iommu = rk_iommu_from_dev(dev);
931 if (!iommu)
932 return 0;
933
934 dev_dbg(dev, "Attaching to iommu domain\n");
935
936 /* iommu already attached */
937 if (iommu->domain == domain)
938 return 0;
939
940 if (iommu->domain)
941 rk_iommu_detach_device(iommu->domain, dev);
942
943 iommu->domain = domain;
944
945 spin_lock_irqsave(&rk_domain->iommus_lock, flags);
946 list_add_tail(&iommu->node, &rk_domain->iommus);
947 spin_unlock_irqrestore(&rk_domain->iommus_lock, flags);
948
949 if (!pm_runtime_get_if_in_use(iommu->dev))
950 return 0;
951
952 ret = rk_iommu_enable(iommu);
953 if (ret)
954 rk_iommu_detach_device(iommu->domain, dev);
955
956 pm_runtime_put(iommu->dev);
957
958 return ret;
c68a2921
DK
959}
960
bcd516a3 961static struct iommu_domain *rk_iommu_domain_alloc(unsigned type)
c68a2921
DK
962{
963 struct rk_iommu_domain *rk_domain;
964
a93db2f2 965 if (type != IOMMU_DOMAIN_UNMANAGED && type != IOMMU_DOMAIN_DMA)
bcd516a3
JR
966 return NULL;
967
9176a303 968 if (!dma_dev)
bcd516a3 969 return NULL;
c68a2921 970
9176a303 971 rk_domain = devm_kzalloc(dma_dev, sizeof(*rk_domain), GFP_KERNEL);
4f0aba67 972 if (!rk_domain)
9176a303 973 return NULL;
4f0aba67 974
a93db2f2
SZ
975 if (type == IOMMU_DOMAIN_DMA &&
976 iommu_get_dma_cookie(&rk_domain->domain))
9176a303 977 return NULL;
4f0aba67 978
c68a2921
DK
979 /*
980 * rk32xx iommus use a 2 level pagetable.
981 * Each level1 (dt) and level2 (pt) table has 1024 4-byte entries.
982 * Allocate one 4 KiB page for each table.
983 */
984 rk_domain->dt = (u32 *)get_zeroed_page(GFP_KERNEL | GFP_DMA32);
985 if (!rk_domain->dt)
4f0aba67
SZ
986 goto err_put_cookie;
987
9176a303 988 rk_domain->dt_dma = dma_map_single(dma_dev, rk_domain->dt,
4f0aba67 989 SPAGE_SIZE, DMA_TO_DEVICE);
9176a303
JC
990 if (dma_mapping_error(dma_dev, rk_domain->dt_dma)) {
991 dev_err(dma_dev, "DMA map error for DT\n");
4f0aba67
SZ
992 goto err_free_dt;
993 }
c68a2921 994
4f0aba67 995 rk_table_flush(rk_domain, rk_domain->dt_dma, NUM_DT_ENTRIES);
c68a2921
DK
996
997 spin_lock_init(&rk_domain->iommus_lock);
998 spin_lock_init(&rk_domain->dt_lock);
999 INIT_LIST_HEAD(&rk_domain->iommus);
1000
a93db2f2
SZ
1001 rk_domain->domain.geometry.aperture_start = 0;
1002 rk_domain->domain.geometry.aperture_end = DMA_BIT_MASK(32);
1003 rk_domain->domain.geometry.force_aperture = true;
1004
bcd516a3 1005 return &rk_domain->domain;
c68a2921 1006
4f0aba67
SZ
1007err_free_dt:
1008 free_page((unsigned long)rk_domain->dt);
1009err_put_cookie:
a93db2f2
SZ
1010 if (type == IOMMU_DOMAIN_DMA)
1011 iommu_put_dma_cookie(&rk_domain->domain);
4f0aba67 1012
bcd516a3 1013 return NULL;
c68a2921
DK
1014}
1015
bcd516a3 1016static void rk_iommu_domain_free(struct iommu_domain *domain)
c68a2921 1017{
bcd516a3 1018 struct rk_iommu_domain *rk_domain = to_rk_domain(domain);
c68a2921
DK
1019 int i;
1020
1021 WARN_ON(!list_empty(&rk_domain->iommus));
1022
1023 for (i = 0; i < NUM_DT_ENTRIES; i++) {
1024 u32 dte = rk_domain->dt[i];
1025 if (rk_dte_is_pt_valid(dte)) {
1026 phys_addr_t pt_phys = rk_dte_pt_address(dte);
1027 u32 *page_table = phys_to_virt(pt_phys);
9176a303 1028 dma_unmap_single(dma_dev, pt_phys,
4f0aba67 1029 SPAGE_SIZE, DMA_TO_DEVICE);
c68a2921
DK
1030 free_page((unsigned long)page_table);
1031 }
1032 }
1033
9176a303 1034 dma_unmap_single(dma_dev, rk_domain->dt_dma,
4f0aba67 1035 SPAGE_SIZE, DMA_TO_DEVICE);
c68a2921 1036 free_page((unsigned long)rk_domain->dt);
4f0aba67 1037
a93db2f2
SZ
1038 if (domain->type == IOMMU_DOMAIN_DMA)
1039 iommu_put_dma_cookie(&rk_domain->domain);
c68a2921
DK
1040}
1041
5fd577c3 1042static int rk_iommu_add_device(struct device *dev)
c68a2921 1043{
5fd577c3
JC
1044 struct iommu_group *group;
1045 struct rk_iommu *iommu;
0f181d3c 1046 struct rk_iommudata *data;
c68a2921 1047
0f181d3c
JC
1048 data = dev->archdata.iommu;
1049 if (!data)
5fd577c3 1050 return -ENODEV;
c68a2921 1051
0f181d3c
JC
1052 iommu = rk_iommu_from_dev(dev);
1053
5fd577c3
JC
1054 group = iommu_group_get_for_dev(dev);
1055 if (IS_ERR(group))
1056 return PTR_ERR(group);
1057 iommu_group_put(group);
c68a2921 1058
5fd577c3 1059 iommu_device_link(&iommu->iommu, dev);
0f181d3c 1060 data->link = device_link_add(dev, iommu->dev, DL_FLAG_PM_RUNTIME);
c68a2921
DK
1061
1062 return 0;
1063}
1064
5fd577c3 1065static void rk_iommu_remove_device(struct device *dev)
c68a2921 1066{
c9d9f239 1067 struct rk_iommu *iommu;
0f181d3c 1068 struct rk_iommudata *data = dev->archdata.iommu;
c68a2921 1069
c9d9f239 1070 iommu = rk_iommu_from_dev(dev);
c9d9f239 1071
0f181d3c 1072 device_link_del(data->link);
5fd577c3 1073 iommu_device_unlink(&iommu->iommu, dev);
c68a2921 1074 iommu_group_remove_device(dev);
c68a2921
DK
1075}
1076
57c26957
JC
1077static struct iommu_group *rk_iommu_device_group(struct device *dev)
1078{
1079 struct rk_iommu *iommu;
1080
1081 iommu = rk_iommu_from_dev(dev);
1082
1083 return iommu_group_ref_get(iommu->group);
1084}
1085
5fd577c3
JC
1086static int rk_iommu_of_xlate(struct device *dev,
1087 struct of_phandle_args *args)
c68a2921 1088{
5fd577c3
JC
1089 struct platform_device *iommu_dev;
1090 struct rk_iommudata *data;
c9d9f239 1091
5fd577c3
JC
1092 data = devm_kzalloc(dma_dev, sizeof(*data), GFP_KERNEL);
1093 if (!data)
1094 return -ENOMEM;
c68a2921 1095
5fd577c3 1096 iommu_dev = of_find_device_by_node(args->np);
c9d9f239 1097
5fd577c3
JC
1098 data->iommu = platform_get_drvdata(iommu_dev);
1099 dev->archdata.iommu = data;
1100
1101 of_dev_put(iommu_dev);
1102
1103 return 0;
c68a2921
DK
1104}
1105
1106static const struct iommu_ops rk_iommu_ops = {
bcd516a3
JR
1107 .domain_alloc = rk_iommu_domain_alloc,
1108 .domain_free = rk_iommu_domain_free,
c68a2921
DK
1109 .attach_dev = rk_iommu_attach_device,
1110 .detach_dev = rk_iommu_detach_device,
1111 .map = rk_iommu_map,
1112 .unmap = rk_iommu_unmap,
e6d0f473 1113 .map_sg = default_iommu_map_sg,
c68a2921
DK
1114 .add_device = rk_iommu_add_device,
1115 .remove_device = rk_iommu_remove_device,
1116 .iova_to_phys = rk_iommu_iova_to_phys,
57c26957 1117 .device_group = rk_iommu_device_group,
c68a2921 1118 .pgsize_bitmap = RK_IOMMU_PGSIZE_BITMAP,
5fd577c3 1119 .of_xlate = rk_iommu_of_xlate,
c68a2921
DK
1120};
1121
1122static int rk_iommu_probe(struct platform_device *pdev)
1123{
1124 struct device *dev = &pdev->dev;
1125 struct rk_iommu *iommu;
1126 struct resource *res;
3d08f434 1127 int num_res = pdev->num_resources;
d0b912bd 1128 int err, i, irq;
c68a2921
DK
1129
1130 iommu = devm_kzalloc(dev, sizeof(*iommu), GFP_KERNEL);
1131 if (!iommu)
1132 return -ENOMEM;
1133
1134 platform_set_drvdata(pdev, iommu);
1135 iommu->dev = dev;
cd6438c5 1136 iommu->num_mmu = 0;
3d08f434
SZ
1137
1138 iommu->bases = devm_kzalloc(dev, sizeof(*iommu->bases) * num_res,
cd6438c5
Z
1139 GFP_KERNEL);
1140 if (!iommu->bases)
1141 return -ENOMEM;
c68a2921 1142
3d08f434 1143 for (i = 0; i < num_res; i++) {
cd6438c5 1144 res = platform_get_resource(pdev, IORESOURCE_MEM, i);
8d7f2d84
TV
1145 if (!res)
1146 continue;
cd6438c5
Z
1147 iommu->bases[i] = devm_ioremap_resource(&pdev->dev, res);
1148 if (IS_ERR(iommu->bases[i]))
1149 continue;
1150 iommu->num_mmu++;
1151 }
1152 if (iommu->num_mmu == 0)
1153 return PTR_ERR(iommu->bases[0]);
c68a2921 1154
d0b912bd
JC
1155 i = 0;
1156 while ((irq = platform_get_irq(pdev, i++)) != -ENXIO) {
1157 if (irq < 0)
1158 return irq;
03f732f8 1159
d0b912bd
JC
1160 err = devm_request_irq(iommu->dev, irq, rk_iommu_irq,
1161 IRQF_SHARED, dev_name(dev), iommu);
1162 if (err)
1163 return err;
c68a2921
DK
1164 }
1165
c3aa4742
SX
1166 iommu->reset_disabled = device_property_read_bool(dev,
1167 "rockchip,disable-mmu-reset");
1168
f2e3a5f5
TF
1169 iommu->num_clocks = ARRAY_SIZE(rk_iommu_clocks);
1170 iommu->clocks = devm_kcalloc(iommu->dev, iommu->num_clocks,
1171 sizeof(*iommu->clocks), GFP_KERNEL);
1172 if (!iommu->clocks)
1173 return -ENOMEM;
1174
1175 for (i = 0; i < iommu->num_clocks; ++i)
1176 iommu->clocks[i].id = rk_iommu_clocks[i];
1177
1178 err = devm_clk_bulk_get(iommu->dev, iommu->num_clocks, iommu->clocks);
1179 if (err)
1180 return err;
1181
1182 err = clk_bulk_prepare(iommu->num_clocks, iommu->clocks);
c9d9f239
JR
1183 if (err)
1184 return err;
1185
57c26957
JC
1186 iommu->group = iommu_group_alloc();
1187 if (IS_ERR(iommu->group)) {
1188 err = PTR_ERR(iommu->group);
1189 goto err_unprepare_clocks;
1190 }
1191
f2e3a5f5
TF
1192 err = iommu_device_sysfs_add(&iommu->iommu, dev, NULL, dev_name(dev));
1193 if (err)
57c26957 1194 goto err_put_group;
f2e3a5f5 1195
c9d9f239 1196 iommu_device_set_ops(&iommu->iommu, &rk_iommu_ops);
5fd577c3
JC
1197 iommu_device_set_fwnode(&iommu->iommu, &dev->of_node->fwnode);
1198
c9d9f239 1199 err = iommu_device_register(&iommu->iommu);
6d9ffaad 1200 if (err)
f2e3a5f5 1201 goto err_remove_sysfs;
c9d9f239 1202
9176a303
JC
1203 /*
1204 * Use the first registered IOMMU device for domain to use with DMA
1205 * API, since a domain might not physically correspond to a single
1206 * IOMMU device..
1207 */
1208 if (!dma_dev)
1209 dma_dev = &pdev->dev;
1210
4d88a8a4
JC
1211 bus_set_iommu(&platform_bus_type, &rk_iommu_ops);
1212
0f181d3c
JC
1213 pm_runtime_enable(dev);
1214
f2e3a5f5
TF
1215 return 0;
1216err_remove_sysfs:
1217 iommu_device_sysfs_remove(&iommu->iommu);
57c26957
JC
1218err_put_group:
1219 iommu_group_put(iommu->group);
f2e3a5f5
TF
1220err_unprepare_clocks:
1221 clk_bulk_unprepare(iommu->num_clocks, iommu->clocks);
c9d9f239 1222 return err;
c68a2921
DK
1223}
1224
1a4e90f2
MZ
1225static void rk_iommu_shutdown(struct platform_device *pdev)
1226{
0f181d3c
JC
1227 pm_runtime_force_suspend(&pdev->dev);
1228}
1a4e90f2 1229
0f181d3c
JC
1230static int __maybe_unused rk_iommu_suspend(struct device *dev)
1231{
1232 struct rk_iommu *iommu = dev_get_drvdata(dev);
1233
1234 if (!iommu->domain)
1235 return 0;
1236
1237 rk_iommu_disable(iommu);
1238 return 0;
1239}
1240
1241static int __maybe_unused rk_iommu_resume(struct device *dev)
1242{
1243 struct rk_iommu *iommu = dev_get_drvdata(dev);
1244
1245 if (!iommu->domain)
1246 return 0;
1247
1248 return rk_iommu_enable(iommu);
1a4e90f2
MZ
1249}
1250
0f181d3c
JC
1251static const struct dev_pm_ops rk_iommu_pm_ops = {
1252 SET_RUNTIME_PM_OPS(rk_iommu_suspend, rk_iommu_resume, NULL)
1253 SET_SYSTEM_SLEEP_PM_OPS(pm_runtime_force_suspend,
1254 pm_runtime_force_resume)
1255};
1256
c68a2921
DK
1257static const struct of_device_id rk_iommu_dt_ids[] = {
1258 { .compatible = "rockchip,iommu" },
1259 { /* sentinel */ }
1260};
1261MODULE_DEVICE_TABLE(of, rk_iommu_dt_ids);
c68a2921
DK
1262
1263static struct platform_driver rk_iommu_driver = {
1264 .probe = rk_iommu_probe,
1a4e90f2 1265 .shutdown = rk_iommu_shutdown,
c68a2921
DK
1266 .driver = {
1267 .name = "rk_iommu",
d9e7eb15 1268 .of_match_table = rk_iommu_dt_ids,
0f181d3c 1269 .pm = &rk_iommu_pm_ops,
98b72b94 1270 .suppress_bind_attrs = true,
c68a2921
DK
1271 },
1272};
1273
1274static int __init rk_iommu_init(void)
1275{
9176a303 1276 return platform_driver_register(&rk_iommu_driver);
c68a2921 1277}
c68a2921 1278subsys_initcall(rk_iommu_init);
c68a2921 1279
5fd577c3
JC
1280IOMMU_OF_DECLARE(rk_iommu_of, "rockchip,iommu");
1281
c68a2921
DK
1282MODULE_DESCRIPTION("IOMMU API for Rockchip");
1283MODULE_AUTHOR("Simon Xue <xxm@rock-chips.com> and Daniel Kurtz <djkurtz@chromium.org>");
1284MODULE_ALIAS("platform:rockchip-iommu");
1285MODULE_LICENSE("GPL v2");