instruction
stringlengths
82
202
input
stringclasses
1 value
output
stringlengths
73
23.9M
Linux kernel'inin 'drivers/iio/adc/rohm-bd79124' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0-only /* * ROHM ADC driver for BD79124 ADC/GPO device * https://fscdn.rohm.com/en/products/databook/datasheet/ic/data_converter/dac/bd79124muf-c-e.pdf * * Copyright (c) 2025, ROHM Semiconductor. */ #include <linux/array_size.h> #include <linux/bitfield.h> #include <linux/bi...
Linux kernel'inin 'drivers/iio/adc/nxp-sar-adc' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0-only /* * NXP SAR-ADC driver (adapted from Freescale Vybrid vf610 ADC driver * by Fugang Duan <B38611@freescale.com>) * * Copyright 2013 Freescale Semiconductor, Inc. * Copyright 2017, 2020-2025 NXP * Copyright 2025, Linaro Ltd */ #include <linux/bitfield.h> #include <lin...
Linux kernel'inin 'drivers/iio/adc/rockchip_saradc' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0-or-later /* * Rockchip Successive Approximation Register (SAR) A/D Converter * Copyright (C) 2014 Rockchip Electronics Co., Ltd. */ #include <linux/bitfield.h> #include <linux/module.h> #include <linux/mutex.h> #include <linux/platform_device.h> #include <linux/interrupt.h> ...
Linux kernel'inin 'drivers/iio/adc/ti-ads7950' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0 /* * Texas Instruments ADS7950 SPI ADC driver * * Copyright 2016 David Lechner <david@lechnology.com> * * Based on iio/ad7923.c: * Copyright 2011 Analog Devices Inc * Copyright 2012 CS Systemes d'Information * * And also on hwmon/ads79xx.c * Copyright (C) 2013 Texas In...
Linux kernel'inin 'drivers/iio/adc/qcom-spmi-vadc' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0-only /* * Copyright (c) 2012-2016, The Linux Foundation. All rights reserved. */ #include <linux/bitops.h> #include <linux/completion.h> #include <linux/delay.h> #include <linux/err.h> #include <linux/iio/adc/qcom-vadc-common.h> #include <linux/iio/iio.h> #include <linux/inte...
Linux kernel'inin 'drivers/iio/adc/lp8788_adc' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0-only /* * TI LP8788 MFD - ADC driver * * Copyright 2012 Texas Instruments * * Author: Milo(Woogyom) Kim <milo.kim@ti.com> */ #include <linux/delay.h> #include <linux/iio/iio.h> #include <linux/iio/driver.h> #include <linux/iio/machine.h> #include <linux/mfd/lp8788.h> #inc...
Linux işletim sistemi çekirdeği için 'drivers/iio/adc/ad7606_bus_iface' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0-or-later */ /* * Copyright (c) 2010-2024 Analog Devices Inc. * Copyright (c) 2025 Baylibre, SAS */ #ifndef __LINUX_PLATFORM_DATA_AD7606_H__ #define __LINUX_PLATFORM_DATA_AD7606_H__ struct iio_backend; struct ad7606_platform_data { int (*bus_reg_read)(struct iio_backend *ba...
Linux kernel'inin 'drivers/iio/adc/berlin2-adc' alt sistemi için gerekli C kaynak kodunu implemente et.
```c /* * Marvell Berlin2 ADC driver * * Copyright (C) 2015 Marvell Technology Group Ltd. * * Antoine Tenart <antoine.tenart@free-electrons.com> * * This file is licensed under the terms of the GNU General Public * License version 2. This program is licensed "as is" without any * warranty of any kind, whether ...
Linux kernel'inin 'drivers/iio/adc/max14001' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: (GPL-2.0-only OR BSD-3-Clause) /* * Analog Devices MAX14001/MAX14002 ADC driver * * Copyright (C) 2023-2025 Analog Devices Inc. * Copyright (C) 2023 Kim Seer Paller <kimseer.paller@analog.com> * Copyright (c) 2025 Marilene Andrade Garcia <marilene.agarcia@gmail.com> * * Datasheet...
Linux kernel'inin 'drivers/iio/adc/ti-tlc4541' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0-only /* * TI tlc4541 ADC Driver * * Copyright (C) 2017 Phil Reid * * Datasheets can be found here: * https://www.ti.com/lit/gpn/tlc3541 * https://www.ti.com/lit/gpn/tlc4541 * * The tlc4541 requires 24 clock cycles to start a transfer. * Conversion then takes 2.94us to ...
Linux kernel'inin 'drivers/iio/adc/adi-axi-adc' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0-only /* * Analog Devices Generic AXI ADC IP core * Link: https://wiki.analog.com/resources/fpga/docs/axi_adc_ip * * Copyright 2012-2020 Analog Devices Inc. */ #include <linux/adi-axi-common.h> #include <linux/bitfield.h> #include <linux/cleanup.h> #include <linux/clk.h> #i...
Linux kernel'inin 'drivers/iio/adc/axp20x_adc' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0-only /* ADC driver for AXP20X and AXP22X PMICs * * Copyright (c) 2016 Free Electrons NextThing Co. * Quentin Schulz <quentin.schulz@free-electrons.com> */ #include <linux/unaligned.h> #include <linux/bitfield.h> #include <linux/completion.h> #include <linux/interrupt.h> #in...
Linux kernel'inin 'drivers/iio/adc/hx711' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0-or-later /* * HX711: analog to digital converter for weight sensor module * * Copyright (c) 2016 Andreas Klinger <ak@it-klinger.de> */ #include <linux/err.h> #include <linux/kernel.h> #include <linux/module.h> #include <linux/mod_devicetable.h> #include <linux/platform_devic...
Linux kernel'inin 'drivers/iio/adc/ti_am335x_adc' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0-only /* * TI ADC MFD driver * * Copyright (C) 2012 Texas Instruments Incorporated - https://www.ti.com/ */ #include <linux/kernel.h> #include <linux/err.h> #include <linux/module.h> #include <linux/slab.h> #include <linux/interrupt.h> #include <linux/platform_device.h> #inc...
Linux işletim sistemi çekirdeği için 'drivers/iio/adc/stm32-adc-core' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0 */ /* * This file is part of STM32 ADC driver * * Copyright (C) 2016, STMicroelectronics - All Rights Reserved * Author: Fabrice Gasnier <fabrice.gasnier@st.com>. * */ #ifndef __STM32_ADC_H #define __STM32_ADC_H #include <linux/bitfield.h> #include <linux/bits.h> /* * ...
Linux kernel'inin 'drivers/iio/adc/ti-ads1119' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0-only /* * Texas Instruments ADS1119 ADC driver. * * Copyright 2024 Toradex */ #include <linux/bits.h> #include <linux/bitfield.h> #include <linux/completion.h> #include <linux/delay.h> #include <linux/dev_printk.h> #include <linux/err.h> #include <linux/gpio/consumer.h> #in...
Linux kernel'inin 'drivers/iio/adc/imx8qxp-adc' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0+ /* * NXP i.MX8QXP ADC driver * * Based on the work of Haibo Chen <haibo.chen@nxp.com> * The initial developer of the original code is Haibo Chen. * Portions created by Haibo Chen are Copyright (C) 2018 NXP. * All Rights Reserved. * * Copyright (C) 2018 NXP * Copyright ...
Linux kernel'inin 'drivers/iio/adc/ti-adc161s626' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0+ /* * ti-adc161s626.c - Texas Instruments ADC161S626 1-channel differential ADC * * ADC Devices Supported: * adc141s626 - 14-bit ADC * adc161s626 - 16-bit ADC * * Copyright (C) 2016-2018 * Author: Matt Ranostay <matt.ranostay@konsulko.com> */ #include <linux/module.h...
Linux işletim sistemi çekirdeği için 'drivers/iio/adc/ltc2497' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0-only */ #define LTC2497_ENABLE 0xA0 #define LTC2497_CONFIG_DEFAULT LTC2497_ENABLE #define LTC2497_CONVERSION_TIME_MS 150ULL struct ltc2497_chip_info { u32 resolution; const char *name; }; struct ltc2497core_driverdata { struct regulator *ref; ktime_t time_prev; /* loc...
Linux kernel'inin 'drivers/iio/adc/aspeed_adc' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0-only /* * Aspeed AST2400/2500/2600 ADC * * Copyright (C) 2017 Google, Inc. * Copyright (C) 2021 Aspeed Technology Inc. * * ADC clock formula: * Ast2400/Ast2500: * clock period = period of PCLK * 2 * (ADC0C[31:17] + 1) * (ADC0C[9:0] + 1) * Ast2600: * clock period = peri...
Linux kernel'inin 'drivers/iio/adc/ad7091r8' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0 /* * Analog Devices AD7091R8 12-bit SAR ADC driver * * Copyright 2023 Analog Devices Inc. */ #include <linux/bitfield.h> #include <linux/iio/iio.h> #include <linux/module.h> #include <linux/regmap.h> #include <linux/gpio/consumer.h> #include <linux/spi/spi.h> #include "ad7...
Linux işletim sistemi çekirdeği için 'drivers/iio/adc/ad7091r-base' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0 */ /* * AD7091RX Analog to Digital converter driver * * Copyright 2014-2019 Analog Devices Inc. */ #ifndef __DRIVERS_IIO_ADC_AD7091R_BASE_H__ #define __DRIVERS_IIO_ADC_AD7091R_BASE_H__ #include <linux/regmap.h> #define AD7091R_REG_RESULT 0 #define AD7091R_REG_CHANNEL 1 #...
Linux kernel'inin 'drivers/iio/adc/ti-adc084s021' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0-only /* * Copyright (C) 2017 Axis Communications AB * * Driver for Texas Instruments' ADC084S021 ADC chip. * Datasheets can be found here: * https://www.ti.com/lit/ds/symlink/adc084s021.pdf */ #include <linux/err.h> #include <linux/spi/spi.h> #include <linux/module.h> #in...
Linux kernel'inin 'drivers/iio/adc/ti-ads131m02' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0-only /* * Driver for Texas Instruments ADS131M02 family ADC chips. * * Copyright (C) 2024 Protonic Holland * Copyright (C) 2025 Oleksij Rempel <kernel@pengutronix.de>, Pengutronix * * Primary Datasheet Reference (used for citations): * ADS131M08 8-Channel, Simultaneously-...
Linux kernel'inin 'drivers/iio/adc/ti-adc128s052' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0 /* * Copyright (C) 2014 Angelo Compagnucci <angelo.compagnucci@gmail.com> * * Driver for Texas Instruments' ADC128S052, ADC122S021 and ADC124S021 ADC chip. * Datasheets can be found here: * https://www.ti.com/lit/ds/symlink/adc128s052.pdf * https://www.ti.com/lit/ds/symlin...
Linux kernel'inin 'drivers/iio/adc/ad7768-1' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0 /* * Analog Devices AD7768-1 SPI ADC driver * * Copyright 2017 Analog Devices Inc. */ #include <linux/array_size.h> #include <linux/bitfield.h> #include <linux/cleanup.h> #include <linux/clk.h> #include <linux/completion.h> #include <linux/delay.h> #include <linux/device.h> ...
Linux kernel'inin 'drivers/iio/adc/ad7173' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0+ /* * AD717x and AD411x family SPI ADC driver * * Supported devices: * AD4111/AD4112/AD4113/AD4114/AD4115/AD4116 * AD7172-2/AD7172-4/AD7173-8/AD7175-2 * AD7175-8/AD7176-2/AD7177-2 * * Copyright (C) 2015, 2024 Analog Devices, Inc. * Copyright (C) 2025 BayLibre, SAS *...
Linux kernel'inin 'drivers/iio/adc/ad7780' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0 /* * AD7170/AD7171 and AD7780/AD7781 SPI ADC driver * * Copyright 2011 Analog Devices Inc. * Copyright 2019 Renato Lui Geh */ #include <linux/interrupt.h> #include <linux/device.h> #include <linux/kernel.h> #include <linux/slab.h> #include <linux/sysfs.h> #include <linux/s...
Linux kernel'inin 'drivers/iio/adc/gehc-pmc-adc' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0 /* * The GE HealthCare PMC ADC is a 16-Channel (Voltage and current), 16-Bit * ADC with an I2C Interface. * * Copyright (C) 2024, GE HealthCare * * Authors: * Herve Codina <herve.codina@bootlin.com> */ #include <dt-bindings/iio/adc/gehc,pmc-adc.h> #include <linux/bitops....
Linux kernel'inin 'drivers/iio/adc/mxs-lradc-adc' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0-or-later /* * Freescale MXS LRADC ADC driver * * Copyright (c) 2012 DENX Software Engineering, GmbH. * Copyright (c) 2017 Ksenija Stanojevic <ksenija.stanojevic@gmail.com> * * Authors: * Marek Vasut <marex@denx.de> * Ksenija Stanojevic <ksenija.stanojevic@gmail.com> *...
Linux kernel'inin 'drivers/iio/adc/sophgo-cv1800b-adc' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0-or-later /* * Sophgo CV1800B SARADC Driver * * Copyright (C) Bootlin 2024 * Author: Thomas Bonnefille <thomas.bonnefille@bootlin.com> */ #include <linux/array_size.h> #include <linux/bitfield.h> #include <linux/bits.h> #include <linux/cleanup.h> #include <linux/clk.h> #...
Linux kernel'inin 'drivers/iio/adc/ad7091r5' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0 /* * AD7091R5 Analog to Digital converter driver * * Copyright 2014-2019 Analog Devices Inc. */ #include <linux/i2c.h> #include <linux/iio/iio.h> #include <linux/module.h> #include <linux/regmap.h> #include "ad7091r-base.h" static const struct iio_chan_spec ad7091r5_chann...
Linux kernel'inin 'drivers/iio/adc/ina2xx-adc' alt sistemi için gerekli C kaynak kodunu implemente et.
```c /* * INA2XX Current and Power Monitors * * Copyright 2015 Baylibre SAS. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License version 2 as * published by the Free Software Foundation. * * Based on linux/drivers/iio/adc/ad7291.c * C...
Linux işletim sistemi çekirdeği için 'drivers/iio/adc/xilinx-xadc' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0-only */ /* * Xilinx XADC driver * * Copyright 2013 Analog Devices Inc. * Author: Lars-Peter Clausen <lars@metafoo.de> */ #ifndef __IIO_XILINX_XADC__ #define __IIO_XILINX_XADC__ #include <linux/interrupt.h> #include <linux/mutex.h> #include <linux/spinlock.h> struct iio_...
Linux kernel'inin 'drivers/iio/adc/ad4000' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0+ /* * AD4000 SPI ADC driver * * Copyright 2024 Analog Devices Inc. */ #include <linux/bits.h> #include <linux/bitfield.h> #include <linux/byteorder/generic.h> #include <linux/cleanup.h> #include <linux/device.h> #include <linux/err.h> #include <linux/math.h> #include <linux/...
Linux kernel'inin 'drivers/iio/adc/ti-ads7138' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0-or-later /* * ADS7138 - Texas Instruments Analog-to-Digital Converter */ #include <linux/bitfield.h> #include <linux/cleanup.h> #include <linux/err.h> #include <linux/i2c.h> #include <linux/init.h> #include <linux/interrupt.h> #include <linux/kernel.h> #include <linux/module....
Linux kernel'inin 'drivers/iio/adc/ltc2497' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0-only /* * ltc2497.c - Driver for Analog Devices/Linear Technology LTC2497 ADC * * Copyright (C) 2017 Analog Devices Inc. * * Datasheet: http://cds.linear.com/docs/en/datasheet/2497fd.pdf */ #include <linux/i2c.h> #include <linux/iio/iio.h> #include <linux/iio/driver.h> #i...
Linux kernel'inin 'drivers/iio/adc/ltc2309' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0 /* * The LTC2305 is a 2-Channel, 12-Bit SAR ADC with an I2C Interface. * The LTC2309 is an 8-Channel, 12-Bit SAR ADC with an I2C Interface. * * Datasheet: * https://www.analog.com/media/en/technical-documentation/data-sheets/23015fb.pdf * https://www.analog.com/media/en/t...
Linux kernel'inin 'drivers/iio/adc/xilinx-ams' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0 /* * Xilinx AMS driver * * Copyright (C) 2021 Xilinx, Inc. * * Manish Narani <mnarani@xilinx.com> * Rajnikant Bhojani <rajnikant.bhojani@xilinx.com> */ #include <linux/bits.h> #include <linux/bitfield.h> #include <linux/clk.h> #include <linux/delay.h> #include <linux/...
Linux kernel'inin 'drivers/iio/adc/ti-ads131e08' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0 /* * Texas Instruments ADS131E0x 4-, 6- and 8-Channel ADCs * * Copyright (c) 2020 AVL DiTEST GmbH * Tomislav Denis <tomislav.denis@avl.com> * * Datasheet: https://www.ti.com/lit/ds/symlink/ads131e08.pdf */ #include <linux/bitfield.h> #include <linux/clk.h> #include <li...
Linux kernel'inin 'drivers/iio/adc/ad4080' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0-only /* * Analog Devices AD4080 SPI ADC driver * * Copyright 2025 Analog Devices Inc. */ #include <linux/array_size.h> #include <linux/bitfield.h> #include <linux/bits.h> #include <linux/clk.h> #include <linux/device.h> #include <linux/err.h> #include <linux/iio/backend.h> ...
Linux kernel'inin 'drivers/iio/adc/sun4i-gpadc-iio' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0 /* ADC driver for sunxi platforms' (A10, A13 and A31) GPADC * * Copyright (c) 2016 Quentin Schulz <quentin.schulz@free-electrons.com> * * The Allwinner SoCs all have an ADC that can also act as a touchscreen * controller and a thermal sensor. * The thermal sensor works onl...
Linux kernel'inin 'drivers/iio/adc/ep93xx_adc' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0-only /* * Driver for ADC module on the Cirrus Logic EP93xx series of SoCs * * Copyright (C) 2015 Alexander Sverdlin * * The driver uses polling to get the conversion status. According to EP93xx * datasheets, reading ADCResult register starts the conversion, but user is als...
Linux kernel'inin 'drivers/iio/adc/cpcap-adc' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0-only /* * Copyright (C) 2017 Tony Lindgren <tony@atomide.com> * * Rewritten for Linux IIO framework with some code based on * earlier driver found in the Motorola Linux kernel: * * Copyright (C) 2009-2010 Motorola, Inc. */ #include <linux/delay.h> #include <linux/device....
Linux kernel'inin 'drivers/iio/adc/xilinx-xadc-core' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0-only /* * Xilinx XADC driver * * Copyright 2013-2014 Analog Devices Inc. * Author: Lars-Peter Clausen <lars@metafoo.de> * * Documentation for the parts can be found at: * - XADC hardmacro: Xilinx UG480 * - ZYNQ XADC interface: Xilinx UG585 * - AXI XADC interface: Xi...
Linux kernel'inin 'drivers/iio/adc/ad7887' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0-only /* * AD7887 SPI ADC driver * * Copyright 2010-2011 Analog Devices Inc. */ #include <linux/device.h> #include <linux/kernel.h> #include <linux/slab.h> #include <linux/sysfs.h> #include <linux/spi/spi.h> #include <linux/regulator/consumer.h> #include <linux/err.h> #inclu...
Linux kernel'inin 'drivers/iio/adc/qcom-vadc-common' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0 #include <linux/bug.h> #include <linux/kernel.h> #include <linux/bitops.h> #include <linux/fixp-arith.h> #include <linux/iio/adc/qcom-vadc-common.h> #include <linux/math64.h> #include <linux/log2.h> #include <linux/err.h> #include <linux/module.h> #include <linux/units.h> /** ...
Linux kernel'inin 'drivers/iio/adc/qcom-pm8xxx-xoadc' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0-only /* * Qualcomm PM8xxx PMIC XOADC driver * * These ADCs are known as HK/XO (house keeping / chrystal oscillator) * "XO" in "XOADC" means Chrystal Oscillator. It's a bunch of * specific-purpose and general purpose ADC converters and channels. * * Copyright (C) 2017 Lina...
Linux kernel'inin 'drivers/iio/adc/twl6030-gpadc' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0-only /* * TWL6030 GPADC module driver * * Copyright (C) 2009-2013 Texas Instruments Inc. * Nishant Kamat <nskamat@ti.com> * Balaji T K <balajitk@ti.com> * Graeme Gregory <gg@slimlogic.co.uk> * Girish S Ghongdemath <girishsg@ti.com> * Ambresh K <ambresh@ti.com> * Oleksan...
Linux kernel'inin 'drivers/iio/adc/ltc2485' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0-only /* * ltc2485.c - Driver for Linear Technology LTC2485 ADC * * Copyright (C) 2016 Alison Schofield <amsfield22@gmail.com> * * Datasheet: http://cds.linear.com/docs/en/datasheet/2485fd.pdf */ #include <linux/delay.h> #include <linux/i2c.h> #include <linux/module.h> #i...
Linux kernel'inin 'drivers/iio/adc/max1027' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0-only /* * iio/adc/max1027.c * Copyright (C) 2014 Philippe Reynes * * based on linux/drivers/iio/ad7923.c * Copyright 2011 Analog Devices Inc (from AD7923 Driver) * Copyright 2012 CS Systemes d'Information * * max1027.c * * Partial support for max1027 and sim...
Linux kernel'inin 'drivers/iio/adc/ad7091r-base' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0 /* * AD7091RX Analog to Digital converter driver * * Copyright 2014-2019 Analog Devices Inc. */ #include <linux/bitops.h> #include <linux/bitfield.h> #include <linux/cleanup.h> #include <linux/iio/events.h> #include <linux/iio/iio.h> #include <linux/interrupt.h> #include <l...
Linux kernel'inin 'drivers/iio/adc/ti-adc081c' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0-only /* * TI ADC081C/ADC101C/ADC121C 8/10/12-bit ADC driver * * Copyright (C) 2012 Avionic Design GmbH * Copyright (C) 2016 Intel * * Datasheets: * https://www.ti.com/lit/ds/symlink/adc081c021.pdf * https://www.ti.com/lit/ds/symlink/adc101c021.pdf * https://www.ti.com/l...
Linux kernel'inin 'drivers/iio/adc/ad799x' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0-only /* * iio/adc/ad799x.c * Copyright (C) 2010-2011 Michael Hennerich, Analog Devices Inc. * * based on iio/adc/max1363 * Copyright (C) 2008-2010 Jonathan Cameron * * based on linux/drivers/i2c/chips/max123x * Copyright (C) 2002-2004 Stefan Eletzhofer * * based on lin...
Linux işletim sistemi çekirdeği için 'drivers/iio/adc/stm32-dfsdm' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0 */ /* * This file is part of STM32 DFSDM driver * * Copyright (C) 2017, STMicroelectronics - All Rights Reserved * Author(s): Arnaud Pouliquen <arnaud.pouliquen@st.com>. */ #ifndef MDF_STM32_DFSDM__H #define MDF_STM32_DFSDM__H #include <linux/bitfield.h> /* * STM32 DFSD...
Linux kernel'inin 'drivers/iio/adc/ti-ads7924' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0 /* * IIO driver for Texas Instruments ADS7924 ADC, 12-bit, 4-Channels, I2C * * Author: Hugo Villeneuve <hvilleneuve@dimonoff.com> * Copyright 2022 DimOnOff * * based on iio/adc/ti-ads1015.c * Copyright (c) 2016, Intel Corporation. * * Datasheet: https://www.ti.com/lit/g...
Linux kernel'inin 'drivers/iio/adc/ltc2471' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0-only /* * Driver for Linear Technology LTC2471 and LTC2473 voltage monitors * The LTC2473 is identical to the 2471, but reports a differential signal. * * Copyright (C) 2017 Topic Embedded Products * Author: Mike Looijmans <mike.looijmans@topic.nl> */ #include <linux/err....
Linux kernel'inin 'drivers/iio/adc/twl4030-madc' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0-only /* * * TWL4030 MADC module driver-This driver monitors the real time * conversion of analog signals like battery temperature, * battery type, battery level etc. * * Copyright (C) 2011 Texas Instruments Incorporated - https://www.ti.com/ * J Keerthy <j-keerthy@ti.com>...
Linux kernel'inin 'drivers/iio/adc/ad7793' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0-only /* * AD7785/AD7792/AD7793/AD7794/AD7795 SPI ADC driver * * Copyright 2011-2012 Analog Devices Inc. */ #include <linux/interrupt.h> #include <linux/device.h> #include <linux/kernel.h> #include <linux/slab.h> #include <linux/sysfs.h> #include <linux/spi/spi.h> #include <...
Linux kernel'inin 'drivers/iio/adc/axp288_adc' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0-only /* * axp288_adc.c - X-Powers AXP288 PMIC ADC Driver * * Copyright (C) 2014 Intel Corporation * * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */ #include <linux/dmi.h> #include <linux/module.h> #include <linux/mutex.h> #include <linux/ke...
Linux kernel'inin 'drivers/iio/adc/viperboard_adc' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0-or-later /* * Nano River Technologies viperboard IIO ADC driver * * (C) 2012 by Lemonage GmbH * Author: Lars Poeschel <poeschel@lemonage.de> * All rights reserved. */ #include <linux/kernel.h> #include <linux/errno.h> #include <linux/module.h> #include <linux/slab.h> ...
Linux kernel'inin 'drivers/iio/adc/intel_dc_ti_adc' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0-only /* * Intel Dollar Cove TI PMIC GPADC Driver * * Copyright (C) 2014 Intel Corporation (Ramakrishna Pallala <ramakrishna.pallala@intel.com>) * Copyright (C) 2024 - 2025 Hans de Goede <hansg@kernel.org> */ #include <linux/bits.h> #include <linux/bitfield.h> #include <lin...
Linux kernel'inin 'drivers/iio/adc/mt6359-auxadc' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0-only /* * MediaTek MT6359 PMIC AUXADC IIO driver * * Copyright (c) 2021 MediaTek Inc. * Copyright (c) 2024 Collabora Ltd * Author: AngeloGioacchino Del Regno <angelogioacchino.delregno@collabora.com> */ #include <linux/bitfield.h> #include <linux/bits.h> #include <linux/c...
Linux kernel'inin 'drivers/iio/adc/ad7779' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0+ /* * AD7770, AD7771, AD7779 ADC * * Copyright 2023-2024 Analog Devices Inc. */ #include <linux/bitfield.h> #include <linux/bitmap.h> #include <linux/clk.h> #include <linux/crc8.h> #include <linux/delay.h> #include <linux/err.h> #include <linux/gpio/consumer.h> #include <li...
Linux kernel'inin 'drivers/iio/adc/pac1921' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0+ /* * IIO driver for PAC1921 High-Side Power/Current Monitor * * Copyright (C) 2024 Matteo Martelli <matteomartelli3@gmail.com> */ #include <linux/unaligned.h> #include <linux/bitfield.h> #include <linux/cleanup.h> #include <linux/i2c.h> #include <linux/iio/events.h> #inclu...
Linux kernel'inin 'drivers/iio/adc/ltc2497-core' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0-only /* * ltc2497-core.c - Common code for Analog Devices/Linear Technology * LTC2496 and LTC2497 ADCs * * Copyright (C) 2017 Analog Devices Inc. */ #include <linux/delay.h> #include <linux/iio/iio.h> #include <linux/iio/driver.h> #include <linux/module.h> #include <linux/...
Linux kernel'inin 'drivers/iio/adc/nau7802' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0-or-later /* * Driver for the Nuvoton NAU7802 ADC * * Copyright 2013 Free Electrons */ #include <linux/delay.h> #include <linux/i2c.h> #include <linux/interrupt.h> #include <linux/mod_devicetable.h> #include <linux/module.h> #include <linux/property.h> #include <linux/wait.h...
Linux kernel'inin 'drivers/iio/adc/max9611' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0 /* * iio/adc/max9611.c * * Maxim max9611/max9612 high side current sense amplifier with * 12-bit ADC interface. * * Copyright (C) 2017 Jacopo Mondi */ /* * This driver supports input common-mode voltage, current-sense * amplifier with programmable gains and die tempera...
Linux kernel'inin 'drivers/iio/adc/ad7280a' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0 /* * AD7280A Lithium Ion Battery Monitoring System * * Copyright 2011 Analog Devices Inc. */ #include <linux/bitfield.h> #include <linux/bits.h> #include <linux/cleanup.h> #include <linux/crc8.h> #include <linux/delay.h> #include <linux/device.h> #include <linux/err.h> #inc...
Linux kernel'inin 'drivers/iio/adc/ad4851' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0-only /* * Analog Devices AD4851 DAS driver * * Copyright 2024 Analog Devices Inc. */ #include <linux/array_size.h> #include <linux/bitfield.h> #include <linux/bits.h> #include <linux/delay.h> #include <linux/device.h> #include <linux/err.h> #include <linux/minmax.h> #includ...
Linux kernel'inin 'drivers/iio/adc/spear_adc' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0-only /* * ST SPEAr ADC driver * * Copyright 2012 Stefan Roese <sr@denx.de> */ #include <linux/mod_devicetable.h> #include <linux/module.h> #include <linux/platform_device.h> #include <linux/property.h> #include <linux/interrupt.h> #include <linux/device.h> #include <linux/k...
Linux kernel'inin 'drivers/iio/adc/dln2-adc' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0-only /* * Driver for the Diolan DLN-2 USB-ADC adapter * * Copyright (c) 2017 Jack Andersen */ #include <linux/kernel.h> #include <linux/module.h> #include <linux/types.h> #include <linux/platform_device.h> #include <linux/mfd/dln2.h> #include <linux/iio/iio.h> #include <li...
Linux kernel'inin 'drivers/iio/adc/bcm_iproc_adc' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0-only /* * Copyright 2016 Broadcom */ #include <linux/module.h> #include <linux/mod_devicetable.h> #include <linux/io.h> #include <linux/clk.h> #include <linux/mfd/syscon.h> #include <linux/regmap.h> #include <linux/delay.h> #include <linux/interrupt.h> #include <linux/platfor...
Linux kernel'inin 'drivers/iio/adc/vf610_adc' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0-or-later /* * Freescale Vybrid vf610 ADC driver * * Copyright 2013 Freescale Semiconductor, Inc. */ #include <linux/mod_devicetable.h> #include <linux/module.h> #include <linux/mutex.h> #include <linux/property.h> #include <linux/platform_device.h> #include <linux/interrupt...
Linux kernel'inin 'drivers/iio/adc/max1363' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0-only /* * iio/adc/max1363.c * Copyright (C) 2008-2010 Jonathan Cameron * * based on linux/drivers/i2c/chips/max123x * Copyright (C) 2002-2004 Stefan Eletzhofer * * based on linux/drivers/acron/char/pcf8583.c * Copyright (C) 2000 Russell King * * Driver for m...
Linux kernel'inin 'drivers/iio/adc/intel_mrfld_adc' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0 /* * ADC driver for Basin Cove PMIC * * Copyright (C) 2012 Intel Corporation * Author: Bin Yang <bin.yang@intel.com> * * Rewritten for upstream by: * Vincent Pelletier <plr.vincent@gmail.com> * Andy Shevchenko <andriy.shevchenko@linux.intel.com> */ #include <linux/bi...
Linux kernel'inin 'drivers/iio/adc/ad9467' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0-only /* * Analog Devices AD9467 SPI ADC driver * * Copyright 2012-2020 Analog Devices Inc. */ #include <linux/bitfield.h> #include <linux/bitmap.h> #include <linux/bitops.h> #include <linux/cleanup.h> #include <linux/clk.h> #include <linux/debugfs.h> #include <linux/delay.h...
Linux kernel'inin 'drivers/iio/adc/lpc32xx_adc' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0+ /* * lpc32xx_adc.c - Support for ADC in LPC32XX * * 3-channel, 10-bit ADC * * Copyright (C) 2011, 2012 Roland Stigge <stigge@antcom.de> */ #include <linux/clk.h> #include <linux/completion.h> #include <linux/err.h> #include <linux/iio/iio.h> #include <linux/interrupt....
Linux kernel'inin 'drivers/iio/adc/qcom-spmi-adc5-gen3' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0-only /* * Copyright (c) Qualcomm Technologies, Inc. and/or its subsidiaries. */ #include <linux/auxiliary_bus.h> #include <linux/bitfield.h> #include <linux/bits.h> #include <linux/cleanup.h> #include <linux/completion.h> #include <linux/container_of.h> #include <linux/delay....
Linux kernel'inin 'drivers/iio/adc/ad7625' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: (GPL-2.0-only) /* * Analog Devices Inc. AD7625 ADC driver * * Copyright 2024 Analog Devices Inc. * Copyright 2024 BayLibre, SAS * * Note that this driver requires the AXI ADC IP block configured for * LVDS to function. See Documentation/iio/ad7625.rst for more * information. */...
Linux kernel'inin 'drivers/iio/adc/hi8435' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0-or-later /* * Holt Integrated Circuits HI-8435 threshold detector driver * * Copyright (C) 2015 Zodiac Inflight Innovations * Copyright (C) 2015 Cogent Embedded, Inc. */ #include <linux/delay.h> #include <linux/iio/events.h> #include <linux/iio/iio.h> #include <linux/iio/s...
Linux kernel'inin 'drivers/iio/adc/stm32-adc-core' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0 /* * This file is part of STM32 ADC driver * * Copyright (C) 2016, STMicroelectronics - All Rights Reserved * Author: Fabrice Gasnier <fabrice.gasnier@st.com>. * * Inspired from: fsl-imx25-tsadc * */ #include <linux/bitfield.h> #include <linux/clk.h> #include <linux/int...
Linux kernel'inin 'drivers/iio/adc/stm32-dfsdm-adc' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0 /* * This file is the ADC part of the STM32 DFSDM driver * * Copyright (C) 2017, STMicroelectronics - All Rights Reserved * Author: Arnaud Pouliquen <arnaud.pouliquen@st.com>. */ #include <linux/dmaengine.h> #include <linux/dma-mapping.h> #include <linux/export.h> #include...
Linux kernel'inin 'drivers/iio/adc/men_z188_adc' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0-only /* * MEN 16z188 Analog to Digital Converter * * Copyright (C) 2014 MEN Mikroelektronik GmbH (www.men.de) * Author: Johannes Thumshirn <johannes.thumshirn@men.de> */ #include <linux/kernel.h> #include <linux/module.h> #include <linux/mcb.h> #include <linux/io.h> #inclu...
Linux kernel'inin 'drivers/iio/adc/ti-ads1298' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0 /* TI ADS1298 chip family driver * Copyright (C) 2023 - 2024 Topic Embedded Products */ #include <linux/bitfield.h> #include <linux/cleanup.h> #include <linux/clk.h> #include <linux/err.h> #include <linux/delay.h> #include <linux/device.h> #include <linux/gpio/consumer.h> #in...
Linux kernel'inin 'drivers/iio/adc/max11410' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0-only /* * MAX11410 SPI ADC driver * * Copyright 2022 Analog Devices Inc. */ #include <linux/bitfield.h> #include <linux/delay.h> #include <linux/device.h> #include <linux/err.h> #include <linux/interrupt.h> #include <linux/kernel.h> #include <linux/module.h> #include <linux/...
Linux kernel'inin 'drivers/iio/adc/ti-ads1018' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0-or-later /* * Texas Instruments ADS1018 ADC driver * * Copyright (C) 2025 Kurt Borja <kuurtb@gmail.com> */ #include <linux/array_size.h> #include <linux/bitfield.h> #include <linux/bitmap.h> #include <linux/dev_printk.h> #include <linux/gpio/consumer.h> #include <linux/inte...
Linux kernel'inin 'drivers/iio/adc/ti-ads8344' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0+ /* * ADS8344 16-bit 8-Channel ADC driver * * Author: Gregory CLEMENT <gregory.clement@bootlin.com> * * Datasheet: https://www.ti.com/lit/ds/symlink/ads8344.pdf */ #include <linux/delay.h> #include <linux/iio/buffer.h> #include <linux/iio/iio.h> #include <linux/module.h> ...
Linux kernel'inin 'drivers/iio/adc/xilinx-xadc-events' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0-only /* * Xilinx XADC driver * * Copyright 2013 Analog Devices Inc. * Author: Lars-Peter Clausen <lars@metafoo.de> */ #include <linux/iio/events.h> #include <linux/iio/iio.h> #include <linux/kernel.h> #include "xilinx-xadc.h" static const struct iio_chan_spec *xadc_even...
Linux kernel'inin 'drivers/iio/adc/mcp320x' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0-only /* * Copyright (C) 2013 Oskar Andero <oskar.andero@gmail.com> * Copyright (C) 2014 Rose Technology * Allan Bendorff Jensen <abj@rosetechnology.dk> * Soren Andersen <san@rosetechnology.dk> * * Driver for following ADC chips from Microchip Technology's: * 10 Bit...
Linux kernel'inin 'drivers/iio/adc/max1118' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0-only /* * MAX1117/MAX1118/MAX1119 8-bit, dual-channel ADCs driver * * Copyright (c) 2017 Akinobu Mita <akinobu.mita@gmail.com> * * Datasheet: https://datasheets.maximintegrated.com/en/ds/MAX1117-MAX1119.pdf * * SPI interface connections * * SPI MAXIM * M...
Linux kernel'inin 'drivers/iio/adc/ad4130' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0+ /* * Copyright (C) 2022 Analog Devices, Inc. * Author: Cosmin Tanislav <cosmin.tanislav@analog.com> */ #include <linux/bitfield.h> #include <linux/bitops.h> #include <linux/cleanup.h> #include <linux/clk.h> #include <linux/clk-provider.h> #include <linux/delay.h> #include <...
Linux kernel'inin 'drivers/iio/adc/ti-adc108s102' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0-only /* * TI ADC108S102 SPI ADC driver * * Copyright (c) 2013-2015 Intel Corporation. * Copyright (c) 2017 Siemens AG * * This IIO device driver is designed to work with the following * analog to digital converters from Texas Instruments: * ADC108S102 * ADC128S102 * ...
Linux kernel'inin 'drivers/iio/adc/ad7298' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0-only /* * AD7298 SPI ADC driver * * Copyright 2011 Analog Devices Inc. */ #include <linux/device.h> #include <linux/kernel.h> #include <linux/slab.h> #include <linux/sysfs.h> #include <linux/spi/spi.h> #include <linux/regulator/consumer.h> #include <linux/err.h> #include <l...
Linux kernel'inin 'drivers/iio/adc/mp2629_adc' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0-or-later /* * MP2629 Driver for ADC * * Copyright 2020 Monolithic Power Systems, Inc * * Author: Saravanan Sekar <sravanhome@gmail.com> */ #include <linux/iio/driver.h> #include <linux/iio/iio.h> #include <linux/iio/machine.h> #include <linux/mfd/mp2629.h> #include <linux...
Linux kernel'inin 'drivers/iio/adc/mcp3564' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0+ /* * IIO driver for MCP356X/MCP356XR and MCP346X/MCP346XR series ADC chip family * * Copyright (C) 2022-2023 Microchip Technology Inc. and its subsidiaries * * Author: Marius Cristea <marius.cristea@microchip.com> * * Datasheet for MCP3561, MCP3562, MCP3564 can be found ...
Linux kernel'inin 'drivers/iio/adc/ab8500-gpadc' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0-only /* * Copyright (C) ST-Ericsson SA 2010 * * Author: Arun R Murthy <arun.murthy@stericsson.com> * Author: Daniel Willerud <daniel.willerud@stericsson.com> * Author: Johan Palsson <johan.palsson@stericsson.com> * Author: M'boumba Cedric Madianga * Author: Linus Walleij ...
Linux kernel'inin 'drivers/iio/adc/da9150-gpadc' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0-or-later /* * DA9150 GPADC Driver * * Copyright (c) 2014 Dialog Semiconductor * * Author: Adam Thomson <Adam.Thomson.Opensource@diasemi.com> */ #include <linux/kernel.h> #include <linux/slab.h> #include <linux/module.h> #include <linux/platform_device.h> #include <linux/i...
Linux kernel'inin 'drivers/iio/adc/rohm-bd79112' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0-only /* * ROHM ADC driver for BD79112 signal monitoring hub. * Copyright (C) 2025, ROHM Semiconductor. * * SPI communication derived from ad7923.c and ti-ads7950.c */ #include <linux/array_size.h> #include <linux/bitfield.h> #include <linux/bitops.h> #include <linux/bits.h...
Linux kernel'inin 'drivers/iio/adc/mt6360-adc' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0 #include <linux/bits.h> #include <linux/delay.h> #include <linux/irq.h> #include <linux/kernel.h> #include <linux/ktime.h> #include <linux/mod_devicetable.h> #include <linux/module.h> #include <linux/mutex.h> #include <linux/platform_device.h> #include <linux/regmap.h> #includ...