AMD SB800 southbridge update
This patch enables access to the registers of the hardware monitor logical device in the superio via isa ports 0x295/0x296. Previously this was not enabled in the SB8xx LPC device. This is required for initialisation in init_hwm() in src/superio/winbond/w83627hf/superio.c and also by OS-level sensor monitoring such as lm-sensors to access temperature, fan monitoring and control and voltage registers. asrock/e350m1 and advansus/a785e-i mainboard changes are included herein. Change-Id: I2176885549277b335c0c41b48457d09b9b76b703 Signed-off-by: Per Hansen <perh52@runbox.com> Signed-off-by: Kerry She <shekairui@gmail.com> Reviewed-on: http://review.coreboot.org/159 Tested-by: build bot (Jenkins) Reviewed-by: Stefan Reinauer <stefan.reinauer@coreboot.org>
This commit is contained in:
committed by
Stefan Reinauer
parent
feed329a0c
commit
6209c8299a
@@ -27,5 +27,9 @@ if SOUTHBRIDGE_AMD_CIMX_SB800
|
||||
config BOOTBLOCK_SOUTHBRIDGE_INIT
|
||||
string
|
||||
default "southbridge/amd/cimx/sb800/bootblock.c"
|
||||
|
||||
config SB_SUPERIO_HWM
|
||||
bool
|
||||
default n
|
||||
endif #SOUTHBRIDGE_AMD_CIMX_SB800
|
||||
|
||||
|
@@ -120,6 +120,7 @@ typedef union _PCI_ADDR {
|
||||
#define cimIrConfigDefault 0x00 // Disable
|
||||
#define cimSpiFastReadEnableDefault 0x01 // Enable
|
||||
#define cimSpiFastReadSpeedDefault 0x01 // 33 MHz
|
||||
#define cimSioHwmPortEnableDefault FALSE
|
||||
// GPP/AB Controller
|
||||
#define cimNbSbGen2Default TRUE
|
||||
#define cimAlinkPhyPllPowerDownDefault TRUE
|
||||
|
@@ -50,6 +50,7 @@ void sb800_cimx_config(AMDSBCFG *sb_config)
|
||||
sb_config->BuildParameters.AcpiPm1CntBlkAddr = PM1_CNT_BLK_ADDRESS;
|
||||
sb_config->BuildParameters.AcpiPm1EvtBlkAddr = PM1_EVT_BLK_ADDRESS;
|
||||
sb_config->BuildParameters.SioPmeBaseAddress = SIO_PME_BASE_ADDRESS;
|
||||
sb_config->BuildParameters.SioHwmBaseAddress = SIO_HWM_BASE_ADDRESS;
|
||||
sb_config->BuildParameters.SpiRomBaseAddress = SPI_BASE_ADDRESS;
|
||||
sb_config->BuildParameters.GecShadowRomBase = GEC_BASE_ADDRESS;
|
||||
sb_config->BuildParameters.Smbus0BaseAddress = SMBUS0_BASE_ADDRESS;
|
||||
@@ -94,6 +95,10 @@ void sb800_cimx_config(AMDSBCFG *sb_config)
|
||||
sb_config->AZALIACONFIG.AzaliaSdinPin = AZALIA_SDIN_PIN;
|
||||
sb_config->AZOEMTBL.pAzaliaOemCodecTablePtr = NULL;
|
||||
|
||||
/* LPC */
|
||||
/* SuperIO hardware monitor register access */
|
||||
sb_config->SioHwmPortEnable = CONFIG_SB_SUPERIO_HWM;
|
||||
|
||||
/*
|
||||
* GPP. default configure only enable port0 with 4 lanes,
|
||||
* configure in devicetree.cb would overwrite the default configuration
|
||||
|
Reference in New Issue
Block a user