Michal Simek | 1d6c54e | 2018-04-12 17:39:46 +0200 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0 |
| 2 | /* |
| 3 | * Copyright (C) 2018 Xilinx, Inc. (Michal Simek) |
| 4 | */ |
| 5 | |
| 6 | #include <common.h> |
Simon Glass | 9a3b4ce | 2019-12-28 10:45:01 -0700 | [diff] [blame] | 7 | #include <cpu_func.h> |
Simon Glass | 691d719 | 2020-05-10 11:40:02 -0600 | [diff] [blame] | 8 | #include <init.h> |
Michal Simek | 1d6c54e | 2018-04-12 17:39:46 +0200 | [diff] [blame] | 9 | #include <asm/armv7_mpu.h> |
Simon Glass | 401d1c4 | 2020-10-30 21:38:53 -0600 | [diff] [blame] | 10 | #include <asm/global_data.h> |
Michal Simek | 1d6c54e | 2018-04-12 17:39:46 +0200 | [diff] [blame] | 11 | |
| 12 | DECLARE_GLOBAL_DATA_PTR; |
| 13 | |
| 14 | struct mpu_region_config region_config[] = { |
Michal Simek | e3259a7 | 2020-09-14 16:33:46 +0200 | [diff] [blame] | 15 | { 0x00000000, REGION_0, XN_EN, PRIV_RW_USR_RW, |
| 16 | SHARED_WRITE_BUFFERED, REGION_4GB }, |
| 17 | { 0x00000000, REGION_1, XN_DIS, PRIV_RW_USR_RW, |
Michal Simek | 1d6c54e | 2018-04-12 17:39:46 +0200 | [diff] [blame] | 18 | O_I_WB_RD_WR_ALLOC, REGION_1GB }, |
| 19 | }; |
| 20 | |
| 21 | int arch_cpu_init(void) |
| 22 | { |
| 23 | gd->cpu_clk = CONFIG_CPU_FREQ_HZ; |
| 24 | |
Michal Simek | e3259a7 | 2020-09-14 16:33:46 +0200 | [diff] [blame] | 25 | setup_mpu_regions(region_config, ARRAY_SIZE(region_config)); |
Michal Simek | 1d6c54e | 2018-04-12 17:39:46 +0200 | [diff] [blame] | 26 | |
| 27 | return 0; |
| 28 | } |
| 29 | |
| 30 | /* |
| 31 | * Perform the low-level reset. |
| 32 | */ |
| 33 | void reset_cpu(ulong addr) |
| 34 | { |
| 35 | while (1) |
| 36 | ; |
| 37 | } |