18c2ecf20Sopenharmony_ci/* SPDX-License-Identifier: GPL-2.0+ */ 28c2ecf20Sopenharmony_ci/* 38c2ecf20Sopenharmony_ci * USB ConnectTech WhiteHEAT driver 48c2ecf20Sopenharmony_ci * 58c2ecf20Sopenharmony_ci * Copyright (C) 2002 68c2ecf20Sopenharmony_ci * Connect Tech Inc. 78c2ecf20Sopenharmony_ci * 88c2ecf20Sopenharmony_ci * Copyright (C) 1999, 2000 98c2ecf20Sopenharmony_ci * Greg Kroah-Hartman (greg@kroah.com) 108c2ecf20Sopenharmony_ci * 118c2ecf20Sopenharmony_ci * See Documentation/usb/usb-serial.rst for more information on using this 128c2ecf20Sopenharmony_ci * driver 138c2ecf20Sopenharmony_ci * 148c2ecf20Sopenharmony_ci */ 158c2ecf20Sopenharmony_ci 168c2ecf20Sopenharmony_ci#ifndef __LINUX_USB_SERIAL_WHITEHEAT_H 178c2ecf20Sopenharmony_ci#define __LINUX_USB_SERIAL_WHITEHEAT_H 188c2ecf20Sopenharmony_ci 198c2ecf20Sopenharmony_ci 208c2ecf20Sopenharmony_ci/* WhiteHEAT commands */ 218c2ecf20Sopenharmony_ci#define WHITEHEAT_OPEN 1 /* open the port */ 228c2ecf20Sopenharmony_ci#define WHITEHEAT_CLOSE 2 /* close the port */ 238c2ecf20Sopenharmony_ci#define WHITEHEAT_SETUP_PORT 3 /* change port settings */ 248c2ecf20Sopenharmony_ci#define WHITEHEAT_SET_RTS 4 /* turn RTS on or off */ 258c2ecf20Sopenharmony_ci#define WHITEHEAT_SET_DTR 5 /* turn DTR on or off */ 268c2ecf20Sopenharmony_ci#define WHITEHEAT_SET_BREAK 6 /* turn BREAK on or off */ 278c2ecf20Sopenharmony_ci#define WHITEHEAT_DUMP 7 /* dump memory */ 288c2ecf20Sopenharmony_ci#define WHITEHEAT_STATUS 8 /* get status */ 298c2ecf20Sopenharmony_ci#define WHITEHEAT_PURGE 9 /* clear the UART fifos */ 308c2ecf20Sopenharmony_ci#define WHITEHEAT_GET_DTR_RTS 10 /* get the state of DTR and RTS 318c2ecf20Sopenharmony_ci for a port */ 328c2ecf20Sopenharmony_ci#define WHITEHEAT_GET_HW_INFO 11 /* get EEPROM info and 338c2ecf20Sopenharmony_ci hardware ID */ 348c2ecf20Sopenharmony_ci#define WHITEHEAT_REPORT_TX_DONE 12 /* get the next TX done */ 358c2ecf20Sopenharmony_ci#define WHITEHEAT_EVENT 13 /* unsolicited status events */ 368c2ecf20Sopenharmony_ci#define WHITEHEAT_ECHO 14 /* send data to the indicated 378c2ecf20Sopenharmony_ci IN endpoint */ 388c2ecf20Sopenharmony_ci#define WHITEHEAT_DO_TEST 15 /* perform specified test */ 398c2ecf20Sopenharmony_ci#define WHITEHEAT_CMD_COMPLETE 16 /* reply for some commands */ 408c2ecf20Sopenharmony_ci#define WHITEHEAT_CMD_FAILURE 17 /* reply for failed commands */ 418c2ecf20Sopenharmony_ci 428c2ecf20Sopenharmony_ci 438c2ecf20Sopenharmony_ci/* 448c2ecf20Sopenharmony_ci * Commands to the firmware 458c2ecf20Sopenharmony_ci */ 468c2ecf20Sopenharmony_ci 478c2ecf20Sopenharmony_ci 488c2ecf20Sopenharmony_ci/* 498c2ecf20Sopenharmony_ci * WHITEHEAT_OPEN 508c2ecf20Sopenharmony_ci * WHITEHEAT_CLOSE 518c2ecf20Sopenharmony_ci * WHITEHEAT_STATUS 528c2ecf20Sopenharmony_ci * WHITEHEAT_GET_DTR_RTS 538c2ecf20Sopenharmony_ci * WHITEHEAT_REPORT_TX_DONE 548c2ecf20Sopenharmony_ci*/ 558c2ecf20Sopenharmony_cistruct whiteheat_simple { 568c2ecf20Sopenharmony_ci __u8 port; /* port number (1 to N) */ 578c2ecf20Sopenharmony_ci}; 588c2ecf20Sopenharmony_ci 598c2ecf20Sopenharmony_ci 608c2ecf20Sopenharmony_ci/* 618c2ecf20Sopenharmony_ci * WHITEHEAT_SETUP_PORT 628c2ecf20Sopenharmony_ci */ 638c2ecf20Sopenharmony_ci#define WHITEHEAT_PAR_NONE 'n' /* no parity */ 648c2ecf20Sopenharmony_ci#define WHITEHEAT_PAR_EVEN 'e' /* even parity */ 658c2ecf20Sopenharmony_ci#define WHITEHEAT_PAR_ODD 'o' /* odd parity */ 668c2ecf20Sopenharmony_ci#define WHITEHEAT_PAR_SPACE '0' /* space (force 0) parity */ 678c2ecf20Sopenharmony_ci#define WHITEHEAT_PAR_MARK '1' /* mark (force 1) parity */ 688c2ecf20Sopenharmony_ci 698c2ecf20Sopenharmony_ci#define WHITEHEAT_SFLOW_NONE 'n' /* no software flow control */ 708c2ecf20Sopenharmony_ci#define WHITEHEAT_SFLOW_RX 'r' /* XOFF/ON is sent when RX 718c2ecf20Sopenharmony_ci fills/empties */ 728c2ecf20Sopenharmony_ci#define WHITEHEAT_SFLOW_TX 't' /* when received XOFF/ON will 738c2ecf20Sopenharmony_ci stop/start TX */ 748c2ecf20Sopenharmony_ci#define WHITEHEAT_SFLOW_RXTX 'b' /* both SFLOW_RX and SFLOW_TX */ 758c2ecf20Sopenharmony_ci 768c2ecf20Sopenharmony_ci#define WHITEHEAT_HFLOW_NONE 0x00 /* no hardware flow control */ 778c2ecf20Sopenharmony_ci#define WHITEHEAT_HFLOW_RTS_TOGGLE 0x01 /* RTS is on during transmit, 788c2ecf20Sopenharmony_ci off otherwise */ 798c2ecf20Sopenharmony_ci#define WHITEHEAT_HFLOW_DTR 0x02 /* DTR is off/on when RX 808c2ecf20Sopenharmony_ci fills/empties */ 818c2ecf20Sopenharmony_ci#define WHITEHEAT_HFLOW_CTS 0x08 /* when received CTS off/on 828c2ecf20Sopenharmony_ci will stop/start TX */ 838c2ecf20Sopenharmony_ci#define WHITEHEAT_HFLOW_DSR 0x10 /* when received DSR off/on 848c2ecf20Sopenharmony_ci will stop/start TX */ 858c2ecf20Sopenharmony_ci#define WHITEHEAT_HFLOW_RTS 0x80 /* RTS is off/on when RX 868c2ecf20Sopenharmony_ci fills/empties */ 878c2ecf20Sopenharmony_ci 888c2ecf20Sopenharmony_cistruct whiteheat_port_settings { 898c2ecf20Sopenharmony_ci __u8 port; /* port number (1 to N) */ 908c2ecf20Sopenharmony_ci __le32 baud; /* any value 7 - 460800, firmware calculates 918c2ecf20Sopenharmony_ci best fit; arrives little endian */ 928c2ecf20Sopenharmony_ci __u8 bits; /* 5, 6, 7, or 8 */ 938c2ecf20Sopenharmony_ci __u8 stop; /* 1 or 2, default 1 (2 = 1.5 if bits = 5) */ 948c2ecf20Sopenharmony_ci __u8 parity; /* see WHITEHEAT_PAR_* above */ 958c2ecf20Sopenharmony_ci __u8 sflow; /* see WHITEHEAT_SFLOW_* above */ 968c2ecf20Sopenharmony_ci __u8 xoff; /* XOFF byte value */ 978c2ecf20Sopenharmony_ci __u8 xon; /* XON byte value */ 988c2ecf20Sopenharmony_ci __u8 hflow; /* see WHITEHEAT_HFLOW_* above */ 998c2ecf20Sopenharmony_ci __u8 lloop; /* 0/1 turns local loopback mode off/on */ 1008c2ecf20Sopenharmony_ci} __attribute__ ((packed)); 1018c2ecf20Sopenharmony_ci 1028c2ecf20Sopenharmony_ci 1038c2ecf20Sopenharmony_ci/* 1048c2ecf20Sopenharmony_ci * WHITEHEAT_SET_RTS 1058c2ecf20Sopenharmony_ci * WHITEHEAT_SET_DTR 1068c2ecf20Sopenharmony_ci * WHITEHEAT_SET_BREAK 1078c2ecf20Sopenharmony_ci */ 1088c2ecf20Sopenharmony_ci#define WHITEHEAT_RTS_OFF 0x00 1098c2ecf20Sopenharmony_ci#define WHITEHEAT_RTS_ON 0x01 1108c2ecf20Sopenharmony_ci#define WHITEHEAT_DTR_OFF 0x00 1118c2ecf20Sopenharmony_ci#define WHITEHEAT_DTR_ON 0x01 1128c2ecf20Sopenharmony_ci#define WHITEHEAT_BREAK_OFF 0x00 1138c2ecf20Sopenharmony_ci#define WHITEHEAT_BREAK_ON 0x01 1148c2ecf20Sopenharmony_ci 1158c2ecf20Sopenharmony_cistruct whiteheat_set_rdb { 1168c2ecf20Sopenharmony_ci __u8 port; /* port number (1 to N) */ 1178c2ecf20Sopenharmony_ci __u8 state; /* 0/1 turns signal off/on */ 1188c2ecf20Sopenharmony_ci}; 1198c2ecf20Sopenharmony_ci 1208c2ecf20Sopenharmony_ci 1218c2ecf20Sopenharmony_ci/* 1228c2ecf20Sopenharmony_ci * WHITEHEAT_DUMP 1238c2ecf20Sopenharmony_ci */ 1248c2ecf20Sopenharmony_ci#define WHITEHEAT_DUMP_MEM_DATA 'd' /* data */ 1258c2ecf20Sopenharmony_ci#define WHITEHEAT_DUMP_MEM_IDATA 'i' /* idata */ 1268c2ecf20Sopenharmony_ci#define WHITEHEAT_DUMP_MEM_BDATA 'b' /* bdata */ 1278c2ecf20Sopenharmony_ci#define WHITEHEAT_DUMP_MEM_XDATA 'x' /* xdata */ 1288c2ecf20Sopenharmony_ci 1298c2ecf20Sopenharmony_ci/* 1308c2ecf20Sopenharmony_ci * Allowable address ranges (firmware checks address): 1318c2ecf20Sopenharmony_ci * Type DATA: 0x00 - 0xff 1328c2ecf20Sopenharmony_ci * Type IDATA: 0x80 - 0xff 1338c2ecf20Sopenharmony_ci * Type BDATA: 0x20 - 0x2f 1348c2ecf20Sopenharmony_ci * Type XDATA: 0x0000 - 0xffff 1358c2ecf20Sopenharmony_ci * 1368c2ecf20Sopenharmony_ci * B/I/DATA all read the local memory space 1378c2ecf20Sopenharmony_ci * XDATA reads the external memory space 1388c2ecf20Sopenharmony_ci * BDATA returns bits as bytes 1398c2ecf20Sopenharmony_ci * 1408c2ecf20Sopenharmony_ci * NOTE: 0x80 - 0xff (local space) are the Special Function Registers 1418c2ecf20Sopenharmony_ci * of the 8051, and some have on-read side-effects. 1428c2ecf20Sopenharmony_ci */ 1438c2ecf20Sopenharmony_ci 1448c2ecf20Sopenharmony_cistruct whiteheat_dump { 1458c2ecf20Sopenharmony_ci __u8 mem_type; /* see WHITEHEAT_DUMP_* above */ 1468c2ecf20Sopenharmony_ci __u16 addr; /* address, see restrictions above */ 1478c2ecf20Sopenharmony_ci __u16 length; /* number of bytes to dump, max 63 bytes */ 1488c2ecf20Sopenharmony_ci}; 1498c2ecf20Sopenharmony_ci 1508c2ecf20Sopenharmony_ci 1518c2ecf20Sopenharmony_ci/* 1528c2ecf20Sopenharmony_ci * WHITEHEAT_PURGE 1538c2ecf20Sopenharmony_ci */ 1548c2ecf20Sopenharmony_ci#define WHITEHEAT_PURGE_RX 0x01 /* purge rx fifos */ 1558c2ecf20Sopenharmony_ci#define WHITEHEAT_PURGE_TX 0x02 /* purge tx fifos */ 1568c2ecf20Sopenharmony_ci 1578c2ecf20Sopenharmony_cistruct whiteheat_purge { 1588c2ecf20Sopenharmony_ci __u8 port; /* port number (1 to N) */ 1598c2ecf20Sopenharmony_ci __u8 what; /* bit pattern of what to purge */ 1608c2ecf20Sopenharmony_ci}; 1618c2ecf20Sopenharmony_ci 1628c2ecf20Sopenharmony_ci 1638c2ecf20Sopenharmony_ci/* 1648c2ecf20Sopenharmony_ci * WHITEHEAT_ECHO 1658c2ecf20Sopenharmony_ci */ 1668c2ecf20Sopenharmony_cistruct whiteheat_echo { 1678c2ecf20Sopenharmony_ci __u8 port; /* port number (1 to N) */ 1688c2ecf20Sopenharmony_ci __u8 length; /* length of message to echo, max 61 bytes */ 1698c2ecf20Sopenharmony_ci __u8 echo_data[61]; /* data to echo */ 1708c2ecf20Sopenharmony_ci}; 1718c2ecf20Sopenharmony_ci 1728c2ecf20Sopenharmony_ci 1738c2ecf20Sopenharmony_ci/* 1748c2ecf20Sopenharmony_ci * WHITEHEAT_DO_TEST 1758c2ecf20Sopenharmony_ci */ 1768c2ecf20Sopenharmony_ci#define WHITEHEAT_TEST_UART_RW 0x01 /* read/write uart registers */ 1778c2ecf20Sopenharmony_ci#define WHITEHEAT_TEST_UART_INTR 0x02 /* uart interrupt */ 1788c2ecf20Sopenharmony_ci#define WHITEHEAT_TEST_SETUP_CONT 0x03 /* setup for 1798c2ecf20Sopenharmony_ci PORT_CONT/PORT_DISCONT */ 1808c2ecf20Sopenharmony_ci#define WHITEHEAT_TEST_PORT_CONT 0x04 /* port connect */ 1818c2ecf20Sopenharmony_ci#define WHITEHEAT_TEST_PORT_DISCONT 0x05 /* port disconnect */ 1828c2ecf20Sopenharmony_ci#define WHITEHEAT_TEST_UART_CLK_START 0x06 /* uart clock test start */ 1838c2ecf20Sopenharmony_ci#define WHITEHEAT_TEST_UART_CLK_STOP 0x07 /* uart clock test stop */ 1848c2ecf20Sopenharmony_ci#define WHITEHEAT_TEST_MODEM_FT 0x08 /* modem signals, requires a 1858c2ecf20Sopenharmony_ci loopback cable/connector */ 1868c2ecf20Sopenharmony_ci#define WHITEHEAT_TEST_ERASE_EEPROM 0x09 /* erase eeprom */ 1878c2ecf20Sopenharmony_ci#define WHITEHEAT_TEST_READ_EEPROM 0x0a /* read eeprom */ 1888c2ecf20Sopenharmony_ci#define WHITEHEAT_TEST_PROGRAM_EEPROM 0x0b /* program eeprom */ 1898c2ecf20Sopenharmony_ci 1908c2ecf20Sopenharmony_cistruct whiteheat_test { 1918c2ecf20Sopenharmony_ci __u8 port; /* port number (1 to n) */ 1928c2ecf20Sopenharmony_ci __u8 test; /* see WHITEHEAT_TEST_* above*/ 1938c2ecf20Sopenharmony_ci __u8 info[32]; /* additional info */ 1948c2ecf20Sopenharmony_ci}; 1958c2ecf20Sopenharmony_ci 1968c2ecf20Sopenharmony_ci 1978c2ecf20Sopenharmony_ci/* 1988c2ecf20Sopenharmony_ci * Replies from the firmware 1998c2ecf20Sopenharmony_ci */ 2008c2ecf20Sopenharmony_ci 2018c2ecf20Sopenharmony_ci 2028c2ecf20Sopenharmony_ci/* 2038c2ecf20Sopenharmony_ci * WHITEHEAT_STATUS 2048c2ecf20Sopenharmony_ci */ 2058c2ecf20Sopenharmony_ci#define WHITEHEAT_EVENT_MODEM 0x01 /* modem field is valid */ 2068c2ecf20Sopenharmony_ci#define WHITEHEAT_EVENT_ERROR 0x02 /* error field is valid */ 2078c2ecf20Sopenharmony_ci#define WHITEHEAT_EVENT_FLOW 0x04 /* flow field is valid */ 2088c2ecf20Sopenharmony_ci#define WHITEHEAT_EVENT_CONNECT 0x08 /* connect field is valid */ 2098c2ecf20Sopenharmony_ci 2108c2ecf20Sopenharmony_ci#define WHITEHEAT_FLOW_NONE 0x00 /* no flow control active */ 2118c2ecf20Sopenharmony_ci#define WHITEHEAT_FLOW_HARD_OUT 0x01 /* TX is stopped by CTS 2128c2ecf20Sopenharmony_ci (waiting for CTS to go on) */ 2138c2ecf20Sopenharmony_ci#define WHITEHEAT_FLOW_HARD_IN 0x02 /* remote TX is stopped 2148c2ecf20Sopenharmony_ci by RTS */ 2158c2ecf20Sopenharmony_ci#define WHITEHEAT_FLOW_SOFT_OUT 0x04 /* TX is stopped by XOFF 2168c2ecf20Sopenharmony_ci received (waiting for XON) */ 2178c2ecf20Sopenharmony_ci#define WHITEHEAT_FLOW_SOFT_IN 0x08 /* remote TX is stopped by XOFF 2188c2ecf20Sopenharmony_ci transmitted */ 2198c2ecf20Sopenharmony_ci#define WHITEHEAT_FLOW_TX_DONE 0x80 /* TX has completed */ 2208c2ecf20Sopenharmony_ci 2218c2ecf20Sopenharmony_cistruct whiteheat_status_info { 2228c2ecf20Sopenharmony_ci __u8 port; /* port number (1 to N) */ 2238c2ecf20Sopenharmony_ci __u8 event; /* indicates what the current event is, 2248c2ecf20Sopenharmony_ci see WHITEHEAT_EVENT_* above */ 2258c2ecf20Sopenharmony_ci __u8 modem; /* modem signal status (copy of uart's 2268c2ecf20Sopenharmony_ci MSR register) */ 2278c2ecf20Sopenharmony_ci __u8 error; /* line status (copy of uart's LSR register) */ 2288c2ecf20Sopenharmony_ci __u8 flow; /* flow control state, see WHITEHEAT_FLOW_* 2298c2ecf20Sopenharmony_ci above */ 2308c2ecf20Sopenharmony_ci __u8 connect; /* 0 means not connected, non-zero means 2318c2ecf20Sopenharmony_ci connected */ 2328c2ecf20Sopenharmony_ci}; 2338c2ecf20Sopenharmony_ci 2348c2ecf20Sopenharmony_ci 2358c2ecf20Sopenharmony_ci/* 2368c2ecf20Sopenharmony_ci * WHITEHEAT_GET_DTR_RTS 2378c2ecf20Sopenharmony_ci */ 2388c2ecf20Sopenharmony_cistruct whiteheat_dr_info { 2398c2ecf20Sopenharmony_ci __u8 mcr; /* copy of uart's MCR register */ 2408c2ecf20Sopenharmony_ci}; 2418c2ecf20Sopenharmony_ci 2428c2ecf20Sopenharmony_ci 2438c2ecf20Sopenharmony_ci/* 2448c2ecf20Sopenharmony_ci * WHITEHEAT_GET_HW_INFO 2458c2ecf20Sopenharmony_ci */ 2468c2ecf20Sopenharmony_cistruct whiteheat_hw_info { 2478c2ecf20Sopenharmony_ci __u8 hw_id; /* hardware id number, WhiteHEAT = 0 */ 2488c2ecf20Sopenharmony_ci __u8 sw_major_rev; /* major version number */ 2498c2ecf20Sopenharmony_ci __u8 sw_minor_rev; /* minor version number */ 2508c2ecf20Sopenharmony_ci struct whiteheat_hw_eeprom_info { 2518c2ecf20Sopenharmony_ci __u8 b0; /* B0 */ 2528c2ecf20Sopenharmony_ci __u8 vendor_id_low; /* vendor id (low byte) */ 2538c2ecf20Sopenharmony_ci __u8 vendor_id_high; /* vendor id (high byte) */ 2548c2ecf20Sopenharmony_ci __u8 product_id_low; /* product id (low byte) */ 2558c2ecf20Sopenharmony_ci __u8 product_id_high; /* product id (high byte) */ 2568c2ecf20Sopenharmony_ci __u8 device_id_low; /* device id (low byte) */ 2578c2ecf20Sopenharmony_ci __u8 device_id_high; /* device id (high byte) */ 2588c2ecf20Sopenharmony_ci __u8 not_used_1; 2598c2ecf20Sopenharmony_ci __u8 serial_number_0; /* serial number (low byte) */ 2608c2ecf20Sopenharmony_ci __u8 serial_number_1; /* serial number */ 2618c2ecf20Sopenharmony_ci __u8 serial_number_2; /* serial number */ 2628c2ecf20Sopenharmony_ci __u8 serial_number_3; /* serial number (high byte) */ 2638c2ecf20Sopenharmony_ci __u8 not_used_2; 2648c2ecf20Sopenharmony_ci __u8 not_used_3; 2658c2ecf20Sopenharmony_ci __u8 checksum_low; /* checksum (low byte) */ 2668c2ecf20Sopenharmony_ci __u8 checksum_high; /* checksum (high byte */ 2678c2ecf20Sopenharmony_ci } hw_eeprom_info; /* EEPROM contents */ 2688c2ecf20Sopenharmony_ci}; 2698c2ecf20Sopenharmony_ci 2708c2ecf20Sopenharmony_ci 2718c2ecf20Sopenharmony_ci/* 2728c2ecf20Sopenharmony_ci * WHITEHEAT_EVENT 2738c2ecf20Sopenharmony_ci */ 2748c2ecf20Sopenharmony_cistruct whiteheat_event_info { 2758c2ecf20Sopenharmony_ci __u8 port; /* port number (1 to N) */ 2768c2ecf20Sopenharmony_ci __u8 event; /* see whiteheat_status_info.event */ 2778c2ecf20Sopenharmony_ci __u8 info; /* see whiteheat_status_info.modem, .error, 2788c2ecf20Sopenharmony_ci .flow, .connect */ 2798c2ecf20Sopenharmony_ci}; 2808c2ecf20Sopenharmony_ci 2818c2ecf20Sopenharmony_ci 2828c2ecf20Sopenharmony_ci/* 2838c2ecf20Sopenharmony_ci * WHITEHEAT_DO_TEST 2848c2ecf20Sopenharmony_ci */ 2858c2ecf20Sopenharmony_ci#define WHITEHEAT_TEST_FAIL 0x00 /* test failed */ 2868c2ecf20Sopenharmony_ci#define WHITEHEAT_TEST_UNKNOWN 0x01 /* unknown test requested */ 2878c2ecf20Sopenharmony_ci#define WHITEHEAT_TEST_PASS 0xff /* test passed */ 2888c2ecf20Sopenharmony_ci 2898c2ecf20Sopenharmony_cistruct whiteheat_test_info { 2908c2ecf20Sopenharmony_ci __u8 port; /* port number (1 to N) */ 2918c2ecf20Sopenharmony_ci __u8 test; /* indicates which test this is a response for, 2928c2ecf20Sopenharmony_ci see WHITEHEAT_DO_TEST above */ 2938c2ecf20Sopenharmony_ci __u8 status; /* see WHITEHEAT_TEST_* above */ 2948c2ecf20Sopenharmony_ci __u8 results[32]; /* test-dependent results */ 2958c2ecf20Sopenharmony_ci}; 2968c2ecf20Sopenharmony_ci 2978c2ecf20Sopenharmony_ci 2988c2ecf20Sopenharmony_ci#endif 299