It's not obvious how to set specific byte of a multi-byte field in the set file. Add an example (and a template) for setting MAC address. Change-Id: Iea983071682ffebd61757497d43c70cc8214043d Signed-off-by: Evgeny Zinoviev <me@ch1p.io> Reviewed-on: https://review.coreboot.org/c/coreboot/+/39664 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Swift Geek (Sebastian Grzywna) <swiftgeek@gmail.com> Reviewed-by: Angel Pons <th3fanbus@gmail.com> Reviewed-by: Jacob Garber <jgarber1@ualberta.ca>
		
			
				
	
	
		
			85 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			85 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
| # SPDX-License-Identifier: GPL-3.0-or-later
 | |
| 
 | |
| # GbE values for ICH9M
 | |
| {
 | |
| 	# Hardcoded chipset values
 | |
| 	"reserved04" = 0xffff,
 | |
| 	"version05" = 0x1083,
 | |
| 	"reserved06" = 0xffff,
 | |
| 	"reserved07" = 0xffff,
 | |
| 	"pbalow" = 0xffff,
 | |
| 	"pbahigh" = 0xffff,
 | |
| 	"pci_loadvid" = 1,
 | |
| 	"pci_loadssid" = 1,
 | |
| 	"pci_pmen" = 1,
 | |
| 	"pci_auxpwr" = 1,
 | |
| 	"pci_reserved4" = 1,
 | |
| 	"sh_phy_enpwrdown" = 1,
 | |
| 	"sh_reserved1" = 0x5,
 | |
| 	"sh_reserved3" = 1,
 | |
| 	"sh_sign" = 0x2,
 | |
| 	"cw1_extcfgptr" = 0x020,
 | |
| 	"cw1_oemload" = 1,
 | |
| 	"cw1_reserved1" = 1,
 | |
| 	"cw2_extphylen" = 0x05,
 | |
| 	"l1_reserved2" = 1,
 | |
| 	"l1_reserved4" = 1,
 | |
| 	"l1_lplu_non_d0a" = 1,
 | |
| 	"l1_gbedis_non_d0a" = 1,
 | |
| 	"reserved19" = 0x2b40,
 | |
| 	"reserved1a" = 0x0043,
 | |
| 	"reserved1c" = 0x10f5,
 | |
| 	"reserved1d" = 0xbaad,
 | |
| 	"_82567lm" = 0x10f5,
 | |
| 	"_82567lf" = 0x10bf,
 | |
| 	"reserved20" = 0xbaad,
 | |
| 	"_82567v" = 0x10cb,
 | |
| 	"reserved22_0" = 0xbaad,
 | |
| 	"reserved22_1" = 0xbaad,
 | |
| 
 | |
| 	# Hardcoded PXE setup (disabled)
 | |
| 	"pxe30_defbootsel" = 0x3,
 | |
| 	"pxe30_ctrlsprompt" = 0x3,
 | |
| 	"pxe30_pxeabsent" = 1,
 | |
| 	"pxe31_disablemenu" = 1,
 | |
| 	"pxe31_disabletitle" = 1,
 | |
| 	"pxe31_signature" = 1,
 | |
| 	"pxe32_buildnum" = 0x18,
 | |
| 	"pxe32_minorversion" = 0x3,
 | |
| 	"pxe32_majorversion" = 0x1,
 | |
| 	"pxe33_basecodeabsent" = 1,
 | |
| 	"pxe33_undipresent" = 1,
 | |
| 	"pxe33_reserved1" = 1,
 | |
| 	"pxe33_signature" = 1,
 | |
| 	"pxe_padding"[11] = 0xffff,
 | |
| 
 | |
| 	# GbE power settings
 | |
| 	"lanpwr_d3pwr" = 1,
 | |
| 	"lanpwr_d0pwr" = 13,
 | |
| 
 | |
| 	# GbE LED modes
 | |
| 	"l1_led1mode" = 0xb,
 | |
| 	"l1_led1blinks" = 1,
 | |
| 	"l02_led0mode" = 0x2,
 | |
| 	"l02_led2mode" = 0x1,
 | |
| 
 | |
| 	# Padding 0xf80 bytes
 | |
| 	"padding"[0xf80] = 0xff,
 | |
| 
 | |
| 	# TODO: make command line switch for these
 | |
| 
 | |
| 	# Configurable PCI IDs
 | |
| 	"ssdid" = 0x20ee,
 | |
| 	"ssvid" = 0x17aa,
 | |
| 	"did" = 0x10f5,
 | |
| 	"vid" = 0x8086,
 | |
| 
 | |
| 	# This example sets MAC address to 00:11:22:33:44:55
 | |
| 	"macaddress0" = 0x00,
 | |
| 	"macaddress1" = 0x11,
 | |
| 	"macaddress2" = 0x22,
 | |
| 	"macaddress3" = 0x33,
 | |
| 	"macaddress4" = 0x44,
 | |
| 	"macaddress5" = 0x55
 | |
| }
 |