AMD f16kb: use AZ_PIN in Kconfig to customize AZALIA_PIN in Yangtze
src/southbridge/amd/agesa/hudson/Kconfig config default value, mainboard Kconfig config value for specific mainboard. bit 1,0 - pin 0 bit 3,2 - pin 1 bit 5,4 - pin 2 bit 7,6 - pin 3 Change-Id: I54a87cf734685515a3e1850838ca7d94387172ce Signed-off-by: WANG Siyuan <SiYuan.Wang@amd.com> Signed-off-by: WANG Siyuan <wangsiyuanbuaa@gmail.com> Reviewed-on: http://review.coreboot.org/3879 Tested-by: build bot (Jenkins) Reviewed-by: Bruce Griffith <Bruce.Griffith@se-eng.com> Reviewed-by: Dave Frodin <dave.frodin@se-eng.com>
This commit is contained in:
parent
9090ff91e1
commit
a9b01d1347
|
@ -247,4 +247,13 @@ if SOUTHBRIDGE_AMD_AGESA_YANGTZE
|
||||||
config AMD_SB_SPI_TX_LEN
|
config AMD_SB_SPI_TX_LEN
|
||||||
int
|
int
|
||||||
default 64
|
default 64
|
||||||
|
|
||||||
|
config AZ_PIN
|
||||||
|
hex
|
||||||
|
default 0xaa
|
||||||
|
help
|
||||||
|
bit 1,0 - pin 0
|
||||||
|
bit 3,2 - pin 1
|
||||||
|
bit 5,4 - pin 2
|
||||||
|
bit 7,6 - pin 3
|
||||||
endif
|
endif
|
||||||
|
|
|
@ -266,10 +266,10 @@ FCH_DATA_BLOCK InitEnvCfgDefault = {
|
||||||
0, // AzaliaSnoop
|
0, // AzaliaSnoop
|
||||||
0, // AzaliaDummy
|
0, // AzaliaDummy
|
||||||
{ // AZALIA_PIN
|
{ // AZALIA_PIN
|
||||||
2, // AzaliaSdin0
|
CONFIG_AZ_PIN & 0x3, // AzaliaSdin0
|
||||||
2, // AzaliaSdin1
|
(CONFIG_AZ_PIN & 0xc) >> 2, // AzaliaSdin1
|
||||||
2, // AzaliaSdin2
|
(CONFIG_AZ_PIN & 0x30) >> 4, // AzaliaSdin2
|
||||||
2, // AzaliaSdin3
|
(CONFIG_AZ_PIN & 0xc0) >> 6, // AzaliaSdin3
|
||||||
},
|
},
|
||||||
NULL, // *AzaliaOemCodecTablePtr
|
NULL, // *AzaliaOemCodecTablePtr
|
||||||
NULL, // *AzaliaOemFpCodecTablePtr
|
NULL, // *AzaliaOemFpCodecTablePtr
|
||||||
|
|
Loading…
Reference in New Issue