2018-03-27 00:04:16 +01:00
|
|
|
/*
|
2018-08-05 12:40:32 +01:00
|
|
|
* Copyright (c) 2018 naehrwert
|
|
|
|
*
|
|
|
|
* 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-27 00:04:16 +01:00
|
|
|
|
2020-06-13 23:09:17 +01:00
|
|
|
#include "../soc/ccplex.h"
|
2018-08-13 09:58:24 +01:00
|
|
|
#include "../soc/i2c.h"
|
|
|
|
#include "../soc/clock.h"
|
|
|
|
#include "../utils/util.h"
|
|
|
|
#include "../soc/pmc.h"
|
|
|
|
#include "../soc/t210.h"
|
|
|
|
#include "../power/max77620.h"
|
2018-09-18 21:38:54 +01:00
|
|
|
#include "../power/max7762x.h"
|
2018-03-14 23:26:19 +00:00
|
|
|
|
2020-06-13 23:09:17 +01:00
|
|
|
void _ccplex_enable_power()
|
2018-03-14 23:26:19 +00:00
|
|
|
{
|
2019-02-15 23:23:14 +00:00
|
|
|
u8 tmp = i2c_recv_byte(I2C_5, MAX77620_I2C_ADDR, MAX77620_REG_AME_GPIO); // Get current pinmuxing
|
|
|
|
i2c_send_byte(I2C_5, MAX77620_I2C_ADDR, MAX77620_REG_AME_GPIO, tmp & ~(1 << 5)); // Disable GPIO5 pinmuxing.
|
2018-09-18 22:11:18 +01:00
|
|
|
i2c_send_byte(I2C_5, MAX77620_I2C_ADDR, MAX77620_REG_GPIO5, MAX77620_CNFG_GPIO_DRV_PUSHPULL | MAX77620_CNFG_GPIO_OUTPUT_VAL_HIGH);
|
2018-03-14 23:26:19 +00:00
|
|
|
|
2018-08-05 12:40:32 +01:00
|
|
|
// Enable cores power.
|
2018-11-10 12:11:42 +00:00
|
|
|
// 1-3.x: MAX77621_NFSR_ENABLE.
|
2018-09-18 22:11:18 +01:00
|
|
|
i2c_send_byte(I2C_5, MAX77621_CPU_I2C_ADDR, MAX77621_CONTROL1_REG,
|
2019-09-01 01:55:43 +01:00
|
|
|
MAX77621_AD_ENABLE | MAX77621_NFSR_ENABLE | MAX77621_SNS_ENABLE | MAX77621_RAMP_12mV_PER_US);
|
2018-11-10 12:11:42 +00:00
|
|
|
// 1.0.0-3.x: MAX77621_T_JUNCTION_120 | MAX77621_CKKADV_TRIP_DISABLE | MAX77621_INDUCTOR_NOMINAL.
|
2018-09-18 22:11:18 +01:00
|
|
|
i2c_send_byte(I2C_5, MAX77621_CPU_I2C_ADDR, MAX77621_CONTROL2_REG,
|
2018-11-10 12:11:42 +00:00
|
|
|
MAX77621_T_JUNCTION_120 | MAX77621_WDTMR_ENABLE | MAX77621_CKKADV_TRIP_75mV_PER_US| MAX77621_INDUCTOR_NOMINAL);
|
2019-09-09 13:48:49 +01:00
|
|
|
i2c_send_byte(I2C_5, MAX77621_CPU_I2C_ADDR, MAX77621_VOUT_REG, MAX77621_VOUT_ENABLE | MAX77621_VOUT_0_95V);
|
2020-06-14 00:02:26 +01:00
|
|
|
i2c_send_byte(I2C_5, MAX77621_CPU_I2C_ADDR, MAX77621_VOUT_DVS_REG, MAX77621_VOUT_ENABLE | MAX77621_VOUT_0_95V);
|
2018-03-14 23:26:19 +00:00
|
|
|
}
|
|
|
|
|
2020-06-13 23:09:17 +01:00
|
|
|
int _ccplex_pmc_enable_partition(u32 part, int enable)
|
2018-03-14 23:26:19 +00:00
|
|
|
{
|
2019-09-12 21:09:38 +01:00
|
|
|
u32 part_mask = 1 << part;
|
|
|
|
u32 desired_state = enable << part;
|
|
|
|
|
|
|
|
// Check if the partition has the state we want.
|
|
|
|
if ((PMC(APBDEV_PMC_PWRGATE_STATUS) & part_mask) == desired_state)
|
2018-05-01 06:15:48 +01:00
|
|
|
return 1;
|
2018-03-14 23:26:19 +00:00
|
|
|
|
|
|
|
u32 i = 5001;
|
|
|
|
while (PMC(APBDEV_PMC_PWRGATE_TOGGLE) & 0x100)
|
|
|
|
{
|
2018-07-04 16:39:26 +01:00
|
|
|
usleep(1);
|
2018-03-14 23:26:19 +00:00
|
|
|
i--;
|
|
|
|
if (i < 1)
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2019-09-12 21:09:38 +01:00
|
|
|
// Toggle power gating.
|
|
|
|
PMC(APBDEV_PMC_PWRGATE_TOGGLE) = part | 0x100;
|
2018-03-14 23:26:19 +00:00
|
|
|
|
|
|
|
i = 5001;
|
|
|
|
while (i > 0)
|
|
|
|
{
|
2019-09-12 21:09:38 +01:00
|
|
|
if ((PMC(APBDEV_PMC_PWRGATE_STATUS) & part_mask) == desired_state)
|
2018-03-14 23:26:19 +00:00
|
|
|
break;
|
2018-07-04 16:39:26 +01:00
|
|
|
usleep(1);
|
2018-03-14 23:26:19 +00:00
|
|
|
i--;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2020-06-13 23:09:17 +01:00
|
|
|
void ccplex_boot_cpu0(u32 entry)
|
2018-03-14 23:26:19 +00:00
|
|
|
{
|
2018-08-05 12:40:32 +01:00
|
|
|
// Set ACTIVE_CLUSER to FAST.
|
2018-03-14 23:26:19 +00:00
|
|
|
FLOW_CTLR(FLOW_CTLR_BPMP_CLUSTER_CONTROL) &= 0xFFFFFFFE;
|
|
|
|
|
2020-06-13 23:09:17 +01:00
|
|
|
_ccplex_enable_power();
|
2018-03-14 23:26:19 +00:00
|
|
|
|
2019-12-04 19:31:39 +00:00
|
|
|
if (!(CLOCK(CLK_RST_CONTROLLER_PLLX_BASE) & 0x40000000)) // PLLX_ENABLE.
|
2018-03-14 23:26:19 +00:00
|
|
|
{
|
2019-12-04 19:31:39 +00:00
|
|
|
CLOCK(CLK_RST_CONTROLLER_PLLX_MISC_3) &= 0xFFFFFFF7; // Disable IDDQ.
|
2018-07-04 16:39:26 +01:00
|
|
|
usleep(2);
|
2018-05-01 06:15:48 +01:00
|
|
|
CLOCK(CLK_RST_CONTROLLER_PLLX_BASE) = 0x80404E02;
|
|
|
|
CLOCK(CLK_RST_CONTROLLER_PLLX_BASE) = 0x404E02;
|
2018-06-08 10:42:24 +01:00
|
|
|
CLOCK(CLK_RST_CONTROLLER_PLLX_MISC) = (CLOCK(CLK_RST_CONTROLLER_PLLX_MISC) & 0xFFFBFFFF) | 0x40000;
|
2018-05-01 06:15:48 +01:00
|
|
|
CLOCK(CLK_RST_CONTROLLER_PLLX_BASE) = 0x40404E02;
|
2018-03-14 23:26:19 +00:00
|
|
|
}
|
2018-05-01 06:15:48 +01:00
|
|
|
while (!(CLOCK(CLK_RST_CONTROLLER_PLLX_BASE) & 0x8000000))
|
2018-03-14 23:26:19 +00:00
|
|
|
;
|
|
|
|
|
2018-08-05 12:40:32 +01:00
|
|
|
// Configure MSELECT source and enable clock.
|
2018-06-08 10:42:24 +01:00
|
|
|
CLOCK(CLK_RST_CONTROLLER_CLK_SOURCE_MSELECT) = (CLOCK(CLK_RST_CONTROLLER_CLK_SOURCE_MSELECT) & 0x1FFFFF00) | 6;
|
|
|
|
CLOCK(CLK_RST_CONTROLLER_CLK_OUT_ENB_V) = (CLOCK(CLK_RST_CONTROLLER_CLK_OUT_ENB_V) & 0xFFFFFFF7) | 8;
|
2018-05-01 06:15:48 +01:00
|
|
|
|
2018-08-05 12:40:32 +01:00
|
|
|
// Configure initial CPU clock frequency and enable clock.
|
2018-05-01 06:15:48 +01:00
|
|
|
CLOCK(CLK_RST_CONTROLLER_CCLK_BURST_POLICY) = 0x20008888;
|
|
|
|
CLOCK(CLK_RST_CONTROLLER_SUPER_CCLK_DIVIDER) = 0x80000000;
|
|
|
|
CLOCK(CLK_RST_CONTROLLER_CLK_ENB_V_SET) = 1;
|
2018-03-14 23:26:19 +00:00
|
|
|
|
|
|
|
clock_enable_coresight();
|
|
|
|
|
2018-08-05 12:40:32 +01:00
|
|
|
// CAR2PMC_CPU_ACK_WIDTH should be set to 0.
|
2018-06-08 10:42:24 +01:00
|
|
|
CLOCK(CLK_RST_CONTROLLER_CPU_SOFTRST_CTRL2) &= 0xFFFFF000;
|
2018-03-14 23:26:19 +00:00
|
|
|
|
2018-08-05 12:40:32 +01:00
|
|
|
// Enable CPU rail.
|
2020-06-13 23:09:17 +01:00
|
|
|
_ccplex_pmc_enable_partition(0, 1);
|
2018-09-18 21:38:54 +01:00
|
|
|
// Enable cluster 0 non-CPU.
|
2020-06-13 23:09:17 +01:00
|
|
|
_ccplex_pmc_enable_partition(15, 1);
|
2018-08-05 12:40:32 +01:00
|
|
|
// Enable CE0.
|
2020-06-13 23:09:17 +01:00
|
|
|
_ccplex_pmc_enable_partition(14, 1);
|
2018-03-14 23:26:19 +00:00
|
|
|
|
2018-08-05 12:40:32 +01:00
|
|
|
// Request and wait for RAM repair.
|
2018-03-14 23:26:19 +00:00
|
|
|
FLOW_CTLR(FLOW_CTLR_RAM_REPAIR) = 1;
|
|
|
|
while (!(FLOW_CTLR(FLOW_CTLR_RAM_REPAIR) & 2))
|
|
|
|
;
|
|
|
|
|
2018-11-10 12:11:42 +00:00
|
|
|
EXCP_VEC(EVP_CPU_RESET_VECTOR) = 0;
|
2018-03-14 23:26:19 +00:00
|
|
|
|
2018-08-05 12:40:32 +01:00
|
|
|
// Set reset vector.
|
2019-09-09 14:56:37 +01:00
|
|
|
SB(SB_AA64_RESET_LOW) = entry | SB_AA64_RST_AARCH64_MODE_EN;
|
2018-03-14 23:26:19 +00:00
|
|
|
SB(SB_AA64_RESET_HIGH) = 0;
|
2018-08-05 12:40:32 +01:00
|
|
|
// Non-secure reset vector write disable.
|
2019-09-09 14:56:37 +01:00
|
|
|
SB(SB_CSR) = SB_CSR_NS_RST_VEC_WR_DIS;
|
2018-05-01 06:15:48 +01:00
|
|
|
(void)SB(SB_CSR);
|
2018-03-14 23:26:19 +00:00
|
|
|
|
2019-12-04 19:31:39 +00:00
|
|
|
// Tighten up the security aperture.
|
|
|
|
// MC(MC_TZ_SECURITY_CTRL) = 1;
|
|
|
|
|
2018-08-05 12:40:32 +01:00
|
|
|
// Clear MSELECT reset.
|
2018-03-14 23:26:19 +00:00
|
|
|
CLOCK(CLK_RST_CONTROLLER_RST_DEVICES_V) &= 0xFFFFFFF7;
|
2018-08-05 12:40:32 +01:00
|
|
|
// Clear NONCPU reset.
|
2018-05-01 06:15:48 +01:00
|
|
|
CLOCK(CLK_RST_CONTROLLER_RST_CPUG_CMPLX_CLR) = 0x20000000;
|
2018-11-20 19:32:54 +00:00
|
|
|
// 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;
|
2018-03-14 23:26:19 +00:00
|
|
|
}
|