aboutsummaryrefslogtreecommitdiff
path: root/src/soc/nvidia/tegra132/include/soc/id.h
blob: 907285614c84537247a28c13e79d0db5c5fc955b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
/*
 * This file is part of the coreboot project.
 *
 * Copyright 2014 Google Inc.
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; version 2 of the License.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 */

#ifndef __SOC_NVIDIA_TEGRA132_INCLUDE_SOC_ID_H__
#define __SOC_NVIDIA_TEGRA132_INCLUDE_SOC_ID_H__


#include <arch/io.h>
#include <soc/addressmap.h>

static inline int context_avp(void)
{
	const uint32_t avp_id = 0xaaaaaaaa;
	void * const uptag = (void *)(uintptr_t)TEGRA_PG_UP_BASE;

	return read32(uptag) == avp_id;
}

#endif /* __SOC_NVIDIA_TEGRA132_INCLUDE_SOC_ID_H__ */