This commit adds:
- new uclass id: UCLASS_ADC
- new uclass driver: drivers/adc/adc-uclass.c
The new uclass's API allows for ADC operation on:
* single-channel with channel selection by a number
* multti-channel with channel selection by bit mask
ADC uclass's functions:
* single-channel:
- adc_start_channel() - start channel conversion
- adc_channel_data() - get conversion data
- adc_channel_single_shot() - start/get conversion data
* multi-channel:
- adc_start_channels() - start selected channels conversion
- adc_channels_data() - get conversion data
- adc_channels_single_shot() - start/get conversion data for channels
selected by bit mask
* general:
- adc_stop() - stop the conversion
- adc_vdd_value() - positive reference Voltage value with polarity [uV]
- adc_vss_value() - negative reference Voltage value with polarity [uV]
- adc_data_mask() - conversion data bit mask
The device tree can provide below constraints/properties:
- vdd-polarity-negative: if true: Vdd = vdd-microvolts * (-1)
- vss-polarity-negative: if true: Vss = vss-microvolts * (-1)
- vdd-supply: phandle to Vdd regulator's node
- vss-supply: phandle to Vss regulator's node
And optional, checked only if the above corresponding, doesn't exist:
- vdd-microvolts: positive reference Voltage [uV]
- vss-microvolts: negative reference Voltage [uV]
Signed-off-by: Przemyslaw Marczak <p.marczak@samsung.com>
Cc: Simon Glass <sjg@chromium.org>
Signed-off-by: Minkyu Kang <mk7.kang@samsung.com>
68 lines
1.9 KiB
Makefile
68 lines
1.9 KiB
Makefile
obj-$(CONFIG_$(SPL_)DM) += core/
|
|
obj-$(CONFIG_$(SPL_)CLK) += clk/
|
|
obj-$(CONFIG_$(SPL_)LED) += led/
|
|
obj-$(CONFIG_$(SPL_)PINCTRL) += pinctrl/
|
|
obj-$(CONFIG_$(SPL_)RAM) += ram/
|
|
|
|
ifdef CONFIG_SPL_BUILD
|
|
|
|
obj-$(CONFIG_SPL_I2C_SUPPORT) += i2c/
|
|
obj-$(CONFIG_SPL_GPIO_SUPPORT) += gpio/
|
|
obj-$(CONFIG_SPL_MMC_SUPPORT) += mmc/
|
|
obj-$(CONFIG_SPL_MPC8XXX_INIT_DDR_SUPPORT) += ddr/fsl/
|
|
obj-$(CONFIG_SYS_MVEBU_DDR_A38X) += ddr/marvell/a38x/
|
|
obj-$(CONFIG_SYS_MVEBU_DDR_AXP) += ddr/marvell/axp/
|
|
obj-$(CONFIG_ALTERA_SDRAM) += ddr/altera/
|
|
obj-$(CONFIG_SPL_SERIAL_SUPPORT) += serial/
|
|
obj-$(CONFIG_SPL_SPI_FLASH_SUPPORT) += mtd/spi/
|
|
obj-$(CONFIG_SPL_SPI_SUPPORT) += spi/
|
|
obj-$(CONFIG_SPL_POWER_SUPPORT) += power/ power/pmic/
|
|
obj-$(CONFIG_SPL_POWER_SUPPORT) += power/regulator/
|
|
obj-$(CONFIG_SPL_MTD_SUPPORT) += mtd/
|
|
obj-$(CONFIG_SPL_NAND_SUPPORT) += mtd/nand/
|
|
obj-$(CONFIG_SPL_DRIVERS_MISC_SUPPORT) += misc/
|
|
obj-$(CONFIG_SPL_ONENAND_SUPPORT) += mtd/onenand/
|
|
obj-$(CONFIG_SPL_DMA_SUPPORT) += dma/
|
|
obj-$(CONFIG_SPL_ETH_SUPPORT) += net/
|
|
obj-$(CONFIG_SPL_ETH_SUPPORT) += net/phy/
|
|
obj-$(CONFIG_SPL_USBETH_SUPPORT) += net/phy/
|
|
obj-$(CONFIG_SPL_MUSB_NEW_SUPPORT) += usb/musb-new/
|
|
obj-$(CONFIG_SPL_USBETH_SUPPORT) += usb/gadget/
|
|
obj-$(CONFIG_SPL_WATCHDOG_SUPPORT) += watchdog/
|
|
obj-$(CONFIG_SPL_USB_HOST_SUPPORT) += usb/host/
|
|
obj-$(CONFIG_OMAP_USB_PHY) += usb/phy/
|
|
obj-$(CONFIG_SPL_SATA_SUPPORT) += block/
|
|
|
|
else
|
|
|
|
obj-y += adc/
|
|
obj-$(CONFIG_DM_DEMO) += demo/
|
|
obj-$(CONFIG_BIOSEMU) += bios_emulator/
|
|
obj-y += block/
|
|
obj-$(CONFIG_BOOTCOUNT_LIMIT) += bootcount/
|
|
obj-$(CONFIG_CPU) += cpu/
|
|
obj-y += crypto/
|
|
obj-$(CONFIG_FPGA) += fpga/
|
|
obj-y += hwmon/
|
|
obj-y += misc/
|
|
obj-y += pcmcia/
|
|
obj-y += dfu/
|
|
obj-y += rtc/
|
|
obj-y += sound/
|
|
obj-y += timer/
|
|
obj-y += tpm/
|
|
obj-y += twserial/
|
|
obj-y += video/
|
|
obj-y += watchdog/
|
|
obj-$(CONFIG_QE) += qe/
|
|
obj-$(CONFIG_U_QE) += qe/
|
|
obj-y += memory/
|
|
obj-y += pwm/
|
|
obj-y += input/
|
|
# SOC specific infrastructure drivers.
|
|
obj-y += soc/
|
|
obj-$(CONFIG_REMOTEPROC) += remoteproc/
|
|
obj-y += thermal/
|
|
|
|
endif
|