blob: e3c02ba325004c9e27cfb66cf82fddb858807350 [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001/* SPDX-License-Identifier: GPL-2.0 */
David S. Miller19814ea2008-02-08 02:09:40 -08002/* iommu_common.h: UltraSparc SBUS/PCI common iommu declarations.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 *
David S. Miller19814ea2008-02-08 02:09:40 -08004 * Copyright (C) 1999, 2008 David S. Miller (davem@davemloft.net)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005 */
6
David S. Miller19814ea2008-02-08 02:09:40 -08007#ifndef _IOMMU_COMMON_H
8#define _IOMMU_COMMON_H
9
Linus Torvalds1da177e2005-04-16 15:20:36 -070010#include <linux/kernel.h>
11#include <linux/types.h>
12#include <linux/sched.h>
13#include <linux/mm.h>
FUJITA Tomonori24c31ee2007-10-17 09:22:14 +020014#include <linux/scatterlist.h>
FUJITA Tomonorifde6a3c2008-02-04 22:28:02 -080015#include <linux/device.h>
FUJITA Tomonorif0880252008-03-28 15:55:41 -070016#include <linux/iommu-helper.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070017
18#include <asm/iommu.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070019
20/*
21 * These give mapping size of each iommu pte/tlb.
22 */
23#define IO_PAGE_SHIFT 13
24#define IO_PAGE_SIZE (1UL << IO_PAGE_SHIFT)
25#define IO_PAGE_MASK (~(IO_PAGE_SIZE-1))
Andrea Righi27ac7922008-07-23 21:28:13 -070026#define IO_PAGE_ALIGN(addr) ALIGN(addr, IO_PAGE_SIZE)
Linus Torvalds1da177e2005-04-16 15:20:36 -070027
28#define IO_TSB_ENTRIES (128*1024)
29#define IO_TSB_SIZE (IO_TSB_ENTRIES * 8)
30
31/*
32 * This is the hardwired shift in the iotlb tag/data parts.
33 */
34#define IOMMU_PAGE_SHIFT 13
35
David S. Miller38192d52008-02-06 03:50:26 -080036#define SG_ENT_PHYS_ADDRESS(SG) (__pa(sg_virt((SG))))
37
FUJITA Tomonorif0880252008-03-28 15:55:41 -070038static inline int is_span_boundary(unsigned long entry,
39 unsigned long shift,
40 unsigned long boundary_size,
41 struct scatterlist *outs,
42 struct scatterlist *sg)
43{
44 unsigned long paddr = SG_ENT_PHYS_ADDRESS(outs);
Joerg Roedel0fcff282008-10-15 22:02:14 -070045 int nr = iommu_num_pages(paddr, outs->dma_length + sg->length,
46 IO_PAGE_SIZE);
FUJITA Tomonorif0880252008-03-28 15:55:41 -070047
48 return iommu_is_span_boundary(entry, nr, shift, boundary_size);
49}
50
Christoph Hellwigceaf4812017-05-21 13:33:44 +020051#define SPARC_MAPPING_ERROR (~(dma_addr_t)0x0)
52
David S. Miller19814ea2008-02-08 02:09:40 -080053#endif /* _IOMMU_COMMON_H */