mirror of
https://source.denx.de/u-boot/u-boot.git
synced 2025-09-04 21:41:29 +02:00
When bringing in the series 'arm: dts: am62-beagleplay: Fix Beagleplay Ethernet"' I failed to notice that b4 noticed it was based on next and so took that as the base commit and merged that part of next to master. This reverts commit c8ffd1356d42223cbb8c86280a083cc3c93e6426, reversing changes made to 2ee6f3a5f7550de3599faef9704e166e5dcace35. Reported-by: Jonas Karlman <jonas@kwiboo.se> Signed-off-by: Tom Rini <trini@konsulko.com>
67 lines
1.4 KiB
C
67 lines
1.4 KiB
C
// SPDX-License-Identifier: GPL-2.0+
|
|
/*
|
|
*
|
|
* Common functions for OMAP4/5 based boards
|
|
*
|
|
* (C) Copyright 2010
|
|
* Texas Instruments, <www.ti.com>
|
|
*
|
|
* Author :
|
|
* Aneesh V <aneesh@ti.com>
|
|
* Steve Sakoman <steve@sakoman.com>
|
|
*/
|
|
|
|
#include <common.h>
|
|
#include <cpu_func.h>
|
|
#include <log.h>
|
|
#include <asm/cache.h>
|
|
#include <asm/global_data.h>
|
|
|
|
DECLARE_GLOBAL_DATA_PTR;
|
|
|
|
/*
|
|
* Without LPAE short descriptors are used
|
|
* Set C - Cache Bit3
|
|
* Set B - Buffer Bit2
|
|
* The last 2 bits set to 0b10
|
|
* Do Not set XN bit4
|
|
* So value is 0xe
|
|
*
|
|
* With LPAE cache configuration happens via MAIR0 register
|
|
* AttrIndx value is 0x3 for picking byte3 for MAIR0 which has 0xFF.
|
|
* 0xFF maps to Cache writeback with Read and Write Allocate set
|
|
* The bits[1:0] should have the value 0b01 for the first level
|
|
* descriptor.
|
|
* So the value is 0xd
|
|
*/
|
|
|
|
#ifdef CONFIG_ARMV7_LPAE
|
|
#define ARMV7_DCACHE_POLICY DCACHE_WRITEALLOC
|
|
#else
|
|
#define ARMV7_DCACHE_POLICY DCACHE_WRITEBACK & ~TTB_SECT_XN_MASK
|
|
#endif
|
|
|
|
void enable_caches(void)
|
|
{
|
|
|
|
/* Enable I cache if not enabled */
|
|
if (!icache_status())
|
|
icache_enable();
|
|
|
|
dcache_enable();
|
|
}
|
|
|
|
void dram_bank_mmu_setup(int bank)
|
|
{
|
|
struct bd_info *bd = gd->bd;
|
|
int i;
|
|
|
|
u32 start = bd->bi_dram[bank].start >> MMU_SECTION_SHIFT;
|
|
u32 size = bd->bi_dram[bank].size >> MMU_SECTION_SHIFT;
|
|
u32 end = start + size;
|
|
|
|
debug("%s: bank: %d\n", __func__, bank);
|
|
for (i = start; i < end; i++)
|
|
set_section_dcache(i, ARMV7_DCACHE_POLICY);
|
|
}
|