mirror of
				https://source.denx.de/u-boot/u-boot.git
				synced 2025-10-31 00:11:51 +01:00 
			
		
		
		
	This patch adds the driver for the Amlogic Meson Successive Approximation Register (SAR) A/D Converter based on the Linux IIO driver thanks to the great work of Martin Blumenstingl. The driver has been adapted to U-Boot and the ADC UClass. This patch depends on the regmap "regmap: add regmap_update_bits() helper" patch and has been tested using the newly introducted "adc" CLI command in the "cmd: add ADC cli commands" patch. Signed-off-by: Neil Armstrong <narmstrong@baylibre.com>
		
			
				
	
	
		
			13 lines
		
	
	
		
			343 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			343 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
| #
 | |
| # Copyright (C) 2015 Samsung Electronics
 | |
| # Przemyslaw Marczak <p.marczak@samsung.com>
 | |
| #
 | |
| # SPDX-License-Identifier:     GPL-2.0+
 | |
| #
 | |
| 
 | |
| obj-$(CONFIG_ADC) += adc-uclass.o
 | |
| obj-$(CONFIG_ADC_EXYNOS) += exynos-adc.o
 | |
| obj-$(CONFIG_ADC_SANDBOX) += sandbox.o
 | |
| obj-$(CONFIG_SARADC_ROCKCHIP) += rockchip-saradc.o
 | |
| obj-$(CONFIG_SARADC_MESON) += meson-saradc.o
 |