hekate/bdk/soc/ccplex.c

111 lines
3.6 KiB
C
Raw Normal View History

2018-03-26 23:04:16 +00:00
/*
2018-08-05 11:40:32 +00:00
* Copyright (c) 2018 naehrwert
* Copyright (c) 2018-2022 CTCaer
2018-08-05 11:40:32 +00:00
*
* This program is free software; you can redistribute it and/or modify it
* under the terms and conditions of the GNU General Public License,
* version 2, as published by the Free Software Foundation.
*
* This program is distributed in the hope 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.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
2018-03-26 23:04:16 +00:00
#include <memory_map.h>
#include <soc/ccplex.h>
2020-06-26 16:02:37 +00:00
#include <soc/hw_init.h>
#include <soc/i2c.h>
#include <soc/clock.h>
#include <soc/pmc.h>
#include <soc/t210.h>
#include <power/max77620.h>
#include <power/max7762x.h>
2020-06-26 16:02:37 +00:00
#include <power/max77812.h>
#include <utils/util.h>
2020-06-26 16:02:37 +00:00
void _ccplex_enable_power_t210()
{
// Configure GPIO5 and enable output in order to power CPU pmic.
max77620_config_gpio(5, MAX77620_GPIO_OUTPUT_ENABLE);
// Configure CPU pmic.
2018-11-10 12:11:42 +00:00
// 1-3.x: MAX77621_NFSR_ENABLE.
// 1.0.0-3.x: MAX77621_T_JUNCTION_120 | MAX77621_CKKADV_TRIP_DISABLE | MAX77621_INDUCTOR_NOMINAL.
max77621_config_default(REGULATOR_CPU0, MAX77621_CTRL_HOS_CFG);
// Set voltage and enable cores power.
max7762x_regulator_set_voltage(REGULATOR_CPU0, 950000);
max7762x_regulator_enable(REGULATOR_CPU0, true);
}
2020-06-26 16:02:37 +00:00
void _ccplex_enable_power_t210b01()
{
// Set voltage and enable cores power.
max7762x_regulator_set_voltage(REGULATOR_CPU1, 800000);
max7762x_regulator_enable(REGULATOR_CPU1, true);
2020-06-26 16:02:37 +00:00
}
2020-06-13 22:09:17 +00:00
void ccplex_boot_cpu0(u32 entry)
{
2018-08-05 11:40:32 +00:00
// Set ACTIVE_CLUSER to FAST.
2022-06-25 02:42:19 +00:00
FLOW_CTLR(FLOW_CTLR_BPMP_CLUSTER_CONTROL) &= ~CLUSTER_CTRL_ACTIVE_SLOW;
2020-06-26 16:02:37 +00:00
if (hw_get_chip_id() == GP_HIDREV_MAJOR_T210)
_ccplex_enable_power_t210();
else
_ccplex_enable_power_t210b01();
clock_enable_pllx();
// Configure MSELECT source and enable clock to 102MHz.
2018-06-08 09:42:24 +00:00
CLOCK(CLK_RST_CONTROLLER_CLK_SOURCE_MSELECT) = (CLOCK(CLK_RST_CONTROLLER_CLK_SOURCE_MSELECT) & 0x1FFFFF00) | 6;
2022-07-11 19:10:11 +00:00
CLOCK(CLK_RST_CONTROLLER_CLK_ENB_V_SET) = BIT(CLK_V_MSELECT);
2018-05-01 05:15:48 +00:00
2018-08-05 11:40:32 +00:00
// Configure initial CPU clock frequency and enable clock.
CLOCK(CLK_RST_CONTROLLER_CCLK_BURST_POLICY) = 0x20008888; // PLLX_OUT0_LJ.
2018-05-01 05:15:48 +00:00
CLOCK(CLK_RST_CONTROLLER_SUPER_CCLK_DIVIDER) = 0x80000000;
2022-07-11 19:10:11 +00:00
CLOCK(CLK_RST_CONTROLLER_CLK_ENB_V_SET) = BIT(CLK_V_CPUG);
clock_enable_coresight();
2018-08-05 11:40:32 +00:00
// CAR2PMC_CPU_ACK_WIDTH should be set to 0.
2018-06-08 09:42:24 +00:00
CLOCK(CLK_RST_CONTROLLER_CPU_SOFTRST_CTRL2) &= 0xFFFFF000;
2020-12-26 15:20:26 +00:00
// Enable CPU main rail.
pmc_enable_partition(POWER_RAIL_CRAIL, ENABLE);
// Enable cluster 0 non-CPU rail.
2020-12-26 15:20:26 +00:00
pmc_enable_partition(POWER_RAIL_C0NC, ENABLE);
// Enable CPU0 rail.
pmc_enable_partition(POWER_RAIL_CE0, ENABLE);
2022-06-25 02:42:19 +00:00
// Request and wait for RAM repair. Needed for the Fast cluster.
FLOW_CTLR(FLOW_CTLR_RAM_REPAIR) = RAM_REPAIR_REQ;
while (!(FLOW_CTLR(FLOW_CTLR_RAM_REPAIR) & RAM_REPAIR_STS))
;
2018-11-10 12:11:42 +00:00
EXCP_VEC(EVP_CPU_RESET_VECTOR) = 0;
2018-08-05 11:40:32 +00:00
// Set reset vector.
2019-09-09 13:56:37 +00:00
SB(SB_AA64_RESET_LOW) = entry | SB_AA64_RST_AARCH64_MODE_EN;
SB(SB_AA64_RESET_HIGH) = 0;
2018-08-05 11:40:32 +00:00
// Non-secure reset vector write disable.
2019-09-09 13:56:37 +00:00
SB(SB_CSR) = SB_CSR_NS_RST_VEC_WR_DIS;
2018-05-01 05:15:48 +00:00
(void)SB(SB_CSR);
2019-12-04 19:31:39 +00:00
// Tighten up the security aperture.
// MC(MC_TZ_SECURITY_CTRL) = 1;
2018-08-05 11:40:32 +00:00
// Clear MSELECT reset.
2022-07-11 19:10:11 +00:00
CLOCK(CLK_RST_CONTROLLER_RST_DEV_V_CLR) = BIT(CLK_V_MSELECT);
2018-08-05 11:40:32 +00:00
// Clear NONCPU reset.
2018-05-01 05:15:48 +00:00
CLOCK(CLK_RST_CONTROLLER_RST_CPUG_CMPLX_CLR) = 0x20000000;
// Clear CPU0 reset.
// < 5.x: 0x411F000F, Clear CPU{0,1,2,3} POR and CORE, CX0, L2, and DBG reset.
CLOCK(CLK_RST_CONTROLLER_RST_CPUG_CMPLX_CLR) = 0x41010001;
}