mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-11-30 09:06:44 +07:00
bc581770cf
This adds the TCM interface to Linux, when active, it will detect and report TCM memories and sizes early in boot if present, introduce generic TCM memory handling, provide a generic TCM memory pool and select TCM memory for the U300 platform. See the Documentation/arm/tcm.txt for documentation. Signed-off-by: Linus Walleij <linus.walleij@stericsson.com> Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
51 lines
1.2 KiB
C
51 lines
1.2 KiB
C
/*
|
|
*
|
|
* arch/arm/mach-u300/include/mach/memory.h
|
|
*
|
|
*
|
|
* Copyright (C) 2007-2009 ST-Ericsson AB
|
|
* License terms: GNU General Public License (GPL) version 2
|
|
* Memory virtual/physical mapping constants.
|
|
* Author: Linus Walleij <linus.walleij@stericsson.com>
|
|
* Author: Jonas Aaberg <jonas.aberg@stericsson.com>
|
|
*/
|
|
|
|
#ifndef __MACH_MEMORY_H
|
|
#define __MACH_MEMORY_H
|
|
|
|
#ifdef CONFIG_MACH_U300_DUAL_RAM
|
|
|
|
#define PHYS_OFFSET UL(0x48000000)
|
|
#define BOOT_PARAMS_OFFSET (PHYS_OFFSET + 0x100)
|
|
|
|
#else
|
|
|
|
#ifdef CONFIG_MACH_U300_2MB_ALIGNMENT_FIX
|
|
#define PHYS_OFFSET (0x28000000 + \
|
|
(CONFIG_MACH_U300_ACCESS_MEM_SIZE - \
|
|
(CONFIG_MACH_U300_ACCESS_MEM_SIZE & 1))*1024*1024)
|
|
#else
|
|
#define PHYS_OFFSET (0x28000000 + \
|
|
(CONFIG_MACH_U300_ACCESS_MEM_SIZE + \
|
|
(CONFIG_MACH_U300_ACCESS_MEM_SIZE & 1))*1024*1024)
|
|
#endif
|
|
#define BOOT_PARAMS_OFFSET (0x28000000 + \
|
|
(CONFIG_MACH_U300_ACCESS_MEM_SIZE + \
|
|
(CONFIG_MACH_U300_ACCESS_MEM_SIZE & 1))*1024*1024 + 0x100)
|
|
#endif
|
|
|
|
/*
|
|
* TCM memory whereabouts
|
|
*/
|
|
#define ITCM_OFFSET 0xffff2000
|
|
#define ITCM_END 0xffff3fff
|
|
#define DTCM_OFFSET 0xffff4000
|
|
#define DTCM_END 0xffff5fff
|
|
|
|
/*
|
|
* We enable a real big DMA buffer if need be.
|
|
*/
|
|
#define CONSISTENT_DMA_SIZE SZ_4M
|
|
|
|
#endif
|