資料介紹
Table of Contents
AD7877 Input Touch Screen Controller Linux Driver
Supported Devices
Description
The AD7877 is a 12-bit, successive approximation ADC with a synchronous serial interface and low on resistance switches for driving touch screens.
To reduce the effects of noise from LCDs, the acquisition phase of the on-board ADC is controlled via the STOPACQ pin. User-programmable conversion controls include variable acquisition time and first conversion delay. Up to 16 averages can be taken per conversion. There is also an on-board DAC for LCD back-light or contrast control. The AD7877 runs in either slave or master mode using a conversion sequencer and timer. It is ideal for battery-powered systems such as personal digital assistants with resistive touch screens and other portable equipment.
The AD7877 operates from a single 2.7 V to 5.25 V power supply, and features throughput rates of 125 kSPS. The AD7877 features direct battery measurement on two inputs, temperature and touch-pressure measurement.
The AD7877 also has an on-board reference of 2.5 V. When not in use, it can be shut down to conserve power. An external reference can also be applied and varied from 1 V to +VCC, with an analog input range of 0 V to VREF. The device includes a shutdown mode that reduces its current consumption to less than 1 μA.
See also: uclinux-dist:tslib
See also: AD7879 Touchscreen Device Driver
Software configurable features
Software configurable:
- STOPACQ Polarity (LOW, HIGH)
- First Conversion Delay (0.5us, 128us, 1ms, 8ms)
- Acquisition Time (2us, 4us, 8us, 16us)
- Number of Averages (1,4,8,16)
- Pen Down Acquisition Interval Timer (convert once, every 0.5ms, 1ms, 8ms)
Source Code
Status
Files
Function | File |
---|---|
driver | drivers/input/touchscreen/ad7877.c |
include | include/linux/spi/ad7877.h |
Example platform device initialization
For compile time configuration, it’s common Linux practice to keep board- and application-specific configuration out of the main driver file, instead putting it into the board support file.
For devices on custom boards, as typical of embedded and SoC-(system-on-chip) based hardware, Linux uses platform_data to point to board-specific structures describing devices and how they are connected to the SoC. This can include available ports, chip variants, preferred modes, default initialization, additional pin roles, and so on. This shrinks the board-support packages (BSPs) and minimizes board and application specific #ifdefs in drivers.
Touchscreen characteristics vary between boards and models. The platform_data for the device's “struct device” holds this information.
These snippets are all from the same file. arch/blackfin/mach-bf537/boards/pnav10.c
:
#include
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
Adding Linux driver support
Configure kernel with “make menuconfig” (alternatively use “make xconfig” or “make qconfig”)
The AD7877 Driver depends on CONFIG_SPI
Input device support -*- Generic input layer (needed for keyboard, mouse, ...) < > Support for memoryless force-feedback devices < > Polled input device skeleton < > Sparse keymap support library *** Userland interfaces *** < > Mouse interface < > Joystick interface <*> Event interface < > Event debugging *** Input Device Drivers *** [ ] Keyboards ---> [ ] Mice ---> [ ] Joysticks/Gamepads ---> [ ] Tablets ---> [*] Touchscreens ---> --- Touchscreens < > ADS7846/TSC2046/AD7873 and AD(S)7843 based touchscreens (NEW) <*> AD7877 based touchscreens < > Analog Devices AD7879-1/AD7889-1 touchscreen interface (NEW) [ ] Miscellaneous devices ---> Hardware I/O ports --->
Hardware configuration
The AD7877 Linux Driver only uses the /DAV Data Available Interrupt. /PENIRQ is not used. STOPACQ can be used to reduce the effect of noise from an LCD screen on the touch screen measurements.
Driver testing
Driver compiled as a module
root:~> modprobe evdev root:~> modprobe ad7877 input: AD7877 Touchscreen as /class/input/input2 root:~>
Driver compiled into the kernel
Your kernel startup messages should include something like this
input: AD7877 Touchscreen as /class/input/input2
Use the evtest/event_test utility to test proper function
root:/> event_test /dev/input/event2 Input driver version is 1.0.0 Input device ID: bus 0x0 vendor 0x0 product 0x0 version 0x0 Input device name: "AD7877 Touchscreen" Supported events: Event type 0 (Sync) Event type 1 (Key) Event code 330 (Touch) Event type 3 (Absolute) Event code 0 (X) Value 1268 Min 0 Max 4095 Event code 1 (Y) Value 1250 Min 0 Max 4095 Event code 24 (Pressure) Value 0 Min 0 Max 1000 Testing ... (interrupt to exit) Event: time 67435.364000, type 1 (Key), code 330 (Touch), value 1 Event: time 67435.364000, type 3 (Absolute), code 0 (X), value 1624 Event: time 67435.364000, type 3 (Absolute), code 1 (Y), value 1514 Event: time 67435.364000, type 3 (Absolute), code 24 (Pressure), value 349 Event: time 67435.364000, -------------- Report Sync ------------ Event: time 67435.408000, type 3 (Absolute), code 0 (X), value 1626 Event: time 67435.408000, type 3 (Absolute), code 1 (Y), value 1516 Event: time 67435.408000, type 3 (Absolute), code 24 (Pressure), value 342 Event: time 67435.408000, -------------- Report Sync ------------ Event: time 67435.452000, type 3 (Absolute), code 1 (Y), value 1514 Event: time 67435.452000, type 3 (Absolute), code 24 (Pressure), value 339 Event: time 67435.452000, -------------- Report Sync ------------ Event: time 67435.496000, type 3 (Absolute), code 0 (X), value 1625 Event: time 67435.496000, type 3 (Absolute), code 24 (Pressure), value 343 Event: time 67435.496000, -------------- Report Sync ------------ Event: time 67435.596000, type 3 (Absolute), code 24 (Pressure), value 0 Event: time 67435.596000, type 1 (Key), code 330 (Touch), value 0 Event: time 67435.596000, -------------- Report Sync ------------
Common Problems
In case you see a message like this
spi0.2: Failed to probe AD7877 Touchscreen
This means that the SPI communication and initilaization with the AD7877 touchscreen controller/digitizer failed. check bus_num and chip_select in your platform device file
#if defined(CONFIG_TOUCHSCREEN_AD7877) || defined(CONFIG_TOUCHSCREEN_AD7877_MODULE) { .modalias = "ad7877", .platform_data = &bfin_ad7877_ts_info, .irq = IRQ_PJ11, .max_speed_hz = 12500000, /* max spi clock (SCK) speed in HZ */ .bus_num = 0, .chip_select = 2, .controller_data = &spi_ad7877_chip_info, }, #endif
Testing
See the uclinux-dist:tslib page for information on testing the touchscreen from userspace.
Interrupt
Check that the interrupt is registered.
root:~> grep ad7877 /proc/interrupts 258: 0 ad7877
In case you touch the surface and don't receive events, it's likely that something with your /DAV Interrupt is wrong.
check irq number in your platform device file
In case you get a message like: evtest: No such device
, it's likely that you have not install the necessary modules
Aux functions
Under the device folder there are auxiliary functions such as temperature, GPIO, DAC and ADC read backs and controls.
root:/sys/class/input/input2> cd device/ root:/sys/devices/platform/bfin-spi.0/spi0.2> ls -al drwxr-xr-x 3 root root 0 Jan 1 00:15 . drwxr-xr-x 4 root root 0 Jan 1 2007 .. -r--r--r-- 1 root root 4096 Jan 1 00:15 aux1 -r--r--r-- 1 root root 4096 Jan 1 00:15 aux2 -r--r--r-- 1 root root 4096 Jan 1 00:15 aux3 -r--r--r-- 1 root root 4096 Jan 1 00:15 bat1 -r--r--r-- 1 root root 4096 Jan 1 00:15 bat2 lrwxrwxrwx 1 root root 0 Jan 1 00:15 bus -> ../../../../bus/spi -rw-rw-r-- 1 root root 4096 Jan 1 00:15 dac -rw-rw-r-- 1 root root 4096 Jan 1 00:15 disable lrwxrwxrwx 1 root root 0 Jan 1 00:15 driver -> ../../../../bus/spi/drivers/ad7877 -rw-rw-r-- 1 root root 4096 Jan 1 00:15 gpio4 lrwxrwxrwx 1 root root 0 Jan 1 00:15 input:event2 -> ../../../../class/input/input2/event2 lrwxrwxrwx 1 root root 0 Jan 1 00:15 input:input2 -> ../../../../class/input/input2 -r--r--r-- 1 root root 4096 Jan 1 00:15 modalias drwxr-xr-x 2 root root 0 Jan 1 2007 power lrwxrwxrwx 1 root root 0 Jan 1 00:15 subsystem -> ../../../../bus/spi -r--r--r-- 1 root root 4096 Jan 1 00:15 temp1 -r--r--r-- 1 root root 4096 Jan 1 00:15 temp2 -rw-r--r-- 1 root root 4096 Jan 1 00:15 uevent root:/sys/devices/platform/bfin-spi.0/spi0.2> cat temp1 963 root:/sys/devices/platform/bfin-spi.0/spi0.2> cat temp1 960 root:/sys/devices/platform/bfin-spi.0/spi0.2> cat temp2 1167 root:/sys/devices/platform/bfin-spi.0/spi0.2> cat temp2 1167 root:/sys/devices/platform/bfin-spi.0/spi0.2> cat aux1 1929 root:/sys/devices/platform/bfin-spi.0/spi0.2> cat aux1 1929
More Information
- TSC2046低壓輸入/輸出觸摸屏控制器數據表
- TSC2046E低壓輸入/輸出觸摸屏控制器數據表
- 觸摸屏控制器XPT2046數據手冊下載 25次下載
- AN-753:配置AD7877
- AD7877:Touch Screen控制器數據Sheet
- AN-766:在AD7877上使用降噪功能
- 觸摸屏控制器ADS7846的中文資料 22次下載
- 觸摸屏控制器ADS7846的原理及應用 12次下載
- AN-738: 在Windows CE.NET下使用AD7877觸摸屏控制器和Intel PXA250處理器
- Android的觸摸屏進行校準的方法詳細說明
- 觸摸屏控制器ad7877數據表 2次下載
- XPT2046觸摸屏控制器 19次下載
- 新一代TSC2046觸摸屏控制器 10次下載
- 電阻式觸摸屏控制器常見問題 0次下載
- 觸摸屏控制器輔助輸入的應用
- 電容觸摸屏的分辨率怎么調 1400次閱讀
- 電容觸摸屏原理 電容觸摸屏和電阻觸摸屏有什么區別 2822次閱讀
- 觸摸屏系統中校準的簡單易懂的說明 7171次閱讀
- 基于EP7212處理器芯片實現LCD觸摸屏控制器的應用方案 2999次閱讀
- digilentArduino觸摸屏疊加子板介紹 1573次閱讀
- 基于I2C的嵌入式Linux多點觸摸屏幕驅動系統設計 1143次閱讀
- 基于觸摸屏的LED驅動電路設計 4168次閱讀
- 基于嵌入式linux系統下的AD7873觸摸屏驅動系統設計詳解 1613次閱讀
- 一文詳解工業觸摸屏控制XPT7603 5670次閱讀
- 觸摸屏技術是誰發明的_觸摸屏技術的發展歷程 2.8w次閱讀
- 觸摸屏控制易能變頻器方案 1w次閱讀
- 技術干貨:WinCE 7.0下的觸摸屏驅動 3673次閱讀
- 如何使用單片機去驅動控制觸摸屏 1.2w次閱讀
- PLC攜手觸摸屏控制系統的應用 6568次閱讀
- 基于MeeGo的電容式觸摸屏驅動設計 1313次閱讀
下載排行
本周
- 1電子電路原理第七版PDF電子教材免費下載
- 0.00 MB | 1491次下載 | 免費
- 2單片機典型實例介紹
- 18.19 MB | 95次下載 | 1 積分
- 3S7-200PLC編程實例詳細資料
- 1.17 MB | 27次下載 | 1 積分
- 4筆記本電腦主板的元件識別和講解說明
- 4.28 MB | 18次下載 | 4 積分
- 5開關電源原理及各功能電路詳解
- 0.38 MB | 11次下載 | 免費
- 6100W短波放大電路圖
- 0.05 MB | 4次下載 | 3 積分
- 7基于單片機和 SG3525的程控開關電源設計
- 0.23 MB | 4次下載 | 免費
- 8基于AT89C2051/4051單片機編程器的實驗
- 0.11 MB | 4次下載 | 免費
本月
- 1OrCAD10.5下載OrCAD10.5中文版軟件
- 0.00 MB | 234313次下載 | 免費
- 2PADS 9.0 2009最新版 -下載
- 0.00 MB | 66304次下載 | 免費
- 3protel99下載protel99軟件下載(中文版)
- 0.00 MB | 51209次下載 | 免費
- 4LabView 8.0 專業版下載 (3CD完整版)
- 0.00 MB | 51043次下載 | 免費
- 5555集成電路應用800例(新編版)
- 0.00 MB | 33562次下載 | 免費
- 6接口電路圖大全
- 未知 | 30320次下載 | 免費
- 7Multisim 10下載Multisim 10 中文版
- 0.00 MB | 28588次下載 | 免費
- 8開關電源設計實例指南
- 未知 | 21539次下載 | 免費
總榜
- 1matlab軟件下載入口
- 未知 | 935053次下載 | 免費
- 2protel99se軟件下載(可英文版轉中文版)
- 78.1 MB | 537793次下載 | 免費
- 3MATLAB 7.1 下載 (含軟件介紹)
- 未知 | 420026次下載 | 免費
- 4OrCAD10.5下載OrCAD10.5中文版軟件
- 0.00 MB | 234313次下載 | 免費
- 5Altium DXP2002下載入口
- 未知 | 233046次下載 | 免費
- 6電路仿真軟件multisim 10.0免費下載
- 340992 | 191183次下載 | 免費
- 7十天學會AVR單片機與C語言視頻教程 下載
- 158M | 183277次下載 | 免費
- 8proe5.0野火版下載(中文版免費下載)
- 未知 | 138039次下載 | 免費
評論
查看更多