]> git.ipfire.org Git - thirdparty/u-boot.git/blame - arch/arm/include/asm/arch-tegra/ap.h
Revert "Merge patch series "arm: dts: am62-beagleplay: Fix Beagleplay Ethernet""
[thirdparty/u-boot.git] / arch / arm / include / asm / arch-tegra / ap.h
CommitLineData
83d290c5 1/* SPDX-License-Identifier: GPL-2.0+ */
74652cf6 2/*
7aaa5a60 3 * (C) Copyright 2010-2015
74652cf6 4 * NVIDIA Corporation <www.nvidia.com>
74652cf6
TW
5 */
6#include <asm/types.h>
7
8/* Stabilization delays, in usec */
b2871037 9#define PLL_STABILIZATION_DELAY (300)
74652cf6
TW
10#define IO_STABILIZATION_DELAY (1000)
11
74652cf6
TW
12#define PLLX_ENABLED (1 << 30)
13#define CCLK_BURST_POLICY 0x20008888
14#define SUPER_CCLK_DIVIDER 0x80000000
15
16/* Calculate clock fractional divider value from ref and target frequencies */
b2871037 17#define CLK_DIVIDER(REF, FREQ) ((((REF) * 2) / FREQ) - 2)
74652cf6
TW
18
19/* Calculate clock frequency value from reference and clock divider value */
b2871037 20#define CLK_FREQUENCY(REF, REG) (((REF) * 2) / (REG + 2))
74652cf6
TW
21
22/* AVP/CPU ID */
23#define PG_UP_TAG_0_PID_CPU 0x55555555 /* CPU aka "a9" aka "mpcore" */
b2871037 24#define PG_UP_TAG_0 0x0
74652cf6 25
b2871037
TW
26/* AP base physical address of internal SRAM */
27#define NV_PA_BASE_SRAM 0x40000000
74652cf6
TW
28
29#define EXCEP_VECTOR_CPU_RESET_VECTOR (NV_PA_EVP_BASE + 0x100)
30#define CSITE_CPU_DBG0_LAR (NV_PA_CSITE_BASE + 0x10FB0)
31#define CSITE_CPU_DBG1_LAR (NV_PA_CSITE_BASE + 0x12FB0)
32
33#define FLOW_CTLR_HALT_COP_EVENTS (NV_PA_FLOW_BASE + 4)
34#define FLOW_MODE_STOP 2
35#define HALT_COP_EVENT_JTAG (1 << 28)
36#define HALT_COP_EVENT_IRQ_1 (1 << 11)
37#define HALT_COP_EVENT_FIQ_1 (1 << 9)
38
210576fc
SG
39/* This is the main entry into U-Boot, used by the Cortex-A9 */
40extern void _start(void);
d515362d
SG
41
42/**
49493cb7 43 * Works out the SOC/SKU type used for clocks settings
d515362d 44 *
185f812c 45 * Return: SOC type - see TEGRA_SOC...
d515362d 46 */
49493cb7
TW
47int tegra_get_chip_sku(void);
48
49/**
50 * Returns the pure SOC (chip ID) from the HIDREV register
51 *
185f812c 52 * Return: SOC ID - see CHIPID_TEGRAxx...
49493cb7
TW
53 */
54int tegra_get_chip(void);
55
56/**
57 * Returns the SKU ID from the sku_info register
58 *
185f812c 59 * Return: SKU ID - see SKU_ID_Txx...
49493cb7
TW
60 */
61int tegra_get_sku_info(void);
62
63/* Do any chip-specific cache config */
d0edce4f 64void config_cache(void);
df3443df 65
73c38934
SW
66#if defined(CONFIG_TEGRA_SUPPORT_NON_SECURE)
67bool tegra_cpu_is_non_secure(void);
68#endif