blob: 17145e8e6a80a0c175c65307cbb0251762af6881 [file] [log] [blame]
Varun Wadekarb316e242015-05-19 16:48:04 +05301/*
Anthony Zhou59fd6152017-03-13 15:34:08 +08002 * Copyright (c) 2015-2017, ARM Limited and Contributors. All rights reserved.
Varun Wadekarb316e242015-05-19 16:48:04 +05303 *
4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are met:
6 *
7 * Redistributions of source code must retain the above copyright notice, this
8 * list of conditions and the following disclaimer.
9 *
10 * Redistributions in binary form must reproduce the above copyright notice,
11 * this list of conditions and the following disclaimer in the documentation
12 * and/or other materials provided with the distribution.
13 *
14 * Neither the name of ARM nor the names of its contributors may be used
15 * to endorse or promote products derived from this software without specific
16 * prior written permission.
17 *
18 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
19 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
20 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
21 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
22 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
23 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
24 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
25 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
26 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
27 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
28 * POSSIBILITY OF SUCH DAMAGE.
29 */
30
31#ifndef __FLOWCTRL_H__
32#define __FLOWCTRL_H__
33
34#include <mmio.h>
35#include <tegra_def.h>
36
Anthony Zhou59fd6152017-03-13 15:34:08 +080037#define FLOWCTRL_HALT_CPU0_EVENTS 0x0U
38#define FLOWCTRL_WAITEVENT (2U << 29)
39#define FLOWCTRL_WAIT_FOR_INTERRUPT (4U << 29)
40#define FLOWCTRL_JTAG_RESUME (1U << 28)
41#define FLOWCTRL_HALT_SCLK (1U << 27)
42#define FLOWCTRL_HALT_LIC_IRQ (1U << 11)
43#define FLOWCTRL_HALT_LIC_FIQ (1U << 10)
44#define FLOWCTRL_HALT_GIC_IRQ (1U << 9)
45#define FLOWCTRL_HALT_GIC_FIQ (1U << 8)
46#define FLOWCTRL_HALT_BPMP_EVENTS 0x4U
47#define FLOWCTRL_CPU0_CSR 0x8U
48#define FLOW_CTRL_CSR_PWR_OFF_STS (1U << 16)
49#define FLOWCTRL_CSR_INTR_FLAG (1U << 15)
50#define FLOWCTRL_CSR_EVENT_FLAG (1U << 14)
51#define FLOWCTRL_CSR_IMMEDIATE_WAKE (1U << 3)
52#define FLOWCTRL_CSR_ENABLE (1U << 0)
53#define FLOWCTRL_HALT_CPU1_EVENTS 0x14U
54#define FLOWCTRL_CPU1_CSR 0x18U
55#define FLOWCTRL_CC4_CORE0_CTRL 0x6cU
56#define FLOWCTRL_WAIT_WFI_BITMAP 0x100U
57#define FLOWCTRL_L2_FLUSH_CONTROL 0x94U
58#define FLOWCTRL_BPMP_CLUSTER_CONTROL 0x98U
59#define FLOWCTRL_BPMP_CLUSTER_PWRON_LOCK (1U << 2)
Varun Wadekarb316e242015-05-19 16:48:04 +053060
Anthony Zhou59fd6152017-03-13 15:34:08 +080061#define FLOWCTRL_ENABLE_EXT 12U
62#define FLOWCTRL_ENABLE_EXT_MASK 3U
63#define FLOWCTRL_PG_CPU_NONCPU 0x1U
64#define FLOWCTRL_TURNOFF_CPURAIL 0x2U
Varun Wadekarb316e242015-05-19 16:48:04 +053065
66static inline uint32_t tegra_fc_read_32(uint32_t off)
67{
68 return mmio_read_32(TEGRA_FLOWCTRL_BASE + off);
69}
70
71static inline void tegra_fc_write_32(uint32_t off, uint32_t val)
72{
73 mmio_write_32(TEGRA_FLOWCTRL_BASE + off, val);
74}
75
Varun Wadekarb316e242015-05-19 16:48:04 +053076void tegra_fc_cluster_idle(uint32_t midr);
Varun Wadekarb2baa892015-08-27 10:25:29 +053077void tegra_fc_cpu_powerdn(uint32_t mpidr);
Varun Wadekarb316e242015-05-19 16:48:04 +053078void tegra_fc_cluster_powerdn(uint32_t midr);
79void tegra_fc_soc_powerdn(uint32_t midr);
80void tegra_fc_cpu_on(int cpu);
81void tegra_fc_cpu_off(int cpu);
82void tegra_fc_lock_active_cluster(void);
83void tegra_fc_reset_bpmp(void);
84
85#endif /* __FLOWCTRL_H__ */