Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at v4.7-rc3 259 lines 7.2 kB view raw
1/* vi: ts=8 sw=8 2 * 3 * TI 3410/5052 USB Serial Driver Header 4 * 5 * Copyright (C) 2004 Texas Instruments 6 * 7 * This driver is based on the Linux io_ti driver, which is 8 * Copyright (C) 2000-2002 Inside Out Networks 9 * Copyright (C) 2001-2002 Greg Kroah-Hartman 10 * 11 * This program is free software; you can redistribute it and/or modify 12 * it under the terms of the GNU General Public License as published by 13 * the Free Software Foundation; either version 2 of the License, or 14 * (at your option) any later version. 15 * 16 * For questions or problems with this driver, contact Texas Instruments 17 * technical support, or Al Borchers <alborchers@steinerpoint.com>, or 18 * Peter Berger <pberger@brimson.com>. 19 */ 20 21#ifndef _TI_3410_5052_H_ 22#define _TI_3410_5052_H_ 23 24/* Configuration ids */ 25#define TI_BOOT_CONFIG 1 26#define TI_ACTIVE_CONFIG 2 27 28/* Vendor and product ids */ 29#define TI_VENDOR_ID 0x0451 30#define IBM_VENDOR_ID 0x04b3 31#define TI_3410_PRODUCT_ID 0x3410 32#define IBM_4543_PRODUCT_ID 0x4543 33#define IBM_454B_PRODUCT_ID 0x454b 34#define IBM_454C_PRODUCT_ID 0x454c 35#define TI_3410_EZ430_ID 0xF430 /* TI ez430 development tool */ 36#define TI_5052_BOOT_PRODUCT_ID 0x5052 /* no EEPROM, no firmware */ 37#define TI_5152_BOOT_PRODUCT_ID 0x5152 /* no EEPROM, no firmware */ 38#define TI_5052_EEPROM_PRODUCT_ID 0x505A /* EEPROM, no firmware */ 39#define TI_5052_FIRMWARE_PRODUCT_ID 0x505F /* firmware is running */ 40#define FRI2_PRODUCT_ID 0x5053 /* Fish River Island II */ 41 42/* Multi-Tech vendor and product ids */ 43#define MTS_VENDOR_ID 0x06E0 44#define MTS_GSM_NO_FW_PRODUCT_ID 0xF108 45#define MTS_CDMA_NO_FW_PRODUCT_ID 0xF109 46#define MTS_CDMA_PRODUCT_ID 0xF110 47#define MTS_GSM_PRODUCT_ID 0xF111 48#define MTS_EDGE_PRODUCT_ID 0xF112 49#define MTS_MT9234MU_PRODUCT_ID 0xF114 50#define MTS_MT9234ZBA_PRODUCT_ID 0xF115 51#define MTS_MT9234ZBAOLD_PRODUCT_ID 0x0319 52 53/* Abbott Diabetics vendor and product ids */ 54#define ABBOTT_VENDOR_ID 0x1a61 55#define ABBOTT_STEREO_PLUG_ID 0x3410 56#define ABBOTT_PRODUCT_ID ABBOTT_STEREO_PLUG_ID 57#define ABBOTT_STRIP_PORT_ID 0x3420 58 59/* Honeywell vendor and product IDs */ 60#define HONEYWELL_VENDOR_ID 0x10ac 61#define HONEYWELL_HGI80_PRODUCT_ID 0x0102 /* Honeywell HGI80 */ 62 63/* Moxa UPORT 11x0 vendor and product IDs */ 64#define MXU1_VENDOR_ID 0x110a 65#define MXU1_1110_PRODUCT_ID 0x1110 66#define MXU1_1130_PRODUCT_ID 0x1130 67#define MXU1_1131_PRODUCT_ID 0x1131 68#define MXU1_1150_PRODUCT_ID 0x1150 69#define MXU1_1151_PRODUCT_ID 0x1151 70 71/* Commands */ 72#define TI_GET_VERSION 0x01 73#define TI_GET_PORT_STATUS 0x02 74#define TI_GET_PORT_DEV_INFO 0x03 75#define TI_GET_CONFIG 0x04 76#define TI_SET_CONFIG 0x05 77#define TI_OPEN_PORT 0x06 78#define TI_CLOSE_PORT 0x07 79#define TI_START_PORT 0x08 80#define TI_STOP_PORT 0x09 81#define TI_TEST_PORT 0x0A 82#define TI_PURGE_PORT 0x0B 83#define TI_RESET_EXT_DEVICE 0x0C 84#define TI_WRITE_DATA 0x80 85#define TI_READ_DATA 0x81 86#define TI_REQ_TYPE_CLASS 0x82 87 88/* Module identifiers */ 89#define TI_I2C_PORT 0x01 90#define TI_IEEE1284_PORT 0x02 91#define TI_UART1_PORT 0x03 92#define TI_UART2_PORT 0x04 93#define TI_RAM_PORT 0x05 94 95/* Modem status */ 96#define TI_MSR_DELTA_CTS 0x01 97#define TI_MSR_DELTA_DSR 0x02 98#define TI_MSR_DELTA_RI 0x04 99#define TI_MSR_DELTA_CD 0x08 100#define TI_MSR_CTS 0x10 101#define TI_MSR_DSR 0x20 102#define TI_MSR_RI 0x40 103#define TI_MSR_CD 0x80 104#define TI_MSR_DELTA_MASK 0x0F 105#define TI_MSR_MASK 0xF0 106 107/* Line status */ 108#define TI_LSR_OVERRUN_ERROR 0x01 109#define TI_LSR_PARITY_ERROR 0x02 110#define TI_LSR_FRAMING_ERROR 0x04 111#define TI_LSR_BREAK 0x08 112#define TI_LSR_ERROR 0x0F 113#define TI_LSR_RX_FULL 0x10 114#define TI_LSR_TX_EMPTY 0x20 115 116/* Line control */ 117#define TI_LCR_BREAK 0x40 118 119/* Modem control */ 120#define TI_MCR_LOOP 0x04 121#define TI_MCR_DTR 0x10 122#define TI_MCR_RTS 0x20 123 124/* Mask settings */ 125#define TI_UART_ENABLE_RTS_IN 0x0001 126#define TI_UART_DISABLE_RTS 0x0002 127#define TI_UART_ENABLE_PARITY_CHECKING 0x0008 128#define TI_UART_ENABLE_DSR_OUT 0x0010 129#define TI_UART_ENABLE_CTS_OUT 0x0020 130#define TI_UART_ENABLE_X_OUT 0x0040 131#define TI_UART_ENABLE_XA_OUT 0x0080 132#define TI_UART_ENABLE_X_IN 0x0100 133#define TI_UART_ENABLE_DTR_IN 0x0800 134#define TI_UART_DISABLE_DTR 0x1000 135#define TI_UART_ENABLE_MS_INTS 0x2000 136#define TI_UART_ENABLE_AUTO_START_DMA 0x4000 137 138/* Parity */ 139#define TI_UART_NO_PARITY 0x00 140#define TI_UART_ODD_PARITY 0x01 141#define TI_UART_EVEN_PARITY 0x02 142#define TI_UART_MARK_PARITY 0x03 143#define TI_UART_SPACE_PARITY 0x04 144 145/* Stop bits */ 146#define TI_UART_1_STOP_BITS 0x00 147#define TI_UART_1_5_STOP_BITS 0x01 148#define TI_UART_2_STOP_BITS 0x02 149 150/* Bits per character */ 151#define TI_UART_5_DATA_BITS 0x00 152#define TI_UART_6_DATA_BITS 0x01 153#define TI_UART_7_DATA_BITS 0x02 154#define TI_UART_8_DATA_BITS 0x03 155 156/* 232/485 modes */ 157#define TI_UART_232 0x00 158#define TI_UART_485_RECEIVER_DISABLED 0x01 159#define TI_UART_485_RECEIVER_ENABLED 0x02 160 161/* Pipe transfer mode and timeout */ 162#define TI_PIPE_MODE_CONTINOUS 0x01 163#define TI_PIPE_MODE_MASK 0x03 164#define TI_PIPE_TIMEOUT_MASK 0x7C 165#define TI_PIPE_TIMEOUT_ENABLE 0x80 166 167/* Config struct */ 168struct ti_uart_config { 169 __u16 wBaudRate; 170 __u16 wFlags; 171 __u8 bDataBits; 172 __u8 bParity; 173 __u8 bStopBits; 174 char cXon; 175 char cXoff; 176 __u8 bUartMode; 177} __attribute__((packed)); 178 179/* Get port status */ 180struct ti_port_status { 181 __u8 bCmdCode; 182 __u8 bModuleId; 183 __u8 bErrorCode; 184 __u8 bMSR; 185 __u8 bLSR; 186} __attribute__((packed)); 187 188/* Purge modes */ 189#define TI_PURGE_OUTPUT 0x00 190#define TI_PURGE_INPUT 0x80 191 192/* Read/Write data */ 193#define TI_RW_DATA_ADDR_SFR 0x10 194#define TI_RW_DATA_ADDR_IDATA 0x20 195#define TI_RW_DATA_ADDR_XDATA 0x30 196#define TI_RW_DATA_ADDR_CODE 0x40 197#define TI_RW_DATA_ADDR_GPIO 0x50 198#define TI_RW_DATA_ADDR_I2C 0x60 199#define TI_RW_DATA_ADDR_FLASH 0x70 200#define TI_RW_DATA_ADDR_DSP 0x80 201 202#define TI_RW_DATA_UNSPECIFIED 0x00 203#define TI_RW_DATA_BYTE 0x01 204#define TI_RW_DATA_WORD 0x02 205#define TI_RW_DATA_DOUBLE_WORD 0x04 206 207struct ti_write_data_bytes { 208 __u8 bAddrType; 209 __u8 bDataType; 210 __u8 bDataCounter; 211 __be16 wBaseAddrHi; 212 __be16 wBaseAddrLo; 213 __u8 bData[0]; 214} __attribute__((packed)); 215 216struct ti_read_data_request { 217 __u8 bAddrType; 218 __u8 bDataType; 219 __u8 bDataCounter; 220 __be16 wBaseAddrHi; 221 __be16 wBaseAddrLo; 222} __attribute__((packed)); 223 224struct ti_read_data_bytes { 225 __u8 bCmdCode; 226 __u8 bModuleId; 227 __u8 bErrorCode; 228 __u8 bData[0]; 229} __attribute__((packed)); 230 231/* Interrupt struct */ 232struct ti_interrupt { 233 __u8 bICode; 234 __u8 bIInfo; 235} __attribute__((packed)); 236 237/* Interrupt codes */ 238#define TI_GET_PORT_FROM_CODE(c) (((c) >> 4) - 3) 239#define TI_GET_FUNC_FROM_CODE(c) ((c) & 0x0f) 240#define TI_CODE_HARDWARE_ERROR 0xFF 241#define TI_CODE_DATA_ERROR 0x03 242#define TI_CODE_MODEM_STATUS 0x04 243 244/* Download firmware max packet size */ 245#define TI_DOWNLOAD_MAX_PACKET_SIZE 64 246 247/* Firmware image header */ 248struct ti_firmware_header { 249 __le16 wLength; 250 __u8 bCheckSum; 251} __attribute__((packed)); 252 253/* UART addresses */ 254#define TI_UART1_BASE_ADDR 0xFFA0 /* UART 1 base address */ 255#define TI_UART2_BASE_ADDR 0xFFB0 /* UART 2 base address */ 256#define TI_UART_OFFSET_LCR 0x0002 /* UART MCR register offset */ 257#define TI_UART_OFFSET_MCR 0x0004 /* UART MCR register offset */ 258 259#endif /* _TI_3410_5052_H_ */