blob: 4e0f9b61cd7fabba7019ad9d9bc697aba7b6f0e2 [file] [log] [blame]
Daniel Kurtzc68a2922014-11-03 10:53:27 +08001/*
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
Tomasz Figaf2e3a5f2018-03-23 15:38:08 +08007#include <linux/clk.h>
Daniel Kurtzc68a2922014-11-03 10:53:27 +08008#include <linux/compiler.h>
9#include <linux/delay.h>
10#include <linux/device.h>
Shunqian Zheng4f0aba62016-06-24 10:13:29 +080011#include <linux/dma-iommu.h>
Joerg Roedel461a6942017-04-26 15:46:20 +020012#include <linux/dma-mapping.h>
Daniel Kurtzc68a2922014-11-03 10:53:27 +080013#include <linux/errno.h>
14#include <linux/interrupt.h>
15#include <linux/io.h>
16#include <linux/iommu.h>
Tomasz Figa0416bf62018-03-23 15:38:05 +080017#include <linux/iopoll.h>
Daniel Kurtzc68a2922014-11-03 10:53:27 +080018#include <linux/list.h>
19#include <linux/mm.h>
20#include <linux/module.h>
21#include <linux/of.h>
Jeffy Chen5fd577c2018-03-23 15:38:11 +080022#include <linux/of_iommu.h>
Daniel Kurtzc68a2922014-11-03 10:53:27 +080023#include <linux/of_platform.h>
24#include <linux/platform_device.h>
Jeffy Chen0f181d32018-03-23 15:38:13 +080025#include <linux/pm_runtime.h>
Daniel Kurtzc68a2922014-11-03 10:53:27 +080026#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
Tomasz Figa0416bf62018-03-23 15:38:05 +080042
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
Daniel Kurtzc68a2922014-11-03 10:53:27 +080046
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
Daniel Kurtzc68a2922014-11-03 10:53:27 +080082struct rk_iommu_domain {
83 struct list_head iommus;
84 u32 *dt; /* page directory table */
Shunqian Zheng4f0aba62016-06-24 10:13:29 +080085 dma_addr_t dt_dma;
Daniel Kurtzc68a2922014-11-03 10:53:27 +080086 spinlock_t iommus_lock; /* lock for iommus list */
87 spinlock_t dt_lock; /* lock for modifying page directory table */
Joerg Roedelbcd516a2015-03-26 13:43:17 +010088
89 struct iommu_domain domain;
Daniel Kurtzc68a2922014-11-03 10:53:27 +080090};
91
Tomasz Figaf2e3a5f2018-03-23 15:38:08 +080092/* list of clocks required by IOMMU */
93static const char * const rk_iommu_clocks[] = {
94 "aclk", "iface",
95};
96
Daniel Kurtzc68a2922014-11-03 10:53:27 +080097struct rk_iommu {
98 struct device *dev;
ZhengShunQiancd6438c2016-01-19 15:03:00 +080099 void __iomem **bases;
100 int num_mmu;
Tomasz Figaf2e3a5f2018-03-23 15:38:08 +0800101 struct clk_bulk_data *clocks;
102 int num_clocks;
Simon Xuec3aa4742017-07-24 10:37:15 +0800103 bool reset_disabled;
Joerg Roedelc9d9f232017-03-31 16:26:03 +0200104 struct iommu_device iommu;
Daniel Kurtzc68a2922014-11-03 10:53:27 +0800105 struct list_head node; /* entry in rk_iommu_domain.iommus */
106 struct iommu_domain *domain; /* domain to which iommu is attached */
Jeffy Chen57c26952018-03-23 15:38:14 +0800107 struct iommu_group *group;
Daniel Kurtzc68a2922014-11-03 10:53:27 +0800108};
109
Jeffy Chen5fd577c2018-03-23 15:38:11 +0800110struct rk_iommudata {
Jeffy Chen0f181d32018-03-23 15:38:13 +0800111 struct device_link *link; /* runtime PM link from IOMMU to master */
Jeffy Chen5fd577c2018-03-23 15:38:11 +0800112 struct rk_iommu *iommu;
113};
114
Jeffy Chen9176a302018-03-23 15:38:10 +0800115static struct device *dma_dev;
116
Shunqian Zheng4f0aba62016-06-24 10:13:29 +0800117static inline void rk_table_flush(struct rk_iommu_domain *dom, dma_addr_t dma,
118 unsigned int count)
Daniel Kurtzc68a2922014-11-03 10:53:27 +0800119{
Shunqian Zheng4f0aba62016-06-24 10:13:29 +0800120 size_t size = count * sizeof(u32); /* count of u32 entry */
Daniel Kurtzc68a2922014-11-03 10:53:27 +0800121
Jeffy Chen9176a302018-03-23 15:38:10 +0800122 dma_sync_single_for_device(dma_dev, dma, size, DMA_TO_DEVICE);
Daniel Kurtzc68a2922014-11-03 10:53:27 +0800123}
124
Joerg Roedelbcd516a2015-03-26 13:43:17 +0100125static struct rk_iommu_domain *to_rk_domain(struct iommu_domain *dom)
126{
127 return container_of(dom, struct rk_iommu_domain, domain);
128}
129
Daniel Kurtzc68a2922014-11-03 10:53:27 +0800130/*
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
Shunqian Zheng4f0aba62016-06-24 10:13:29 +0800184static inline u32 rk_mk_dte(dma_addr_t pt_dma)
Daniel Kurtzc68a2922014-11-03 10:53:27 +0800185{
Shunqian Zheng4f0aba62016-06-24 10:13:29 +0800186 return (pt_dma & RK_DTE_PT_ADDRESS_MASK) | RK_DTE_PT_VALID;
Daniel Kurtzc68a2922014-11-03 10:53:27 +0800187}
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
ZhengShunQiancd6438c2016-01-19 15:03:00 +0800272static u32 rk_iommu_read(void __iomem *base, u32 offset)
Daniel Kurtzc68a2922014-11-03 10:53:27 +0800273{
ZhengShunQiancd6438c2016-01-19 15:03:00 +0800274 return readl(base + offset);
Daniel Kurtzc68a2922014-11-03 10:53:27 +0800275}
276
ZhengShunQiancd6438c2016-01-19 15:03:00 +0800277static void rk_iommu_write(void __iomem *base, u32 offset, u32 value)
Daniel Kurtzc68a2922014-11-03 10:53:27 +0800278{
ZhengShunQiancd6438c2016-01-19 15:03:00 +0800279 writel(value, base + offset);
Daniel Kurtzc68a2922014-11-03 10:53:27 +0800280}
281
282static void rk_iommu_command(struct rk_iommu *iommu, u32 command)
283{
ZhengShunQiancd6438c2016-01-19 15:03:00 +0800284 int i;
285
286 for (i = 0; i < iommu->num_mmu; i++)
287 writel(command, iommu->bases[i] + RK_MMU_COMMAND);
Daniel Kurtzc68a2922014-11-03 10:53:27 +0800288}
289
ZhengShunQiancd6438c2016-01-19 15:03:00 +0800290static void rk_iommu_base_command(void __iomem *base, u32 command)
291{
292 writel(command, base + RK_MMU_COMMAND);
293}
Tomasz Figabf2a5e72018-03-23 15:38:06 +0800294static void rk_iommu_zap_lines(struct rk_iommu *iommu, dma_addr_t iova_start,
Daniel Kurtzc68a2922014-11-03 10:53:27 +0800295 size_t size)
296{
ZhengShunQiancd6438c2016-01-19 15:03:00 +0800297 int i;
Tomasz Figabf2a5e72018-03-23 15:38:06 +0800298 dma_addr_t iova_end = iova_start + size;
Daniel Kurtzc68a2922014-11-03 10:53:27 +0800299 /*
300 * TODO(djkurtz): Figure out when it is more efficient to shootdown the
301 * entire iotlb rather than iterate over individual iovas.
302 */
Tomasz Figabf2a5e72018-03-23 15:38:06 +0800303 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)
ZhengShunQiancd6438c2016-01-19 15:03:00 +0800307 rk_iommu_write(iommu->bases[i], RK_MMU_ZAP_ONE_LINE, iova);
Tomasz Figabf2a5e72018-03-23 15:38:06 +0800308 }
Daniel Kurtzc68a2922014-11-03 10:53:27 +0800309}
310
311static bool rk_iommu_is_stall_active(struct rk_iommu *iommu)
312{
ZhengShunQiancd6438c2016-01-19 15:03:00 +0800313 bool active = true;
314 int i;
315
316 for (i = 0; i < iommu->num_mmu; i++)
John Keepingfbedd9b2016-04-05 15:05:46 +0100317 active &= !!(rk_iommu_read(iommu->bases[i], RK_MMU_STATUS) &
318 RK_MMU_STATUS_STALL_ACTIVE);
ZhengShunQiancd6438c2016-01-19 15:03:00 +0800319
320 return active;
Daniel Kurtzc68a2922014-11-03 10:53:27 +0800321}
322
323static bool rk_iommu_is_paging_enabled(struct rk_iommu *iommu)
324{
ZhengShunQiancd6438c2016-01-19 15:03:00 +0800325 bool enable = true;
326 int i;
327
328 for (i = 0; i < iommu->num_mmu; i++)
John Keepingfbedd9b2016-04-05 15:05:46 +0100329 enable &= !!(rk_iommu_read(iommu->bases[i], RK_MMU_STATUS) &
330 RK_MMU_STATUS_PAGING_ENABLED);
ZhengShunQiancd6438c2016-01-19 15:03:00 +0800331
332 return enable;
Daniel Kurtzc68a2922014-11-03 10:53:27 +0800333}
334
Tomasz Figa0416bf62018-03-23 15:38:05 +0800335static 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
Daniel Kurtzc68a2922014-11-03 10:53:27 +0800346static int rk_iommu_enable_stall(struct rk_iommu *iommu)
347{
ZhengShunQiancd6438c2016-01-19 15:03:00 +0800348 int ret, i;
Tomasz Figa0416bf62018-03-23 15:38:05 +0800349 bool val;
Daniel Kurtzc68a2922014-11-03 10:53:27 +0800350
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
Tomasz Figa0416bf62018-03-23 15:38:05 +0800360 ret = readx_poll_timeout(rk_iommu_is_stall_active, iommu, val,
361 val, RK_MMU_POLL_PERIOD_US,
362 RK_MMU_POLL_TIMEOUT_US);
Daniel Kurtzc68a2922014-11-03 10:53:27 +0800363 if (ret)
ZhengShunQiancd6438c2016-01-19 15:03:00 +0800364 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));
Daniel Kurtzc68a2922014-11-03 10:53:27 +0800367
368 return ret;
369}
370
371static int rk_iommu_disable_stall(struct rk_iommu *iommu)
372{
ZhengShunQiancd6438c2016-01-19 15:03:00 +0800373 int ret, i;
Tomasz Figa0416bf62018-03-23 15:38:05 +0800374 bool val;
Daniel Kurtzc68a2922014-11-03 10:53:27 +0800375
376 if (!rk_iommu_is_stall_active(iommu))
377 return 0;
378
379 rk_iommu_command(iommu, RK_MMU_CMD_DISABLE_STALL);
380
Tomasz Figa0416bf62018-03-23 15:38:05 +0800381 ret = readx_poll_timeout(rk_iommu_is_stall_active, iommu, val,
382 !val, RK_MMU_POLL_PERIOD_US,
383 RK_MMU_POLL_TIMEOUT_US);
Daniel Kurtzc68a2922014-11-03 10:53:27 +0800384 if (ret)
ZhengShunQiancd6438c2016-01-19 15:03:00 +0800385 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));
Daniel Kurtzc68a2922014-11-03 10:53:27 +0800388
389 return ret;
390}
391
392static int rk_iommu_enable_paging(struct rk_iommu *iommu)
393{
ZhengShunQiancd6438c2016-01-19 15:03:00 +0800394 int ret, i;
Tomasz Figa0416bf62018-03-23 15:38:05 +0800395 bool val;
Daniel Kurtzc68a2922014-11-03 10:53:27 +0800396
397 if (rk_iommu_is_paging_enabled(iommu))
398 return 0;
399
400 rk_iommu_command(iommu, RK_MMU_CMD_ENABLE_PAGING);
401
Tomasz Figa0416bf62018-03-23 15:38:05 +0800402 ret = readx_poll_timeout(rk_iommu_is_paging_enabled, iommu, val,
403 val, RK_MMU_POLL_PERIOD_US,
404 RK_MMU_POLL_TIMEOUT_US);
Daniel Kurtzc68a2922014-11-03 10:53:27 +0800405 if (ret)
ZhengShunQiancd6438c2016-01-19 15:03:00 +0800406 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));
Daniel Kurtzc68a2922014-11-03 10:53:27 +0800409
410 return ret;
411}
412
413static int rk_iommu_disable_paging(struct rk_iommu *iommu)
414{
ZhengShunQiancd6438c2016-01-19 15:03:00 +0800415 int ret, i;
Tomasz Figa0416bf62018-03-23 15:38:05 +0800416 bool val;
Daniel Kurtzc68a2922014-11-03 10:53:27 +0800417
418 if (!rk_iommu_is_paging_enabled(iommu))
419 return 0;
420
421 rk_iommu_command(iommu, RK_MMU_CMD_DISABLE_PAGING);
422
Tomasz Figa0416bf62018-03-23 15:38:05 +0800423 ret = readx_poll_timeout(rk_iommu_is_paging_enabled, iommu, val,
424 !val, RK_MMU_POLL_PERIOD_US,
425 RK_MMU_POLL_TIMEOUT_US);
Daniel Kurtzc68a2922014-11-03 10:53:27 +0800426 if (ret)
ZhengShunQiancd6438c2016-01-19 15:03:00 +0800427 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));
Daniel Kurtzc68a2922014-11-03 10:53:27 +0800430
431 return ret;
432}
433
434static int rk_iommu_force_reset(struct rk_iommu *iommu)
435{
ZhengShunQiancd6438c2016-01-19 15:03:00 +0800436 int ret, i;
Daniel Kurtzc68a2922014-11-03 10:53:27 +0800437 u32 dte_addr;
Tomasz Figa0416bf62018-03-23 15:38:05 +0800438 bool val;
Daniel Kurtzc68a2922014-11-03 10:53:27 +0800439
Simon Xuec3aa4742017-07-24 10:37:15 +0800440 if (iommu->reset_disabled)
441 return 0;
442
Daniel Kurtzc68a2922014-11-03 10:53:27 +0800443 /*
444 * Check if register DTE_ADDR is working by writing DTE_ADDR_DUMMY
445 * and verifying that upper 5 nybbles are read back.
446 */
ZhengShunQiancd6438c2016-01-19 15:03:00 +0800447 for (i = 0; i < iommu->num_mmu; i++) {
448 rk_iommu_write(iommu->bases[i], RK_MMU_DTE_ADDR, DTE_ADDR_DUMMY);
Daniel Kurtzc68a2922014-11-03 10:53:27 +0800449
ZhengShunQiancd6438c2016-01-19 15:03:00 +0800450 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 }
Daniel Kurtzc68a2922014-11-03 10:53:27 +0800455 }
456
457 rk_iommu_command(iommu, RK_MMU_CMD_FORCE_RESET);
458
Tomasz Figa0416bf62018-03-23 15:38:05 +0800459 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;
ZhengShunQiancd6438c2016-01-19 15:03:00 +0800465 }
Daniel Kurtzc68a2922014-11-03 10:53:27 +0800466
ZhengShunQiancd6438c2016-01-19 15:03:00 +0800467 return 0;
Daniel Kurtzc68a2922014-11-03 10:53:27 +0800468}
469
ZhengShunQiancd6438c2016-01-19 15:03:00 +0800470static void log_iova(struct rk_iommu *iommu, int index, dma_addr_t iova)
Daniel Kurtzc68a2922014-11-03 10:53:27 +0800471{
ZhengShunQiancd6438c2016-01-19 15:03:00 +0800472 void __iomem *base = iommu->bases[index];
Daniel Kurtzc68a2922014-11-03 10:53:27 +0800473 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
ZhengShunQiancd6438c2016-01-19 15:03:00 +0800488 mmu_dte_addr = rk_iommu_read(base, RK_MMU_DTE_ADDR);
Daniel Kurtzc68a2922014-11-03 10:53:27 +0800489 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;
ZhengShunQiancd6438c2016-01-19 15:03:00 +0800523 irqreturn_t ret = IRQ_NONE;
Marc Zyngier3fc7c5c2018-08-24 16:06:36 +0100524 int i, err;
Daniel Kurtzc68a2922014-11-03 10:53:27 +0800525
Marc Zyngier3fc7c5c2018-08-24 16:06:36 +0100526 err = pm_runtime_get_if_in_use(iommu->dev);
527 if (WARN_ON_ONCE(err <= 0))
528 return ret;
Jeffy Chen0f181d32018-03-23 15:38:13 +0800529
530 if (WARN_ON(clk_bulk_enable(iommu->num_clocks, iommu->clocks)))
531 goto out;
Tomasz Figaf2e3a5f2018-03-23 15:38:08 +0800532
ZhengShunQiancd6438c2016-01-19 15:03:00 +0800533 for (i = 0; i < iommu->num_mmu; i++) {
534 int_status = rk_iommu_read(iommu->bases[i], RK_MMU_INT_STATUS);
535 if (int_status == 0)
536 continue;
Daniel Kurtzc68a2922014-11-03 10:53:27 +0800537
ZhengShunQiancd6438c2016-01-19 15:03:00 +0800538 ret = IRQ_HANDLED;
539 iova = rk_iommu_read(iommu->bases[i], RK_MMU_PAGE_FAULT_ADDR);
Daniel Kurtzc68a2922014-11-03 10:53:27 +0800540
ZhengShunQiancd6438c2016-01-19 15:03:00 +0800541 if (int_status & RK_MMU_IRQ_PAGE_FAULT) {
542 int flags;
Daniel Kurtzc68a2922014-11-03 10:53:27 +0800543
ZhengShunQiancd6438c2016-01-19 15:03:00 +0800544 status = rk_iommu_read(iommu->bases[i], RK_MMU_STATUS);
545 flags = (status & RK_MMU_STATUS_PAGE_FAULT_IS_WRITE) ?
546 IOMMU_FAULT_WRITE : IOMMU_FAULT_READ;
Daniel Kurtzc68a2922014-11-03 10:53:27 +0800547
ZhengShunQiancd6438c2016-01-19 15:03:00 +0800548 dev_err(iommu->dev, "Page fault at %pad of type %s\n",
549 &iova,
550 (flags == IOMMU_FAULT_WRITE) ? "write" : "read");
Daniel Kurtzc68a2922014-11-03 10:53:27 +0800551
ZhengShunQiancd6438c2016-01-19 15:03:00 +0800552 log_iova(iommu, i, iova);
Daniel Kurtzc68a2922014-11-03 10:53:27 +0800553
ZhengShunQiancd6438c2016-01-19 15:03:00 +0800554 /*
555 * Report page fault to any installed handlers.
556 * Ignore the return code, though, since we always zap cache
557 * and clear the page fault anyway.
558 */
559 if (iommu->domain)
560 report_iommu_fault(iommu->domain, iommu->dev, iova,
561 flags);
562 else
563 dev_err(iommu->dev, "Page fault while iommu not attached to domain?\n");
Daniel Kurtzc68a2922014-11-03 10:53:27 +0800564
ZhengShunQiancd6438c2016-01-19 15:03:00 +0800565 rk_iommu_base_command(iommu->bases[i], RK_MMU_CMD_ZAP_CACHE);
566 rk_iommu_base_command(iommu->bases[i], RK_MMU_CMD_PAGE_FAULT_DONE);
567 }
568
569 if (int_status & RK_MMU_IRQ_BUS_ERROR)
570 dev_err(iommu->dev, "BUS_ERROR occurred at %pad\n", &iova);
571
572 if (int_status & ~RK_MMU_IRQ_MASK)
573 dev_err(iommu->dev, "unexpected int_status: %#08x\n",
574 int_status);
575
576 rk_iommu_write(iommu->bases[i], RK_MMU_INT_CLEAR, int_status);
Daniel Kurtzc68a2922014-11-03 10:53:27 +0800577 }
578
Tomasz Figaf2e3a5f2018-03-23 15:38:08 +0800579 clk_bulk_disable(iommu->num_clocks, iommu->clocks);
580
Jeffy Chen0f181d32018-03-23 15:38:13 +0800581out:
582 pm_runtime_put(iommu->dev);
ZhengShunQiancd6438c2016-01-19 15:03:00 +0800583 return ret;
Daniel Kurtzc68a2922014-11-03 10:53:27 +0800584}
585
586static phys_addr_t rk_iommu_iova_to_phys(struct iommu_domain *domain,
587 dma_addr_t iova)
588{
Joerg Roedelbcd516a2015-03-26 13:43:17 +0100589 struct rk_iommu_domain *rk_domain = to_rk_domain(domain);
Daniel Kurtzc68a2922014-11-03 10:53:27 +0800590 unsigned long flags;
591 phys_addr_t pt_phys, phys = 0;
592 u32 dte, pte;
593 u32 *page_table;
594
595 spin_lock_irqsave(&rk_domain->dt_lock, flags);
596
597 dte = rk_domain->dt[rk_iova_dte_index(iova)];
598 if (!rk_dte_is_pt_valid(dte))
599 goto out;
600
601 pt_phys = rk_dte_pt_address(dte);
602 page_table = (u32 *)phys_to_virt(pt_phys);
603 pte = page_table[rk_iova_pte_index(iova)];
604 if (!rk_pte_is_page_valid(pte))
605 goto out;
606
607 phys = rk_pte_page_address(pte) + rk_iova_page_offset(iova);
608out:
609 spin_unlock_irqrestore(&rk_domain->dt_lock, flags);
610
611 return phys;
612}
613
614static void rk_iommu_zap_iova(struct rk_iommu_domain *rk_domain,
615 dma_addr_t iova, size_t size)
616{
617 struct list_head *pos;
618 unsigned long flags;
619
620 /* shootdown these iova from all iommus using this domain */
621 spin_lock_irqsave(&rk_domain->iommus_lock, flags);
622 list_for_each(pos, &rk_domain->iommus) {
623 struct rk_iommu *iommu;
Marc Zyngier3fc7c5c2018-08-24 16:06:36 +0100624 int ret;
Jeffy Chen0f181d32018-03-23 15:38:13 +0800625
Daniel Kurtzc68a2922014-11-03 10:53:27 +0800626 iommu = list_entry(pos, struct rk_iommu, node);
Jeffy Chen0f181d32018-03-23 15:38:13 +0800627
628 /* Only zap TLBs of IOMMUs that are powered on. */
Marc Zyngier3fc7c5c2018-08-24 16:06:36 +0100629 ret = pm_runtime_get_if_in_use(iommu->dev);
630 if (WARN_ON_ONCE(ret < 0))
631 continue;
632 if (ret) {
Jeffy Chen0f181d32018-03-23 15:38:13 +0800633 WARN_ON(clk_bulk_enable(iommu->num_clocks,
634 iommu->clocks));
635 rk_iommu_zap_lines(iommu, iova, size);
636 clk_bulk_disable(iommu->num_clocks, iommu->clocks);
637 pm_runtime_put(iommu->dev);
638 }
Daniel Kurtzc68a2922014-11-03 10:53:27 +0800639 }
640 spin_unlock_irqrestore(&rk_domain->iommus_lock, flags);
641}
642
Tomasz Figad4dd9202015-04-20 20:43:44 +0900643static void rk_iommu_zap_iova_first_last(struct rk_iommu_domain *rk_domain,
644 dma_addr_t iova, size_t size)
645{
646 rk_iommu_zap_iova(rk_domain, iova, SPAGE_SIZE);
647 if (size > SPAGE_SIZE)
648 rk_iommu_zap_iova(rk_domain, iova + size - SPAGE_SIZE,
649 SPAGE_SIZE);
650}
651
Daniel Kurtzc68a2922014-11-03 10:53:27 +0800652static u32 *rk_dte_get_page_table(struct rk_iommu_domain *rk_domain,
653 dma_addr_t iova)
654{
655 u32 *page_table, *dte_addr;
Shunqian Zheng4f0aba62016-06-24 10:13:29 +0800656 u32 dte_index, dte;
Daniel Kurtzc68a2922014-11-03 10:53:27 +0800657 phys_addr_t pt_phys;
Shunqian Zheng4f0aba62016-06-24 10:13:29 +0800658 dma_addr_t pt_dma;
Daniel Kurtzc68a2922014-11-03 10:53:27 +0800659
660 assert_spin_locked(&rk_domain->dt_lock);
661
Shunqian Zheng4f0aba62016-06-24 10:13:29 +0800662 dte_index = rk_iova_dte_index(iova);
663 dte_addr = &rk_domain->dt[dte_index];
Daniel Kurtzc68a2922014-11-03 10:53:27 +0800664 dte = *dte_addr;
665 if (rk_dte_is_pt_valid(dte))
666 goto done;
667
668 page_table = (u32 *)get_zeroed_page(GFP_ATOMIC | GFP_DMA32);
669 if (!page_table)
670 return ERR_PTR(-ENOMEM);
671
Jeffy Chen9176a302018-03-23 15:38:10 +0800672 pt_dma = dma_map_single(dma_dev, page_table, SPAGE_SIZE, DMA_TO_DEVICE);
673 if (dma_mapping_error(dma_dev, pt_dma)) {
674 dev_err(dma_dev, "DMA mapping error while allocating page table\n");
Shunqian Zheng4f0aba62016-06-24 10:13:29 +0800675 free_page((unsigned long)page_table);
676 return ERR_PTR(-ENOMEM);
677 }
678
679 dte = rk_mk_dte(pt_dma);
Daniel Kurtzc68a2922014-11-03 10:53:27 +0800680 *dte_addr = dte;
681
Shunqian Zheng4f0aba62016-06-24 10:13:29 +0800682 rk_table_flush(rk_domain, pt_dma, NUM_PT_ENTRIES);
683 rk_table_flush(rk_domain,
684 rk_domain->dt_dma + dte_index * sizeof(u32), 1);
Daniel Kurtzc68a2922014-11-03 10:53:27 +0800685done:
686 pt_phys = rk_dte_pt_address(dte);
687 return (u32 *)phys_to_virt(pt_phys);
688}
689
690static size_t rk_iommu_unmap_iova(struct rk_iommu_domain *rk_domain,
Shunqian Zheng4f0aba62016-06-24 10:13:29 +0800691 u32 *pte_addr, dma_addr_t pte_dma,
692 size_t size)
Daniel Kurtzc68a2922014-11-03 10:53:27 +0800693{
694 unsigned int pte_count;
695 unsigned int pte_total = size / SPAGE_SIZE;
696
697 assert_spin_locked(&rk_domain->dt_lock);
698
699 for (pte_count = 0; pte_count < pte_total; pte_count++) {
700 u32 pte = pte_addr[pte_count];
701 if (!rk_pte_is_page_valid(pte))
702 break;
703
704 pte_addr[pte_count] = rk_mk_pte_invalid(pte);
705 }
706
Shunqian Zheng4f0aba62016-06-24 10:13:29 +0800707 rk_table_flush(rk_domain, pte_dma, pte_count);
Daniel Kurtzc68a2922014-11-03 10:53:27 +0800708
709 return pte_count * SPAGE_SIZE;
710}
711
712static int rk_iommu_map_iova(struct rk_iommu_domain *rk_domain, u32 *pte_addr,
Shunqian Zheng4f0aba62016-06-24 10:13:29 +0800713 dma_addr_t pte_dma, dma_addr_t iova,
714 phys_addr_t paddr, size_t size, int prot)
Daniel Kurtzc68a2922014-11-03 10:53:27 +0800715{
716 unsigned int pte_count;
717 unsigned int pte_total = size / SPAGE_SIZE;
718 phys_addr_t page_phys;
719
720 assert_spin_locked(&rk_domain->dt_lock);
721
722 for (pte_count = 0; pte_count < pte_total; pte_count++) {
723 u32 pte = pte_addr[pte_count];
724
725 if (rk_pte_is_page_valid(pte))
726 goto unwind;
727
728 pte_addr[pte_count] = rk_mk_pte(paddr, prot);
729
730 paddr += SPAGE_SIZE;
731 }
732
Shunqian Zheng4f0aba62016-06-24 10:13:29 +0800733 rk_table_flush(rk_domain, pte_dma, pte_total);
Daniel Kurtzc68a2922014-11-03 10:53:27 +0800734
Tomasz Figad4dd9202015-04-20 20:43:44 +0900735 /*
736 * Zap the first and last iova to evict from iotlb any previously
737 * mapped cachelines holding stale values for its dte and pte.
738 * We only zap the first and last iova, since only they could have
739 * dte or pte shared with an existing mapping.
740 */
741 rk_iommu_zap_iova_first_last(rk_domain, iova, size);
742
Daniel Kurtzc68a2922014-11-03 10:53:27 +0800743 return 0;
744unwind:
745 /* Unmap the range of iovas that we just mapped */
Shunqian Zheng4f0aba62016-06-24 10:13:29 +0800746 rk_iommu_unmap_iova(rk_domain, pte_addr, pte_dma,
747 pte_count * SPAGE_SIZE);
Daniel Kurtzc68a2922014-11-03 10:53:27 +0800748
749 iova += pte_count * SPAGE_SIZE;
750 page_phys = rk_pte_page_address(pte_addr[pte_count]);
751 pr_err("iova: %pad already mapped to %pa cannot remap to phys: %pa prot: %#x\n",
752 &iova, &page_phys, &paddr, prot);
753
754 return -EADDRINUSE;
755}
756
757static int rk_iommu_map(struct iommu_domain *domain, unsigned long _iova,
758 phys_addr_t paddr, size_t size, int prot)
759{
Joerg Roedelbcd516a2015-03-26 13:43:17 +0100760 struct rk_iommu_domain *rk_domain = to_rk_domain(domain);
Daniel Kurtzc68a2922014-11-03 10:53:27 +0800761 unsigned long flags;
Shunqian Zheng4f0aba62016-06-24 10:13:29 +0800762 dma_addr_t pte_dma, iova = (dma_addr_t)_iova;
Daniel Kurtzc68a2922014-11-03 10:53:27 +0800763 u32 *page_table, *pte_addr;
Shunqian Zheng4f0aba62016-06-24 10:13:29 +0800764 u32 dte_index, pte_index;
Daniel Kurtzc68a2922014-11-03 10:53:27 +0800765 int ret;
766
767 spin_lock_irqsave(&rk_domain->dt_lock, flags);
768
769 /*
770 * pgsize_bitmap specifies iova sizes that fit in one page table
771 * (1024 4-KiB pages = 4 MiB).
772 * So, size will always be 4096 <= size <= 4194304.
773 * Since iommu_map() guarantees that both iova and size will be
774 * aligned, we will always only be mapping from a single dte here.
775 */
776 page_table = rk_dte_get_page_table(rk_domain, iova);
777 if (IS_ERR(page_table)) {
778 spin_unlock_irqrestore(&rk_domain->dt_lock, flags);
779 return PTR_ERR(page_table);
780 }
781
Shunqian Zheng4f0aba62016-06-24 10:13:29 +0800782 dte_index = rk_domain->dt[rk_iova_dte_index(iova)];
783 pte_index = rk_iova_pte_index(iova);
784 pte_addr = &page_table[pte_index];
785 pte_dma = rk_dte_pt_address(dte_index) + pte_index * sizeof(u32);
786 ret = rk_iommu_map_iova(rk_domain, pte_addr, pte_dma, iova,
787 paddr, size, prot);
788
Daniel Kurtzc68a2922014-11-03 10:53:27 +0800789 spin_unlock_irqrestore(&rk_domain->dt_lock, flags);
790
791 return ret;
792}
793
794static size_t rk_iommu_unmap(struct iommu_domain *domain, unsigned long _iova,
795 size_t size)
796{
Joerg Roedelbcd516a2015-03-26 13:43:17 +0100797 struct rk_iommu_domain *rk_domain = to_rk_domain(domain);
Daniel Kurtzc68a2922014-11-03 10:53:27 +0800798 unsigned long flags;
Shunqian Zheng4f0aba62016-06-24 10:13:29 +0800799 dma_addr_t pte_dma, iova = (dma_addr_t)_iova;
Daniel Kurtzc68a2922014-11-03 10:53:27 +0800800 phys_addr_t pt_phys;
801 u32 dte;
802 u32 *pte_addr;
803 size_t unmap_size;
804
805 spin_lock_irqsave(&rk_domain->dt_lock, flags);
806
807 /*
808 * pgsize_bitmap specifies iova sizes that fit in one page table
809 * (1024 4-KiB pages = 4 MiB).
810 * So, size will always be 4096 <= size <= 4194304.
811 * Since iommu_unmap() guarantees that both iova and size will be
812 * aligned, we will always only be unmapping from a single dte here.
813 */
814 dte = rk_domain->dt[rk_iova_dte_index(iova)];
815 /* Just return 0 if iova is unmapped */
816 if (!rk_dte_is_pt_valid(dte)) {
817 spin_unlock_irqrestore(&rk_domain->dt_lock, flags);
818 return 0;
819 }
820
821 pt_phys = rk_dte_pt_address(dte);
822 pte_addr = (u32 *)phys_to_virt(pt_phys) + rk_iova_pte_index(iova);
Shunqian Zheng4f0aba62016-06-24 10:13:29 +0800823 pte_dma = pt_phys + rk_iova_pte_index(iova) * sizeof(u32);
824 unmap_size = rk_iommu_unmap_iova(rk_domain, pte_addr, pte_dma, size);
Daniel Kurtzc68a2922014-11-03 10:53:27 +0800825
826 spin_unlock_irqrestore(&rk_domain->dt_lock, flags);
827
828 /* Shootdown iotlb entries for iova range that was just unmapped */
829 rk_iommu_zap_iova(rk_domain, iova, unmap_size);
830
831 return unmap_size;
832}
833
834static struct rk_iommu *rk_iommu_from_dev(struct device *dev)
835{
Jeffy Chen5fd577c2018-03-23 15:38:11 +0800836 struct rk_iommudata *data = dev->archdata.iommu;
Daniel Kurtzc68a2922014-11-03 10:53:27 +0800837
Jeffy Chen5fd577c2018-03-23 15:38:11 +0800838 return data ? data->iommu : NULL;
Daniel Kurtzc68a2922014-11-03 10:53:27 +0800839}
840
Jeffy Chen0f181d32018-03-23 15:38:13 +0800841/* Must be called with iommu powered on and attached */
842static void rk_iommu_disable(struct rk_iommu *iommu)
Daniel Kurtzc68a2922014-11-03 10:53:27 +0800843{
Jeffy Chen0f181d32018-03-23 15:38:13 +0800844 int i;
Daniel Kurtzc68a2922014-11-03 10:53:27 +0800845
Jeffy Chen0f181d32018-03-23 15:38:13 +0800846 /* Ignore error while disabling, just keep going */
847 WARN_ON(clk_bulk_enable(iommu->num_clocks, iommu->clocks));
848 rk_iommu_enable_stall(iommu);
849 rk_iommu_disable_paging(iommu);
850 for (i = 0; i < iommu->num_mmu; i++) {
851 rk_iommu_write(iommu->bases[i], RK_MMU_INT_MASK, 0);
852 rk_iommu_write(iommu->bases[i], RK_MMU_DTE_ADDR, 0);
853 }
854 rk_iommu_disable_stall(iommu);
855 clk_bulk_disable(iommu->num_clocks, iommu->clocks);
856}
857
858/* Must be called with iommu powered on and attached */
859static int rk_iommu_enable(struct rk_iommu *iommu)
860{
861 struct iommu_domain *domain = iommu->domain;
862 struct rk_iommu_domain *rk_domain = to_rk_domain(domain);
863 int ret, i;
Daniel Kurtzc68a2922014-11-03 10:53:27 +0800864
Tomasz Figaf2e3a5f2018-03-23 15:38:08 +0800865 ret = clk_bulk_enable(iommu->num_clocks, iommu->clocks);
Daniel Kurtzc68a2922014-11-03 10:53:27 +0800866 if (ret)
867 return ret;
868
Tomasz Figaf2e3a5f2018-03-23 15:38:08 +0800869 ret = rk_iommu_enable_stall(iommu);
870 if (ret)
871 goto out_disable_clocks;
872
Daniel Kurtzc68a2922014-11-03 10:53:27 +0800873 ret = rk_iommu_force_reset(iommu);
874 if (ret)
Tomasz Figaf6717d72018-03-23 15:38:04 +0800875 goto out_disable_stall;
Daniel Kurtzc68a2922014-11-03 10:53:27 +0800876
ZhengShunQiancd6438c2016-01-19 15:03:00 +0800877 for (i = 0; i < iommu->num_mmu; i++) {
Shunqian Zheng4f0aba62016-06-24 10:13:29 +0800878 rk_iommu_write(iommu->bases[i], RK_MMU_DTE_ADDR,
879 rk_domain->dt_dma);
John Keepingae8a7912016-06-01 16:46:10 +0100880 rk_iommu_base_command(iommu->bases[i], RK_MMU_CMD_ZAP_CACHE);
ZhengShunQiancd6438c2016-01-19 15:03:00 +0800881 rk_iommu_write(iommu->bases[i], RK_MMU_INT_MASK, RK_MMU_IRQ_MASK);
882 }
Daniel Kurtzc68a2922014-11-03 10:53:27 +0800883
884 ret = rk_iommu_enable_paging(iommu);
Daniel Kurtzc68a2922014-11-03 10:53:27 +0800885
Tomasz Figaf6717d72018-03-23 15:38:04 +0800886out_disable_stall:
Daniel Kurtzc68a2922014-11-03 10:53:27 +0800887 rk_iommu_disable_stall(iommu);
Tomasz Figaf2e3a5f2018-03-23 15:38:08 +0800888out_disable_clocks:
889 clk_bulk_disable(iommu->num_clocks, iommu->clocks);
Tomasz Figaf6717d72018-03-23 15:38:04 +0800890 return ret;
Daniel Kurtzc68a2922014-11-03 10:53:27 +0800891}
892
893static void rk_iommu_detach_device(struct iommu_domain *domain,
894 struct device *dev)
895{
896 struct rk_iommu *iommu;
Joerg Roedelbcd516a2015-03-26 13:43:17 +0100897 struct rk_iommu_domain *rk_domain = to_rk_domain(domain);
Daniel Kurtzc68a2922014-11-03 10:53:27 +0800898 unsigned long flags;
Marc Zyngier3fc7c5c2018-08-24 16:06:36 +0100899 int ret;
Daniel Kurtzc68a2922014-11-03 10:53:27 +0800900
901 /* Allow 'virtual devices' (eg drm) to detach from domain */
902 iommu = rk_iommu_from_dev(dev);
903 if (!iommu)
904 return;
905
Jeffy Chen0f181d32018-03-23 15:38:13 +0800906 dev_dbg(dev, "Detaching from iommu domain\n");
907
908 /* iommu already detached */
909 if (iommu->domain != domain)
910 return;
911
912 iommu->domain = NULL;
913
Daniel Kurtzc68a2922014-11-03 10:53:27 +0800914 spin_lock_irqsave(&rk_domain->iommus_lock, flags);
915 list_del_init(&iommu->node);
916 spin_unlock_irqrestore(&rk_domain->iommus_lock, flags);
917
Marc Zyngier3fc7c5c2018-08-24 16:06:36 +0100918 ret = pm_runtime_get_if_in_use(iommu->dev);
919 WARN_ON_ONCE(ret < 0);
920 if (ret > 0) {
Jeffy Chen0f181d32018-03-23 15:38:13 +0800921 rk_iommu_disable(iommu);
922 pm_runtime_put(iommu->dev);
ZhengShunQiancd6438c2016-01-19 15:03:00 +0800923 }
Jeffy Chen0f181d32018-03-23 15:38:13 +0800924}
Daniel Kurtzc68a2922014-11-03 10:53:27 +0800925
Jeffy Chen0f181d32018-03-23 15:38:13 +0800926static int rk_iommu_attach_device(struct iommu_domain *domain,
927 struct device *dev)
928{
929 struct rk_iommu *iommu;
930 struct rk_iommu_domain *rk_domain = to_rk_domain(domain);
931 unsigned long flags;
932 int ret;
Daniel Kurtzc68a2922014-11-03 10:53:27 +0800933
Jeffy Chen0f181d32018-03-23 15:38:13 +0800934 /*
935 * Allow 'virtual devices' (e.g., drm) to attach to domain.
936 * Such a device does not belong to an iommu group.
937 */
938 iommu = rk_iommu_from_dev(dev);
939 if (!iommu)
940 return 0;
941
942 dev_dbg(dev, "Attaching to iommu domain\n");
943
944 /* iommu already attached */
945 if (iommu->domain == domain)
946 return 0;
947
948 if (iommu->domain)
949 rk_iommu_detach_device(iommu->domain, dev);
950
951 iommu->domain = domain;
952
953 spin_lock_irqsave(&rk_domain->iommus_lock, flags);
954 list_add_tail(&iommu->node, &rk_domain->iommus);
955 spin_unlock_irqrestore(&rk_domain->iommus_lock, flags);
956
Marc Zyngier3fc7c5c2018-08-24 16:06:36 +0100957 ret = pm_runtime_get_if_in_use(iommu->dev);
958 if (!ret || WARN_ON_ONCE(ret < 0))
Jeffy Chen0f181d32018-03-23 15:38:13 +0800959 return 0;
960
961 ret = rk_iommu_enable(iommu);
962 if (ret)
963 rk_iommu_detach_device(iommu->domain, dev);
964
965 pm_runtime_put(iommu->dev);
966
967 return ret;
Daniel Kurtzc68a2922014-11-03 10:53:27 +0800968}
969
Joerg Roedelbcd516a2015-03-26 13:43:17 +0100970static struct iommu_domain *rk_iommu_domain_alloc(unsigned type)
Daniel Kurtzc68a2922014-11-03 10:53:27 +0800971{
972 struct rk_iommu_domain *rk_domain;
973
Shunqian Zhenga93db2f2016-06-24 10:13:30 +0800974 if (type != IOMMU_DOMAIN_UNMANAGED && type != IOMMU_DOMAIN_DMA)
Joerg Roedelbcd516a2015-03-26 13:43:17 +0100975 return NULL;
976
Jeffy Chen9176a302018-03-23 15:38:10 +0800977 if (!dma_dev)
Joerg Roedelbcd516a2015-03-26 13:43:17 +0100978 return NULL;
Daniel Kurtzc68a2922014-11-03 10:53:27 +0800979
Jeffy Chen9176a302018-03-23 15:38:10 +0800980 rk_domain = devm_kzalloc(dma_dev, sizeof(*rk_domain), GFP_KERNEL);
Shunqian Zheng4f0aba62016-06-24 10:13:29 +0800981 if (!rk_domain)
Jeffy Chen9176a302018-03-23 15:38:10 +0800982 return NULL;
Shunqian Zheng4f0aba62016-06-24 10:13:29 +0800983
Shunqian Zhenga93db2f2016-06-24 10:13:30 +0800984 if (type == IOMMU_DOMAIN_DMA &&
985 iommu_get_dma_cookie(&rk_domain->domain))
Jeffy Chen9176a302018-03-23 15:38:10 +0800986 return NULL;
Shunqian Zheng4f0aba62016-06-24 10:13:29 +0800987
Daniel Kurtzc68a2922014-11-03 10:53:27 +0800988 /*
989 * rk32xx iommus use a 2 level pagetable.
990 * Each level1 (dt) and level2 (pt) table has 1024 4-byte entries.
991 * Allocate one 4 KiB page for each table.
992 */
993 rk_domain->dt = (u32 *)get_zeroed_page(GFP_KERNEL | GFP_DMA32);
994 if (!rk_domain->dt)
Shunqian Zheng4f0aba62016-06-24 10:13:29 +0800995 goto err_put_cookie;
Daniel Kurtzc68a2922014-11-03 10:53:27 +0800996
Jeffy Chen9176a302018-03-23 15:38:10 +0800997 rk_domain->dt_dma = dma_map_single(dma_dev, rk_domain->dt,
Shunqian Zheng4f0aba62016-06-24 10:13:29 +0800998 SPAGE_SIZE, DMA_TO_DEVICE);
Jeffy Chen9176a302018-03-23 15:38:10 +0800999 if (dma_mapping_error(dma_dev, rk_domain->dt_dma)) {
1000 dev_err(dma_dev, "DMA map error for DT\n");
Shunqian Zheng4f0aba62016-06-24 10:13:29 +08001001 goto err_free_dt;
1002 }
1003
1004 rk_table_flush(rk_domain, rk_domain->dt_dma, NUM_DT_ENTRIES);
Daniel Kurtzc68a2922014-11-03 10:53:27 +08001005
1006 spin_lock_init(&rk_domain->iommus_lock);
1007 spin_lock_init(&rk_domain->dt_lock);
1008 INIT_LIST_HEAD(&rk_domain->iommus);
1009
Shunqian Zhenga93db2f2016-06-24 10:13:30 +08001010 rk_domain->domain.geometry.aperture_start = 0;
1011 rk_domain->domain.geometry.aperture_end = DMA_BIT_MASK(32);
1012 rk_domain->domain.geometry.force_aperture = true;
1013
Joerg Roedelbcd516a2015-03-26 13:43:17 +01001014 return &rk_domain->domain;
Daniel Kurtzc68a2922014-11-03 10:53:27 +08001015
Shunqian Zheng4f0aba62016-06-24 10:13:29 +08001016err_free_dt:
1017 free_page((unsigned long)rk_domain->dt);
1018err_put_cookie:
Shunqian Zhenga93db2f2016-06-24 10:13:30 +08001019 if (type == IOMMU_DOMAIN_DMA)
1020 iommu_put_dma_cookie(&rk_domain->domain);
Shunqian Zheng4f0aba62016-06-24 10:13:29 +08001021
Joerg Roedelbcd516a2015-03-26 13:43:17 +01001022 return NULL;
Daniel Kurtzc68a2922014-11-03 10:53:27 +08001023}
1024
Joerg Roedelbcd516a2015-03-26 13:43:17 +01001025static void rk_iommu_domain_free(struct iommu_domain *domain)
Daniel Kurtzc68a2922014-11-03 10:53:27 +08001026{
Joerg Roedelbcd516a2015-03-26 13:43:17 +01001027 struct rk_iommu_domain *rk_domain = to_rk_domain(domain);
Daniel Kurtzc68a2922014-11-03 10:53:27 +08001028 int i;
1029
1030 WARN_ON(!list_empty(&rk_domain->iommus));
1031
1032 for (i = 0; i < NUM_DT_ENTRIES; i++) {
1033 u32 dte = rk_domain->dt[i];
1034 if (rk_dte_is_pt_valid(dte)) {
1035 phys_addr_t pt_phys = rk_dte_pt_address(dte);
1036 u32 *page_table = phys_to_virt(pt_phys);
Jeffy Chen9176a302018-03-23 15:38:10 +08001037 dma_unmap_single(dma_dev, pt_phys,
Shunqian Zheng4f0aba62016-06-24 10:13:29 +08001038 SPAGE_SIZE, DMA_TO_DEVICE);
Daniel Kurtzc68a2922014-11-03 10:53:27 +08001039 free_page((unsigned long)page_table);
1040 }
1041 }
1042
Jeffy Chen9176a302018-03-23 15:38:10 +08001043 dma_unmap_single(dma_dev, rk_domain->dt_dma,
Shunqian Zheng4f0aba62016-06-24 10:13:29 +08001044 SPAGE_SIZE, DMA_TO_DEVICE);
Daniel Kurtzc68a2922014-11-03 10:53:27 +08001045 free_page((unsigned long)rk_domain->dt);
Shunqian Zheng4f0aba62016-06-24 10:13:29 +08001046
Shunqian Zhenga93db2f2016-06-24 10:13:30 +08001047 if (domain->type == IOMMU_DOMAIN_DMA)
1048 iommu_put_dma_cookie(&rk_domain->domain);
Daniel Kurtzc68a2922014-11-03 10:53:27 +08001049}
1050
Daniel Kurtzc68a2922014-11-03 10:53:27 +08001051static int rk_iommu_add_device(struct device *dev)
1052{
1053 struct iommu_group *group;
Joerg Roedelc9d9f232017-03-31 16:26:03 +02001054 struct rk_iommu *iommu;
Jeffy Chen0f181d32018-03-23 15:38:13 +08001055 struct rk_iommudata *data;
1056
1057 data = dev->archdata.iommu;
1058 if (!data)
1059 return -ENODEV;
Daniel Kurtzc68a2922014-11-03 10:53:27 +08001060
Joerg Roedelc9d9f232017-03-31 16:26:03 +02001061 iommu = rk_iommu_from_dev(dev);
Joerg Roedelc9d9f232017-03-31 16:26:03 +02001062
Jeffy Chen5fd577c2018-03-23 15:38:11 +08001063 group = iommu_group_get_for_dev(dev);
1064 if (IS_ERR(group))
1065 return PTR_ERR(group);
Daniel Kurtzc68a2922014-11-03 10:53:27 +08001066 iommu_group_put(group);
1067
Jeffy Chen5fd577c2018-03-23 15:38:11 +08001068 iommu_device_link(&iommu->iommu, dev);
Jeffy Chen0f181d32018-03-23 15:38:13 +08001069 data->link = device_link_add(dev, iommu->dev, DL_FLAG_PM_RUNTIME);
Jeffy Chen5fd577c2018-03-23 15:38:11 +08001070
Daniel Kurtzc68a2922014-11-03 10:53:27 +08001071 return 0;
Daniel Kurtzc68a2922014-11-03 10:53:27 +08001072}
1073
1074static void rk_iommu_remove_device(struct device *dev)
1075{
Joerg Roedelc9d9f232017-03-31 16:26:03 +02001076 struct rk_iommu *iommu;
Jeffy Chen0f181d32018-03-23 15:38:13 +08001077 struct rk_iommudata *data = dev->archdata.iommu;
Joerg Roedelc9d9f232017-03-31 16:26:03 +02001078
Joerg Roedelc9d9f232017-03-31 16:26:03 +02001079 iommu = rk_iommu_from_dev(dev);
Joerg Roedelc9d9f232017-03-31 16:26:03 +02001080
Jeffy Chen0f181d32018-03-23 15:38:13 +08001081 device_link_del(data->link);
Jeffy Chen5fd577c2018-03-23 15:38:11 +08001082 iommu_device_unlink(&iommu->iommu, dev);
Daniel Kurtzc68a2922014-11-03 10:53:27 +08001083 iommu_group_remove_device(dev);
1084}
1085
Jeffy Chen57c26952018-03-23 15:38:14 +08001086static struct iommu_group *rk_iommu_device_group(struct device *dev)
1087{
1088 struct rk_iommu *iommu;
1089
1090 iommu = rk_iommu_from_dev(dev);
1091
1092 return iommu_group_ref_get(iommu->group);
1093}
1094
Jeffy Chen5fd577c2018-03-23 15:38:11 +08001095static int rk_iommu_of_xlate(struct device *dev,
1096 struct of_phandle_args *args)
1097{
1098 struct platform_device *iommu_dev;
1099 struct rk_iommudata *data;
1100
1101 data = devm_kzalloc(dma_dev, sizeof(*data), GFP_KERNEL);
1102 if (!data)
1103 return -ENOMEM;
1104
1105 iommu_dev = of_find_device_by_node(args->np);
1106
1107 data->iommu = platform_get_drvdata(iommu_dev);
1108 dev->archdata.iommu = data;
1109
Arnd Bergmann40fa84e2018-04-04 12:23:53 +02001110 platform_device_put(iommu_dev);
Jeffy Chen5fd577c2018-03-23 15:38:11 +08001111
1112 return 0;
1113}
1114
Daniel Kurtzc68a2922014-11-03 10:53:27 +08001115static const struct iommu_ops rk_iommu_ops = {
Joerg Roedelbcd516a2015-03-26 13:43:17 +01001116 .domain_alloc = rk_iommu_domain_alloc,
1117 .domain_free = rk_iommu_domain_free,
Daniel Kurtzc68a2922014-11-03 10:53:27 +08001118 .attach_dev = rk_iommu_attach_device,
1119 .detach_dev = rk_iommu_detach_device,
1120 .map = rk_iommu_map,
1121 .unmap = rk_iommu_unmap,
Simon Xuee6d0f472016-06-24 10:13:27 +08001122 .map_sg = default_iommu_map_sg,
Daniel Kurtzc68a2922014-11-03 10:53:27 +08001123 .add_device = rk_iommu_add_device,
1124 .remove_device = rk_iommu_remove_device,
1125 .iova_to_phys = rk_iommu_iova_to_phys,
Jeffy Chen57c26952018-03-23 15:38:14 +08001126 .device_group = rk_iommu_device_group,
Daniel Kurtzc68a2922014-11-03 10:53:27 +08001127 .pgsize_bitmap = RK_IOMMU_PGSIZE_BITMAP,
Jeffy Chen5fd577c2018-03-23 15:38:11 +08001128 .of_xlate = rk_iommu_of_xlate,
Daniel Kurtzc68a2922014-11-03 10:53:27 +08001129};
1130
1131static int rk_iommu_probe(struct platform_device *pdev)
1132{
1133 struct device *dev = &pdev->dev;
1134 struct rk_iommu *iommu;
1135 struct resource *res;
Shunqian Zheng3d08f4342016-06-24 10:13:28 +08001136 int num_res = pdev->num_resources;
Jeffy Chend0b912b2018-03-23 15:38:03 +08001137 int err, i, irq;
Daniel Kurtzc68a2922014-11-03 10:53:27 +08001138
1139 iommu = devm_kzalloc(dev, sizeof(*iommu), GFP_KERNEL);
1140 if (!iommu)
1141 return -ENOMEM;
1142
1143 platform_set_drvdata(pdev, iommu);
1144 iommu->dev = dev;
ZhengShunQiancd6438c2016-01-19 15:03:00 +08001145 iommu->num_mmu = 0;
Shunqian Zheng3d08f4342016-06-24 10:13:28 +08001146
Kees Cooka86854d2018-06-12 14:07:58 -07001147 iommu->bases = devm_kcalloc(dev, num_res, sizeof(*iommu->bases),
ZhengShunQiancd6438c2016-01-19 15:03:00 +08001148 GFP_KERNEL);
1149 if (!iommu->bases)
1150 return -ENOMEM;
Daniel Kurtzc68a2922014-11-03 10:53:27 +08001151
Shunqian Zheng3d08f4342016-06-24 10:13:28 +08001152 for (i = 0; i < num_res; i++) {
ZhengShunQiancd6438c2016-01-19 15:03:00 +08001153 res = platform_get_resource(pdev, IORESOURCE_MEM, i);
Tomeu Vizoso8d7f2d82016-03-21 12:00:23 +01001154 if (!res)
1155 continue;
ZhengShunQiancd6438c2016-01-19 15:03:00 +08001156 iommu->bases[i] = devm_ioremap_resource(&pdev->dev, res);
1157 if (IS_ERR(iommu->bases[i]))
1158 continue;
1159 iommu->num_mmu++;
1160 }
1161 if (iommu->num_mmu == 0)
1162 return PTR_ERR(iommu->bases[0]);
Daniel Kurtzc68a2922014-11-03 10:53:27 +08001163
Jeffy Chend0b912b2018-03-23 15:38:03 +08001164 i = 0;
1165 while ((irq = platform_get_irq(pdev, i++)) != -ENXIO) {
1166 if (irq < 0)
1167 return irq;
Simon Xue03f732f2017-07-24 10:37:14 +08001168
Jeffy Chend0b912b2018-03-23 15:38:03 +08001169 err = devm_request_irq(iommu->dev, irq, rk_iommu_irq,
1170 IRQF_SHARED, dev_name(dev), iommu);
1171 if (err)
1172 return err;
Daniel Kurtzc68a2922014-11-03 10:53:27 +08001173 }
1174
Simon Xuec3aa4742017-07-24 10:37:15 +08001175 iommu->reset_disabled = device_property_read_bool(dev,
1176 "rockchip,disable-mmu-reset");
1177
Tomasz Figaf2e3a5f2018-03-23 15:38:08 +08001178 iommu->num_clocks = ARRAY_SIZE(rk_iommu_clocks);
1179 iommu->clocks = devm_kcalloc(iommu->dev, iommu->num_clocks,
1180 sizeof(*iommu->clocks), GFP_KERNEL);
1181 if (!iommu->clocks)
1182 return -ENOMEM;
1183
1184 for (i = 0; i < iommu->num_clocks; ++i)
1185 iommu->clocks[i].id = rk_iommu_clocks[i];
1186
Heiko Stuebner2f8c7f22018-04-17 14:09:15 +02001187 /*
1188 * iommu clocks should be present for all new devices and devicetrees
1189 * but there are older devicetrees without clocks out in the wild.
1190 * So clocks as optional for the time being.
1191 */
Tomasz Figaf2e3a5f2018-03-23 15:38:08 +08001192 err = devm_clk_bulk_get(iommu->dev, iommu->num_clocks, iommu->clocks);
Heiko Stuebner2f8c7f22018-04-17 14:09:15 +02001193 if (err == -ENOENT)
1194 iommu->num_clocks = 0;
1195 else if (err)
Joerg Roedelc9d9f232017-03-31 16:26:03 +02001196 return err;
1197
Tomasz Figaf2e3a5f2018-03-23 15:38:08 +08001198 err = clk_bulk_prepare(iommu->num_clocks, iommu->clocks);
1199 if (err)
1200 return err;
1201
Jeffy Chen57c26952018-03-23 15:38:14 +08001202 iommu->group = iommu_group_alloc();
1203 if (IS_ERR(iommu->group)) {
1204 err = PTR_ERR(iommu->group);
1205 goto err_unprepare_clocks;
1206 }
1207
Tomasz Figaf2e3a5f2018-03-23 15:38:08 +08001208 err = iommu_device_sysfs_add(&iommu->iommu, dev, NULL, dev_name(dev));
1209 if (err)
Jeffy Chen57c26952018-03-23 15:38:14 +08001210 goto err_put_group;
Tomasz Figaf2e3a5f2018-03-23 15:38:08 +08001211
Joerg Roedelc9d9f232017-03-31 16:26:03 +02001212 iommu_device_set_ops(&iommu->iommu, &rk_iommu_ops);
Jeffy Chen5fd577c2018-03-23 15:38:11 +08001213 iommu_device_set_fwnode(&iommu->iommu, &dev->of_node->fwnode);
1214
Joerg Roedelc9d9f232017-03-31 16:26:03 +02001215 err = iommu_device_register(&iommu->iommu);
Jeffy Chen6d9ffaa2018-03-23 15:38:02 +08001216 if (err)
Tomasz Figaf2e3a5f2018-03-23 15:38:08 +08001217 goto err_remove_sysfs;
Joerg Roedelc9d9f232017-03-31 16:26:03 +02001218
Jeffy Chen9176a302018-03-23 15:38:10 +08001219 /*
1220 * Use the first registered IOMMU device for domain to use with DMA
1221 * API, since a domain might not physically correspond to a single
1222 * IOMMU device..
1223 */
1224 if (!dma_dev)
1225 dma_dev = &pdev->dev;
1226
Jeffy Chen4d88a8a2018-03-23 15:38:12 +08001227 bus_set_iommu(&platform_bus_type, &rk_iommu_ops);
1228
Jeffy Chen0f181d32018-03-23 15:38:13 +08001229 pm_runtime_enable(dev);
1230
Tomasz Figaf2e3a5f2018-03-23 15:38:08 +08001231 return 0;
1232err_remove_sysfs:
1233 iommu_device_sysfs_remove(&iommu->iommu);
Jeffy Chen57c26952018-03-23 15:38:14 +08001234err_put_group:
1235 iommu_group_put(iommu->group);
Tomasz Figaf2e3a5f2018-03-23 15:38:08 +08001236err_unprepare_clocks:
1237 clk_bulk_unprepare(iommu->num_clocks, iommu->clocks);
Joerg Roedelc9d9f232017-03-31 16:26:03 +02001238 return err;
Daniel Kurtzc68a2922014-11-03 10:53:27 +08001239}
1240
Marc Zyngier1a4e90f2018-02-20 20:25:04 +00001241static void rk_iommu_shutdown(struct platform_device *pdev)
1242{
Jeffy Chen0f181d32018-03-23 15:38:13 +08001243 pm_runtime_force_suspend(&pdev->dev);
Marc Zyngier1a4e90f2018-02-20 20:25:04 +00001244}
1245
Jeffy Chen0f181d32018-03-23 15:38:13 +08001246static int __maybe_unused rk_iommu_suspend(struct device *dev)
1247{
1248 struct rk_iommu *iommu = dev_get_drvdata(dev);
1249
1250 if (!iommu->domain)
1251 return 0;
1252
1253 rk_iommu_disable(iommu);
1254 return 0;
1255}
1256
1257static int __maybe_unused rk_iommu_resume(struct device *dev)
1258{
1259 struct rk_iommu *iommu = dev_get_drvdata(dev);
1260
1261 if (!iommu->domain)
1262 return 0;
1263
1264 return rk_iommu_enable(iommu);
1265}
1266
1267static const struct dev_pm_ops rk_iommu_pm_ops = {
1268 SET_RUNTIME_PM_OPS(rk_iommu_suspend, rk_iommu_resume, NULL)
1269 SET_SYSTEM_SLEEP_PM_OPS(pm_runtime_force_suspend,
1270 pm_runtime_force_resume)
1271};
1272
Daniel Kurtzc68a2922014-11-03 10:53:27 +08001273static const struct of_device_id rk_iommu_dt_ids[] = {
1274 { .compatible = "rockchip,iommu" },
1275 { /* sentinel */ }
1276};
1277MODULE_DEVICE_TABLE(of, rk_iommu_dt_ids);
Daniel Kurtzc68a2922014-11-03 10:53:27 +08001278
1279static struct platform_driver rk_iommu_driver = {
1280 .probe = rk_iommu_probe,
Marc Zyngier1a4e90f2018-02-20 20:25:04 +00001281 .shutdown = rk_iommu_shutdown,
Daniel Kurtzc68a2922014-11-03 10:53:27 +08001282 .driver = {
1283 .name = "rk_iommu",
Arnd Bergmannd9e7eb12015-04-10 23:58:24 +02001284 .of_match_table = rk_iommu_dt_ids,
Jeffy Chen0f181d32018-03-23 15:38:13 +08001285 .pm = &rk_iommu_pm_ops,
Jeffy Chen98b72b92018-03-23 15:38:01 +08001286 .suppress_bind_attrs = true,
Daniel Kurtzc68a2922014-11-03 10:53:27 +08001287 },
1288};
1289
1290static int __init rk_iommu_init(void)
1291{
Jeffy Chen9176a302018-03-23 15:38:10 +08001292 return platform_driver_register(&rk_iommu_driver);
Daniel Kurtzc68a2922014-11-03 10:53:27 +08001293}
Daniel Kurtzc68a2922014-11-03 10:53:27 +08001294subsys_initcall(rk_iommu_init);
Daniel Kurtzc68a2922014-11-03 10:53:27 +08001295
Jeffy Chen5fd577c2018-03-23 15:38:11 +08001296IOMMU_OF_DECLARE(rk_iommu_of, "rockchip,iommu");
1297
Daniel Kurtzc68a2922014-11-03 10:53:27 +08001298MODULE_DESCRIPTION("IOMMU API for Rockchip");
1299MODULE_AUTHOR("Simon Xue <xxm@rock-chips.com> and Daniel Kurtz <djkurtz@chromium.org>");
1300MODULE_ALIAS("platform:rockchip-iommu");
1301MODULE_LICENSE("GPL v2");