chinese直男口爆体育生外卖, 99久久er热在这里只有精品99, 又色又爽又黄18禁美女裸身无遮挡, gogogo高清免费观看日本电视,私密按摩师高清版在线,人妻视频毛茸茸,91论坛 兴趣闲谈,欧美 亚洲 精品 8区,国产精品久久久久精品免费

電子發(fā)燒友App

硬聲App

掃碼添加小助手

加入工程師交流群

0
  • 聊天消息
  • 系統(tǒng)消息
  • 評論與回復
登錄后你可以
  • 下載海量資料
  • 學習在線課程
  • 觀看技術視頻
  • 寫文章/發(fā)帖/加入社區(qū)
會員中心
創(chuàng)作中心

完善資料讓更多小伙伴認識你,還能領取20積分哦,立即完善>

3天內(nèi)不再提示
創(chuàng)作
電子發(fā)燒友網(wǎng)>電子資料下載>類型>參考設計>AD5764 IIO四通道Linux驅動程序DAC

AD5764 IIO四通道Linux驅動程序DAC

2021-05-23 | pdf | 80.82KB | 次下載 | 2積分

資料介紹

This version (05 Jan 2021 17:01) was approved by Ioana Chelaru.The Previously approved version (11 Feb 2016 20:55) is available.Diff

AD5764 IIO Quad-Channel DAC Linux Driver

Supported Devices

Evaluation Boards

Description

This is a Linux industrial I/O (IIO) subsystem driver, targeting multi-channel serial interface DACs. The industrial I/O subsystem provides a unified framework for drivers for many different types of converters and sensors using a number of different physical interfaces (i2c, spi, etc). See IIO for more information.

Source Code

Status

Source Mainlined?
git Yes

Files

Function File
driver drivers/iio/dac/ad5764.c

Example platform device initialization

Specifying reference voltage via the regulator framework

Depending on the part it will either have an internal reference(AD5764R, AD5744R) or use an external reference(AD5764, AD5744) In case an external reference voltage is used the regulator framework must be used to provide the regulator supplys. The supplys must be be calledvrefAB” and “vrefCD”.

Below example specifies a 2.5 Volt reference for the SPI device 3 on SPI-Bus 0. (spi0.3)

#if IS_ENABLED(CONFIG_REGULATOR_FIXED_VOLTAGE)
static struct regulator_consumer_supply ad5764_consumer_supplies[] = {
	REGULATOR_SUPPLY("vrefAB", "spi0.3"),
	REGULATOR_SUPPLY("vrefCD", "spi0.3"),
};
?
static struct regulator_init_data stamp_avdd_reg_init_data = {
	.constraints	= {
		.name	= "2V5",
		.valid_ops_mask = REGULATOR_CHANGE_STATUS,
	},
	.consumer_supplies = ad5764_consumer_supplies,
	.num_consumer_supplies = ARRAY_SIZE(ad5764_consumer_supplies),
};
?
static struct fixed_voltage_config stamp_vdd_pdata = {
	.supply_name	= "board-2V5",
	.microvolts	= 2500000,
	.gpio		= -EINVAL,
	.enabled_at_boot = 0,
	.init_data	= &stamp_avdd_reg_init_data,
};
static struct platform_device brd_voltage_regulator = {
	.name		= "reg-fixed-voltage",
	.id		= -1,
	.num_resources	= 0,
	.dev		= {
		.platform_data	= &stamp_vdd_pdata,
	},
};
#endif
static struct platform_device *board_devices[] __initdata = {
#if IS_ENABLED(CONFIG_REGULATOR_FIXED_VOLTAGE)
	&brd_voltage_regulator
#endif
};
static int __init board_init(void)
{
	[--snip--]
?
	platform_add_devices(board_devices, ARRAY_SIZE(board_devices));
?
	[--snip--]
?
	return 0;
}
arch_initcall(board_init);

Declaring SPI slave devices

Unlike PCI or USB devices, SPI devices are not enumerated at the hardware level. Instead, the software must know which devices are connected on each SPI bus segment, and what slave selects these devices are using. For this reason, the kernel code must instantiate SPI devices explicitly. The most common method is to declare the SPI devices by bus number.

This method is appropriate when the SPI bus is a system bus, as in many embedded systems, wherein each SPI bus has a number which is known in advance. It is thus possible to pre-declare the SPI devices that inhabit this bus. This is done with an array of struct spi_board_info, which is registered by calling spi_register_board_info().

For more information see: Documentation/spi/spi-summary

21 Oct 2010 16:10

Depending on the converter IC used, you may need to set the modalias accordingly, matching your part name. It may also required to adjust max_speed_hz. Please consult the datasheet, for maximum spi clock supported by the device in question.

