2 * Driver for Feature Integration Technology Inc. (aka Fintek) LPC CIR
4 * Copyright (C) 2011 Jarod Wilson <jarod@redhat.com>
6 * Special thanks to Fintek for providing hardware and spec sheets.
7 * This driver is based upon the nuvoton, ite and ene drivers for
10 * This program is free software; you can redistribute it and/or
11 * modify it under the terms of the GNU General Public License as
12 * published by the Free Software Foundation; either version 2 of the
13 * License, or (at your option) any later version.
15 * This program is distributed in the hope that it will be useful, but
16 * WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
18 * General Public License for more details.
21 #include <linux/spinlock.h>
22 #include <linux/ioctl.h>
24 /* platform driver name to register */
25 #define FINTEK_DRIVER_NAME "fintek-cir"
26 #define FINTEK_DESCRIPTION "Fintek LPC SuperIO Consumer IR Transceiver"
27 #define VENDOR_ID_FINTEK 0x1934
30 /* debugging module parameter */
33 #define fit_pr(level, text, ...) \
34 printk(level KBUILD_MODNAME ": " text, ## __VA_ARGS__)
36 #define fit_dbg(text, ...) \
39 KBUILD_MODNAME ": " text "\n" , ## __VA_ARGS__)
41 #define fit_dbg_verbose(text, ...) \
44 KBUILD_MODNAME ": " text "\n" , ## __VA_ARGS__)
46 #define fit_dbg_wake(text, ...) \
49 KBUILD_MODNAME ": " text "\n" , ## __VA_ARGS__)
52 #define TX_BUF_LEN 256
59 spinlock_t fintek_lock
;
68 unsigned int buf_count
;
69 unsigned int cur_buf_num
;
70 wait_queue_head_t queue
;
73 /* Config register index/data port pair */
77 /* hardware I/O settings */
78 unsigned long cir_addr
;
88 /* hardware features */
89 bool hw_learning_capable
;
93 bool learning_enabled
;
94 bool carrier_detect_enabled
;
105 /* carrier period = 1 / frequency */
109 /* buffer packet constants, largely identical to mceusb.c */
110 #define BUF_PULSE_BIT 0x80
111 #define BUF_LEN_MASK 0x1f
112 #define BUF_SAMPLE_MASK 0x7f
114 #define BUF_COMMAND_HEADER 0x9f
115 #define BUF_COMMAND_MASK 0xe0
116 #define BUF_COMMAND_NULL 0x00
117 #define BUF_HW_CMD_HEADER 0xff
118 #define BUF_CMD_G_REVISION 0x0b
119 #define BUF_CMD_S_CARRIER 0x06
120 #define BUF_CMD_S_TIMEOUT 0x0c
121 #define BUF_CMD_SIG_END 0x01
122 #define BUF_CMD_S_TXMASK 0x08
123 #define BUF_CMD_S_RXSENSOR 0x14
124 #define BUF_RSP_PULSE_COUNT 0x15
126 #define CIR_SAMPLE_PERIOD 50
129 * Configuration Register:
133 #define CR_INDEX_PORT 0x2e
134 #define CR_DATA_PORT 0x2f
136 /* Possible alternate values, depends on how the chip is wired */
137 #define CR_INDEX_PORT2 0x4e
138 #define CR_DATA_PORT2 0x4f
141 * GCR_CONFIG_PORT_SEL bit 4 specifies which Index Port value is
142 * active. 1 = 0x4e, 0 = 0x2e
144 #define PORT_SEL_PORT_4E_EN 0x10
146 /* Extended Function Mode enable/disable magic values */
147 #define CONFIG_REG_ENABLE 0x87
148 #define CONFIG_REG_DISABLE 0xaa
150 /* Chip IDs found in CR_CHIP_ID_{HI,LO} */
151 #define CHIP_ID_HIGH_F71809U 0x04
152 #define CHIP_ID_LOW_F71809U 0x08
155 * Global control regs we need to care about:
156 * Global Control def.
157 * Register name addr val. */
158 #define GCR_SOFTWARE_RESET 0x02 /* 0x00 */
159 #define GCR_LOGICAL_DEV_NO 0x07 /* 0x00 */
160 #define GCR_CHIP_ID_HI 0x20 /* 0x04 */
161 #define GCR_CHIP_ID_LO 0x21 /* 0x08 */
162 #define GCR_VENDOR_ID_HI 0x23 /* 0x19 */
163 #define GCR_VENDOR_ID_LO 0x24 /* 0x34 */
164 #define GCR_CONFIG_PORT_SEL 0x25 /* 0x01 */
165 #define GCR_KBMOUSE_WAKEUP 0x27
167 #define LOGICAL_DEV_DISABLE 0x00
168 #define LOGICAL_DEV_ENABLE 0x01
170 /* Logical device number of the CIR function */
171 #define LOGICAL_DEV_CIR_REV1 0x05
172 #define LOGICAL_DEV_CIR_REV2 0x08
174 /* CIR Logical Device (LDN 0x08) config registers */
175 #define CIR_CR_COMMAND_INDEX 0x04
176 #define CIR_CR_IRCS 0x05 /* Before host writes command to IR, host
177 must set to 1. When host finshes write
178 command to IR, host must clear to 0. */
179 #define CIR_CR_COMMAND_DATA 0x06 /* Host read or write comand data */
180 #define CIR_CR_CLASS 0x07 /* 0xff = rx-only, 0x66 = rx + 2 tx,
182 #define CIR_CR_DEV_EN 0x30 /* bit0 = 1 enables CIR */
183 #define CIR_CR_BASE_ADDR_HI 0x60 /* MSB of CIR IO base addr */
184 #define CIR_CR_BASE_ADDR_LO 0x61 /* LSB of CIR IO base addr */
185 #define CIR_CR_IRQ_SEL 0x70 /* bits3-0 store CIR IRQ */
186 #define CIR_CR_PSOUT_STATUS 0xf1
187 #define CIR_CR_WAKE_KEY3_ADDR 0xf8
188 #define CIR_CR_WAKE_KEY3_CODE 0xf9
189 #define CIR_CR_WAKE_KEY3_DC 0xfa
190 #define CIR_CR_WAKE_CONTROL 0xfb
191 #define CIR_CR_WAKE_KEY12_ADDR 0xfc
192 #define CIR_CR_WAKE_KEY4_ADDR 0xfd
193 #define CIR_CR_WAKE_KEY5_ADDR 0xfe
195 #define CLASS_RX_ONLY 0xff
196 #define CLASS_RX_2TX 0x66
197 #define CLASS_RX_1TX 0x33
199 /* CIR device registers */
200 #define CIR_STATUS 0x00
201 #define CIR_RX_DATA 0x01
202 #define CIR_TX_CONTROL 0x02
203 #define CIR_TX_DATA 0x03
204 #define CIR_CONTROL 0x04
206 /* Bits to enable CIR wake */
207 #define LOGICAL_DEV_ACPI 0x01
208 #define LDEV_ACPI_WAKE_EN_REG 0xe8
209 #define ACPI_WAKE_EN_CIR_BIT 0x04
211 #define LDEV_ACPI_PME_EN_REG 0xf0
212 #define LDEV_ACPI_PME_CLR_REG 0xf1
213 #define ACPI_PME_CIR_BIT 0x02
215 #define LDEV_ACPI_STATE_REG 0xf4
216 #define ACPI_STATE_CIR_BIT 0x20
219 * CIR status register (0x00):
220 * 7 - CIR_IRQ_EN (1 = enable CIR IRQ, 0 = disable)
221 * 3 - TX_FINISH (1 when TX finished, write 1 to clear)
222 * 2 - TX_UNDERRUN (1 on TX underrun, write 1 to clear)
223 * 1 - RX_TIMEOUT (1 on RX timeout, write 1 to clear)
224 * 0 - RX_RECEIVE (1 on RX receive, write 1 to clear)
226 #define CIR_STATUS_IRQ_EN 0x80
227 #define CIR_STATUS_TX_FINISH 0x08
228 #define CIR_STATUS_TX_UNDERRUN 0x04
229 #define CIR_STATUS_RX_TIMEOUT 0x02
230 #define CIR_STATUS_RX_RECEIVE 0x01
231 #define CIR_STATUS_IRQ_MASK 0x0f
234 * CIR TX control register (0x02):
235 * 7 - TX_START (1 to indicate TX start, auto-cleared when done)
236 * 6 - TX_END (1 to indicate TX data written to TX fifo)
238 #define CIR_TX_CONTROL_TX_START 0x80
239 #define CIR_TX_CONTROL_TX_END 0x40