18c2ecf20Sopenharmony_ci/* SPDX-License-Identifier: GPL-2.0-only */
28c2ecf20Sopenharmony_ci/*
38c2ecf20Sopenharmony_ci * Copyright 2014 Texas Instruments, Inc.
48c2ecf20Sopenharmony_ci *	Santosh Shilimkar <santosh.shilimkar@ti.com>
58c2ecf20Sopenharmony_ci */
68c2ecf20Sopenharmony_ci#ifndef __MEMORY_H
78c2ecf20Sopenharmony_ci#define __MEMORY_H
88c2ecf20Sopenharmony_ci
98c2ecf20Sopenharmony_ci#define KEYSTONE_LOW_PHYS_START		0x80000000ULL
108c2ecf20Sopenharmony_ci#define KEYSTONE_LOW_PHYS_SIZE		0x80000000ULL /* 2G */
118c2ecf20Sopenharmony_ci#define KEYSTONE_LOW_PHYS_END		(KEYSTONE_LOW_PHYS_START + \
128c2ecf20Sopenharmony_ci					 KEYSTONE_LOW_PHYS_SIZE - 1)
138c2ecf20Sopenharmony_ci
148c2ecf20Sopenharmony_ci#define KEYSTONE_HIGH_PHYS_START	0x800000000ULL
158c2ecf20Sopenharmony_ci#define KEYSTONE_HIGH_PHYS_SIZE		0x400000000ULL	/* 16G */
168c2ecf20Sopenharmony_ci#define KEYSTONE_HIGH_PHYS_END		(KEYSTONE_HIGH_PHYS_START + \
178c2ecf20Sopenharmony_ci					 KEYSTONE_HIGH_PHYS_SIZE - 1)
188c2ecf20Sopenharmony_ci#endif /* __MEMORY_H */
19