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.
6 * This program is distributed in the hope that it will be useful,
7 * but WITHOUT ANY WARRANTY; without even the implied warranty of
8 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
9 * GNU General Public License for more details.
11 * You should have received a copy of the GNU General Public License
12 * along with this program; if not, write to the Free Software
13 * Foundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
15 * Copyright (C) 2013 Freescale Semiconductor, Inc.
16 * Author: Varun Sethi <varun.sethi@freescale.com>
20 #define pr_fmt(fmt) "fsl-pamu-domain: %s: " fmt, __func__
22 #include "fsl_pamu_domain.h"
24 #include <sysdev/fsl_pci.h>
27 * Global spinlock that needs to be held while
30 static DEFINE_SPINLOCK(iommu_lock
);
32 static struct kmem_cache
*fsl_pamu_domain_cache
;
33 static struct kmem_cache
*iommu_devinfo_cache
;
34 static DEFINE_SPINLOCK(device_domain_lock
);
36 struct iommu_device pamu_iommu
; /* IOMMU core code handle */
38 static struct fsl_dma_domain
*to_fsl_dma_domain(struct iommu_domain
*dom
)
40 return container_of(dom
, struct fsl_dma_domain
, iommu_domain
);
43 static int __init
iommu_init_mempool(void)
45 fsl_pamu_domain_cache
= kmem_cache_create("fsl_pamu_domain",
46 sizeof(struct fsl_dma_domain
),
50 if (!fsl_pamu_domain_cache
) {
51 pr_debug("Couldn't create fsl iommu_domain cache\n");
55 iommu_devinfo_cache
= kmem_cache_create("iommu_devinfo",
56 sizeof(struct device_domain_info
),
60 if (!iommu_devinfo_cache
) {
61 pr_debug("Couldn't create devinfo cache\n");
62 kmem_cache_destroy(fsl_pamu_domain_cache
);
69 static phys_addr_t
get_phys_addr(struct fsl_dma_domain
*dma_domain
, dma_addr_t iova
)
71 u32 win_cnt
= dma_domain
->win_cnt
;
72 struct dma_window
*win_ptr
= &dma_domain
->win_arr
[0];
73 struct iommu_domain_geometry
*geom
;
75 geom
= &dma_domain
->iommu_domain
.geometry
;
77 if (!win_cnt
|| !dma_domain
->geom_size
) {
78 pr_debug("Number of windows/geometry not configured for the domain\n");
84 dma_addr_t subwin_iova
;
87 subwin_size
= dma_domain
->geom_size
>> ilog2(win_cnt
);
88 subwin_iova
= iova
& ~(subwin_size
- 1);
89 wnd
= (subwin_iova
- geom
->aperture_start
) >> ilog2(subwin_size
);
90 win_ptr
= &dma_domain
->win_arr
[wnd
];
94 return win_ptr
->paddr
+ (iova
& (win_ptr
->size
- 1));
99 static int map_subwins(int liodn
, struct fsl_dma_domain
*dma_domain
)
101 struct dma_window
*sub_win_ptr
= &dma_domain
->win_arr
[0];
103 unsigned long rpn
, flags
;
105 for (i
= 0; i
< dma_domain
->win_cnt
; i
++) {
106 if (sub_win_ptr
[i
].valid
) {
107 rpn
= sub_win_ptr
[i
].paddr
>> PAMU_PAGE_SHIFT
;
108 spin_lock_irqsave(&iommu_lock
, flags
);
109 ret
= pamu_config_spaace(liodn
, dma_domain
->win_cnt
, i
,
113 dma_domain
->snoop_id
,
114 dma_domain
->stash_id
,
116 sub_win_ptr
[i
].prot
);
117 spin_unlock_irqrestore(&iommu_lock
, flags
);
119 pr_debug("SPAACE configuration failed for liodn %d\n",
129 static int map_win(int liodn
, struct fsl_dma_domain
*dma_domain
)
132 struct dma_window
*wnd
= &dma_domain
->win_arr
[0];
133 phys_addr_t wnd_addr
= dma_domain
->iommu_domain
.geometry
.aperture_start
;
136 spin_lock_irqsave(&iommu_lock
, flags
);
137 ret
= pamu_config_ppaace(liodn
, wnd_addr
,
140 wnd
->paddr
>> PAMU_PAGE_SHIFT
,
141 dma_domain
->snoop_id
, dma_domain
->stash_id
,
143 spin_unlock_irqrestore(&iommu_lock
, flags
);
145 pr_debug("PAACE configuration failed for liodn %d\n", liodn
);
150 /* Map the DMA window corresponding to the LIODN */
151 static int map_liodn(int liodn
, struct fsl_dma_domain
*dma_domain
)
153 if (dma_domain
->win_cnt
> 1)
154 return map_subwins(liodn
, dma_domain
);
156 return map_win(liodn
, dma_domain
);
159 /* Update window/subwindow mapping for the LIODN */
160 static int update_liodn(int liodn
, struct fsl_dma_domain
*dma_domain
, u32 wnd_nr
)
163 struct dma_window
*wnd
= &dma_domain
->win_arr
[wnd_nr
];
166 spin_lock_irqsave(&iommu_lock
, flags
);
167 if (dma_domain
->win_cnt
> 1) {
168 ret
= pamu_config_spaace(liodn
, dma_domain
->win_cnt
, wnd_nr
,
171 wnd
->paddr
>> PAMU_PAGE_SHIFT
,
172 dma_domain
->snoop_id
,
173 dma_domain
->stash_id
,
174 (wnd_nr
> 0) ? 1 : 0,
177 pr_debug("Subwindow reconfiguration failed for liodn %d\n",
180 phys_addr_t wnd_addr
;
182 wnd_addr
= dma_domain
->iommu_domain
.geometry
.aperture_start
;
184 ret
= pamu_config_ppaace(liodn
, wnd_addr
,
187 wnd
->paddr
>> PAMU_PAGE_SHIFT
,
188 dma_domain
->snoop_id
, dma_domain
->stash_id
,
191 pr_debug("Window reconfiguration failed for liodn %d\n",
195 spin_unlock_irqrestore(&iommu_lock
, flags
);
200 static int update_liodn_stash(int liodn
, struct fsl_dma_domain
*dma_domain
,
206 spin_lock_irqsave(&iommu_lock
, flags
);
207 if (!dma_domain
->win_arr
) {
208 pr_debug("Windows not configured, stash destination update failed for liodn %d\n",
210 spin_unlock_irqrestore(&iommu_lock
, flags
);
214 for (i
= 0; i
< dma_domain
->win_cnt
; i
++) {
215 ret
= pamu_update_paace_stash(liodn
, i
, val
);
217 pr_debug("Failed to update SPAACE %d field for liodn %d\n ",
219 spin_unlock_irqrestore(&iommu_lock
, flags
);
224 spin_unlock_irqrestore(&iommu_lock
, flags
);
229 /* Set the geometry parameters for a LIODN */
230 static int pamu_set_liodn(int liodn
, struct device
*dev
,
231 struct fsl_dma_domain
*dma_domain
,
232 struct iommu_domain_geometry
*geom_attr
,
235 phys_addr_t window_addr
, window_size
;
236 phys_addr_t subwin_size
;
238 u32 omi_index
= ~(u32
)0;
242 * Configure the omi_index at the geometry setup time.
243 * This is a static value which depends on the type of
244 * device and would not change thereafter.
246 get_ome_index(&omi_index
, dev
);
248 window_addr
= geom_attr
->aperture_start
;
249 window_size
= dma_domain
->geom_size
;
251 spin_lock_irqsave(&iommu_lock
, flags
);
252 ret
= pamu_disable_liodn(liodn
);
254 ret
= pamu_config_ppaace(liodn
, window_addr
, window_size
, omi_index
,
255 0, dma_domain
->snoop_id
,
256 dma_domain
->stash_id
, win_cnt
, 0);
257 spin_unlock_irqrestore(&iommu_lock
, flags
);
259 pr_debug("PAACE configuration failed for liodn %d, win_cnt =%d\n",
265 subwin_size
= window_size
>> ilog2(win_cnt
);
266 for (i
= 0; i
< win_cnt
; i
++) {
267 spin_lock_irqsave(&iommu_lock
, flags
);
268 ret
= pamu_disable_spaace(liodn
, i
);
270 ret
= pamu_config_spaace(liodn
, win_cnt
, i
,
271 subwin_size
, omi_index
,
272 0, dma_domain
->snoop_id
,
273 dma_domain
->stash_id
,
275 spin_unlock_irqrestore(&iommu_lock
, flags
);
277 pr_debug("SPAACE configuration failed for liodn %d\n",
287 static int check_size(u64 size
, dma_addr_t iova
)
290 * Size must be a power of two and at least be equal
293 if ((size
& (size
- 1)) || size
< PAMU_PAGE_SIZE
) {
294 pr_debug("Size too small or not a power of two\n");
298 /* iova must be page size aligned */
299 if (iova
& (size
- 1)) {
300 pr_debug("Address is not aligned with window size\n");
307 static struct fsl_dma_domain
*iommu_alloc_dma_domain(void)
309 struct fsl_dma_domain
*domain
;
311 domain
= kmem_cache_zalloc(fsl_pamu_domain_cache
, GFP_KERNEL
);
315 domain
->stash_id
= ~(u32
)0;
316 domain
->snoop_id
= ~(u32
)0;
317 domain
->win_cnt
= pamu_get_max_subwin_cnt();
318 domain
->geom_size
= 0;
320 INIT_LIST_HEAD(&domain
->devices
);
322 spin_lock_init(&domain
->domain_lock
);
327 static void remove_device_ref(struct device_domain_info
*info
, u32 win_cnt
)
331 list_del(&info
->link
);
332 spin_lock_irqsave(&iommu_lock
, flags
);
334 pamu_free_subwins(info
->liodn
);
335 pamu_disable_liodn(info
->liodn
);
336 spin_unlock_irqrestore(&iommu_lock
, flags
);
337 spin_lock_irqsave(&device_domain_lock
, flags
);
338 info
->dev
->archdata
.iommu_domain
= NULL
;
339 kmem_cache_free(iommu_devinfo_cache
, info
);
340 spin_unlock_irqrestore(&device_domain_lock
, flags
);
343 static void detach_device(struct device
*dev
, struct fsl_dma_domain
*dma_domain
)
345 struct device_domain_info
*info
, *tmp
;
348 spin_lock_irqsave(&dma_domain
->domain_lock
, flags
);
349 /* Remove the device from the domain device list */
350 list_for_each_entry_safe(info
, tmp
, &dma_domain
->devices
, link
) {
351 if (!dev
|| (info
->dev
== dev
))
352 remove_device_ref(info
, dma_domain
->win_cnt
);
354 spin_unlock_irqrestore(&dma_domain
->domain_lock
, flags
);
357 static void attach_device(struct fsl_dma_domain
*dma_domain
, int liodn
, struct device
*dev
)
359 struct device_domain_info
*info
, *old_domain_info
;
362 spin_lock_irqsave(&device_domain_lock
, flags
);
364 * Check here if the device is already attached to domain or not.
365 * If the device is already attached to a domain detach it.
367 old_domain_info
= dev
->archdata
.iommu_domain
;
368 if (old_domain_info
&& old_domain_info
->domain
!= dma_domain
) {
369 spin_unlock_irqrestore(&device_domain_lock
, flags
);
370 detach_device(dev
, old_domain_info
->domain
);
371 spin_lock_irqsave(&device_domain_lock
, flags
);
374 info
= kmem_cache_zalloc(iommu_devinfo_cache
, GFP_ATOMIC
);
378 info
->domain
= dma_domain
;
380 list_add(&info
->link
, &dma_domain
->devices
);
382 * In case of devices with multiple LIODNs just store
383 * the info for the first LIODN as all
384 * LIODNs share the same domain
386 if (!dev
->archdata
.iommu_domain
)
387 dev
->archdata
.iommu_domain
= info
;
388 spin_unlock_irqrestore(&device_domain_lock
, flags
);
391 static phys_addr_t
fsl_pamu_iova_to_phys(struct iommu_domain
*domain
,
394 struct fsl_dma_domain
*dma_domain
= to_fsl_dma_domain(domain
);
396 if (iova
< domain
->geometry
.aperture_start
||
397 iova
> domain
->geometry
.aperture_end
)
400 return get_phys_addr(dma_domain
, iova
);
403 static bool fsl_pamu_capable(enum iommu_cap cap
)
405 return cap
== IOMMU_CAP_CACHE_COHERENCY
;
408 static void fsl_pamu_domain_free(struct iommu_domain
*domain
)
410 struct fsl_dma_domain
*dma_domain
= to_fsl_dma_domain(domain
);
412 /* remove all the devices from the device list */
413 detach_device(NULL
, dma_domain
);
415 dma_domain
->enabled
= 0;
416 dma_domain
->mapped
= 0;
418 kmem_cache_free(fsl_pamu_domain_cache
, dma_domain
);
421 static struct iommu_domain
*fsl_pamu_domain_alloc(unsigned type
)
423 struct fsl_dma_domain
*dma_domain
;
425 if (type
!= IOMMU_DOMAIN_UNMANAGED
)
428 dma_domain
= iommu_alloc_dma_domain();
430 pr_debug("dma_domain allocation failed\n");
433 /* defaul geometry 64 GB i.e. maximum system address */
434 dma_domain
->iommu_domain
. geometry
.aperture_start
= 0;
435 dma_domain
->iommu_domain
.geometry
.aperture_end
= (1ULL << 36) - 1;
436 dma_domain
->iommu_domain
.geometry
.force_aperture
= true;
438 return &dma_domain
->iommu_domain
;
441 /* Configure geometry settings for all LIODNs associated with domain */
442 static int pamu_set_domain_geometry(struct fsl_dma_domain
*dma_domain
,
443 struct iommu_domain_geometry
*geom_attr
,
446 struct device_domain_info
*info
;
449 list_for_each_entry(info
, &dma_domain
->devices
, link
) {
450 ret
= pamu_set_liodn(info
->liodn
, info
->dev
, dma_domain
,
459 /* Update stash destination for all LIODNs associated with the domain */
460 static int update_domain_stash(struct fsl_dma_domain
*dma_domain
, u32 val
)
462 struct device_domain_info
*info
;
465 list_for_each_entry(info
, &dma_domain
->devices
, link
) {
466 ret
= update_liodn_stash(info
->liodn
, dma_domain
, val
);
474 /* Update domain mappings for all LIODNs associated with the domain */
475 static int update_domain_mapping(struct fsl_dma_domain
*dma_domain
, u32 wnd_nr
)
477 struct device_domain_info
*info
;
480 list_for_each_entry(info
, &dma_domain
->devices
, link
) {
481 ret
= update_liodn(info
->liodn
, dma_domain
, wnd_nr
);
488 static int disable_domain_win(struct fsl_dma_domain
*dma_domain
, u32 wnd_nr
)
490 struct device_domain_info
*info
;
493 list_for_each_entry(info
, &dma_domain
->devices
, link
) {
494 if (dma_domain
->win_cnt
== 1 && dma_domain
->enabled
) {
495 ret
= pamu_disable_liodn(info
->liodn
);
497 dma_domain
->enabled
= 0;
499 ret
= pamu_disable_spaace(info
->liodn
, wnd_nr
);
506 static void fsl_pamu_window_disable(struct iommu_domain
*domain
, u32 wnd_nr
)
508 struct fsl_dma_domain
*dma_domain
= to_fsl_dma_domain(domain
);
512 spin_lock_irqsave(&dma_domain
->domain_lock
, flags
);
513 if (!dma_domain
->win_arr
) {
514 pr_debug("Number of windows not configured\n");
515 spin_unlock_irqrestore(&dma_domain
->domain_lock
, flags
);
519 if (wnd_nr
>= dma_domain
->win_cnt
) {
520 pr_debug("Invalid window index\n");
521 spin_unlock_irqrestore(&dma_domain
->domain_lock
, flags
);
525 if (dma_domain
->win_arr
[wnd_nr
].valid
) {
526 ret
= disable_domain_win(dma_domain
, wnd_nr
);
528 dma_domain
->win_arr
[wnd_nr
].valid
= 0;
529 dma_domain
->mapped
--;
533 spin_unlock_irqrestore(&dma_domain
->domain_lock
, flags
);
536 static int fsl_pamu_window_enable(struct iommu_domain
*domain
, u32 wnd_nr
,
537 phys_addr_t paddr
, u64 size
, int prot
)
539 struct fsl_dma_domain
*dma_domain
= to_fsl_dma_domain(domain
);
540 struct dma_window
*wnd
;
546 if (prot
& IOMMU_READ
)
547 pamu_prot
|= PAACE_AP_PERMS_QUERY
;
548 if (prot
& IOMMU_WRITE
)
549 pamu_prot
|= PAACE_AP_PERMS_UPDATE
;
551 spin_lock_irqsave(&dma_domain
->domain_lock
, flags
);
552 if (!dma_domain
->win_arr
) {
553 pr_debug("Number of windows not configured\n");
554 spin_unlock_irqrestore(&dma_domain
->domain_lock
, flags
);
558 if (wnd_nr
>= dma_domain
->win_cnt
) {
559 pr_debug("Invalid window index\n");
560 spin_unlock_irqrestore(&dma_domain
->domain_lock
, flags
);
564 win_size
= dma_domain
->geom_size
>> ilog2(dma_domain
->win_cnt
);
565 if (size
> win_size
) {
566 pr_debug("Invalid window size\n");
567 spin_unlock_irqrestore(&dma_domain
->domain_lock
, flags
);
571 if (dma_domain
->win_cnt
== 1) {
572 if (dma_domain
->enabled
) {
573 pr_debug("Disable the window before updating the mapping\n");
574 spin_unlock_irqrestore(&dma_domain
->domain_lock
, flags
);
578 ret
= check_size(size
, domain
->geometry
.aperture_start
);
580 pr_debug("Aperture start not aligned to the size\n");
581 spin_unlock_irqrestore(&dma_domain
->domain_lock
, flags
);
586 wnd
= &dma_domain
->win_arr
[wnd_nr
];
590 wnd
->prot
= pamu_prot
;
592 ret
= update_domain_mapping(dma_domain
, wnd_nr
);
595 dma_domain
->mapped
++;
598 pr_debug("Disable the window before updating the mapping\n");
602 spin_unlock_irqrestore(&dma_domain
->domain_lock
, flags
);
608 * Attach the LIODN to the DMA domain and configure the geometry
609 * and window mappings.
611 static int handle_attach_device(struct fsl_dma_domain
*dma_domain
,
612 struct device
*dev
, const u32
*liodn
,
616 struct iommu_domain
*domain
= &dma_domain
->iommu_domain
;
620 spin_lock_irqsave(&dma_domain
->domain_lock
, flags
);
621 for (i
= 0; i
< num
; i
++) {
622 /* Ensure that LIODN value is valid */
623 if (liodn
[i
] >= PAACE_NUMBER_ENTRIES
) {
624 pr_debug("Invalid liodn %d, attach device failed for %pOF\n",
625 liodn
[i
], dev
->of_node
);
630 attach_device(dma_domain
, liodn
[i
], dev
);
632 * Check if geometry has already been configured
633 * for the domain. If yes, set the geometry for
636 if (dma_domain
->win_arr
) {
637 u32 win_cnt
= dma_domain
->win_cnt
> 1 ? dma_domain
->win_cnt
: 0;
639 ret
= pamu_set_liodn(liodn
[i
], dev
, dma_domain
,
640 &domain
->geometry
, win_cnt
);
643 if (dma_domain
->mapped
) {
645 * Create window/subwindow mapping for
648 ret
= map_liodn(liodn
[i
], dma_domain
);
654 spin_unlock_irqrestore(&dma_domain
->domain_lock
, flags
);
659 static int fsl_pamu_attach_device(struct iommu_domain
*domain
,
662 struct fsl_dma_domain
*dma_domain
= to_fsl_dma_domain(domain
);
666 struct pci_dev
*pdev
= NULL
;
667 struct pci_controller
*pci_ctl
;
670 * Use LIODN of the PCI controller while attaching a
673 if (dev_is_pci(dev
)) {
674 pdev
= to_pci_dev(dev
);
675 pci_ctl
= pci_bus_to_host(pdev
->bus
);
677 * make dev point to pci controller device
678 * so we can get the LIODN programmed by
681 dev
= pci_ctl
->parent
;
684 liodn
= of_get_property(dev
->of_node
, "fsl,liodn", &len
);
686 liodn_cnt
= len
/ sizeof(u32
);
687 ret
= handle_attach_device(dma_domain
, dev
, liodn
, liodn_cnt
);
689 pr_debug("missing fsl,liodn property at %pOF\n", dev
->of_node
);
696 static void fsl_pamu_detach_device(struct iommu_domain
*domain
,
699 struct fsl_dma_domain
*dma_domain
= to_fsl_dma_domain(domain
);
702 struct pci_dev
*pdev
= NULL
;
703 struct pci_controller
*pci_ctl
;
706 * Use LIODN of the PCI controller while detaching a
709 if (dev_is_pci(dev
)) {
710 pdev
= to_pci_dev(dev
);
711 pci_ctl
= pci_bus_to_host(pdev
->bus
);
713 * make dev point to pci controller device
714 * so we can get the LIODN programmed by
717 dev
= pci_ctl
->parent
;
720 prop
= of_get_property(dev
->of_node
, "fsl,liodn", &len
);
722 detach_device(dev
, dma_domain
);
724 pr_debug("missing fsl,liodn property at %pOF\n", dev
->of_node
);
727 static int configure_domain_geometry(struct iommu_domain
*domain
, void *data
)
729 struct iommu_domain_geometry
*geom_attr
= data
;
730 struct fsl_dma_domain
*dma_domain
= to_fsl_dma_domain(domain
);
731 dma_addr_t geom_size
;
734 geom_size
= geom_attr
->aperture_end
- geom_attr
->aperture_start
+ 1;
736 * Sanity check the geometry size. Also, we do not support
737 * DMA outside of the geometry.
739 if (check_size(geom_size
, geom_attr
->aperture_start
) ||
740 !geom_attr
->force_aperture
) {
741 pr_debug("Invalid PAMU geometry attributes\n");
745 spin_lock_irqsave(&dma_domain
->domain_lock
, flags
);
746 if (dma_domain
->enabled
) {
747 pr_debug("Can't set geometry attributes as domain is active\n");
748 spin_unlock_irqrestore(&dma_domain
->domain_lock
, flags
);
752 /* Copy the domain geometry information */
753 memcpy(&domain
->geometry
, geom_attr
,
754 sizeof(struct iommu_domain_geometry
));
755 dma_domain
->geom_size
= geom_size
;
757 spin_unlock_irqrestore(&dma_domain
->domain_lock
, flags
);
762 /* Set the domain stash attribute */
763 static int configure_domain_stash(struct fsl_dma_domain
*dma_domain
, void *data
)
765 struct pamu_stash_attribute
*stash_attr
= data
;
769 spin_lock_irqsave(&dma_domain
->domain_lock
, flags
);
771 memcpy(&dma_domain
->dma_stash
, stash_attr
,
772 sizeof(struct pamu_stash_attribute
));
774 dma_domain
->stash_id
= get_stash_id(stash_attr
->cache
,
776 if (dma_domain
->stash_id
== ~(u32
)0) {
777 pr_debug("Invalid stash attributes\n");
778 spin_unlock_irqrestore(&dma_domain
->domain_lock
, flags
);
782 ret
= update_domain_stash(dma_domain
, dma_domain
->stash_id
);
784 spin_unlock_irqrestore(&dma_domain
->domain_lock
, flags
);
789 /* Configure domain dma state i.e. enable/disable DMA */
790 static int configure_domain_dma_state(struct fsl_dma_domain
*dma_domain
, bool enable
)
792 struct device_domain_info
*info
;
796 spin_lock_irqsave(&dma_domain
->domain_lock
, flags
);
798 if (enable
&& !dma_domain
->mapped
) {
799 pr_debug("Can't enable DMA domain without valid mapping\n");
800 spin_unlock_irqrestore(&dma_domain
->domain_lock
, flags
);
804 dma_domain
->enabled
= enable
;
805 list_for_each_entry(info
, &dma_domain
->devices
, link
) {
806 ret
= (enable
) ? pamu_enable_liodn(info
->liodn
) :
807 pamu_disable_liodn(info
->liodn
);
809 pr_debug("Unable to set dma state for liodn %d",
812 spin_unlock_irqrestore(&dma_domain
->domain_lock
, flags
);
817 static int fsl_pamu_set_domain_attr(struct iommu_domain
*domain
,
818 enum iommu_attr attr_type
, void *data
)
820 struct fsl_dma_domain
*dma_domain
= to_fsl_dma_domain(domain
);
824 case DOMAIN_ATTR_GEOMETRY
:
825 ret
= configure_domain_geometry(domain
, data
);
827 case DOMAIN_ATTR_FSL_PAMU_STASH
:
828 ret
= configure_domain_stash(dma_domain
, data
);
830 case DOMAIN_ATTR_FSL_PAMU_ENABLE
:
831 ret
= configure_domain_dma_state(dma_domain
, *(int *)data
);
834 pr_debug("Unsupported attribute type\n");
842 static int fsl_pamu_get_domain_attr(struct iommu_domain
*domain
,
843 enum iommu_attr attr_type
, void *data
)
845 struct fsl_dma_domain
*dma_domain
= to_fsl_dma_domain(domain
);
849 case DOMAIN_ATTR_FSL_PAMU_STASH
:
850 memcpy(data
, &dma_domain
->dma_stash
,
851 sizeof(struct pamu_stash_attribute
));
853 case DOMAIN_ATTR_FSL_PAMU_ENABLE
:
854 *(int *)data
= dma_domain
->enabled
;
856 case DOMAIN_ATTR_FSL_PAMUV1
:
857 *(int *)data
= DOMAIN_ATTR_FSL_PAMUV1
;
860 pr_debug("Unsupported attribute type\n");
868 static struct iommu_group
*get_device_iommu_group(struct device
*dev
)
870 struct iommu_group
*group
;
872 group
= iommu_group_get(dev
);
874 group
= iommu_group_alloc();
879 static bool check_pci_ctl_endpt_part(struct pci_controller
*pci_ctl
)
883 /* Check the PCI controller version number by readding BRR1 register */
884 version
= in_be32(pci_ctl
->cfg_addr
+ (PCI_FSL_BRR1
>> 2));
885 version
&= PCI_FSL_BRR1_VER
;
886 /* If PCI controller version is >= 0x204 we can partition endpoints */
887 return version
>= 0x204;
890 /* Get iommu group information from peer devices or devices on the parent bus */
891 static struct iommu_group
*get_shared_pci_device_group(struct pci_dev
*pdev
)
894 struct iommu_group
*group
;
895 struct pci_bus
*bus
= pdev
->bus
;
898 * Traverese the pci bus device list to get
899 * the shared iommu group.
902 list_for_each_entry(tmp
, &bus
->devices
, bus_list
) {
905 group
= iommu_group_get(&tmp
->dev
);
916 static struct iommu_group
*get_pci_device_group(struct pci_dev
*pdev
)
918 struct pci_controller
*pci_ctl
;
919 bool pci_endpt_partioning
;
920 struct iommu_group
*group
= NULL
;
922 pci_ctl
= pci_bus_to_host(pdev
->bus
);
923 pci_endpt_partioning
= check_pci_ctl_endpt_part(pci_ctl
);
924 /* We can partition PCIe devices so assign device group to the device */
925 if (pci_endpt_partioning
) {
926 group
= pci_device_group(&pdev
->dev
);
929 * PCIe controller is not a paritionable entity
930 * free the controller device iommu_group.
932 if (pci_ctl
->parent
->iommu_group
)
933 iommu_group_remove_device(pci_ctl
->parent
);
936 * All devices connected to the controller will share the
937 * PCI controllers device group. If this is the first
938 * device to be probed for the pci controller, copy the
939 * device group information from the PCI controller device
940 * node and remove the PCI controller iommu group.
941 * For subsequent devices, the iommu group information can
942 * be obtained from sibling devices (i.e. from the bus_devices
945 if (pci_ctl
->parent
->iommu_group
) {
946 group
= get_device_iommu_group(pci_ctl
->parent
);
947 iommu_group_remove_device(pci_ctl
->parent
);
949 group
= get_shared_pci_device_group(pdev
);
954 group
= ERR_PTR(-ENODEV
);
959 static struct iommu_group
*fsl_pamu_device_group(struct device
*dev
)
961 struct iommu_group
*group
= ERR_PTR(-ENODEV
);
965 * For platform devices we allocate a separate group for
966 * each of the devices.
969 group
= get_pci_device_group(to_pci_dev(dev
));
970 else if (of_get_property(dev
->of_node
, "fsl,liodn", &len
))
971 group
= get_device_iommu_group(dev
);
976 static int fsl_pamu_add_device(struct device
*dev
)
978 struct iommu_group
*group
;
980 group
= iommu_group_get_for_dev(dev
);
982 return PTR_ERR(group
);
984 iommu_group_put(group
);
986 iommu_device_link(&pamu_iommu
, dev
);
991 static void fsl_pamu_remove_device(struct device
*dev
)
993 iommu_device_unlink(&pamu_iommu
, dev
);
994 iommu_group_remove_device(dev
);
997 static int fsl_pamu_set_windows(struct iommu_domain
*domain
, u32 w_count
)
999 struct fsl_dma_domain
*dma_domain
= to_fsl_dma_domain(domain
);
1000 unsigned long flags
;
1003 spin_lock_irqsave(&dma_domain
->domain_lock
, flags
);
1004 /* Ensure domain is inactive i.e. DMA should be disabled for the domain */
1005 if (dma_domain
->enabled
) {
1006 pr_debug("Can't set geometry attributes as domain is active\n");
1007 spin_unlock_irqrestore(&dma_domain
->domain_lock
, flags
);
1011 /* Ensure that the geometry has been set for the domain */
1012 if (!dma_domain
->geom_size
) {
1013 pr_debug("Please configure geometry before setting the number of windows\n");
1014 spin_unlock_irqrestore(&dma_domain
->domain_lock
, flags
);
1019 * Ensure we have valid window count i.e. it should be less than
1020 * maximum permissible limit and should be a power of two.
1022 if (w_count
> pamu_get_max_subwin_cnt() || !is_power_of_2(w_count
)) {
1023 pr_debug("Invalid window count\n");
1024 spin_unlock_irqrestore(&dma_domain
->domain_lock
, flags
);
1028 ret
= pamu_set_domain_geometry(dma_domain
, &domain
->geometry
,
1029 w_count
> 1 ? w_count
: 0);
1031 kfree(dma_domain
->win_arr
);
1032 dma_domain
->win_arr
= kcalloc(w_count
,
1033 sizeof(*dma_domain
->win_arr
),
1035 if (!dma_domain
->win_arr
) {
1036 spin_unlock_irqrestore(&dma_domain
->domain_lock
, flags
);
1039 dma_domain
->win_cnt
= w_count
;
1041 spin_unlock_irqrestore(&dma_domain
->domain_lock
, flags
);
1046 static u32
fsl_pamu_get_windows(struct iommu_domain
*domain
)
1048 struct fsl_dma_domain
*dma_domain
= to_fsl_dma_domain(domain
);
1050 return dma_domain
->win_cnt
;
1053 static const struct iommu_ops fsl_pamu_ops
= {
1054 .capable
= fsl_pamu_capable
,
1055 .domain_alloc
= fsl_pamu_domain_alloc
,
1056 .domain_free
= fsl_pamu_domain_free
,
1057 .attach_dev
= fsl_pamu_attach_device
,
1058 .detach_dev
= fsl_pamu_detach_device
,
1059 .domain_window_enable
= fsl_pamu_window_enable
,
1060 .domain_window_disable
= fsl_pamu_window_disable
,
1061 .domain_get_windows
= fsl_pamu_get_windows
,
1062 .domain_set_windows
= fsl_pamu_set_windows
,
1063 .iova_to_phys
= fsl_pamu_iova_to_phys
,
1064 .domain_set_attr
= fsl_pamu_set_domain_attr
,
1065 .domain_get_attr
= fsl_pamu_get_domain_attr
,
1066 .add_device
= fsl_pamu_add_device
,
1067 .remove_device
= fsl_pamu_remove_device
,
1068 .device_group
= fsl_pamu_device_group
,
1071 int __init
pamu_domain_init(void)
1075 ret
= iommu_init_mempool();
1079 ret
= iommu_device_sysfs_add(&pamu_iommu
, NULL
, NULL
, "iommu0");
1083 iommu_device_set_ops(&pamu_iommu
, &fsl_pamu_ops
);
1085 ret
= iommu_device_register(&pamu_iommu
);
1087 iommu_device_sysfs_remove(&pamu_iommu
);
1088 pr_err("Can't register iommu device\n");
1092 bus_set_iommu(&platform_bus_type
, &fsl_pamu_ops
);
1093 bus_set_iommu(&pci_bus_type
, &fsl_pamu_ops
);