mirror of
https://github.com/torvalds/linux.git
synced 2024-11-22 20:22:09 +00:00
75a6faf617
Based on 1 normalized pattern(s): this program is free software you can redistribute it and or modify it under the terms and conditions of the gnu general public license version 2 as published by the free software foundation extracted by the scancode license scanner the SPDX license identifier GPL-2.0-only has been chosen to replace the boilerplate/reference in 101 file(s). Signed-off-by: Thomas Gleixner <tglx@linutronix.de> Reviewed-by: Allison Randal <allison@lohutok.net> Cc: linux-spdx@vger.kernel.org Link: https://lkml.kernel.org/r/20190531190113.822954939@linutronix.de Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
22 lines
662 B
C
22 lines
662 B
C
/* SPDX-License-Identifier: GPL-2.0-only */
|
|
/*
|
|
* Copyright 2014 Texas Instruments, Inc.
|
|
* Santosh Shilimkar <santosh.shilimkar@ti.com>
|
|
*/
|
|
#ifndef __MEMORY_H
|
|
#define __MEMORY_H
|
|
|
|
#define MAX_PHYSMEM_BITS 36
|
|
#define SECTION_SIZE_BITS 34
|
|
|
|
#define KEYSTONE_LOW_PHYS_START 0x80000000ULL
|
|
#define KEYSTONE_LOW_PHYS_SIZE 0x80000000ULL /* 2G */
|
|
#define KEYSTONE_LOW_PHYS_END (KEYSTONE_LOW_PHYS_START + \
|
|
KEYSTONE_LOW_PHYS_SIZE - 1)
|
|
|
|
#define KEYSTONE_HIGH_PHYS_START 0x800000000ULL
|
|
#define KEYSTONE_HIGH_PHYS_SIZE 0x400000000ULL /* 16G */
|
|
#define KEYSTONE_HIGH_PHYS_END (KEYSTONE_HIGH_PHYS_START + \
|
|
KEYSTONE_HIGH_PHYS_SIZE - 1)
|
|
#endif /* __MEMORY_H */
|