Commit 10599423 authored by Raptor Engineering Development Team's avatar Raptor Engineering Development Team Committed by Evan Lojewski
Browse files

Fix incorrect AVSBus disable commands

3 merge requests!17Add optional DRAM-free mode,!16Add I2C debug commands to console,!14Fix incorrect AVSBus disable commands
Pipeline #241 passed with stage
in 19 seconds
......@@ -1532,7 +1532,7 @@ static int disable_avsbus_pmbus_cpu(const cpu_info_t *cpu)
{
return -1;
}
if (i2c_write_register_byte(cpu->i2c_master, cpu->vdd_regulator_addr, 0x01, 0xb0))
if (i2c_write_register_byte(cpu->i2c_master, cpu->vdd_regulator_addr, 0x01, 0x80))
{
return -1;
}
......@@ -1542,7 +1542,7 @@ static int disable_avsbus_pmbus_cpu(const cpu_info_t *cpu)
{
return -1;
}
if (i2c_write_register_byte(cpu->i2c_master, cpu->vcs_regulator_addr, 0x01, 0xb0))
if (i2c_write_register_byte(cpu->i2c_master, cpu->vcs_regulator_addr, 0x01, 0x80))
{
return -1;
}
......@@ -1552,7 +1552,7 @@ static int disable_avsbus_pmbus_cpu(const cpu_info_t *cpu)
{
return -1;
}
if (i2c_write_register_byte(cpu->i2c_master, cpu->vdn_regulator_addr, 0x01, 0xb0))
if (i2c_write_register_byte(cpu->i2c_master, cpu->vdn_regulator_addr, 0x01, 0x80))
{
return -1;
}
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment