2019-05-28 10:10:04 -07:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0-only */
|
2012-01-06 10:43:22 +00:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2012, NVIDIA CORPORATION. All rights reserved.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __MACH_TEGRA_IRAMMAP_H
|
|
|
|
#define __MACH_TEGRA_IRAMMAP_H
|
|
|
|
|
2019-05-14 15:46:51 -07:00
|
|
|
#include <linux/sizes.h>
|
2012-01-06 10:43:22 +00:00
|
|
|
|
|
|
|
/* The first 1K of IRAM is permanently reserved for the CPU reset handler */
|
|
|
|
#define TEGRA_IRAM_RESET_HANDLER_OFFSET 0
|
|
|
|
#define TEGRA_IRAM_RESET_HANDLER_SIZE SZ_1K
|
|
|
|
|
2013-08-20 16:19:15 -06:00
|
|
|
/*
|
|
|
|
* This area is used for LPx resume vector, only while LPx power state is
|
|
|
|
* active. At other times, the AVP may use this area for arbitrary purposes
|
|
|
|
*/
|
|
|
|
#define TEGRA_IRAM_LPx_RESUME_AREA (TEGRA_IRAM_BASE + SZ_4K)
|
|
|
|
|
2012-01-06 10:43:22 +00:00
|
|
|
#endif
|