Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at v5.18 266 lines 7.0 kB view raw
1// SPDX-License-Identifier: GPL-2.0-only 2/* 3 * Copyright (C) 2005-2008, PA Semi, Inc 4 * 5 * Maintained by: Olof Johansson <olof@lixom.net> 6 */ 7 8#undef DEBUG 9 10#include <linux/memblock.h> 11#include <linux/types.h> 12#include <linux/spinlock.h> 13#include <linux/pci.h> 14#include <asm/iommu.h> 15#include <asm/machdep.h> 16#include <asm/firmware.h> 17 18#include "pasemi.h" 19 20#define IOBMAP_PAGE_SHIFT 12 21#define IOBMAP_PAGE_SIZE (1 << IOBMAP_PAGE_SHIFT) 22#define IOBMAP_PAGE_MASK (IOBMAP_PAGE_SIZE - 1) 23 24#define IOB_BASE 0xe0000000 25#define IOB_SIZE 0x3000 26/* Configuration registers */ 27#define IOBCAP_REG 0x40 28#define IOBCOM_REG 0x100 29/* Enable IOB address translation */ 30#define IOBCOM_ATEN 0x00000100 31 32/* Address decode configuration register */ 33#define IOB_AD_REG 0x14c 34/* IOBCOM_AD_REG fields */ 35#define IOB_AD_VGPRT 0x00000e00 36#define IOB_AD_VGAEN 0x00000100 37/* Direct mapping settings */ 38#define IOB_AD_MPSEL_MASK 0x00000030 39#define IOB_AD_MPSEL_B38 0x00000000 40#define IOB_AD_MPSEL_B40 0x00000010 41#define IOB_AD_MPSEL_B42 0x00000020 42/* Translation window size / enable */ 43#define IOB_AD_TRNG_MASK 0x00000003 44#define IOB_AD_TRNG_256M 0x00000000 45#define IOB_AD_TRNG_2G 0x00000001 46#define IOB_AD_TRNG_128G 0x00000003 47 48#define IOB_TABLEBASE_REG 0x154 49 50/* Base of the 64 4-byte L1 registers */ 51#define IOB_XLT_L1_REGBASE 0x2b00 52 53/* Register to invalidate TLB entries */ 54#define IOB_AT_INVAL_TLB_REG 0x2d00 55 56/* The top two bits of the level 1 entry contains valid and type flags */ 57#define IOBMAP_L1E_V 0x40000000 58#define IOBMAP_L1E_V_B 0x80000000 59 60/* For big page entries, the bottom two bits contains flags */ 61#define IOBMAP_L1E_BIG_CACHED 0x00000002 62#define IOBMAP_L1E_BIG_PRIORITY 0x00000001 63 64/* For regular level 2 entries, top 2 bits contain valid and cache flags */ 65#define IOBMAP_L2E_V 0x80000000 66#define IOBMAP_L2E_V_CACHED 0xc0000000 67 68static void __iomem *iob; 69static u32 iob_l1_emptyval; 70static u32 iob_l2_emptyval; 71static u32 *iob_l2_base; 72 73static struct iommu_table iommu_table_iobmap; 74static int iommu_table_iobmap_inited; 75 76static int iobmap_build(struct iommu_table *tbl, long index, 77 long npages, unsigned long uaddr, 78 enum dma_data_direction direction, 79 unsigned long attrs) 80{ 81 u32 *ip; 82 u32 rpn; 83 unsigned long bus_addr; 84 85 pr_debug("iobmap: build at: %lx, %lx, addr: %lx\n", index, npages, uaddr); 86 87 bus_addr = (tbl->it_offset + index) << IOBMAP_PAGE_SHIFT; 88 89 ip = ((u32 *)tbl->it_base) + index; 90 91 while (npages--) { 92 rpn = __pa(uaddr) >> IOBMAP_PAGE_SHIFT; 93 94 *(ip++) = IOBMAP_L2E_V | rpn; 95 /* invalidate tlb, can be optimized more */ 96 out_le32(iob+IOB_AT_INVAL_TLB_REG, bus_addr >> 14); 97 98 uaddr += IOBMAP_PAGE_SIZE; 99 bus_addr += IOBMAP_PAGE_SIZE; 100 } 101 return 0; 102} 103 104 105static void iobmap_free(struct iommu_table *tbl, long index, 106 long npages) 107{ 108 u32 *ip; 109 unsigned long bus_addr; 110 111 pr_debug("iobmap: free at: %lx, %lx\n", index, npages); 112 113 bus_addr = (tbl->it_offset + index) << IOBMAP_PAGE_SHIFT; 114 115 ip = ((u32 *)tbl->it_base) + index; 116 117 while (npages--) { 118 *(ip++) = iob_l2_emptyval; 119 /* invalidate tlb, can be optimized more */ 120 out_le32(iob+IOB_AT_INVAL_TLB_REG, bus_addr >> 14); 121 bus_addr += IOBMAP_PAGE_SIZE; 122 } 123} 124 125static struct iommu_table_ops iommu_table_iobmap_ops = { 126 .set = iobmap_build, 127 .clear = iobmap_free 128}; 129 130static void iommu_table_iobmap_setup(void) 131{ 132 pr_debug(" -> %s\n", __func__); 133 iommu_table_iobmap.it_busno = 0; 134 iommu_table_iobmap.it_offset = 0; 135 iommu_table_iobmap.it_page_shift = IOBMAP_PAGE_SHIFT; 136 137 /* it_size is in number of entries */ 138 iommu_table_iobmap.it_size = 139 0x80000000 >> iommu_table_iobmap.it_page_shift; 140 141 /* Initialize the common IOMMU code */ 142 iommu_table_iobmap.it_base = (unsigned long)iob_l2_base; 143 iommu_table_iobmap.it_index = 0; 144 /* XXXOJN tune this to avoid IOB cache invals. 145 * Should probably be 8 (64 bytes) 146 */ 147 iommu_table_iobmap.it_blocksize = 4; 148 iommu_table_iobmap.it_ops = &iommu_table_iobmap_ops; 149 if (!iommu_init_table(&iommu_table_iobmap, 0, 0, 0)) 150 panic("Failed to initialize iommu table"); 151 152 pr_debug(" <- %s\n", __func__); 153} 154 155 156 157static void pci_dma_bus_setup_pasemi(struct pci_bus *bus) 158{ 159 pr_debug("pci_dma_bus_setup, bus %p, bus->self %p\n", bus, bus->self); 160 161 if (!iommu_table_iobmap_inited) { 162 iommu_table_iobmap_inited = 1; 163 iommu_table_iobmap_setup(); 164 } 165} 166 167 168static void pci_dma_dev_setup_pasemi(struct pci_dev *dev) 169{ 170 pr_debug("pci_dma_dev_setup, dev %p (%s)\n", dev, pci_name(dev)); 171 172#if !defined(CONFIG_PPC_PASEMI_IOMMU_DMA_FORCE) 173 /* For non-LPAR environment, don't translate anything for the DMA 174 * engine. The exception to this is if the user has enabled 175 * CONFIG_PPC_PASEMI_IOMMU_DMA_FORCE at build time. 176 */ 177 if (dev->vendor == 0x1959 && dev->device == 0xa007 && 178 !firmware_has_feature(FW_FEATURE_LPAR)) { 179 dev->dev.dma_ops = NULL; 180 /* 181 * Set the coherent DMA mask to prevent the iommu 182 * being used unnecessarily 183 */ 184 dev->dev.coherent_dma_mask = DMA_BIT_MASK(44); 185 return; 186 } 187#endif 188 189 set_iommu_table_base(&dev->dev, &iommu_table_iobmap); 190} 191 192static int __init iob_init(struct device_node *dn) 193{ 194 unsigned long tmp; 195 u32 regword; 196 int i; 197 198 pr_debug(" -> %s\n", __func__); 199 200 /* For 2G space, 8x64 pages (2^21 bytes) is max total l2 size */ 201 iob_l2_base = memblock_alloc_try_nid_raw(1UL << 21, 1UL << 21, 202 MEMBLOCK_LOW_LIMIT, 0x80000000, 203 NUMA_NO_NODE); 204 if (!iob_l2_base) 205 panic("%s: Failed to allocate %lu bytes align=0x%lx max_addr=%x\n", 206 __func__, 1UL << 21, 1UL << 21, 0x80000000); 207 208 pr_info("IOBMAP L2 allocated at: %p\n", iob_l2_base); 209 210 /* Allocate a spare page to map all invalid IOTLB pages. */ 211 tmp = memblock_phys_alloc(IOBMAP_PAGE_SIZE, IOBMAP_PAGE_SIZE); 212 if (!tmp) 213 panic("IOBMAP: Cannot allocate spare page!"); 214 /* Empty l1 is marked invalid */ 215 iob_l1_emptyval = 0; 216 /* Empty l2 is mapped to dummy page */ 217 iob_l2_emptyval = IOBMAP_L2E_V | (tmp >> IOBMAP_PAGE_SHIFT); 218 219 iob = ioremap(IOB_BASE, IOB_SIZE); 220 if (!iob) 221 panic("IOBMAP: Cannot map registers!"); 222 223 /* setup direct mapping of the L1 entries */ 224 for (i = 0; i < 64; i++) { 225 /* Each L1 covers 32MB, i.e. 8K entries = 32K of ram */ 226 regword = IOBMAP_L1E_V | (__pa(iob_l2_base + i*0x2000) >> 12); 227 out_le32(iob+IOB_XLT_L1_REGBASE+i*4, regword); 228 } 229 230 /* set 2GB translation window, based at 0 */ 231 regword = in_le32(iob+IOB_AD_REG); 232 regword &= ~IOB_AD_TRNG_MASK; 233 regword |= IOB_AD_TRNG_2G; 234 out_le32(iob+IOB_AD_REG, regword); 235 236 /* Enable translation */ 237 regword = in_le32(iob+IOBCOM_REG); 238 regword |= IOBCOM_ATEN; 239 out_le32(iob+IOBCOM_REG, regword); 240 241 pr_debug(" <- %s\n", __func__); 242 243 return 0; 244} 245 246 247/* These are called very early. */ 248void __init iommu_init_early_pasemi(void) 249{ 250 int iommu_off; 251 252#ifndef CONFIG_PPC_PASEMI_IOMMU 253 iommu_off = 1; 254#else 255 iommu_off = of_chosen && 256 of_get_property(of_chosen, "linux,iommu-off", NULL); 257#endif 258 if (iommu_off) 259 return; 260 261 iob_init(NULL); 262 263 pasemi_pci_controller_ops.dma_dev_setup = pci_dma_dev_setup_pasemi; 264 pasemi_pci_controller_ops.dma_bus_setup = pci_dma_bus_setup_pasemi; 265 set_pci_dma_ops(&dma_iommu_ops); 266}