mmu.c (40d192b63d079db1f76cec9ae8ccbf461fda23e4) | mmu.c (db5b7169474882fabbd811a4cf5c1bae3157e677) |
---|---|
1/* 2 * linux/arch/arm/mm/mmu.c 3 * 4 * Copyright (C) 1995-2005 Russell King 5 * 6 * This program is free software; you can redistribute it and/or modify 7 * it under the terms of the GNU General Public License version 2 as 8 * published by the Free Software Foundation. --- 190 unchanged lines hidden (view full) --- 199 .domain = DOMAIN_IO, 200 }, 201 [MT_DEVICE_CACHED] = { /* ioremap_cached */ 202 .prot_pte = PROT_PTE_DEVICE | L_PTE_MT_DEV_CACHED, 203 .prot_l1 = PMD_TYPE_TABLE, 204 .prot_sect = PROT_SECT_DEVICE | PMD_SECT_WB, 205 .domain = DOMAIN_IO, 206 }, | 1/* 2 * linux/arch/arm/mm/mmu.c 3 * 4 * Copyright (C) 1995-2005 Russell King 5 * 6 * This program is free software; you can redistribute it and/or modify 7 * it under the terms of the GNU General Public License version 2 as 8 * published by the Free Software Foundation. --- 190 unchanged lines hidden (view full) --- 199 .domain = DOMAIN_IO, 200 }, 201 [MT_DEVICE_CACHED] = { /* ioremap_cached */ 202 .prot_pte = PROT_PTE_DEVICE | L_PTE_MT_DEV_CACHED, 203 .prot_l1 = PMD_TYPE_TABLE, 204 .prot_sect = PROT_SECT_DEVICE | PMD_SECT_WB, 205 .domain = DOMAIN_IO, 206 }, |
207 [MT_DEVICE_IXP2000] = { /* IXP2400 requires XCB=101 for on-chip I/O */ 208 .prot_pte = PROT_PTE_DEVICE | L_PTE_MT_DEV_IXP2000, 209 .prot_l1 = PMD_TYPE_TABLE, 210 .prot_sect = PROT_SECT_DEVICE | PMD_SECT_BUFFERABLE | 211 PMD_SECT_TEX(1), 212 .domain = DOMAIN_IO, 213 }, | |
214 [MT_DEVICE_WC] = { /* ioremap_wc */ 215 .prot_pte = PROT_PTE_DEVICE | L_PTE_MT_DEV_WC, 216 .prot_l1 = PMD_TYPE_TABLE, 217 .prot_sect = PROT_SECT_DEVICE | PMD_SECT_BUFFERABLE, 218 .domain = DOMAIN_IO, 219 }, 220 [MT_CACHECLEAN] = { 221 .prot_sect = PMD_TYPE_SECT | PMD_SECT_XN, --- 646 unchanged lines hidden --- | 207 [MT_DEVICE_WC] = { /* ioremap_wc */ 208 .prot_pte = PROT_PTE_DEVICE | L_PTE_MT_DEV_WC, 209 .prot_l1 = PMD_TYPE_TABLE, 210 .prot_sect = PROT_SECT_DEVICE | PMD_SECT_BUFFERABLE, 211 .domain = DOMAIN_IO, 212 }, 213 [MT_CACHECLEAN] = { 214 .prot_sect = PMD_TYPE_SECT | PMD_SECT_XN, --- 646 unchanged lines hidden --- |