mirror of
https://github.com/CTCaer/hekate
synced 2024-11-16 00:49:27 +00:00
bdk: slight refactor
This commit is contained in:
parent
a1fde0d9b6
commit
4d823d5909
9 changed files with 15 additions and 8 deletions
|
@ -1,5 +1,5 @@
|
||||||
/*
|
/*
|
||||||
* Copyright (c) 2018-2019 CTCaer
|
* Copyright (c) 2018-2022 CTCaer
|
||||||
*
|
*
|
||||||
* This program is free software; you can redistribute it and/or modify it
|
* This program is free software; you can redistribute it and/or modify it
|
||||||
* under the terms and conditions of the GNU General Public License,
|
* under the terms and conditions of the GNU General Public License,
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
/*
|
/*
|
||||||
* Copyright (c) 2018-2019 CTCaer
|
* Copyright (c) 2018-2022 CTCaer
|
||||||
*
|
*
|
||||||
* This program is free software; you can redistribute it and/or modify it
|
* This program is free software; you can redistribute it and/or modify it
|
||||||
* under the terms and conditions of the GNU General Public License,
|
* under the terms and conditions of the GNU General Public License,
|
||||||
|
|
|
@ -70,8 +70,8 @@
|
||||||
#define MAX77812_REG_M2_CFG 0x30 // HOS: M2_ILIM - 7.2A/4.8A.
|
#define MAX77812_REG_M2_CFG 0x30 // HOS: M2_ILIM - 7.2A/4.8A.
|
||||||
#define MAX77812_REG_M3_CFG 0x31 // HOS: M3_ILIM - 7.2A/4.8A.
|
#define MAX77812_REG_M3_CFG 0x31 // HOS: M3_ILIM - 7.2A/4.8A.
|
||||||
#define MAX77812_REG_M4_CFG 0x32 // HOS: M4_ILIM - 7.2A/4.8A.
|
#define MAX77812_REG_M4_CFG 0x32 // HOS: M4_ILIM - 7.2A/4.8A.
|
||||||
#define MAX77812_REG_GLB_CFG1 0x33 // HOS: B_SD_SR/B_SS_SR - 5mV/ìs.
|
#define MAX77812_REG_GLB_CFG1 0x33 // HOS: B_SD_SR/B_SS_SR - 5mV/us.
|
||||||
#define MAX77812_REG_GLB_CFG2 0x34 // HOS: B_RD_SR/B_RU_SR - 5mV/ìs
|
#define MAX77812_REG_GLB_CFG2 0x34 // HOS: B_RD_SR/B_RU_SR - 5mV/us
|
||||||
#define MAX77812_REG_GLB_CFG3 0x35
|
#define MAX77812_REG_GLB_CFG3 0x35
|
||||||
|
|
||||||
/*! Protected area and settings only for MAX77812_ES2_VERSION */
|
/*! Protected area and settings only for MAX77812_ES2_VERSION */
|
||||||
|
|
|
@ -289,6 +289,9 @@ static void _config_regulators(bool tegra_t210)
|
||||||
max7762x_regulator_enable(REGULATOR_LDO2, false);
|
max7762x_regulator_enable(REGULATOR_LDO2, false);
|
||||||
sd_power_cycle_time_start = get_tmr_ms();
|
sd_power_cycle_time_start = get_tmr_ms();
|
||||||
|
|
||||||
|
// Disable LCD DVDD.
|
||||||
|
max7762x_regulator_enable(REGULATOR_LDO0, false);
|
||||||
|
|
||||||
i2c_send_byte(I2C_5, MAX77620_I2C_ADDR, MAX77620_REG_CNFGBBC, MAX77620_CNFGBBC_RESISTOR_1K);
|
i2c_send_byte(I2C_5, MAX77620_I2C_ADDR, MAX77620_REG_CNFGBBC, MAX77620_CNFGBBC_RESISTOR_1K);
|
||||||
i2c_send_byte(I2C_5, MAX77620_I2C_ADDR, MAX77620_REG_ONOFFCNFG1,
|
i2c_send_byte(I2C_5, MAX77620_I2C_ADDR, MAX77620_REG_ONOFFCNFG1,
|
||||||
MAX77620_ONOFFCNFG1_RSVD | (3 << MAX77620_ONOFFCNFG1_MRT_SHIFT)); // PWR delay for forced shutdown off.
|
MAX77620_ONOFFCNFG1_RSVD | (3 << MAX77620_ONOFFCNFG1_MRT_SHIFT)); // PWR delay for forced shutdown off.
|
||||||
|
@ -471,6 +474,9 @@ void hw_reinit_workaround(bool coreboot, u32 bl_magic)
|
||||||
gpio_config(GPIO_PORT_V, GPIO_PIN_0, GPIO_MODE_GPIO);
|
gpio_config(GPIO_PORT_V, GPIO_PIN_0, GPIO_MODE_GPIO);
|
||||||
display_backlight_brightness(brightness, 0);
|
display_backlight_brightness(brightness, 0);
|
||||||
break;
|
break;
|
||||||
|
case BL_MAGIC_L4TLDR_SLD:
|
||||||
|
// Do not disable backlight at all.
|
||||||
|
break;
|
||||||
default:
|
default:
|
||||||
display_end();
|
display_end();
|
||||||
clock_disable_host1x();
|
clock_disable_host1x();
|
||||||
|
|
|
@ -21,7 +21,7 @@
|
||||||
#include <utils/types.h>
|
#include <utils/types.h>
|
||||||
|
|
||||||
#define BL_MAGIC_CRBOOT_SLD 0x30444C53 // SLD0, seamless display type 0.
|
#define BL_MAGIC_CRBOOT_SLD 0x30444C53 // SLD0, seamless display type 0.
|
||||||
#define BL_MAGIC_HEKATF_SLD 0x31444C53 // SLD1, seamless display type 1.
|
#define BL_MAGIC_L4TLDR_SLD 0x31444C53 // SLD1, seamless display type 1.
|
||||||
#define BL_MAGIC_BROKEN_HWI 0xBAADF00D // Broken hwinit.
|
#define BL_MAGIC_BROKEN_HWI 0xBAADF00D // Broken hwinit.
|
||||||
|
|
||||||
extern u32 hw_rst_status;
|
extern u32 hw_rst_status;
|
||||||
|
|
|
@ -154,6 +154,7 @@
|
||||||
#define APBDEV_PMC_SECURE_SCRATCH110 0xB10
|
#define APBDEV_PMC_SECURE_SCRATCH110 0xB10
|
||||||
#define APBDEV_PMC_SECURE_SCRATCH112 0xB18
|
#define APBDEV_PMC_SECURE_SCRATCH112 0xB18
|
||||||
#define APBDEV_PMC_SECURE_SCRATCH113 0xB1C
|
#define APBDEV_PMC_SECURE_SCRATCH113 0xB1C
|
||||||
|
#define APBDEV_PMC_SECURE_SCRATCH114 0xB20
|
||||||
#define APBDEV_PMC_SECURE_SCRATCH119 0xB34
|
#define APBDEV_PMC_SECURE_SCRATCH119 0xB34
|
||||||
|
|
||||||
// Only in T210B01.
|
// Only in T210B01.
|
||||||
|
|
|
@ -1239,7 +1239,7 @@ static void _sdmmc_config_emmc(u32 id, bool t210b01)
|
||||||
APB_MISC(APB_MISC_GP_EMMC4_PAD_CFGPADCTRL) &= 0xF8003FFF;
|
APB_MISC(APB_MISC_GP_EMMC4_PAD_CFGPADCTRL) &= 0xF8003FFF;
|
||||||
// Set default pad cfg.
|
// Set default pad cfg.
|
||||||
if (t210b01)
|
if (t210b01)
|
||||||
APB_MISC(APB_MISC_GP_EMMC4_PAD_PUPD_CFGPADCTRL) &= 0xFFBFFFF9; // Unset CMD/CLK/DQS powedown.
|
APB_MISC(APB_MISC_GP_EMMC4_PAD_PUPD_CFGPADCTRL) &= 0xFFBFFFF9; // Unset CMD/CLK/DQS weak pull up/down.
|
||||||
// Enable schmitt trigger.
|
// Enable schmitt trigger.
|
||||||
APB_MISC(APB_MISC_GP_EMMC4_PAD_CFGPADCTRL) |= 1;
|
APB_MISC(APB_MISC_GP_EMMC4_PAD_CFGPADCTRL) |= 1;
|
||||||
(void)APB_MISC(APB_MISC_GP_EMMC4_PAD_CFGPADCTRL); // Commit write.
|
(void)APB_MISC(APB_MISC_GP_EMMC4_PAD_CFGPADCTRL); // Commit write.
|
||||||
|
|
|
@ -1869,7 +1869,7 @@ int usb_device_gadget_ums(usb_ctxt_t *usbs)
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
emmc_initialize(false);
|
emmc_initialize(false);
|
||||||
sdmmc_storage_set_mmc_partition(ums.lun.storage, ums.lun.partition - 1);
|
emmc_set_partition(ums.lun.partition - 1);
|
||||||
|
|
||||||
ums.lun.sdmmc = &emmc_sdmmc;
|
ums.lun.sdmmc = &emmc_sdmmc;
|
||||||
ums.lun.storage = &emmc_storage;
|
ums.lun.storage = &emmc_storage;
|
||||||
|
|
Loading…
Reference in a new issue