mirror of
				https://github.com/torvalds/linux.git
				synced 2025-11-04 10:40:15 +02:00 
			
		
		
		
	The EEPROMs which hold the SPD data on DDR4 memory modules are no longer standard AT24C02-compatible EEPROMs. They are 512-byte EEPROMs which use only 1 I2C address for data access. You need to switch between the lower page and the upper page of data by sending commands on the SMBus. Signed-off-by: Jean Delvare <jdelvare@suse.de> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
		
			
				
	
	
		
			10 lines
		
	
	
	
		
			428 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
	
		
			428 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
# SPDX-License-Identifier: GPL-2.0
 | 
						|
obj-$(CONFIG_EEPROM_AT24)	+= at24.o
 | 
						|
obj-$(CONFIG_EEPROM_AT25)	+= at25.o
 | 
						|
obj-$(CONFIG_EEPROM_LEGACY)	+= eeprom.o
 | 
						|
obj-$(CONFIG_EEPROM_MAX6875)	+= max6875.o
 | 
						|
obj-$(CONFIG_EEPROM_93CX6)	+= eeprom_93cx6.o
 | 
						|
obj-$(CONFIG_EEPROM_93XX46)	+= eeprom_93xx46.o
 | 
						|
obj-$(CONFIG_EEPROM_DIGSY_MTC_CFG) += digsy_mtc_eeprom.o
 | 
						|
obj-$(CONFIG_EEPROM_IDT_89HPESX) += idt_89hpesx.o
 | 
						|
obj-$(CONFIG_EEPROM_EE1004)	+= ee1004.o
 |