blob: 825b27bda9267b6ce549120b58c628c416865a11 [file] [log] [blame]
Gabe Blackd40be112013-10-09 23:45:07 -07001/*
2 * This file is part of the coreboot project.
3 *
4 * Copyright 2013 Google Inc.
5 * Copyright (c) 2013, NVIDIA CORPORATION. All rights reserved.
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; version 2 of the License.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
19 */
20
21#include <arch/io.h>
22#include <console/console.h>
23#include <soc/addressmap.h>
Jimmy Zhangb3655302014-07-02 17:45:18 -070024#include <soc/clock.h>
Julius Wernerf0d21ff32014-10-20 13:24:14 -070025#include <soc/flow.h>
26#include <soc/pmc.h>
27#include <soc/power.h>
Gabe Blackd40be112013-10-09 23:45:07 -070028
29static struct tegra_pmc_regs * const pmc = (void *)TEGRA_PMC_BASE;
Yen Lin58406262014-07-10 11:46:10 -070030static struct flow_ctlr * const flow = (void *)TEGRA_FLOW_BASE;
Gabe Blackd40be112013-10-09 23:45:07 -070031
32static int partition_powered(int id)
33{
34 return read32(&pmc->pwrgate_status) & (0x1 << id);
35}
36
Jimmy Zhangb3655302014-07-02 17:45:18 -070037static int partition_clamp_on(int id)
38{
39 return read32(&pmc->clamp_status) & (0x1 << id);
40}
41
Gabe Blackd40be112013-10-09 23:45:07 -070042static void power_ungate_partition(uint32_t id)
43{
44 printk(BIOS_INFO, "Ungating power partition %d.\n", id);
45
46 if (!partition_powered(id)) {
47 uint32_t pwrgate_toggle = read32(&pmc->pwrgate_toggle);
48 pwrgate_toggle &= ~(PMC_PWRGATE_TOGGLE_PARTID_MASK);
49 pwrgate_toggle |= (id << PMC_PWRGATE_TOGGLE_PARTID_SHIFT);
50 pwrgate_toggle |= PMC_PWRGATE_TOGGLE_START;
51 write32(pwrgate_toggle, &pmc->pwrgate_toggle);
52
53 // Wait for the request to be accepted.
54 while (read32(&pmc->pwrgate_toggle) & PMC_PWRGATE_TOGGLE_START)
55 ;
56 printk(BIOS_DEBUG, "Power gate toggle request accepted.\n");
57
58 // Wait for the partition to be powered.
59 while (!partition_powered(id))
60 ;
Jimmy Zhangb3655302014-07-02 17:45:18 -070061
62 // Wait for clamp off.
63 while (partition_clamp_on(id))
64 ;
Gabe Blackd40be112013-10-09 23:45:07 -070065 }
66
67 printk(BIOS_INFO, "Ungated power partition %d.\n", id);
68}
69
Jimmy Zhangb3655302014-07-02 17:45:18 -070070void power_enable_and_ungate_cpu(void)
Gabe Blackd40be112013-10-09 23:45:07 -070071{
Gabe Blackd40be112013-10-09 23:45:07 -070072 /*
Jimmy Zhangb3655302014-07-02 17:45:18 -070073 * Set CPUPWRGOOD_TIMER - APB clock is 1/2 of SCLK (150MHz),
74 * set it for 5ms as per SysEng (5ms * PCLK_KHZ * 1000 / 1s).
Gabe Blackd40be112013-10-09 23:45:07 -070075 */
Jimmy Zhangb3655302014-07-02 17:45:18 -070076 write32((TEGRA_PCLK_KHZ * 5), &pmc->cpupwrgood_timer);
Gabe Blackd40be112013-10-09 23:45:07 -070077
78 uint32_t cntrl = read32(&pmc->cntrl);
79 cntrl &= ~PMC_CNTRL_CPUPWRREQ_POLARITY;
80 cntrl |= PMC_CNTRL_CPUPWRREQ_OE;
81 write32(cntrl, &pmc->cntrl);
Gabe Blackd40be112013-10-09 23:45:07 -070082
Jimmy Zhangb3655302014-07-02 17:45:18 -070083 power_ungate_partition(POWER_PARTID_CRAIL);
84
Gabe Blackd40be112013-10-09 23:45:07 -070085 // Ungate power to the non-core parts of the fast cluster.
86 power_ungate_partition(POWER_PARTID_C0NC);
87
88 // Ungate power to CPU0 in the fast cluster.
89 power_ungate_partition(POWER_PARTID_CE0);
90}
Gabe Black4dc3e282014-05-06 15:33:37 -070091
92int power_reset_status(void)
93{
94 return read32(&pmc->rst_status) & 0x7;
95}
Yen Lin58406262014-07-10 11:46:10 -070096
97void ram_repair(void)
98{
99 // Request RAM repair for cluster 0
100 setbits_le32(&flow->ram_repair, RAM_REPAIR_REQ);
101 // Poll for completion
102 while (!(read32(&flow->ram_repair) & RAM_REPAIR_STS))
103 ;
104 // Request RAM repair for cluster 1
105 setbits_le32(&flow->ram_repair_cluster1, RAM_REPAIR_REQ);
106 // Poll for completion
107 while (!(read32(&flow->ram_repair_cluster1) & RAM_REPAIR_STS))
108 ;
109}