Tom Rini | 83d290c | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
Stephen Warren | 376cb1a | 2015-10-05 12:09:01 -0600 | [diff] [blame] | 2 | /* |
| 3 | * (C) Copyright 2014 - 2015 Xilinx, Inc. |
| 4 | * Michal Simek <michal.simek@xilinx.com> |
Michal Simek | 274ccb5 | 2019-01-17 08:22:43 +0100 | [diff] [blame] | 5 | * (This file derived from arch/arm/mach-zynqmp/cpu.c) |
Stephen Warren | 376cb1a | 2015-10-05 12:09:01 -0600 | [diff] [blame] | 6 | * |
| 7 | * Copyright (c) 2015, NVIDIA CORPORATION. All rights reserved. |
Stephen Warren | 376cb1a | 2015-10-05 12:09:01 -0600 | [diff] [blame] | 8 | */ |
| 9 | |
| 10 | #include <common.h> |
| 11 | #include <asm/system.h> |
| 12 | #include <asm/armv8/mmu.h> |
| 13 | |
Stephen Warren | cdcf555 | 2018-01-04 11:07:14 -0700 | [diff] [blame] | 14 | /* size: IO + NR_DRAM_BANKS + terminator */ |
| 15 | struct mm_region tegra_mem_map[1 + CONFIG_NR_DRAM_BANKS + 1] = { |
Alexander Graf | b30291a | 2016-03-04 01:09:50 +0100 | [diff] [blame] | 16 | { |
York Sun | cd4b0c5 | 2016-06-24 16:46:22 -0700 | [diff] [blame] | 17 | .virt = 0x0UL, |
| 18 | .phys = 0x0UL, |
Alexander Graf | b30291a | 2016-03-04 01:09:50 +0100 | [diff] [blame] | 19 | .size = 0x80000000UL, |
| 20 | .attrs = PTE_BLOCK_MEMTYPE(MT_DEVICE_NGNRNE) | |
| 21 | PTE_BLOCK_NON_SHARE | |
| 22 | PTE_BLOCK_PXN | PTE_BLOCK_UXN |
| 23 | }, { |
York Sun | cd4b0c5 | 2016-06-24 16:46:22 -0700 | [diff] [blame] | 24 | .virt = 0x80000000UL, |
| 25 | .phys = 0x80000000UL, |
Stephen Warren | d40d69e | 2016-10-10 09:50:55 -0600 | [diff] [blame] | 26 | .size = 0x80000000UL, |
Alexander Graf | b30291a | 2016-03-04 01:09:50 +0100 | [diff] [blame] | 27 | .attrs = PTE_BLOCK_MEMTYPE(MT_NORMAL) | |
| 28 | PTE_BLOCK_INNER_SHARE |
| 29 | }, { |
| 30 | /* List terminator */ |
| 31 | 0, |
Stephen Warren | 376cb1a | 2015-10-05 12:09:01 -0600 | [diff] [blame] | 32 | } |
Alexander Graf | b30291a | 2016-03-04 01:09:50 +0100 | [diff] [blame] | 33 | }; |
Stephen Warren | 376cb1a | 2015-10-05 12:09:01 -0600 | [diff] [blame] | 34 | |
Alexander Graf | b30291a | 2016-03-04 01:09:50 +0100 | [diff] [blame] | 35 | struct mm_region *mem_map = tegra_mem_map; |