blob: 32252a28b40ae174c197c584129e71b66c8e0686 [file] [log] [blame]
Varun Wadekarb316e242015-05-19 16:48:04 +05301/*
Varun Wadekar952a5552018-02-13 20:22:19 -08002 * Copyright (c) 2015-2018, ARM Limited and Contributors. All rights reserved.
Varun Wadekarb316e242015-05-19 16:48:04 +05303 *
dp-armfa3cf0b2017-05-03 09:38:09 +01004 * SPDX-License-Identifier: BSD-3-Clause
Varun Wadekarb316e242015-05-19 16:48:04 +05305 */
6
Antonio Nino Diaz5eb88372018-11-08 10:20:19 +00007#ifndef PMC_H
8#define PMC_H
Varun Wadekarb316e242015-05-19 16:48:04 +05309
Antonio Nino Diaze0f90632018-12-14 00:18:21 +000010#include <lib/mmio.h>
11#include <lib/utils_def.h>
Varun Wadekar952a5552018-02-13 20:22:19 -080012#include <stdbool.h>
Antonio Nino Diaze0f90632018-12-14 00:18:21 +000013
Varun Wadekarb316e242015-05-19 16:48:04 +053014#include <tegra_def.h>
15
Anthony Zhouc33c1e32017-03-13 16:47:58 +080016#define PMC_CONFIG U(0x0)
kalyani chidambaramb3873aa2018-04-09 14:40:02 -070017#define PMC_IO_DPD_SAMPLE U(0x20)
kalyani chidambarama1ad9b72018-03-06 16:36:57 -080018#define PMC_DPD_ENABLE_0 U(0x24)
Anthony Zhouc33c1e32017-03-13 16:47:58 +080019#define PMC_PWRGATE_STATUS U(0x38)
20#define PMC_PWRGATE_TOGGLE U(0x30)
kalyani chidambarama1ad9b72018-03-06 16:36:57 -080021#define PMC_SECURE_SCRATCH0 U(0xb0)
22#define PMC_SECURE_SCRATCH5 U(0xc4)
23#define PMC_CRYPTO_OP_0 U(0xf4)
Anthony Zhouc33c1e32017-03-13 16:47:58 +080024#define PMC_TOGGLE_START U(0x100)
25#define PMC_SCRATCH39 U(0x138)
kalyani chidambaramb3873aa2018-04-09 14:40:02 -070026#define PMC_SCRATCH41 U(0x140)
kalyani chidambarama1ad9b72018-03-06 16:36:57 -080027#define PMC_SECURE_SCRATCH6 U(0x224)
28#define PMC_SECURE_SCRATCH7 U(0x228)
Anthony Zhouc33c1e32017-03-13 16:47:58 +080029#define PMC_SECURE_DISABLE2 U(0x2c4)
30#define PMC_SECURE_DISABLE2_WRITE22_ON (U(1) << 28)
kalyani chidambarama1ad9b72018-03-06 16:36:57 -080031#define PMC_SECURE_SCRATCH8 U(0x300)
32#define PMC_SECURE_SCRATCH79 U(0x41c)
33#define PMC_FUSE_CONTROL_0 U(0x450)
Anthony Zhouc33c1e32017-03-13 16:47:58 +080034#define PMC_SECURE_SCRATCH22 U(0x338)
35#define PMC_SECURE_DISABLE3 U(0x2d8)
36#define PMC_SECURE_DISABLE3_WRITE34_ON (U(1) << 20)
37#define PMC_SECURE_DISABLE3_WRITE35_ON (U(1) << 22)
38#define PMC_SECURE_SCRATCH34 U(0x368)
39#define PMC_SECURE_SCRATCH35 U(0x36c)
kalyani chidambarama1ad9b72018-03-06 16:36:57 -080040#define PMC_SECURE_SCRATCH80 U(0xa98)
41#define PMC_SECURE_SCRATCH119 U(0xb34)
Varun Wadekarf07d6de2018-02-27 14:33:57 -080042#define PMC_SCRATCH201 U(0x844)
Varun Wadekarb316e242015-05-19 16:48:04 +053043
44static inline uint32_t tegra_pmc_read_32(uint32_t off)
45{
46 return mmio_read_32(TEGRA_PMC_BASE + off);
47}
48
49static inline void tegra_pmc_write_32(uint32_t off, uint32_t val)
50{
51 mmio_write_32(TEGRA_PMC_BASE + off, val);
52}
53
Varun Wadekar952a5552018-02-13 20:22:19 -080054void tegra_pmc_cpu_on(int32_t cpu);
Varun Wadekarb316e242015-05-19 16:48:04 +053055void tegra_pmc_cpu_setup(uint64_t reset_addr);
Varun Wadekar952a5552018-02-13 20:22:19 -080056bool tegra_pmc_is_last_on_cpu(void);
Varun Wadekarb316e242015-05-19 16:48:04 +053057void tegra_pmc_lock_cpu_vectors(void);
kalyani chidambaramb3873aa2018-04-09 14:40:02 -070058void tegra_pmc_resume(void);
Varun Wadekarb316e242015-05-19 16:48:04 +053059__dead2 void tegra_pmc_system_reset(void);
60
Antonio Nino Diaz5eb88372018-11-08 10:20:19 +000061#endif /* PMC_H */