static struct spi_board_info board_spi_board_info[] __initdata = {
#if IS_ENABLED(CONFIG_AD5764)
	{
		/* the modalias must be the same as spi device driver name */
		.modalias = "ad5764", /* Name of spi_driver for this device */
		.max_speed_hz = 1000000,     /* max spi clock (SCK) speed in HZ */
		.bus_num = 0, /* Framework bus number */
		.chip_select = 3, /* Framework chip select */
		.mode = SPI_MODE_1,
	},
#endif
};
static int __init board_init(void)
{
	[--snip--]
?
	spi_register_board_info(board_spi_board_info, ARRAY_SIZE(board_spi_board_info));
?
	[--snip--]
?
	return 0;
}
arch_initcall(board_init);

Adding Linux driver support

Configure kernel with “make menuconfig” (alternatively use “make xconfig” or “make qconfig”)

The AD5764 Driver depends on CONFIG_SPI_MASTER

Linux Kernel Configuration
    Device Drivers  --->
        ...
        <*>     Industrial I/O support --->
            --- Industrial I/O support
            ...
            Digital to analog converters  ---> 
                ...
                <*>  Analog Devices AD5764/64R/44/44R DAC drive
                ...
            ...
        ...

Hardware configuration

Driver testing

Each and every IIO device, typically a hardware chip, has a device folder under /sys/bus/iio/devices/iio:deviceX. Where X is the IIO index of the device. Under every of these directory folders reside a set of files, depending on the characteristics and features of the hardware device in question. These files are consistently generalized and documented in the IIO ABI documentation. In order to determine which IIO deviceX corresponds to which hardware device, the user can read the name file /sys/bus/iio/devices/iio:deviceX/name. In case the sequence in which the iio device drivers are loaded/registered is constant, the numbering is constant and may be known in advance.

02 Mar 2011 15:16

This specifies any shell prompt running on the target

root:/> cd /sys/bus/iio/devices/
root:/sys/bus/iio/devices> ls
iio:device0

root:/sys/bus/iio/devices> cd iio:device0

root:/sys/devices/platform/bfin-spi.0/spi0.3/iio:device0> ls -l
-r--r--r--    1 root     root          4096 Jan  4 04:06 dev
-r--r--r--    1 root     root          4096 Jan  4 04:06 name
-rw-r--r--    1 root     root          4096 Jan  4 04:06 out_voltage0_calibbias
-rw-r--r--    1 root     root          4096 Jan  4 04:06 out_voltage0_calibscale
-rw-r--r--    1 root     root          4096 Jan  4 04:06 out_voltage0_raw
-rw-r--r--    1 root     root          4096 Jan  4 04:06 out_voltage0_scale
-rw-r--r--    1 root     root          4096 Jan  4 04:06 out_voltage1_calibbias
-rw-r--r--    1 root     root          4096 Jan  4 04:06 out_voltage1_calibscale
-rw-r--r--    1 root     root          4096 Jan  4 04:06 out_voltage1_raw
-rw-r--r--    1 root     root          4096 Jan  4 04:06 out_voltage1_scale
-rw-r--r--    1 root     root          4096 Jan  4 04:06 out_voltage2_calibbias
-rw-r--r--    1 root     root          4096 Jan  4 04:06 out_voltage2_calibscale
-rw-r--r--    1 root     root          4096 Jan  4 04:06 out_voltage2_raw
-rw-r--r--    1 root     root          4096 Jan  4 04:06 out_voltage2_scale
-rw-r--r--    1 root     root          4096 Jan  4 04:06 out_voltage3_calibbias
-rw-r--r--    1 root     root          4096 Jan  4 04:06 out_voltage3_calibscale
-rw-r--r--    1 root     root          4096 Jan  4 04:06 out_voltage3_raw
-rw-r--r--    1 root     root          4096 Jan  4 04:06 out_voltage3_scale
-rw-r--r--    1 root     root          4096 Jan  4 04:06 out_voltage_offset
drwxr-xr-x    2 root     root             0 Jan  4 04:06 power
lrwxrwxrwx    1 root     root             0 Jan  4 04:06 subsystem -> ../../../../../bus/iio
-rw-r--r--    1 root     root          4096 Jan  4 04:06 uevent

Show device name

This specifies any shell prompt running on the target

root:/sys/devices/platform/bfin-spi.0/spi0.3/iio:device0> cat name
ad5764

Show scale

Description:
/sys/bus/iio/devices/iio:deviceX/out_voltageY_scale

scale to be applied to out_voltageY_raw in order to obtain the measured voltage in millivolts.

This specifies any shell prompt running on the target

root:/sys/devices/platform/bfin-spi.0/spi0.3/iio:device0> cat out_voltage0_scale
0.305170

Show offset

