samsung/lumpy: Swap SPD assignments
On-board memory is on channel 1. This fixes native raminit with 4GiB SO-DIMM installed. Change-Id: If1b94e050d7e8d0dbd349c0415a182730aa5fa90 Signed-off-by: Kyösti Mälkki <kyosti.malkki@gmail.com> Reviewed-on: https://review.coreboot.org/16845 Tested-by: build bot (Jenkins) Reviewed-by: Patrick Rudolph <siro@das-labor.org> Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net>
This commit is contained in:
		@@ -239,9 +239,9 @@ const struct southbridge_usb_port mainboard_usb_ports[] = {
 | 
				
			|||||||
void mainboard_get_spd(spd_raw_data *spd)
 | 
					void mainboard_get_spd(spd_raw_data *spd)
 | 
				
			||||||
{
 | 
					{
 | 
				
			||||||
	/* get onboard dimm spd */
 | 
						/* get onboard dimm spd */
 | 
				
			||||||
	memcpy(&spd[0], locate_spd(), 256);
 | 
						memcpy(&spd[2], locate_spd(), 256);
 | 
				
			||||||
	/* read removable dimm spd */
 | 
						/* read removable dimm spd */
 | 
				
			||||||
	read_spd(&spd[2], 0x50);
 | 
						read_spd(&spd[0], 0x50);
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
void mainboard_early_init(int s3resume)
 | 
					void mainboard_early_init(int s3resume)
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user