資料介紹
Table of Contents
ADP5589 Input Keyboard and GPIO Linux Driver
Supported Devices
Evaluation Boards
Description
ADP5589
ADP5585
Description
The driver supports multiple key press detection and resolution.
It independently delivers key press and key release events in
chronological order to the Linux input device system.
This allows SHIFT + ANYKEY, ALT + F1 or CTRL + ALT + DEL sequences.
Since the ADP5589 buffers events in its internal FIFO,
it’s unlikely that events are lost due to heavy system
load and interrupt latencies.
Configuration
Software configurable features
- Configurable keypad size matrix up to 11 × 8 (columns, rows).
- Support for switch events.
- Enabling and disabling automatic key repeat feature.
- Lock/Unlock key feature with configurable timer. (ADP5589 only)
- Two independent and flexible reset signal generators with either two or three software configurable keys.
- Flexible debounce, 100 kOhm/300kOhm pull-up and 300 kOhm pull-down configuration on all configurable I/Os.
- Configurable keypad scan cycle times.
- Unused row and column pins are exported as general-purpose inputs/outputs to GPIOLIB
Source Code
Status
Files
Function | File |
---|---|
driver | drivers/input/keyboard/adp5589-keys.c |
include | include/linux/input/adp5589.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.
Example key-map for an 4×4 matrix as found on the ADP5589 evaluation board.
#includestatic const unsigned short adp5589_keymap[ADP5589_KEYMAPSIZE] = { [0] = KEY_1, [1] = KEY_2, [2] = KEY_3, [3] = KEY_BACKSPACE, [11] = KEY_4, [12] = KEY_5, [13] = KEY_6, [15] = KEY_DOT, [22] = KEY_7, [23] = KEY_8, [24] = KEY_9, [25] = KEY_ESC, [55] = KEY_UP, [56] = KEY_0, [57] = KEY_DOWN, [58] = KEY_ENTER, };
Unused row and column pins are exported as general-purpose inputs/outputs to GPIOLIB starting at gpio number 50.
use gpio_start = -1 for dynamic allocation
static const struct adp5589_gpio_platform_data adp5589_gpio_data = { .gpio_start = 50, };
Declare two Input Switch Events (EV_SW), mapped to ROW6 and ROW7.
static const struct adp5589_gpi_map adp5589_gpimap[] = { { .pin = ADP5589_GPI_PIN_ROW6, .sw_evt = SW_KEYPAD_SLIDE, },{ .pin = ADP5589_GPI_PIN_ROW7, .sw_evt = SW_CAMERA_LENS_COVER, } };
static struct adp5589_kpad_platform_data adp5589_kpad_data = { /* KEYPAD Config */ .keypad_en_mask = ADP_COL(0) | ADP_COL(1) | ADP_COL(2) | ADP_COL(3) | ADP_ROW(0) | ADP_ROW(1) | ADP_ROW(2) | ADP_ROW(5), .keymap = adp5589_keymap, .keymapsize = ARRAY_SIZE(adp5589_keymap), .repeat = false, .scan_cycle_time = ADP5589_SCAN_CYCLE_10ms, /* GPI Switch Event Config */ .gpimap = adp5589_gpimap, .gpimapsize = ARRAY_SIZE(adp5589_gpimap), /* PULL Config */ .pullup_en_300k = ADP_COL(4) | ADP_COL(5) | ADP_COL(6) | ADP_COL(7) | ADP_COL(8) | ADP_COL(9) | ADP_COL(10) | ADP_ROW(3) | ADP_ROW(4) | ADP_ROW(6) | ADP_ROW(7), /* GPIO Config */ .gpio_data = &adp5589_gpio_data, /* RESET 1 Config */ .reset_cfg = RESET_PULSE_WIDTH_10ms | RESET_TRIG_TIME_2000ms | RESET1_POL_LOW, .reset1_key_1 = KEY_1, .reset1_key_2 = KEY_2, .reset1_key_3 = KEY_ESC, };
Declaring I2C devices
Unlike PCI or USB devices, I2C devices are not enumerated at the hardware level. Instead, the software must know which devices are connected on each I2C bus segment, and what address these devices are using. For this reason, the kernel code must instantiate I2C devices explicitly. There are different ways to achieve this, depending on the context and requirements. However the most common method is to declare the I2C devices by bus number.
This method is appropriate when the I2C bus is a system bus, as in many embedded systems, wherein each I2C bus has a number which is known in advance. It is thus possible to pre-declare the I2C devices that inhabit this bus. This is done with an array of struct i2c_board_info, which is registered by calling i2c_register_board_info().
So, to enable such a driver one need only edit the board support file by adding an appropriate entry to i2c_board_info.
For more information see: Documentation/i2c/instantiating-devices
ADI part number | I2C_BOARD_INFO Name |
---|---|
ADP5589 | adp5589-keys |
ADP5585-00 | adp5585-keys |
ADP5585-02 | adp5585-02-keys |
static struct i2c_board_info __initdata board_i2c_board_info[] = { #if defined(CONFIG_KEYBOARD_ADP5589) || defined(CONFIG_KEYBOARD_ADP5589_MODULE) { I2C_BOARD_INFO("adp5589-keys", 0x34), .irq = IRQ_PG0, .platform_data = &adp5589_kpad_data, }, #endif };
static int __init board_init(void) { [--snip--] ? i2c_register_board_info(0, board_i2c_board_info, ARRAY_SIZE(board_i2c_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 ADP5589 Driver depends on CONFIG_I2C
--- Input Device Support <*> Generic input layer (needed for keyboard, mouse, ...) < > Support for memoryless force-feedback devices --- Userland interfaces < > Mouse interface < > Joystick interface < > Touchscreen interfaceEvent interface < > Event debugging --- Input Device Drivers [*] Keyboards —> --- Keyboards < > ADP5588/87 I2C QWERTY Keypad and IO Expander <M> ADP5589 ADP5585 I2C QWERTY Keypad and IO Expander < > AT keyboard < > Atmel AT42QT1070 Touch Sensor Chip < > Atmel AT42QT2160 Touch Sensor Chip < > DECstation/VAXstation LK201/LK401 keyboard < > GPIO Buttons < > Polled GPIO buttons < > TCA6416/TCA6408A Keypad Support < > GPIO driven matrix keypad support < > Maxim MAX7359 Key Switch Controller < > MELFAS MCS Touchkey < > Freescale MPR121 Touchkey < > Newton keyboard < > OpenCores Keyboard Controller < > Stowaway keyboard < > Sun Type 4 and Type 5 keyboard < > XT keyboard [ ] Mouse ---> [ ] Joysticks ---> [ ] Touchscreens ---> [ ] Miscellaneous devices ---> Hardware I/O ports --->
Hardware configuration
There is no dedicated Blackfin STAMP evaluation board for the ADP5589. During test and driver development we used the ADP5589 Demo Mother/Daughter Board.
It can be easily wired to the Blackfin STAMP TWI/I2C header.
BF537-STAMP (P10) TWI/I2C header | ADP5589 Daughter Board | |
---|---|---|
PIN | Function | PIN/Function |
2 | (+3.3V) | VDD |
5 | SCL | SCL |
6 | SDA | SDA |
10 | PORTG0 | /INT |
20 | GND | GND |
Driver testing
Driver loading
root:/> modprobe adp5589_keys input: adp5589-keys as /devices/platform/i2c-bfin-twi.0/i2c-0/0-0034/input/input0 adp5589_keys 0-0034: Rev.0 keypad, irq 66
Keypad test
root:/> modprobe evdev
Simple event test utility
root:/> event_test /dev/input/event0 Input driver version is 1.0.1 Input device ID: bus 0x18 vendor 0x1 product 0x1 version 0x0 Input device name: "adp5589-keys" Supported events: Event type 0 (Sync) Event type 1 (Key) Event code 1 (Esc) Event code 2 (1) Event code 3 (2) Event code 4 (3) Event code 5 (4) Event code 6 (5) Event code 7 (6) Event code 8 (7) Event code 9 (8) Event code 10 (9) Event code 11 (0) Event code 14 (Backspace) Event code 28 (Enter) Event code 52 (Dot) Event code 103 (Up) Event code 108 (Down) Event type 5 (Switch) Event code 9 (?) Event code 10 (?) Testing ... (interrupt to exit) Event: time 212452.773693, type 1 (Key), code 2 (1), value 1 Event: time 212452.773708, -------------- Report Sync ------------ Event: time 212452.967254, type 1 (Key), code 2 (1), value 0 Event: time 212452.967264, -------------- Report Sync ------------ Event: time 212453.173026, type 1 (Key), code 3 (2), value 1 Event: time 212453.173040, -------------- Report Sync ------------ Event: time 212453.347251, type 1 (Key), code 3 (2), value 0 Event: time 212453.347261, -------------- Report Sync ------------ Event: time 212453.885500, type 1 (Key), code 14 (Backspace), value 1 Event: time 212453.885515, -------------- Report Sync ------------ Event: time 212454.030671, type 1 (Key), code 14 (Backspace), value 0 Event: time 212454.030680, -------------- Report Sync ------------ Event: time 212454.702005, type 1 (Key), code 1 (Esc), value 1 Event: time 212454.702019, -------------- Report Sync ------------ Event: time 212454.876222, type 1 (Key), code 1 (Esc), value 0 Event: time 212454.876232, -------------- Report Sync ------------ Event: time 212455.182126, type 1 (Key), code 28 (Enter), value 1 Event: time 212455.182139, -------------- Report Sync ------------ Event: time 212455.395101, type 1 (Key), code 28 (Enter), value 0 Event: time 212455.395111, -------------- Report Sync ------------ Event: time 212456.614392, type 1 (Key), code 103 (Up), value 1 Event: time 212456.614407, -------------- Report Sync ------------ Event: time 212456.846672, type 1 (Key), code 103 (Up), value 0 Event: time 212456.846683, -------------- Report Sync ------------ Event: time 212459.236095, type 1 (Key), code 28 (Enter), value 1 Event: time 212459.236110, -------------- Report Sync ------------ Event: time 212459.458719, type 1 (Key), code 28 (Enter), value 0 Event: time 212459.458728, -------------- Report Sync ------------ Event: time 212463.264521, type 5 (Switch), code 10 (?), value 1 Event: time 212463.264536, -------------- Report Sync ------------ Event: time 212464.528812, type 5 (Switch), code 10 (?), value 0 Event: time 212464.528823, -------------- Report Sync ------------
GPIO test
In this particular configuration example, GPIO50 will map to ROW3. For more information read GPIO Kernel Documentation
Access using the sysfs interface for userspace
root:/> cd sys/class/gpio/ root:/sys/class/gpio> ls export gpiochip0 gpiochip50 unexport root:/sys/class/gpio> echo 50 > export root:/sys/class/gpio> ls export gpio50 gpiochip0 gpiochip50 unexport root:/sys/class/gpio> cd gpio50 root:/sys/devices/virtual/gpio/gpio50> ls active_low direction subsystem uevent value root:/sys/devices/virtual/gpio/gpio50> echo low > direction root:/sys/devices/virtual/gpio/gpio50> echo high > direction
PMOD-IOXP
The PMOD-IOXP is an PMOD board made by Digilent Inc. which features the ADP5589.
The following example shows how to connect the PMOD-IOXP to a Blackfin BF537-STAMP board and a PMOD-KYPD. Also
Hardware configuration
BF537-STAMP (P10) TWI/I2C header | PMOD-IOXP | |
---|---|---|
PIN | Function | PIN/Function |
2 | (+3.3V) | VDD |
5 | SCL | SCL |
6 | SDA | SDA |
10 | PORTG0 | /INT |
20 | GND | GND |
Software configuration
#includestatic const unsigned short adp5589_keymap[ADP5589_KEYMAPSIZE] = { [ADP5589_KEY(0, 0)] = KEY_D, [ADP5589_KEY(0, 1)] = KEY_C, [ADP5589_KEY(0, 2)] = KEY_B, [ADP5589_KEY(0, 3)] = KEY_A, ? [ADP5589_KEY(1, 0)] = KEY_E, [ADP5589_KEY(1, 1)] = KEY_9, [ADP5589_KEY(1, 2)] = KEY_6, [ADP5589_KEY(1, 3)] = KEY_3, ? [ADP5589_KEY(2, 0)] = KEY_F, [ADP5589_KEY(2, 1)] = KEY_8, [ADP5589_KEY(2, 2)] = KEY_5, [ADP5589_KEY(2, 3)] = KEY_2, ? [ADP5589_KEY(3, 0)] = KEY_0, [ADP5589_KEY(3, 1)] = KEY_7, [ADP5589_KEY(3, 2)] = KEY_4, [ADP5589_KEY(3, 3)] = KEY_1, }; ? static struct adp5589_kpad_platform_data adp5589_kpad_data = { /* KEYPAD Config */ .keypad_en_mask = ADP_COL(0) | ADP_COL(1) | ADP_COL(2) | ADP_COL(3) | ADP_ROW(0) | ADP_ROW(1) | ADP_ROW(2) | ADP_ROW(3), .keymap = adp5589_keymap, .keymapsize = ARRAY_SIZE(adp5589_keymap), .repeat = false, .scan_cycle_time = ADP5589_SCAN_CYCLE_10ms, /* PULL Config */ .pullup_en_300k = ADP_COL(4) | ADP_COL(5) | ADP_COL(6) | ADP_COL(7) | ADP_COL(8) | ADP_COL(9) | ADP_COL(10) | ADP_ROW(4) | ADP_ROW(5) | ADP_ROW(6) | ADP_ROW(7), /* RESET 1 Config */ .reset_cfg = RESET_PULSE_WIDTH_10ms | RESET_TRIG_TIME_2000ms | RESET1_POL_LOW, .reset1_key_1 = KEY_1, .reset1_key_2 = KEY_2, .reset1_key_3 = KEY_ESC, }; ? static struct i2c_board_info __initdata bfin_i2c_board_info[] = { { I2C_BOARD_INFO("adp5589-keys", 0x34), .platform_data = &adp5589_kpad_data, .irq = IRQ_PG0, }, }
More Information
- 4*4矩陣鍵盤驅(qū)動程序
- ADP5589:鍵盤解碼器和I/O擴(kuò)展數(shù)據(jù)表
- ADP150穩(wěn)壓器固定電壓Linux驅(qū)動程序
- ADP5589 pmod Xilinx FPGA參考設(shè)計
- ADP5589-適用于單片機(jī)平臺的無操作系統(tǒng)驅(qū)動程序
- ADP5588 GPIO Linux驅(qū)動程序
- ADP5520/01 MFD Linux驅(qū)動程序
- ADP5588輸入鍵盤和GPIO Linux驅(qū)動程序
- ADP5589-用于瑞薩微控制器平臺的無操作系統(tǒng)驅(qū)動程序
- Linux的LEDS GPIO驅(qū)動程序免費(fèi)下載 3次下載
- AM3553X的GPIO驅(qū)動的設(shè)計和硬件的控制驅(qū)動程序 20次下載
- Linux驅(qū)動程序缺陷檢測研究 9次下載
- Linux系統(tǒng)網(wǎng)絡(luò)驅(qū)動程序的編寫 0次下載
- 第9章 Linux驅(qū)動程序設(shè)計 3次下載
- Windows CE下GPIO驅(qū)動程序的設(shè)計與應(yīng)用
- 怎么編寫Framebuffer驅(qū)動程序 403次閱讀
- 自動刪除SDK/Vitis下驅(qū)動程序的舊版本的Linux腳本 558次閱讀
- ProfiNet輸入/輸出端的驅(qū)動程序解析 3411次閱讀
- 如何寫一個Linux設(shè)備驅(qū)動程序 4314次閱讀
- digilentIO擴(kuò)展模塊介紹 1190次閱讀
- 米爾科技LINUX設(shè)備驅(qū)動程序教程 1967次閱讀
- 嵌入式Linux內(nèi)核的驅(qū)動程序開發(fā)是怎樣的 1415次閱讀
- 淺談電腦驅(qū)動程序的工作原理 詳解電腦驅(qū)動程序意義 2.9w次閱讀
- 基于嵌入式Linux內(nèi)核的系統(tǒng)設(shè)備驅(qū)動程序開發(fā)設(shè)計 1113次閱讀
- 基于Linux2.6.30開發(fā)DS18B20的驅(qū)動程序的類型和文件操作接口函數(shù)詳解 1377次閱讀
- 可動態(tài)安裝的Linux設(shè)備驅(qū)動程序 957次閱讀
- 如何用嵌入式Linux系統(tǒng)編寫鍵盤驅(qū)動 1312次閱讀
- 樹莓派上MAX7219的字符驅(qū)動程序編寫 6901次閱讀
- Xilinx設(shè)備的驅(qū)動程序 7967次閱讀
- PCI驅(qū)動程序開發(fā)實例 6702次閱讀
下載排行
本周
- 1電子電路原理第七版PDF電子教材免費(fèi)下載
- 0.00 MB | 1491次下載 | 免費(fèi)
- 2單片機(jī)典型實例介紹
- 18.19 MB | 95次下載 | 1 積分
- 3S7-200PLC編程實例詳細(xì)資料
- 1.17 MB | 27次下載 | 1 積分
- 4筆記本電腦主板的元件識別和講解說明
- 4.28 MB | 18次下載 | 4 積分
- 5開關(guān)電源原理及各功能電路詳解
- 0.38 MB | 11次下載 | 免費(fèi)
- 6100W短波放大電路圖
- 0.05 MB | 4次下載 | 3 積分
- 7基于單片機(jī)和 SG3525的程控開關(guān)電源設(shè)計
- 0.23 MB | 4次下載 | 免費(fèi)
- 8基于AT89C2051/4051單片機(jī)編程器的實驗
- 0.11 MB | 4次下載 | 免費(fèi)
本月
- 1OrCAD10.5下載OrCAD10.5中文版軟件
- 0.00 MB | 234313次下載 | 免費(fèi)
- 2PADS 9.0 2009最新版 -下載
- 0.00 MB | 66304次下載 | 免費(fèi)
- 3protel99下載protel99軟件下載(中文版)
- 0.00 MB | 51209次下載 | 免費(fèi)
- 4LabView 8.0 專業(yè)版下載 (3CD完整版)
- 0.00 MB | 51043次下載 | 免費(fèi)
- 5555集成電路應(yīng)用800例(新編版)
- 0.00 MB | 33562次下載 | 免費(fèi)
- 6接口電路圖大全
- 未知 | 30320次下載 | 免費(fèi)
- 7Multisim 10下載Multisim 10 中文版
- 0.00 MB | 28588次下載 | 免費(fèi)
- 8開關(guān)電源設(shè)計實例指南
- 未知 | 21539次下載 | 免費(fèi)
總榜
- 1matlab軟件下載入口
- 未知 | 935053次下載 | 免費(fèi)
- 2protel99se軟件下載(可英文版轉(zhuǎn)中文版)
- 78.1 MB | 537793次下載 | 免費(fèi)
- 3MATLAB 7.1 下載 (含軟件介紹)
- 未知 | 420026次下載 | 免費(fèi)
- 4OrCAD10.5下載OrCAD10.5中文版軟件
- 0.00 MB | 234313次下載 | 免費(fèi)
- 5Altium DXP2002下載入口
- 未知 | 233046次下載 | 免費(fèi)
- 6電路仿真軟件multisim 10.0免費(fèi)下載
- 340992 | 191183次下載 | 免費(fèi)
- 7十天學(xué)會AVR單片機(jī)與C語言視頻教程 下載
- 158M | 183277次下載 | 免費(fèi)
- 8proe5.0野火版下載(中文版免費(fèi)下載)
- 未知 | 138039次下載 | 免費(fèi)
評論
查看更多