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 <linux/init.h>
23 #include <linux/iommu.h>
24 #include <linux/notifier.h>
25 #include <linux/slab.h>
26 #include <linux/module.h>
27 #include <linux/types.h>
29 #include <linux/interrupt.h>
30 #include <linux/device.h>
31 #include <linux/of_platform.h>
32 #include <linux/bootmem.h>
33 #include <linux/err.h>
35 #include <asm/bitops.h>
37 #include <asm/pci-bridge.h>
38 #include <sysdev/fsl_pci.h>
40 #include "fsl_pamu_domain.h"
44 * Global spinlock that needs to be held while
47 static DEFINE_SPINLOCK(iommu_lock
);
49 static struct kmem_cache
*fsl_pamu_domain_cache
;
50 static struct kmem_cache
*iommu_devinfo_cache
;
51 static DEFINE_SPINLOCK(device_domain_lock
);
53 static int __init
iommu_init_mempool(void)
56 fsl_pamu_domain_cache
= kmem_cache_create("fsl_pamu_domain",
57 sizeof(struct fsl_dma_domain
),
62 if (!fsl_pamu_domain_cache
) {
63 pr_debug("Couldn't create fsl iommu_domain cache\n");
67 iommu_devinfo_cache
= kmem_cache_create("iommu_devinfo",
68 sizeof(struct device_domain_info
),
72 if (!iommu_devinfo_cache
) {
73 pr_debug("Couldn't create devinfo cache\n");
74 kmem_cache_destroy(fsl_pamu_domain_cache
);
81 static phys_addr_t
get_phys_addr(struct fsl_dma_domain
*dma_domain
, dma_addr_t iova
)
83 u32 win_cnt
= dma_domain
->win_cnt
;
84 struct dma_window
*win_ptr
=
85 &dma_domain
->win_arr
[0];
86 struct iommu_domain_geometry
*geom
;
88 geom
= &dma_domain
->iommu_domain
->geometry
;
90 if (!win_cnt
|| !dma_domain
->geom_size
) {
91 pr_debug("Number of windows/geometry not configured for the domain\n");
97 dma_addr_t subwin_iova
;
100 subwin_size
= dma_domain
->geom_size
>> ilog2(win_cnt
);
101 subwin_iova
= iova
& ~(subwin_size
- 1);
102 wnd
= (subwin_iova
- geom
->aperture_start
) >> ilog2(subwin_size
);
103 win_ptr
= &dma_domain
->win_arr
[wnd
];
107 return (win_ptr
->paddr
+ (iova
& (win_ptr
->size
- 1)));
112 static int map_subwins(int liodn
, struct fsl_dma_domain
*dma_domain
)
114 struct dma_window
*sub_win_ptr
=
115 &dma_domain
->win_arr
[0];
117 unsigned long rpn
, flags
;
119 for (i
= 0; i
< dma_domain
->win_cnt
; i
++) {
120 if (sub_win_ptr
[i
].valid
) {
121 rpn
= sub_win_ptr
[i
].paddr
>>
123 spin_lock_irqsave(&iommu_lock
, flags
);
124 ret
= pamu_config_spaace(liodn
, dma_domain
->win_cnt
, i
,
128 dma_domain
->snoop_id
,
129 dma_domain
->stash_id
,
131 sub_win_ptr
[i
].prot
);
132 spin_unlock_irqrestore(&iommu_lock
, flags
);
134 pr_debug("PAMU SPAACE configuration failed for liodn %d\n",
144 static int map_win(int liodn
, struct fsl_dma_domain
*dma_domain
)
147 struct dma_window
*wnd
= &dma_domain
->win_arr
[0];
148 phys_addr_t wnd_addr
= dma_domain
->iommu_domain
->geometry
.aperture_start
;
151 spin_lock_irqsave(&iommu_lock
, flags
);
152 ret
= pamu_config_ppaace(liodn
, wnd_addr
,
155 wnd
->paddr
>> PAMU_PAGE_SHIFT
,
156 dma_domain
->snoop_id
, dma_domain
->stash_id
,
158 spin_unlock_irqrestore(&iommu_lock
, flags
);
160 pr_debug("PAMU PAACE configuration failed for liodn %d\n",
166 /* Map the DMA window corresponding to the LIODN */
167 static int map_liodn(int liodn
, struct fsl_dma_domain
*dma_domain
)
169 if (dma_domain
->win_cnt
> 1)
170 return map_subwins(liodn
, dma_domain
);
172 return map_win(liodn
, dma_domain
);
176 /* Update window/subwindow mapping for the LIODN */
177 static int update_liodn(int liodn
, struct fsl_dma_domain
*dma_domain
, u32 wnd_nr
)
180 struct dma_window
*wnd
= &dma_domain
->win_arr
[wnd_nr
];
183 spin_lock_irqsave(&iommu_lock
, flags
);
184 if (dma_domain
->win_cnt
> 1) {
185 ret
= pamu_config_spaace(liodn
, dma_domain
->win_cnt
, wnd_nr
,
188 wnd
->paddr
>> PAMU_PAGE_SHIFT
,
189 dma_domain
->snoop_id
,
190 dma_domain
->stash_id
,
191 (wnd_nr
> 0) ? 1 : 0,
194 pr_debug("Subwindow reconfiguration failed for liodn %d\n", liodn
);
196 phys_addr_t wnd_addr
;
198 wnd_addr
= dma_domain
->iommu_domain
->geometry
.aperture_start
;
200 ret
= pamu_config_ppaace(liodn
, wnd_addr
,
203 wnd
->paddr
>> PAMU_PAGE_SHIFT
,
204 dma_domain
->snoop_id
, dma_domain
->stash_id
,
207 pr_debug("Window reconfiguration failed for liodn %d\n", liodn
);
210 spin_unlock_irqrestore(&iommu_lock
, flags
);
215 static int update_liodn_stash(int liodn
, struct fsl_dma_domain
*dma_domain
,
221 spin_lock_irqsave(&iommu_lock
, flags
);
222 if (!dma_domain
->win_arr
) {
223 pr_debug("Windows not configured, stash destination update failed for liodn %d\n", liodn
);
224 spin_unlock_irqrestore(&iommu_lock
, flags
);
228 for (i
= 0; i
< dma_domain
->win_cnt
; i
++) {
229 ret
= pamu_update_paace_stash(liodn
, i
, val
);
231 pr_debug("Failed to update SPAACE %d field for liodn %d\n ", i
, liodn
);
232 spin_unlock_irqrestore(&iommu_lock
, flags
);
237 spin_unlock_irqrestore(&iommu_lock
, flags
);
242 /* Set the geometry parameters for a LIODN */
243 static int pamu_set_liodn(int liodn
, struct device
*dev
,
244 struct fsl_dma_domain
*dma_domain
,
245 struct iommu_domain_geometry
*geom_attr
,
248 phys_addr_t window_addr
, window_size
;
249 phys_addr_t subwin_size
;
251 u32 omi_index
= ~(u32
)0;
255 * Configure the omi_index at the geometry setup time.
256 * This is a static value which depends on the type of
257 * device and would not change thereafter.
259 get_ome_index(&omi_index
, dev
);
261 window_addr
= geom_attr
->aperture_start
;
262 window_size
= dma_domain
->geom_size
;
264 spin_lock_irqsave(&iommu_lock
, flags
);
265 ret
= pamu_disable_liodn(liodn
);
267 ret
= pamu_config_ppaace(liodn
, window_addr
, window_size
, omi_index
,
268 0, dma_domain
->snoop_id
,
269 dma_domain
->stash_id
, win_cnt
, 0);
270 spin_unlock_irqrestore(&iommu_lock
, flags
);
272 pr_debug("PAMU PAACE configuration failed for liodn %d, win_cnt =%d\n", liodn
, win_cnt
);
277 subwin_size
= window_size
>> ilog2(win_cnt
);
278 for (i
= 0; i
< win_cnt
; i
++) {
279 spin_lock_irqsave(&iommu_lock
, flags
);
280 ret
= pamu_disable_spaace(liodn
, i
);
282 ret
= pamu_config_spaace(liodn
, win_cnt
, i
,
283 subwin_size
, omi_index
,
284 0, dma_domain
->snoop_id
,
285 dma_domain
->stash_id
,
287 spin_unlock_irqrestore(&iommu_lock
, flags
);
289 pr_debug("PAMU SPAACE configuration failed for liodn %d\n", liodn
);
298 static int check_size(u64 size
, dma_addr_t iova
)
301 * Size must be a power of two and at least be equal
304 if (!is_power_of_2(size
) || size
< PAMU_PAGE_SIZE
) {
305 pr_debug("%s: size too small or not a power of two\n", __func__
);
309 /* iova must be page size aligned*/
310 if (iova
& (size
- 1)) {
311 pr_debug("%s: address is not aligned with window size\n", __func__
);
318 static struct fsl_dma_domain
*iommu_alloc_dma_domain(void)
320 struct fsl_dma_domain
*domain
;
322 domain
= kmem_cache_zalloc(fsl_pamu_domain_cache
, GFP_KERNEL
);
326 domain
->stash_id
= ~(u32
)0;
327 domain
->snoop_id
= ~(u32
)0;
328 domain
->win_cnt
= pamu_get_max_subwin_cnt();
329 domain
->geom_size
= 0;
331 INIT_LIST_HEAD(&domain
->devices
);
333 spin_lock_init(&domain
->domain_lock
);
338 static inline struct device_domain_info
*find_domain(struct device
*dev
)
340 return dev
->archdata
.iommu_domain
;
343 static void remove_device_ref(struct device_domain_info
*info
, u32 win_cnt
)
347 list_del(&info
->link
);
348 spin_lock_irqsave(&iommu_lock
, flags
);
350 pamu_free_subwins(info
->liodn
);
351 pamu_disable_liodn(info
->liodn
);
352 spin_unlock_irqrestore(&iommu_lock
, flags
);
353 spin_lock_irqsave(&device_domain_lock
, flags
);
354 info
->dev
->archdata
.iommu_domain
= NULL
;
355 kmem_cache_free(iommu_devinfo_cache
, info
);
356 spin_unlock_irqrestore(&device_domain_lock
, flags
);
359 static void detach_device(struct device
*dev
, struct fsl_dma_domain
*dma_domain
)
361 struct device_domain_info
*info
, *tmp
;
364 spin_lock_irqsave(&dma_domain
->domain_lock
, flags
);
365 /* Remove the device from the domain device list */
366 list_for_each_entry_safe(info
, tmp
, &dma_domain
->devices
, link
) {
367 if (!dev
|| (info
->dev
== dev
))
368 remove_device_ref(info
, dma_domain
->win_cnt
);
370 spin_unlock_irqrestore(&dma_domain
->domain_lock
, flags
);
373 static void attach_device(struct fsl_dma_domain
*dma_domain
, int liodn
, struct device
*dev
)
375 struct device_domain_info
*info
, *old_domain_info
;
378 spin_lock_irqsave(&device_domain_lock
, flags
);
380 * Check here if the device is already attached to domain or not.
381 * If the device is already attached to a domain detach it.
383 old_domain_info
= find_domain(dev
);
384 if (old_domain_info
&& old_domain_info
->domain
!= dma_domain
) {
385 spin_unlock_irqrestore(&device_domain_lock
, flags
);
386 detach_device(dev
, old_domain_info
->domain
);
387 spin_lock_irqsave(&device_domain_lock
, flags
);
390 info
= kmem_cache_zalloc(iommu_devinfo_cache
, GFP_ATOMIC
);
394 info
->domain
= dma_domain
;
396 list_add(&info
->link
, &dma_domain
->devices
);
398 * In case of devices with multiple LIODNs just store
399 * the info for the first LIODN as all
400 * LIODNs share the same domain
402 if (!old_domain_info
)
403 dev
->archdata
.iommu_domain
= info
;
404 spin_unlock_irqrestore(&device_domain_lock
, flags
);
408 static phys_addr_t
fsl_pamu_iova_to_phys(struct iommu_domain
*domain
,
411 struct fsl_dma_domain
*dma_domain
= domain
->priv
;
413 if ((iova
< domain
->geometry
.aperture_start
) ||
414 iova
> (domain
->geometry
.aperture_end
))
417 return get_phys_addr(dma_domain
, iova
);
420 static int fsl_pamu_domain_has_cap(struct iommu_domain
*domain
,
423 return cap
== IOMMU_CAP_CACHE_COHERENCY
;
426 static void fsl_pamu_domain_destroy(struct iommu_domain
*domain
)
428 struct fsl_dma_domain
*dma_domain
= domain
->priv
;
432 /* remove all the devices from the device list */
433 detach_device(NULL
, dma_domain
);
435 dma_domain
->enabled
= 0;
436 dma_domain
->mapped
= 0;
438 kmem_cache_free(fsl_pamu_domain_cache
, dma_domain
);
441 static int fsl_pamu_domain_init(struct iommu_domain
*domain
)
443 struct fsl_dma_domain
*dma_domain
;
445 dma_domain
= iommu_alloc_dma_domain();
447 pr_debug("dma_domain allocation failed\n");
450 domain
->priv
= dma_domain
;
451 dma_domain
->iommu_domain
= domain
;
452 /* defaul geometry 64 GB i.e. maximum system address */
453 domain
->geometry
.aperture_start
= 0;
454 domain
->geometry
.aperture_end
= (1ULL << 36) - 1;
455 domain
->geometry
.force_aperture
= true;
460 /* Configure geometry settings for all LIODNs associated with domain */
461 static int pamu_set_domain_geometry(struct fsl_dma_domain
*dma_domain
,
462 struct iommu_domain_geometry
*geom_attr
,
465 struct device_domain_info
*info
;
468 list_for_each_entry(info
, &dma_domain
->devices
, link
) {
469 ret
= pamu_set_liodn(info
->liodn
, info
->dev
, dma_domain
,
478 /* Update stash destination for all LIODNs associated with the domain */
479 static int update_domain_stash(struct fsl_dma_domain
*dma_domain
, u32 val
)
481 struct device_domain_info
*info
;
484 list_for_each_entry(info
, &dma_domain
->devices
, link
) {
485 ret
= update_liodn_stash(info
->liodn
, dma_domain
, val
);
493 /* Update domain mappings for all LIODNs associated with the domain */
494 static int update_domain_mapping(struct fsl_dma_domain
*dma_domain
, u32 wnd_nr
)
496 struct device_domain_info
*info
;
499 list_for_each_entry(info
, &dma_domain
->devices
, link
) {
500 ret
= update_liodn(info
->liodn
, dma_domain
, wnd_nr
);
507 static int disable_domain_win(struct fsl_dma_domain
*dma_domain
, u32 wnd_nr
)
509 struct device_domain_info
*info
;
512 list_for_each_entry(info
, &dma_domain
->devices
, link
) {
513 if (dma_domain
->win_cnt
== 1 && dma_domain
->enabled
) {
514 ret
= pamu_disable_liodn(info
->liodn
);
516 dma_domain
->enabled
= 0;
518 ret
= pamu_disable_spaace(info
->liodn
, wnd_nr
);
525 static void fsl_pamu_window_disable(struct iommu_domain
*domain
, u32 wnd_nr
)
527 struct fsl_dma_domain
*dma_domain
= domain
->priv
;
531 spin_lock_irqsave(&dma_domain
->domain_lock
, flags
);
532 if (!dma_domain
->win_arr
) {
533 pr_debug("Number of windows not configured\n");
534 spin_unlock_irqrestore(&dma_domain
->domain_lock
, flags
);
538 if (wnd_nr
>= dma_domain
->win_cnt
) {
539 pr_debug("Invalid window index\n");
540 spin_unlock_irqrestore(&dma_domain
->domain_lock
, flags
);
544 if (dma_domain
->win_arr
[wnd_nr
].valid
) {
545 ret
= disable_domain_win(dma_domain
, wnd_nr
);
547 dma_domain
->win_arr
[wnd_nr
].valid
= 0;
548 dma_domain
->mapped
--;
552 spin_unlock_irqrestore(&dma_domain
->domain_lock
, flags
);
556 static int fsl_pamu_window_enable(struct iommu_domain
*domain
, u32 wnd_nr
,
557 phys_addr_t paddr
, u64 size
, int prot
)
559 struct fsl_dma_domain
*dma_domain
= domain
->priv
;
560 struct dma_window
*wnd
;
566 if (prot
& IOMMU_READ
)
567 pamu_prot
|= PAACE_AP_PERMS_QUERY
;
568 if (prot
& IOMMU_WRITE
)
569 pamu_prot
|= PAACE_AP_PERMS_UPDATE
;
571 spin_lock_irqsave(&dma_domain
->domain_lock
, flags
);
572 if (!dma_domain
->win_arr
) {
573 pr_debug("Number of windows not configured\n");
574 spin_unlock_irqrestore(&dma_domain
->domain_lock
, flags
);
578 if (wnd_nr
>= dma_domain
->win_cnt
) {
579 pr_debug("Invalid window index\n");
580 spin_unlock_irqrestore(&dma_domain
->domain_lock
, flags
);
584 win_size
= dma_domain
->geom_size
>> ilog2(dma_domain
->win_cnt
);
585 if (size
> win_size
) {
586 pr_debug("Invalid window size \n");
587 spin_unlock_irqrestore(&dma_domain
->domain_lock
, flags
);
591 if (dma_domain
->win_cnt
== 1) {
592 if (dma_domain
->enabled
) {
593 pr_debug("Disable the window before updating the mapping\n");
594 spin_unlock_irqrestore(&dma_domain
->domain_lock
, flags
);
598 ret
= check_size(size
, domain
->geometry
.aperture_start
);
600 pr_debug("Aperture start not aligned to the size\n");
601 spin_unlock_irqrestore(&dma_domain
->domain_lock
, flags
);
606 wnd
= &dma_domain
->win_arr
[wnd_nr
];
610 wnd
->prot
= pamu_prot
;
612 ret
= update_domain_mapping(dma_domain
, wnd_nr
);
615 dma_domain
->mapped
++;
618 pr_debug("Disable the window before updating the mapping\n");
622 spin_unlock_irqrestore(&dma_domain
->domain_lock
, flags
);
628 * Attach the LIODN to the DMA domain and configure the geometry
629 * and window mappings.
631 static int handle_attach_device(struct fsl_dma_domain
*dma_domain
,
632 struct device
*dev
, const u32
*liodn
,
636 struct iommu_domain
*domain
= dma_domain
->iommu_domain
;
640 spin_lock_irqsave(&dma_domain
->domain_lock
, flags
);
641 for (i
= 0; i
< num
; i
++) {
643 /* Ensure that LIODN value is valid */
644 if (liodn
[i
] >= PAACE_NUMBER_ENTRIES
) {
645 pr_debug("Invalid liodn %d, attach device failed for %s\n",
646 liodn
[i
], dev
->of_node
->full_name
);
651 attach_device(dma_domain
, liodn
[i
], dev
);
653 * Check if geometry has already been configured
654 * for the domain. If yes, set the geometry for
657 if (dma_domain
->win_arr
) {
658 u32 win_cnt
= dma_domain
->win_cnt
> 1 ? dma_domain
->win_cnt
: 0;
659 ret
= pamu_set_liodn(liodn
[i
], dev
, dma_domain
,
664 if (dma_domain
->mapped
) {
666 * Create window/subwindow mapping for
669 ret
= map_liodn(liodn
[i
], dma_domain
);
675 spin_unlock_irqrestore(&dma_domain
->domain_lock
, flags
);
680 static int fsl_pamu_attach_device(struct iommu_domain
*domain
,
683 struct fsl_dma_domain
*dma_domain
= domain
->priv
;
687 struct pci_dev
*pdev
= NULL
;
688 struct pci_controller
*pci_ctl
;
691 * Use LIODN of the PCI controller while attaching a
694 if (dev
->bus
== &pci_bus_type
) {
695 pdev
= to_pci_dev(dev
);
696 pci_ctl
= pci_bus_to_host(pdev
->bus
);
698 * make dev point to pci controller device
699 * so we can get the LIODN programmed by
702 dev
= pci_ctl
->parent
;
705 liodn
= of_get_property(dev
->of_node
, "fsl,liodn", &len
);
707 liodn_cnt
= len
/ sizeof(u32
);
708 ret
= handle_attach_device(dma_domain
, dev
,
711 pr_debug("missing fsl,liodn property at %s\n",
712 dev
->of_node
->full_name
);
719 static void fsl_pamu_detach_device(struct iommu_domain
*domain
,
722 struct fsl_dma_domain
*dma_domain
= domain
->priv
;
725 struct pci_dev
*pdev
= NULL
;
726 struct pci_controller
*pci_ctl
;
729 * Use LIODN of the PCI controller while detaching a
732 if (dev
->bus
== &pci_bus_type
) {
733 pdev
= to_pci_dev(dev
);
734 pci_ctl
= pci_bus_to_host(pdev
->bus
);
736 * make dev point to pci controller device
737 * so we can get the LIODN programmed by
740 dev
= pci_ctl
->parent
;
743 prop
= of_get_property(dev
->of_node
, "fsl,liodn", &len
);
745 detach_device(dev
, dma_domain
);
747 pr_debug("missing fsl,liodn property at %s\n",
748 dev
->of_node
->full_name
);
751 static int configure_domain_geometry(struct iommu_domain
*domain
, void *data
)
753 struct iommu_domain_geometry
*geom_attr
= data
;
754 struct fsl_dma_domain
*dma_domain
= domain
->priv
;
755 dma_addr_t geom_size
;
758 geom_size
= geom_attr
->aperture_end
- geom_attr
->aperture_start
+ 1;
760 * Sanity check the geometry size. Also, we do not support
761 * DMA outside of the geometry.
763 if (check_size(geom_size
, geom_attr
->aperture_start
) ||
764 !geom_attr
->force_aperture
) {
765 pr_debug("Invalid PAMU geometry attributes\n");
769 spin_lock_irqsave(&dma_domain
->domain_lock
, flags
);
770 if (dma_domain
->enabled
) {
771 pr_debug("Can't set geometry attributes as domain is active\n");
772 spin_unlock_irqrestore(&dma_domain
->domain_lock
, flags
);
776 /* Copy the domain geometry information */
777 memcpy(&domain
->geometry
, geom_attr
,
778 sizeof(struct iommu_domain_geometry
));
779 dma_domain
->geom_size
= geom_size
;
781 spin_unlock_irqrestore(&dma_domain
->domain_lock
, flags
);
786 /* Set the domain stash attribute */
787 static int configure_domain_stash(struct fsl_dma_domain
*dma_domain
, void *data
)
789 struct pamu_stash_attribute
*stash_attr
= data
;
793 spin_lock_irqsave(&dma_domain
->domain_lock
, flags
);
795 memcpy(&dma_domain
->dma_stash
, stash_attr
,
796 sizeof(struct pamu_stash_attribute
));
798 dma_domain
->stash_id
= get_stash_id(stash_attr
->cache
,
800 if (dma_domain
->stash_id
== ~(u32
)0) {
801 pr_debug("Invalid stash attributes\n");
802 spin_unlock_irqrestore(&dma_domain
->domain_lock
, flags
);
806 ret
= update_domain_stash(dma_domain
, dma_domain
->stash_id
);
808 spin_unlock_irqrestore(&dma_domain
->domain_lock
, flags
);
813 /* Configure domain dma state i.e. enable/disable DMA*/
814 static int configure_domain_dma_state(struct fsl_dma_domain
*dma_domain
, bool enable
)
816 struct device_domain_info
*info
;
820 spin_lock_irqsave(&dma_domain
->domain_lock
, flags
);
822 if (enable
&& !dma_domain
->mapped
) {
823 pr_debug("Can't enable DMA domain without valid mapping\n");
824 spin_unlock_irqrestore(&dma_domain
->domain_lock
, flags
);
828 dma_domain
->enabled
= enable
;
829 list_for_each_entry(info
, &dma_domain
->devices
,
831 ret
= (enable
) ? pamu_enable_liodn(info
->liodn
) :
832 pamu_disable_liodn(info
->liodn
);
834 pr_debug("Unable to set dma state for liodn %d",
837 spin_unlock_irqrestore(&dma_domain
->domain_lock
, flags
);
842 static int fsl_pamu_set_domain_attr(struct iommu_domain
*domain
,
843 enum iommu_attr attr_type
, void *data
)
845 struct fsl_dma_domain
*dma_domain
= domain
->priv
;
850 case DOMAIN_ATTR_GEOMETRY
:
851 ret
= configure_domain_geometry(domain
, data
);
853 case DOMAIN_ATTR_FSL_PAMU_STASH
:
854 ret
= configure_domain_stash(dma_domain
, data
);
856 case DOMAIN_ATTR_FSL_PAMU_ENABLE
:
857 ret
= configure_domain_dma_state(dma_domain
, *(int *)data
);
860 pr_debug("Unsupported attribute type\n");
868 static int fsl_pamu_get_domain_attr(struct iommu_domain
*domain
,
869 enum iommu_attr attr_type
, void *data
)
871 struct fsl_dma_domain
*dma_domain
= domain
->priv
;
876 case DOMAIN_ATTR_FSL_PAMU_STASH
:
877 memcpy((struct pamu_stash_attribute
*) data
, &dma_domain
->dma_stash
,
878 sizeof(struct pamu_stash_attribute
));
880 case DOMAIN_ATTR_FSL_PAMU_ENABLE
:
881 *(int *)data
= dma_domain
->enabled
;
883 case DOMAIN_ATTR_FSL_PAMUV1
:
884 *(int *)data
= DOMAIN_ATTR_FSL_PAMUV1
;
887 pr_debug("Unsupported attribute type\n");
895 #define REQ_ACS_FLAGS (PCI_ACS_SV | PCI_ACS_RR | PCI_ACS_CR | PCI_ACS_UF)
897 static struct iommu_group
*get_device_iommu_group(struct device
*dev
)
899 struct iommu_group
*group
;
901 group
= iommu_group_get(dev
);
903 group
= iommu_group_alloc();
908 static bool check_pci_ctl_endpt_part(struct pci_controller
*pci_ctl
)
912 /* Check the PCI controller version number by readding BRR1 register */
913 version
= in_be32(pci_ctl
->cfg_addr
+ (PCI_FSL_BRR1
>> 2));
914 version
&= PCI_FSL_BRR1_VER
;
915 /* If PCI controller version is >= 0x204 we can partition endpoints*/
916 if (version
>= 0x204)
922 /* Get iommu group information from peer devices or devices on the parent bus */
923 static struct iommu_group
*get_shared_pci_device_group(struct pci_dev
*pdev
)
926 struct iommu_group
*group
;
927 struct pci_bus
*bus
= pdev
->bus
;
930 * Traverese the pci bus device list to get
931 * the shared iommu group.
934 list_for_each_entry(tmp
, &bus
->devices
, bus_list
) {
937 group
= iommu_group_get(&tmp
->dev
);
948 static struct iommu_group
*get_pci_device_group(struct pci_dev
*pdev
)
950 struct pci_controller
*pci_ctl
;
951 bool pci_endpt_partioning
;
952 struct iommu_group
*group
= NULL
;
953 struct pci_dev
*bridge
, *dma_pdev
= NULL
;
955 pci_ctl
= pci_bus_to_host(pdev
->bus
);
956 pci_endpt_partioning
= check_pci_ctl_endpt_part(pci_ctl
);
957 /* We can partition PCIe devices so assign device group to the device */
958 if (pci_endpt_partioning
) {
959 bridge
= pci_find_upstream_pcie_bridge(pdev
);
961 if (pci_is_pcie(bridge
))
962 dma_pdev
= pci_get_domain_bus_and_slot(
963 pci_domain_nr(pdev
->bus
),
964 bridge
->subordinate
->number
, 0);
966 dma_pdev
= pci_dev_get(bridge
);
968 dma_pdev
= pci_dev_get(pdev
);
970 /* Account for quirked devices */
971 swap_pci_ref(&dma_pdev
, pci_get_dma_source(dma_pdev
));
974 * If it's a multifunction device that does not support our
975 * required ACS flags, add to the same group as lowest numbered
976 * function that also does not suport the required ACS flags.
978 if (dma_pdev
->multifunction
&&
979 !pci_acs_enabled(dma_pdev
, REQ_ACS_FLAGS
)) {
980 u8 i
, slot
= PCI_SLOT(dma_pdev
->devfn
);
982 for (i
= 0; i
< 8; i
++) {
985 tmp
= pci_get_slot(dma_pdev
->bus
, PCI_DEVFN(slot
, i
));
989 if (!pci_acs_enabled(tmp
, REQ_ACS_FLAGS
)) {
990 swap_pci_ref(&dma_pdev
, tmp
);
998 * Devices on the root bus go through the iommu. If that's not us,
999 * find the next upstream device and test ACS up to the root bus.
1000 * Finding the next device may require skipping virtual buses.
1002 while (!pci_is_root_bus(dma_pdev
->bus
)) {
1003 struct pci_bus
*bus
= dma_pdev
->bus
;
1005 while (!bus
->self
) {
1006 if (!pci_is_root_bus(bus
))
1012 if (pci_acs_path_enabled(bus
->self
, NULL
, REQ_ACS_FLAGS
))
1015 swap_pci_ref(&dma_pdev
, pci_dev_get(bus
->self
));
1019 group
= get_device_iommu_group(&dma_pdev
->dev
);
1020 pci_dev_put(dma_pdev
);
1022 * PCIe controller is not a paritionable entity
1023 * free the controller device iommu_group.
1025 if (pci_ctl
->parent
->iommu_group
)
1026 iommu_group_remove_device(pci_ctl
->parent
);
1029 * All devices connected to the controller will share the
1030 * PCI controllers device group. If this is the first
1031 * device to be probed for the pci controller, copy the
1032 * device group information from the PCI controller device
1033 * node and remove the PCI controller iommu group.
1034 * For subsequent devices, the iommu group information can
1035 * be obtained from sibling devices (i.e. from the bus_devices
1038 if (pci_ctl
->parent
->iommu_group
) {
1039 group
= get_device_iommu_group(pci_ctl
->parent
);
1040 iommu_group_remove_device(pci_ctl
->parent
);
1042 group
= get_shared_pci_device_group(pdev
);
1048 static int fsl_pamu_add_device(struct device
*dev
)
1050 struct iommu_group
*group
= NULL
;
1051 struct pci_dev
*pdev
;
1056 * For platform devices we allocate a separate group for
1057 * each of the devices.
1059 if (dev
->bus
== &pci_bus_type
) {
1060 pdev
= to_pci_dev(dev
);
1061 /* Don't create device groups for virtual PCI bridges */
1062 if (pdev
->subordinate
)
1065 group
= get_pci_device_group(pdev
);
1068 prop
= of_get_property(dev
->of_node
, "fsl,liodn", &len
);
1070 group
= get_device_iommu_group(dev
);
1073 if (!group
|| IS_ERR(group
))
1074 return PTR_ERR(group
);
1076 ret
= iommu_group_add_device(group
, dev
);
1078 iommu_group_put(group
);
1082 static void fsl_pamu_remove_device(struct device
*dev
)
1084 iommu_group_remove_device(dev
);
1087 static int fsl_pamu_set_windows(struct iommu_domain
*domain
, u32 w_count
)
1089 struct fsl_dma_domain
*dma_domain
= domain
->priv
;
1090 unsigned long flags
;
1093 spin_lock_irqsave(&dma_domain
->domain_lock
, flags
);
1094 /* Ensure domain is inactive i.e. DMA should be disabled for the domain */
1095 if (dma_domain
->enabled
) {
1096 pr_debug("Can't set geometry attributes as domain is active\n");
1097 spin_unlock_irqrestore(&dma_domain
->domain_lock
, flags
);
1101 /* Ensure that the geometry has been set for the domain */
1102 if (!dma_domain
->geom_size
) {
1103 pr_debug("Please configure geometry before setting the number of windows\n");
1104 spin_unlock_irqrestore(&dma_domain
->domain_lock
, flags
);
1109 * Ensure we have valid window count i.e. it should be less than
1110 * maximum permissible limit and should be a power of two.
1112 if (w_count
> pamu_get_max_subwin_cnt() || !is_power_of_2(w_count
)) {
1113 pr_debug("Invalid window count\n");
1114 spin_unlock_irqrestore(&dma_domain
->domain_lock
, flags
);
1118 ret
= pamu_set_domain_geometry(dma_domain
, &domain
->geometry
,
1119 ((w_count
> 1) ? w_count
: 0));
1121 if (dma_domain
->win_arr
)
1122 kfree(dma_domain
->win_arr
);
1123 dma_domain
->win_arr
= kzalloc(sizeof(struct dma_window
) *
1124 w_count
, GFP_ATOMIC
);
1125 if (!dma_domain
->win_arr
) {
1126 spin_unlock_irqrestore(&dma_domain
->domain_lock
, flags
);
1129 dma_domain
->win_cnt
= w_count
;
1131 spin_unlock_irqrestore(&dma_domain
->domain_lock
, flags
);
1136 static u32
fsl_pamu_get_windows(struct iommu_domain
*domain
)
1138 struct fsl_dma_domain
*dma_domain
= domain
->priv
;
1140 return dma_domain
->win_cnt
;
1143 static struct iommu_ops fsl_pamu_ops
= {
1144 .domain_init
= fsl_pamu_domain_init
,
1145 .domain_destroy
= fsl_pamu_domain_destroy
,
1146 .attach_dev
= fsl_pamu_attach_device
,
1147 .detach_dev
= fsl_pamu_detach_device
,
1148 .domain_window_enable
= fsl_pamu_window_enable
,
1149 .domain_window_disable
= fsl_pamu_window_disable
,
1150 .domain_get_windows
= fsl_pamu_get_windows
,
1151 .domain_set_windows
= fsl_pamu_set_windows
,
1152 .iova_to_phys
= fsl_pamu_iova_to_phys
,
1153 .domain_has_cap
= fsl_pamu_domain_has_cap
,
1154 .domain_set_attr
= fsl_pamu_set_domain_attr
,
1155 .domain_get_attr
= fsl_pamu_get_domain_attr
,
1156 .add_device
= fsl_pamu_add_device
,
1157 .remove_device
= fsl_pamu_remove_device
,
1160 int pamu_domain_init()
1164 ret
= iommu_init_mempool();
1168 bus_set_iommu(&platform_bus_type
, &fsl_pamu_ops
);
1169 bus_set_iommu(&pci_bus_type
, &fsl_pamu_ops
);