Stefan Roese | cb41033 | 2016-05-25 08:13:45 +0200 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2016 Stefan Roese <sr@denx.de> |
| 3 | * |
| 4 | * SPDX-License-Identifier: GPL-2.0+ |
| 5 | */ |
| 6 | |
| 7 | #include <common.h> |
| 8 | #include <dm.h> |
| 9 | #include <fdtdec.h> |
Masahiro Yamada | 75f82d0 | 2018-03-05 01:20:11 +0900 | [diff] [blame] | 10 | #include <linux/libfdt.h> |
Stefan Roese | cb41033 | 2016-05-25 08:13:45 +0200 | [diff] [blame] | 11 | #include <asm/io.h> |
| 12 | #include <asm/system.h> |
| 13 | #include <asm/arch/cpu.h> |
| 14 | #include <asm/arch/soc.h> |
| 15 | #include <asm/armv8/mmu.h> |
| 16 | |
| 17 | DECLARE_GLOBAL_DATA_PTR; |
| 18 | |
| 19 | /* Armada 7k/8k */ |
| 20 | #define MVEBU_RFU_BASE (MVEBU_REGISTER(0x6f0000)) |
| 21 | #define RFU_GLOBAL_SW_RST (MVEBU_RFU_BASE + 0x84) |
| 22 | #define RFU_SW_RESET_OFFSET 0 |
| 23 | |
Konstantin Porotchkin | 8f00f69 | 2016-12-19 17:04:42 +0200 | [diff] [blame] | 24 | /* |
| 25 | * The following table includes all memory regions for Armada 7k and |
| 26 | * 8k SoCs. The Armada 7k is missing the CP110 slave regions here. Lets |
| 27 | * define these regions at the beginning of the struct so that they |
| 28 | * can be easier removed later dynamically if an Armada 7k device is detected. |
| 29 | * For a detailed memory map, please see doc/mvebu/armada-8k-memory.txt |
| 30 | */ |
| 31 | #define ARMADA_7K8K_COMMON_REGIONS_START 2 |
Stefan Roese | cb41033 | 2016-05-25 08:13:45 +0200 | [diff] [blame] | 32 | static struct mm_region mvebu_mem_map[] = { |
Konstantin Porotchkin | 8f00f69 | 2016-12-19 17:04:42 +0200 | [diff] [blame] | 33 | /* Armada 80x0 memory regions include the CP1 (slave) units */ |
| 34 | { |
| 35 | /* SRAM, MMIO regions - CP110 slave region */ |
| 36 | .phys = 0xf4000000UL, |
| 37 | .virt = 0xf4000000UL, |
| 38 | .size = 0x02000000UL, /* 32MiB internal registers */ |
| 39 | .attrs = PTE_BLOCK_MEMTYPE(MT_DEVICE_NGNRNE) | |
| 40 | PTE_BLOCK_NON_SHARE |
| 41 | }, |
| 42 | { |
| 43 | /* PCI CP1 regions */ |
| 44 | .phys = 0xfa000000UL, |
| 45 | .virt = 0xfa000000UL, |
| 46 | .size = 0x04000000UL, /* 64MiB CP110 slave PCI space */ |
| 47 | .attrs = PTE_BLOCK_MEMTYPE(MT_DEVICE_NGNRNE) | |
| 48 | PTE_BLOCK_NON_SHARE |
| 49 | }, |
| 50 | /* Armada 80x0 and 70x0 common memory regions start here */ |
Stefan Roese | cb41033 | 2016-05-25 08:13:45 +0200 | [diff] [blame] | 51 | { |
| 52 | /* RAM */ |
| 53 | .phys = 0x0UL, |
| 54 | .virt = 0x0UL, |
| 55 | .size = 0x80000000UL, |
| 56 | .attrs = PTE_BLOCK_MEMTYPE(MT_NORMAL) | |
| 57 | PTE_BLOCK_INNER_SHARE |
| 58 | }, |
| 59 | { |
| 60 | /* SRAM, MMIO regions - AP806 region */ |
| 61 | .phys = 0xf0000000UL, |
| 62 | .virt = 0xf0000000UL, |
| 63 | .size = 0x01000000UL, /* 16MiB internal registers */ |
| 64 | .attrs = PTE_BLOCK_MEMTYPE(MT_DEVICE_NGNRNE) | |
| 65 | PTE_BLOCK_NON_SHARE |
| 66 | }, |
| 67 | { |
Stefan Roese | 5c22e30 | 2016-10-25 18:14:29 +0200 | [diff] [blame] | 68 | /* SRAM, MMIO regions - CP110 master region */ |
Stefan Roese | cb41033 | 2016-05-25 08:13:45 +0200 | [diff] [blame] | 69 | .phys = 0xf2000000UL, |
| 70 | .virt = 0xf2000000UL, |
| 71 | .size = 0x02000000UL, /* 32MiB internal registers */ |
| 72 | .attrs = PTE_BLOCK_MEMTYPE(MT_DEVICE_NGNRNE) | |
| 73 | PTE_BLOCK_NON_SHARE |
| 74 | }, |
| 75 | { |
Konstantin Porotchkin | 8f00f69 | 2016-12-19 17:04:42 +0200 | [diff] [blame] | 76 | /* PCI CP0 regions */ |
| 77 | .phys = 0xf6000000UL, |
| 78 | .virt = 0xf6000000UL, |
| 79 | .size = 0x04000000UL, /* 64MiB CP110 master PCI space */ |
Stefan Roese | 5c22e30 | 2016-10-25 18:14:29 +0200 | [diff] [blame] | 80 | .attrs = PTE_BLOCK_MEMTYPE(MT_DEVICE_NGNRNE) | |
| 81 | PTE_BLOCK_NON_SHARE |
| 82 | }, |
| 83 | { |
Stefan Roese | cb41033 | 2016-05-25 08:13:45 +0200 | [diff] [blame] | 84 | 0, |
| 85 | } |
| 86 | }; |
| 87 | |
| 88 | struct mm_region *mem_map = mvebu_mem_map; |
| 89 | |
Konstantin Porotchkin | 8f00f69 | 2016-12-19 17:04:42 +0200 | [diff] [blame] | 90 | void enable_caches(void) |
| 91 | { |
| 92 | /* |
| 93 | * Armada 7k is not equipped with the CP110 slave CP. In case this |
| 94 | * code runs on an Armada 7k device, lets remove the CP110 slave |
| 95 | * entries from the memory mapping by moving the start to the |
| 96 | * common regions. |
| 97 | */ |
| 98 | if (of_machine_is_compatible("marvell,armada7040")) |
| 99 | mem_map = &mvebu_mem_map[ARMADA_7K8K_COMMON_REGIONS_START]; |
| 100 | |
| 101 | icache_enable(); |
| 102 | dcache_enable(); |
| 103 | } |
| 104 | |
Stefan Roese | cb41033 | 2016-05-25 08:13:45 +0200 | [diff] [blame] | 105 | void reset_cpu(ulong ignored) |
| 106 | { |
| 107 | u32 reg; |
| 108 | |
| 109 | reg = readl(RFU_GLOBAL_SW_RST); |
| 110 | reg &= ~(1 << RFU_SW_RESET_OFFSET); |
| 111 | writel(reg, RFU_GLOBAL_SW_RST); |
| 112 | } |
Konstantin Porotchkin | e13b5ed | 2017-04-05 18:22:31 +0300 | [diff] [blame] | 113 | |
| 114 | /* |
| 115 | * TODO - implement this functionality using platform |
| 116 | * clock driver once it gets available |
| 117 | * Return NAND clock in Hz |
| 118 | */ |
| 119 | u32 mvebu_get_nand_clock(void) |
| 120 | { |
| 121 | unsigned long NAND_FLASH_CLK_CTRL = 0xF2440700UL; |
| 122 | unsigned long NF_CLOCK_SEL_MASK = 0x1; |
| 123 | u32 reg; |
| 124 | |
| 125 | reg = readl(NAND_FLASH_CLK_CTRL); |
| 126 | if (reg & NF_CLOCK_SEL_MASK) |
| 127 | return 400 * 1000000; |
| 128 | else |
| 129 | return 250 * 1000000; |
| 130 | } |