Tom Rini | 10e4779 | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
Simon Glass | aa5121f | 2014-06-02 22:04:48 -0600 | [diff] [blame] | 2 | /* |
| 3 | * |
| 4 | * Common functions for OMAP4/5 based boards |
| 5 | * |
| 6 | * (C) Copyright 2010 |
| 7 | * Texas Instruments, <www.ti.com> |
| 8 | * |
| 9 | * Author : |
| 10 | * Aneesh V <aneesh@ti.com> |
| 11 | * Steve Sakoman <steve@sakoman.com> |
Simon Glass | aa5121f | 2014-06-02 22:04:48 -0600 | [diff] [blame] | 12 | */ |
| 13 | |
| 14 | #include <common.h> |
Simon Glass | 1d91ba7 | 2019-11-14 12:57:37 -0700 | [diff] [blame] | 15 | #include <cpu_func.h> |
Simon Glass | 0f2af88 | 2020-05-10 11:40:05 -0600 | [diff] [blame] | 16 | #include <log.h> |
Simon Glass | aa5121f | 2014-06-02 22:04:48 -0600 | [diff] [blame] | 17 | #include <asm/cache.h> |
Simon Glass | 3ba929a | 2020-10-30 21:38:53 -0600 | [diff] [blame] | 18 | #include <asm/global_data.h> |
Simon Glass | aa5121f | 2014-06-02 22:04:48 -0600 | [diff] [blame] | 19 | |
| 20 | DECLARE_GLOBAL_DATA_PTR; |
| 21 | |
Keerthy | 711bb0b | 2016-09-14 10:43:29 +0530 | [diff] [blame] | 22 | /* |
| 23 | * Without LPAE short descriptors are used |
| 24 | * Set C - Cache Bit3 |
| 25 | * Set B - Buffer Bit2 |
| 26 | * The last 2 bits set to 0b10 |
| 27 | * Do Not set XN bit4 |
| 28 | * So value is 0xe |
| 29 | * |
| 30 | * With LPAE cache configuration happens via MAIR0 register |
| 31 | * AttrIndx value is 0x3 for picking byte3 for MAIR0 which has 0xFF. |
| 32 | * 0xFF maps to Cache writeback with Read and Write Allocate set |
| 33 | * The bits[1:0] should have the value 0b01 for the first level |
| 34 | * descriptor. |
| 35 | * So the value is 0xd |
| 36 | */ |
| 37 | |
| 38 | #ifdef CONFIG_ARMV7_LPAE |
| 39 | #define ARMV7_DCACHE_POLICY DCACHE_WRITEALLOC |
| 40 | #else |
| 41 | #define ARMV7_DCACHE_POLICY DCACHE_WRITEBACK & ~TTB_SECT_XN_MASK |
| 42 | #endif |
| 43 | |
Simon Glass | aa5121f | 2014-06-02 22:04:48 -0600 | [diff] [blame] | 44 | void enable_caches(void) |
| 45 | { |
Lokesh Vutla | cb2accd | 2018-05-03 20:34:49 +0530 | [diff] [blame] | 46 | |
| 47 | /* Enable I cache if not enabled */ |
| 48 | if (!icache_status()) |
| 49 | icache_enable(); |
| 50 | |
Simon Glass | aa5121f | 2014-06-02 22:04:48 -0600 | [diff] [blame] | 51 | dcache_enable(); |
| 52 | } |
| 53 | |
| 54 | void dram_bank_mmu_setup(int bank) |
| 55 | { |
Masahiro Yamada | f7ed78b | 2020-06-26 15:13:33 +0900 | [diff] [blame] | 56 | struct bd_info *bd = gd->bd; |
Simon Glass | aa5121f | 2014-06-02 22:04:48 -0600 | [diff] [blame] | 57 | int i; |
| 58 | |
Keerthy | 708bc29 | 2016-09-14 10:43:28 +0530 | [diff] [blame] | 59 | u32 start = bd->bi_dram[bank].start >> MMU_SECTION_SHIFT; |
| 60 | u32 size = bd->bi_dram[bank].size >> MMU_SECTION_SHIFT; |
Simon Glass | aa5121f | 2014-06-02 22:04:48 -0600 | [diff] [blame] | 61 | u32 end = start + size; |
| 62 | |
| 63 | debug("%s: bank: %d\n", __func__, bank); |
| 64 | for (i = start; i < end; i++) |
Keerthy | 711bb0b | 2016-09-14 10:43:29 +0530 | [diff] [blame] | 65 | set_section_dcache(i, ARMV7_DCACHE_POLICY); |
Simon Glass | aa5121f | 2014-06-02 22:04:48 -0600 | [diff] [blame] | 66 | } |