mirror of
				https://github.com/qemu/qemu.git
				synced 2025-10-31 04:06:46 +00:00 
			
		
		
		
	 78c71af804
			
		
	
	
		78c71af804
		
	
	
	
	
		
			
			Implement an I2C slave which implements DDC and returns the EDID data for an attached monitor. Signed-off-by: Peter Maydell <peter.maydell@linaro.org> Reviewed-by: Alistair Francis <alistair.francis@xilinx.com> Tested-by: Hyun Kwon <hyun.kwon@xilinx.com> Signed-off-by: KONRAD Frederic <fred.konrad@greensocs.com> Message-id: 1465833014-21982-7-git-send-email-fred.konrad@greensocs.com - Rebased on the current master. - Modified for QOM. Signed-off-by: KONRAD Frederic <fred.konrad@greensocs.com> Reviewed-by: Alistair Francis <alistair.francis@xilinx.com> Tested-By: Hyun Kwon <hyun.kwon@xilinx.com> [PMM: actually wire up the vmstate to dc->vmsd] Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
		
			
				
	
	
		
			11 lines
		
	
	
		
			445 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
		
			445 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
| common-obj-y += core.o smbus.o smbus_eeprom.o
 | |
| common-obj-$(CONFIG_DDC) += i2c-ddc.o
 | |
| common-obj-$(CONFIG_VERSATILE_I2C) += versatile_i2c.o
 | |
| common-obj-$(CONFIG_ACPI_X86) += smbus_ich9.o
 | |
| common-obj-$(CONFIG_APM) += pm_smbus.o
 | |
| common-obj-$(CONFIG_BITBANG_I2C) += bitbang_i2c.o
 | |
| common-obj-$(CONFIG_EXYNOS4) += exynos4210_i2c.o
 | |
| common-obj-$(CONFIG_IMX_I2C) += imx_i2c.o
 | |
| common-obj-$(CONFIG_ASPEED_SOC) += aspeed_i2c.o
 | |
| obj-$(CONFIG_OMAP) += omap_i2c.o
 |