Description:
/sys/bus/iio/devices/iio:deviceX/out_offset_raw

Raw offset to be applied to out_voltage_raw in order to obtain the measured voltage in millivolts. The offset is applied before scale is applied.

This specifies any shell prompt running on the target

root:/sys/devices/platform/bfin-spi.0/spi0.3/iio:device0> cat out_voltage_offset
-32768

Set channel Y output voltage

Description:
/sys/bus/iio/devices/iio:deviceX/out_voltageY_raw

Raw (unscaled, no bias etc.) output voltage for channel Y.

This specifies any shell prompt running on the target

root:/sys/devices/platform/bfin-spi.0/spi0.3/iio:device0> echo 10000 > out_voltage0_raw

U = (out_voltage0_raw + out_voltage0_offset) * out_voltage0_scale = (10000 - 32768) * 0.305170 mV = -6948.11 mV

Calibrate channel Y gain

Description:
/sys/bus/iio/devices/iio:deviceX/out_voltageY_calibscale

Each channel has an adjustable gain which can be used to calibrate the channel's scale and compensate for full-scale errors. The default value is 0. The minimum value is -32, the maximum value is 31.

Calibrate channel Y offset

Description:
/sys/bus/iio/devices/iio:deviceX/out_voltageY_calibbias

Each channel has an adjustable offset which can be used to calibrate the channel's offset and compensate for zero-scale errors. The default value is 0. The minimum value is -128, the maximum value is 127.

More Information

加入交流群
微信小助手二維碼

掃碼添加小助手

加入工程師交流群

下載該資料的人也在下載 下載該資料的人還在閱讀
更多 >

評論

查看更多

下載排行

本周

  1. 1新一代網(wǎng)絡可視化(NPB 2.0)
  2. 3.40 MB  |  1次下載  |  免費
  3. 2MDD品牌三極管MMBT3906數(shù)據(jù)手冊
  4. 2.33 MB  |  次下載  |  免費
  5. 3MDD品牌三極管S9012數(shù)據(jù)手冊
  6. 2.62 MB  |  次下載  |  免費
  7. 4聯(lián)想flex2-14D/15D說明書
  8. 4.92 MB   |  次下載  |  免費
  9. 5收音環(huán)繞擴音機 AVR-1507手冊
  10. 2.50 MB   |  次下載  |  免費
  11. 624Pin Type-C連接器設計報告
  12. 1.06 MB   |  次下載  |  免費
  13. 7MS1000TA 超聲波測量模擬前端芯片技術手冊
  14. 0.60 MB   |  次下載  |  免費
  15. 8MS1022高精度時間測量(TDC)電路數(shù)據(jù)手冊
  16. 1.81 MB   |  次下載  |  免費

本月

  1. 1愛華AIWA HS-J202維修手冊
  2. 3.34 MB   |  37次下載  |  免費
  3. 2PC5502負載均流控制電路數(shù)據(jù)手冊
  4. 1.63 MB   |  23次下載  |  免費
  5. 3NB-IoT芯片廠商的資料說明
  6. 0.31 MB   |  22次下載  |  1 積分
  7. 4H110主板CPU PWM芯片ISL95858HRZ-T核心供電電路圖資料
  8. 0.63 MB   |  6次下載  |  1 積分
  9. 5UWB653Pro USB口測距通信定位模塊規(guī)格書
  10. 838.47 KB  |  5次下載  |  免費
  11. 6技嘉H110主板IT8628E_BX IO電路圖資料
  12. 2.61 MB   |  4次下載  |  1 積分
  13. 7蘇泊爾DCL6907(即CHK-S007)單芯片電磁爐原理圖資料
  14. 0.04 MB   |  4次下載  |  1 積分
  15. 8100W準諧振反激式恒流電源電路圖資料
  16. 0.09 MB   |  2次下載  |  1 積分

總榜

  1. 1matlab軟件下載入口
  2. 未知  |  935137次下載  |  10 積分
  3. 2開源硬件-PMP21529.1-4 開關降壓/升壓雙向直流/直流轉換器 PCB layout 設計
  4. 1.48MB  |  420064次下載  |  10 積分
  5. 3Altium DXP2002下載入口
  6. 未知  |  233089次下載  |  10 積分
  7. 4電路仿真軟件multisim 10.0免費下載
  8. 340992  |  191439次下載  |  10 積分
  9. 5十天學會AVR單片機與C語言視頻教程 下載
  10. 158M  |  183353次下載  |  10 積分
  11. 6labview8.5下載
  12. 未知  |  81602次下載  |  10 積分
  13. 7Keil工具MDK-Arm免費下載
  14. 0.02 MB  |  73822次下載  |  10 積分
  15. 8LabVIEW 8.6下載
  16. 未知  |  65991次下載  |  10 積分