{sb,soc}/intel: Use `get_int_option` function
Change-Id: I05f724785880089a513319d70dfd70fc2a6b7679 Signed-off-by: Angel Pons <th3fanbus@gmail.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/47109 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Patrick Rudolph <siro@das-labor.org>
This commit is contained in:
parent
5daa412939
commit
62719a3797
|
@ -125,7 +125,6 @@ static void pch_power_options(struct device *dev)
|
||||||
{
|
{
|
||||||
u16 reg16;
|
u16 reg16;
|
||||||
const char *state;
|
const char *state;
|
||||||
int pwr_on = CONFIG_MAINBOARD_POWER_FAILURE_STATE;
|
|
||||||
|
|
||||||
/* Which state do we want to goto after g3 (power restored)?
|
/* Which state do we want to goto after g3 (power restored)?
|
||||||
* 0 == S0 Full On
|
* 0 == S0 Full On
|
||||||
|
@ -133,7 +132,8 @@ static void pch_power_options(struct device *dev)
|
||||||
*
|
*
|
||||||
* If the option is not existent (Laptops), use Kconfig setting.
|
* If the option is not existent (Laptops), use Kconfig setting.
|
||||||
*/
|
*/
|
||||||
get_option(&pwr_on, "power_on_after_fail");
|
const int pwr_on = get_int_option("power_on_after_fail",
|
||||||
|
CONFIG_MAINBOARD_POWER_FAILURE_STATE);
|
||||||
|
|
||||||
reg16 = pci_read_config16(dev, GEN_PMCON_3);
|
reg16 = pci_read_config16(dev, GEN_PMCON_3);
|
||||||
reg16 &= 0xfffe;
|
reg16 &= 0xfffe;
|
||||||
|
|
|
@ -127,13 +127,12 @@ static void backlight_off(void)
|
||||||
|
|
||||||
static int power_on_after_fail(void)
|
static int power_on_after_fail(void)
|
||||||
{
|
{
|
||||||
u8 s5pwr = CONFIG_MAINBOARD_POWER_FAILURE_STATE;
|
|
||||||
|
|
||||||
/* save and recover RTC port values */
|
/* save and recover RTC port values */
|
||||||
u8 tmp70, tmp72;
|
u8 tmp70, tmp72;
|
||||||
tmp70 = inb(0x70);
|
tmp70 = inb(0x70);
|
||||||
tmp72 = inb(0x72);
|
tmp72 = inb(0x72);
|
||||||
get_option(&s5pwr, "power_on_after_fail");
|
const int s5pwr = get_int_option("power_on_after_fail",
|
||||||
|
CONFIG_MAINBOARD_POWER_FAILURE_STATE);
|
||||||
outb(tmp70, 0x70);
|
outb(tmp70, 0x70);
|
||||||
outb(tmp72, 0x72);
|
outb(tmp72, 0x72);
|
||||||
|
|
||||||
|
|
|
@ -583,8 +583,8 @@ void pmc_set_power_failure_state(const bool target_on)
|
||||||
{
|
{
|
||||||
bool on;
|
bool on;
|
||||||
|
|
||||||
uint8_t state = CONFIG_MAINBOARD_POWER_FAILURE_STATE;
|
const int state = get_int_option("power_on_after_fail",
|
||||||
get_option(&state, "power_on_after_fail");
|
CONFIG_MAINBOARD_POWER_FAILURE_STATE);
|
||||||
|
|
||||||
switch (state) {
|
switch (state) {
|
||||||
case MAINBOARD_POWER_STATE_OFF:
|
case MAINBOARD_POWER_STATE_OFF:
|
||||||
|
|
|
@ -162,16 +162,14 @@ static void pch_power_options(struct device *dev)
|
||||||
/* Get the chip configuration */
|
/* Get the chip configuration */
|
||||||
config_t *config = dev->chip_info;
|
config_t *config = dev->chip_info;
|
||||||
|
|
||||||
int pwr_on = CONFIG_MAINBOARD_POWER_FAILURE_STATE;
|
|
||||||
int nmi_option;
|
|
||||||
|
|
||||||
/* Which state do we want to goto after g3 (power restored)?
|
/* Which state do we want to goto after g3 (power restored)?
|
||||||
* 0 == S0 Full On
|
* 0 == S0 Full On
|
||||||
* 1 == S5 Soft Off
|
* 1 == S5 Soft Off
|
||||||
*
|
*
|
||||||
* If the option is not existent (Laptops), use Kconfig setting.
|
* If the option is not existent (Laptops), use Kconfig setting.
|
||||||
*/
|
*/
|
||||||
get_option(&pwr_on, "power_on_after_fail");
|
const int pwr_on = get_int_option("power_on_after_fail",
|
||||||
|
CONFIG_MAINBOARD_POWER_FAILURE_STATE);
|
||||||
|
|
||||||
reg16 = pci_read_config16(dev, GEN_PMCON_3);
|
reg16 = pci_read_config16(dev, GEN_PMCON_3);
|
||||||
reg16 &= 0xfffe;
|
reg16 &= 0xfffe;
|
||||||
|
@ -212,8 +210,7 @@ static void pch_power_options(struct device *dev)
|
||||||
outb(reg8, 0x61);
|
outb(reg8, 0x61);
|
||||||
|
|
||||||
reg8 = inb(0x70);
|
reg8 = inb(0x70);
|
||||||
nmi_option = NMI_OFF;
|
const int nmi_option = get_int_option("nmi", NMI_OFF);
|
||||||
get_option(&nmi_option, "nmi");
|
|
||||||
if (nmi_option) {
|
if (nmi_option) {
|
||||||
printk(BIOS_INFO, "NMI sources enabled.\n");
|
printk(BIOS_INFO, "NMI sources enabled.\n");
|
||||||
reg8 &= ~(1 << 7); /* Set NMI. */
|
reg8 &= ~(1 << 7); /* Set NMI. */
|
||||||
|
|
|
@ -95,13 +95,12 @@ __weak void southbridge_smm_xhci_sleep(u8 slp_type)
|
||||||
|
|
||||||
static int power_on_after_fail(void)
|
static int power_on_after_fail(void)
|
||||||
{
|
{
|
||||||
u8 s5pwr = CONFIG_MAINBOARD_POWER_FAILURE_STATE;
|
|
||||||
|
|
||||||
/* save and recover RTC port values */
|
/* save and recover RTC port values */
|
||||||
u8 tmp70, tmp72;
|
u8 tmp70, tmp72;
|
||||||
tmp70 = inb(0x70);
|
tmp70 = inb(0x70);
|
||||||
tmp72 = inb(0x72);
|
tmp72 = inb(0x72);
|
||||||
get_option(&s5pwr, "power_on_after_fail");
|
const int s5pwr = get_int_option("power_on_after_fail",
|
||||||
|
CONFIG_MAINBOARD_POWER_FAILURE_STATE);
|
||||||
outb(tmp70, 0x70);
|
outb(tmp70, 0x70);
|
||||||
outb(tmp72, 0x72);
|
outb(tmp72, 0x72);
|
||||||
|
|
||||||
|
|
|
@ -88,17 +88,13 @@ static void i82801dx_power_options(struct device *dev)
|
||||||
u32 reg32;
|
u32 reg32;
|
||||||
const char *state;
|
const char *state;
|
||||||
|
|
||||||
int pwr_on = CONFIG_MAINBOARD_POWER_FAILURE_STATE;
|
|
||||||
int nmi_option;
|
|
||||||
|
|
||||||
/* Which state do we want to goto after g3 (power restored)?
|
/* Which state do we want to goto after g3 (power restored)?
|
||||||
* 0 == S0 Full On
|
* 0 == S0 Full On
|
||||||
* 1 == S5 Soft Off
|
* 1 == S5 Soft Off
|
||||||
*
|
*
|
||||||
* If the option is not existent (Laptops), use MAINBOARD_POWER_ON.
|
* If the option is not existent (Laptops), use MAINBOARD_POWER_ON.
|
||||||
*/
|
*/
|
||||||
pwr_on = MAINBOARD_POWER_ON;
|
const int pwr_on = get_int_option("power_on_after_fail", MAINBOARD_POWER_ON);
|
||||||
get_option(&pwr_on, "power_on_after_fail");
|
|
||||||
|
|
||||||
reg8 = pci_read_config8(dev, GEN_PMCON_3);
|
reg8 = pci_read_config8(dev, GEN_PMCON_3);
|
||||||
reg8 &= 0xfe;
|
reg8 &= 0xfe;
|
||||||
|
@ -133,8 +129,7 @@ static void i82801dx_power_options(struct device *dev)
|
||||||
outb(reg8, 0x61);
|
outb(reg8, 0x61);
|
||||||
|
|
||||||
reg8 = inb(0x70);
|
reg8 = inb(0x70);
|
||||||
nmi_option = NMI_OFF;
|
const int nmi_option = get_int_option("nmi", NMI_OFF);
|
||||||
get_option(&nmi_option, "nmi");
|
|
||||||
if (nmi_option) {
|
if (nmi_option) {
|
||||||
printk(BIOS_INFO, "NMI sources enabled.\n");
|
printk(BIOS_INFO, "NMI sources enabled.\n");
|
||||||
reg8 &= ~(1 << 7); /* Set NMI. */
|
reg8 &= ~(1 << 7); /* Set NMI. */
|
||||||
|
|
|
@ -150,17 +150,13 @@ static void i82801gx_power_options(struct device *dev)
|
||||||
/* Get the chip configuration */
|
/* Get the chip configuration */
|
||||||
const struct southbridge_intel_i82801gx_config *config = dev->chip_info;
|
const struct southbridge_intel_i82801gx_config *config = dev->chip_info;
|
||||||
|
|
||||||
int pwr_on = CONFIG_MAINBOARD_POWER_FAILURE_STATE;
|
|
||||||
int nmi_option;
|
|
||||||
|
|
||||||
/* Which state do we want to goto after g3 (power restored)?
|
/* Which state do we want to goto after g3 (power restored)?
|
||||||
* 0 == S0 Full On
|
* 0 == S0 Full On
|
||||||
* 1 == S5 Soft Off
|
* 1 == S5 Soft Off
|
||||||
*
|
*
|
||||||
* If the option is not existent (Laptops), use MAINBOARD_POWER_ON.
|
* If the option is not existent (Laptops), use MAINBOARD_POWER_ON.
|
||||||
*/
|
*/
|
||||||
pwr_on = MAINBOARD_POWER_ON;
|
const int pwr_on = get_int_option("power_on_after_fail", MAINBOARD_POWER_ON);
|
||||||
get_option(&pwr_on, "power_on_after_fail");
|
|
||||||
|
|
||||||
reg8 = pci_read_config8(dev, GEN_PMCON_3);
|
reg8 = pci_read_config8(dev, GEN_PMCON_3);
|
||||||
reg8 &= 0xfe;
|
reg8 &= 0xfe;
|
||||||
|
@ -196,8 +192,7 @@ static void i82801gx_power_options(struct device *dev)
|
||||||
outb(reg8, 0x61);
|
outb(reg8, 0x61);
|
||||||
|
|
||||||
reg8 = inb(0x70);
|
reg8 = inb(0x70);
|
||||||
nmi_option = NMI_OFF;
|
const int nmi_option = get_int_option("nmi", NMI_OFF);
|
||||||
get_option(&nmi_option, "nmi");
|
|
||||||
if (nmi_option) {
|
if (nmi_option) {
|
||||||
printk(BIOS_INFO, "NMI sources enabled.\n");
|
printk(BIOS_INFO, "NMI sources enabled.\n");
|
||||||
reg8 &= ~(1 << 7); /* Set NMI. */
|
reg8 &= ~(1 << 7); /* Set NMI. */
|
||||||
|
|
|
@ -152,9 +152,6 @@ static void i82801ix_power_options(struct device *dev)
|
||||||
/* Get the chip configuration */
|
/* Get the chip configuration */
|
||||||
config_t *config = dev->chip_info;
|
config_t *config = dev->chip_info;
|
||||||
|
|
||||||
int pwr_on = CONFIG_MAINBOARD_POWER_FAILURE_STATE;
|
|
||||||
int nmi_option;
|
|
||||||
|
|
||||||
/* BIOS must program... */
|
/* BIOS must program... */
|
||||||
pci_or_config32(dev, 0xac, (1 << 30) | (3 << 8));
|
pci_or_config32(dev, 0xac, (1 << 30) | (3 << 8));
|
||||||
|
|
||||||
|
@ -164,8 +161,7 @@ static void i82801ix_power_options(struct device *dev)
|
||||||
*
|
*
|
||||||
* If the option is not existent (Laptops), use MAINBOARD_POWER_ON.
|
* If the option is not existent (Laptops), use MAINBOARD_POWER_ON.
|
||||||
*/
|
*/
|
||||||
pwr_on = MAINBOARD_POWER_ON;
|
const int pwr_on = get_int_option("power_on_after_fail", MAINBOARD_POWER_ON);
|
||||||
get_option(&pwr_on, "power_on_after_fail");
|
|
||||||
|
|
||||||
reg8 = pci_read_config8(dev, D31F0_GEN_PMCON_3);
|
reg8 = pci_read_config8(dev, D31F0_GEN_PMCON_3);
|
||||||
reg8 &= 0xfe;
|
reg8 &= 0xfe;
|
||||||
|
@ -201,8 +197,7 @@ static void i82801ix_power_options(struct device *dev)
|
||||||
outb(reg8, 0x61);
|
outb(reg8, 0x61);
|
||||||
|
|
||||||
reg8 = inb(0x74); /* Read from 0x74 as 0x70 is write only. */
|
reg8 = inb(0x74); /* Read from 0x74 as 0x70 is write only. */
|
||||||
nmi_option = NMI_OFF;
|
const int nmi_option = get_int_option("nmi", NMI_OFF);
|
||||||
get_option(&nmi_option, "nmi");
|
|
||||||
if (nmi_option) {
|
if (nmi_option) {
|
||||||
printk(BIOS_INFO, "NMI sources enabled.\n");
|
printk(BIOS_INFO, "NMI sources enabled.\n");
|
||||||
reg8 &= ~(1 << 7); /* Set NMI. */
|
reg8 &= ~(1 << 7); /* Set NMI. */
|
||||||
|
|
|
@ -154,9 +154,6 @@ static void i82801jx_power_options(struct device *dev)
|
||||||
/* Get the chip configuration */
|
/* Get the chip configuration */
|
||||||
config_t *config = dev->chip_info;
|
config_t *config = dev->chip_info;
|
||||||
|
|
||||||
int pwr_on = CONFIG_MAINBOARD_POWER_FAILURE_STATE;
|
|
||||||
int nmi_option;
|
|
||||||
|
|
||||||
/* BIOS must program... */
|
/* BIOS must program... */
|
||||||
pci_or_config32(dev, 0xac, (1 << 30) | (3 << 8));
|
pci_or_config32(dev, 0xac, (1 << 30) | (3 << 8));
|
||||||
|
|
||||||
|
@ -166,8 +163,7 @@ static void i82801jx_power_options(struct device *dev)
|
||||||
*
|
*
|
||||||
* If the option is not existent (Laptops), use MAINBOARD_POWER_ON.
|
* If the option is not existent (Laptops), use MAINBOARD_POWER_ON.
|
||||||
*/
|
*/
|
||||||
pwr_on = MAINBOARD_POWER_ON;
|
const int pwr_on = get_int_option("power_on_after_fail", MAINBOARD_POWER_ON);
|
||||||
get_option(&pwr_on, "power_on_after_fail");
|
|
||||||
|
|
||||||
reg8 = pci_read_config8(dev, D31F0_GEN_PMCON_3);
|
reg8 = pci_read_config8(dev, D31F0_GEN_PMCON_3);
|
||||||
reg8 &= 0xfe;
|
reg8 &= 0xfe;
|
||||||
|
@ -203,8 +199,7 @@ static void i82801jx_power_options(struct device *dev)
|
||||||
outb(reg8, 0x61);
|
outb(reg8, 0x61);
|
||||||
|
|
||||||
reg8 = inb(0x74); /* Read from 0x74 as 0x70 is write only. */
|
reg8 = inb(0x74); /* Read from 0x74 as 0x70 is write only. */
|
||||||
nmi_option = NMI_OFF;
|
const int nmi_option = get_int_option("nmi", NMI_OFF);
|
||||||
get_option(&nmi_option, "nmi");
|
|
||||||
if (nmi_option) {
|
if (nmi_option) {
|
||||||
printk(BIOS_INFO, "NMI sources enabled.\n");
|
printk(BIOS_INFO, "NMI sources enabled.\n");
|
||||||
reg8 &= ~(1 << 7); /* Set NMI. */
|
reg8 &= ~(1 << 7); /* Set NMI. */
|
||||||
|
|
|
@ -155,16 +155,14 @@ static void pch_power_options(struct device *dev)
|
||||||
/* Get the chip configuration */
|
/* Get the chip configuration */
|
||||||
config_t *config = dev->chip_info;
|
config_t *config = dev->chip_info;
|
||||||
|
|
||||||
int pwr_on = CONFIG_MAINBOARD_POWER_FAILURE_STATE;
|
|
||||||
int nmi_option;
|
|
||||||
|
|
||||||
/* Which state do we want to goto after g3 (power restored)?
|
/* Which state do we want to goto after g3 (power restored)?
|
||||||
* 0 == S0 Full On
|
* 0 == S0 Full On
|
||||||
* 1 == S5 Soft Off
|
* 1 == S5 Soft Off
|
||||||
*
|
*
|
||||||
* If the option is not existent (Laptops), use Kconfig setting.
|
* If the option is not existent (Laptops), use Kconfig setting.
|
||||||
*/
|
*/
|
||||||
get_option(&pwr_on, "power_on_after_fail");
|
const int pwr_on = get_int_option("power_on_after_fail",
|
||||||
|
CONFIG_MAINBOARD_POWER_FAILURE_STATE);
|
||||||
|
|
||||||
reg16 = pci_read_config16(dev, GEN_PMCON_3);
|
reg16 = pci_read_config16(dev, GEN_PMCON_3);
|
||||||
reg16 &= 0xfffe;
|
reg16 &= 0xfffe;
|
||||||
|
@ -205,8 +203,7 @@ static void pch_power_options(struct device *dev)
|
||||||
outb(reg8, 0x61);
|
outb(reg8, 0x61);
|
||||||
|
|
||||||
reg8 = inb(0x70);
|
reg8 = inb(0x70);
|
||||||
nmi_option = NMI_OFF;
|
const int nmi_option = get_int_option("nmi", NMI_OFF);
|
||||||
get_option(&nmi_option, "nmi");
|
|
||||||
if (nmi_option) {
|
if (nmi_option) {
|
||||||
printk(BIOS_INFO, "NMI sources enabled.\n");
|
printk(BIOS_INFO, "NMI sources enabled.\n");
|
||||||
reg8 &= ~(1 << 7); /* Set NMI. */
|
reg8 &= ~(1 << 7); /* Set NMI. */
|
||||||
|
|
|
@ -185,8 +185,6 @@ static void pch_power_options(struct device *dev)
|
||||||
u32 reg32;
|
u32 reg32;
|
||||||
const char *state;
|
const char *state;
|
||||||
u16 pmbase = get_pmbase();
|
u16 pmbase = get_pmbase();
|
||||||
int pwr_on = CONFIG_MAINBOARD_POWER_FAILURE_STATE;
|
|
||||||
int nmi_option;
|
|
||||||
|
|
||||||
/* Which state do we want to goto after g3 (power restored)?
|
/* Which state do we want to goto after g3 (power restored)?
|
||||||
* 0 == S0 Full On
|
* 0 == S0 Full On
|
||||||
|
@ -194,7 +192,8 @@ static void pch_power_options(struct device *dev)
|
||||||
*
|
*
|
||||||
* If the option is not existent (Laptops), use Kconfig setting.
|
* If the option is not existent (Laptops), use Kconfig setting.
|
||||||
*/
|
*/
|
||||||
get_option(&pwr_on, "power_on_after_fail");
|
const int pwr_on = get_int_option("power_on_after_fail",
|
||||||
|
CONFIG_MAINBOARD_POWER_FAILURE_STATE);
|
||||||
|
|
||||||
reg16 = pci_read_config16(dev, GEN_PMCON_3);
|
reg16 = pci_read_config16(dev, GEN_PMCON_3);
|
||||||
reg16 &= 0xfffe;
|
reg16 &= 0xfffe;
|
||||||
|
@ -235,8 +234,7 @@ static void pch_power_options(struct device *dev)
|
||||||
outb(reg8, 0x61);
|
outb(reg8, 0x61);
|
||||||
|
|
||||||
reg8 = inb(0x70);
|
reg8 = inb(0x70);
|
||||||
nmi_option = NMI_OFF;
|
const int nmi_option = get_int_option("nmi", NMI_OFF);
|
||||||
get_option(&nmi_option, "nmi");
|
|
||||||
if (nmi_option) {
|
if (nmi_option) {
|
||||||
printk(BIOS_INFO, "NMI sources enabled.\n");
|
printk(BIOS_INFO, "NMI sources enabled.\n");
|
||||||
reg8 &= ~(1 << 7); /* Set NMI. */
|
reg8 &= ~(1 << 7); /* Set NMI. */
|
||||||
|
|
|
@ -78,13 +78,12 @@ static void busmaster_disable_on_bus(int bus)
|
||||||
|
|
||||||
static int power_on_after_fail(void)
|
static int power_on_after_fail(void)
|
||||||
{
|
{
|
||||||
u8 s5pwr = CONFIG_MAINBOARD_POWER_FAILURE_STATE;
|
|
||||||
|
|
||||||
/* save and recover RTC port values */
|
/* save and recover RTC port values */
|
||||||
u8 tmp70, tmp72;
|
u8 tmp70, tmp72;
|
||||||
tmp70 = inb(0x70);
|
tmp70 = inb(0x70);
|
||||||
tmp72 = inb(0x72);
|
tmp72 = inb(0x72);
|
||||||
get_option(&s5pwr, "power_on_after_fail");
|
const int s5pwr = get_int_option("power_on_after_fail",
|
||||||
|
CONFIG_MAINBOARD_POWER_FAILURE_STATE);
|
||||||
outb(tmp70, 0x70);
|
outb(tmp70, 0x70);
|
||||||
outb(tmp72, 0x72);
|
outb(tmp72, 0x72);
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue