12154be65SJarod Wilson /* 22154be65SJarod Wilson * USB RedRat3 IR Transceiver rc-core driver 32154be65SJarod Wilson * 42154be65SJarod Wilson * Copyright (c) 2011 by Jarod Wilson <jarod@redhat.com> 52154be65SJarod Wilson * based heavily on the work of Stephen Cox, with additional 62154be65SJarod Wilson * help from RedRat Ltd. 72154be65SJarod Wilson * 82154be65SJarod Wilson * This driver began life based an an old version of the first-generation 92154be65SJarod Wilson * lirc_mceusb driver from the lirc 0.7.2 distribution. It was then 102154be65SJarod Wilson * significantly rewritten by Stephen Cox with the aid of RedRat Ltd's 112154be65SJarod Wilson * Chris Dodge. 122154be65SJarod Wilson * 132154be65SJarod Wilson * The driver was then ported to rc-core and significantly rewritten again, 142154be65SJarod Wilson * by Jarod, using the in-kernel mceusb driver as a guide, after an initial 152154be65SJarod Wilson * port effort was started by Stephen. 162154be65SJarod Wilson * 172154be65SJarod Wilson * TODO LIST: 182154be65SJarod Wilson * - fix lirc not showing repeats properly 192154be65SJarod Wilson * -- 202154be65SJarod Wilson * 212154be65SJarod Wilson * The RedRat3 is a USB transceiver with both send & receive, 222154be65SJarod Wilson * with 2 separate sensors available for receive to enable 232154be65SJarod Wilson * both good long range reception for general use, and good 242154be65SJarod Wilson * short range reception when required for learning a signal. 252154be65SJarod Wilson * 262154be65SJarod Wilson * http://www.redrat.co.uk/ 272154be65SJarod Wilson * 282154be65SJarod Wilson * It uses its own little protocol to communicate, the required 292154be65SJarod Wilson * parts of which are embedded within this driver. 302154be65SJarod Wilson * -- 312154be65SJarod Wilson * 322154be65SJarod Wilson * This program is free software; you can redistribute it and/or modify 332154be65SJarod Wilson * it under the terms of the GNU General Public License as published by 342154be65SJarod Wilson * the Free Software Foundation; either version 2 of the License, or 352154be65SJarod Wilson * (at your option) any later version. 362154be65SJarod Wilson * 372154be65SJarod Wilson * This program is distributed in the hope that it will be useful, 382154be65SJarod Wilson * but WITHOUT ANY WARRANTY; without even the implied warranty of 392154be65SJarod Wilson * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 402154be65SJarod Wilson * GNU General Public License for more details. 412154be65SJarod Wilson * 422154be65SJarod Wilson * You should have received a copy of the GNU General Public License 432154be65SJarod Wilson * along with this program; if not, write to the Free Software 442154be65SJarod Wilson * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 452154be65SJarod Wilson * 462154be65SJarod Wilson */ 472154be65SJarod Wilson 48*4c055a5aSSean Young #include <asm/unaligned.h> 492154be65SJarod Wilson #include <linux/device.h> 502154be65SJarod Wilson #include <linux/module.h> 512154be65SJarod Wilson #include <linux/slab.h> 522154be65SJarod Wilson #include <linux/usb.h> 532154be65SJarod Wilson #include <linux/usb/input.h> 542154be65SJarod Wilson #include <media/rc-core.h> 552154be65SJarod Wilson 562154be65SJarod Wilson /* Driver Information */ 572154be65SJarod Wilson #define DRIVER_VERSION "0.70" 582154be65SJarod Wilson #define DRIVER_AUTHOR "Jarod Wilson <jarod@redhat.com>" 592154be65SJarod Wilson #define DRIVER_AUTHOR2 "The Dweller, Stephen Cox" 602154be65SJarod Wilson #define DRIVER_DESC "RedRat3 USB IR Transceiver Driver" 612154be65SJarod Wilson #define DRIVER_NAME "redrat3" 622154be65SJarod Wilson 632154be65SJarod Wilson /* module parameters */ 642154be65SJarod Wilson #ifdef CONFIG_USB_DEBUG 652154be65SJarod Wilson static int debug = 1; 662154be65SJarod Wilson #else 672154be65SJarod Wilson static int debug; 682154be65SJarod Wilson #endif 692154be65SJarod Wilson 702154be65SJarod Wilson #define RR3_DEBUG_STANDARD 0x1 712154be65SJarod Wilson #define RR3_DEBUG_FUNCTION_TRACE 0x2 722154be65SJarod Wilson 732154be65SJarod Wilson #define rr3_dbg(dev, fmt, ...) \ 742154be65SJarod Wilson do { \ 752154be65SJarod Wilson if (debug & RR3_DEBUG_STANDARD) \ 762154be65SJarod Wilson dev_info(dev, fmt, ## __VA_ARGS__); \ 772154be65SJarod Wilson } while (0) 782154be65SJarod Wilson 792154be65SJarod Wilson #define rr3_ftr(dev, fmt, ...) \ 802154be65SJarod Wilson do { \ 812154be65SJarod Wilson if (debug & RR3_DEBUG_FUNCTION_TRACE) \ 822154be65SJarod Wilson dev_info(dev, fmt, ## __VA_ARGS__); \ 832154be65SJarod Wilson } while (0) 842154be65SJarod Wilson 852154be65SJarod Wilson /* bulk data transfer types */ 862154be65SJarod Wilson #define RR3_ERROR 0x01 872154be65SJarod Wilson #define RR3_MOD_SIGNAL_IN 0x20 882154be65SJarod Wilson #define RR3_MOD_SIGNAL_OUT 0x21 892154be65SJarod Wilson 902154be65SJarod Wilson /* Get the RR firmware version */ 912154be65SJarod Wilson #define RR3_FW_VERSION 0xb1 922154be65SJarod Wilson #define RR3_FW_VERSION_LEN 64 932154be65SJarod Wilson /* Send encoded signal bulk-sent earlier*/ 942154be65SJarod Wilson #define RR3_TX_SEND_SIGNAL 0xb3 952154be65SJarod Wilson #define RR3_SET_IR_PARAM 0xb7 962154be65SJarod Wilson #define RR3_GET_IR_PARAM 0xb8 972154be65SJarod Wilson /* Blink the red LED on the device */ 982154be65SJarod Wilson #define RR3_BLINK_LED 0xb9 992154be65SJarod Wilson /* Read serial number of device */ 1002154be65SJarod Wilson #define RR3_READ_SER_NO 0xba 1012154be65SJarod Wilson #define RR3_SER_NO_LEN 4 1022154be65SJarod Wilson /* Start capture with the RC receiver */ 1032154be65SJarod Wilson #define RR3_RC_DET_ENABLE 0xbb 1042154be65SJarod Wilson /* Stop capture with the RC receiver */ 1052154be65SJarod Wilson #define RR3_RC_DET_DISABLE 0xbc 1062154be65SJarod Wilson /* Return the status of RC detector capture */ 1072154be65SJarod Wilson #define RR3_RC_DET_STATUS 0xbd 1082154be65SJarod Wilson /* Reset redrat */ 1092154be65SJarod Wilson #define RR3_RESET 0xa0 1102154be65SJarod Wilson 1112154be65SJarod Wilson /* Max number of lengths in the signal. */ 1122154be65SJarod Wilson #define RR3_IR_IO_MAX_LENGTHS 0x01 1132154be65SJarod Wilson /* Periods to measure mod. freq. */ 1142154be65SJarod Wilson #define RR3_IR_IO_PERIODS_MF 0x02 1152154be65SJarod Wilson /* Size of memory for main signal data */ 1162154be65SJarod Wilson #define RR3_IR_IO_SIG_MEM_SIZE 0x03 1172154be65SJarod Wilson /* Delta value when measuring lengths */ 1182154be65SJarod Wilson #define RR3_IR_IO_LENGTH_FUZZ 0x04 1192154be65SJarod Wilson /* Timeout for end of signal detection */ 1202154be65SJarod Wilson #define RR3_IR_IO_SIG_TIMEOUT 0x05 1212154be65SJarod Wilson /* Minumum value for pause recognition. */ 1222154be65SJarod Wilson #define RR3_IR_IO_MIN_PAUSE 0x06 1232154be65SJarod Wilson 1242154be65SJarod Wilson /* Clock freq. of EZ-USB chip */ 1252154be65SJarod Wilson #define RR3_CLK 24000000 1262154be65SJarod Wilson /* Clock periods per timer count */ 1272154be65SJarod Wilson #define RR3_CLK_PER_COUNT 12 1282154be65SJarod Wilson /* (RR3_CLK / RR3_CLK_PER_COUNT) */ 1292154be65SJarod Wilson #define RR3_CLK_CONV_FACTOR 2000000 1302154be65SJarod Wilson /* USB bulk-in IR data endpoint address */ 1312154be65SJarod Wilson #define RR3_BULK_IN_EP_ADDR 0x82 1322154be65SJarod Wilson 1332154be65SJarod Wilson /* Size of the fixed-length portion of the signal */ 1342154be65SJarod Wilson #define RR3_DRIVER_MAXLENS 128 1352154be65SJarod Wilson #define RR3_MAX_SIG_SIZE 512 1362154be65SJarod Wilson #define RR3_TIME_UNIT 50 1372154be65SJarod Wilson #define RR3_END_OF_SIGNAL 0x7f 1382154be65SJarod Wilson #define RR3_TX_TRAILER_LEN 2 1392154be65SJarod Wilson #define RR3_RX_MIN_TIMEOUT 5 1402154be65SJarod Wilson #define RR3_RX_MAX_TIMEOUT 2000 1412154be65SJarod Wilson 1422154be65SJarod Wilson /* The 8051's CPUCS Register address */ 1432154be65SJarod Wilson #define RR3_CPUCS_REG_ADDR 0x7f92 1442154be65SJarod Wilson 1452154be65SJarod Wilson #define USB_RR3USB_VENDOR_ID 0x112a 1462154be65SJarod Wilson #define USB_RR3USB_PRODUCT_ID 0x0001 1472154be65SJarod Wilson #define USB_RR3IIUSB_PRODUCT_ID 0x0005 1482154be65SJarod Wilson 149*4c055a5aSSean Young struct redrat3_header { 150*4c055a5aSSean Young __be16 length; 151*4c055a5aSSean Young __be16 transfer_type; 152*4c055a5aSSean Young } __packed; 153*4c055a5aSSean Young 154*4c055a5aSSean Young /* sending and receiving irdata */ 155*4c055a5aSSean Young struct redrat3_irdata { 156*4c055a5aSSean Young struct redrat3_header header; 157*4c055a5aSSean Young __be32 pause; 158*4c055a5aSSean Young __be16 mod_freq_count; 159*4c055a5aSSean Young __be16 num_periods; 160*4c055a5aSSean Young __u8 max_lengths; 161*4c055a5aSSean Young __u8 no_lengths; 162*4c055a5aSSean Young __be16 max_sig_size; 163*4c055a5aSSean Young __be16 sig_size; 164*4c055a5aSSean Young __u8 no_repeats; 165*4c055a5aSSean Young __be16 lens[RR3_DRIVER_MAXLENS]; /* not aligned */ 166*4c055a5aSSean Young __u8 sigdata[RR3_MAX_SIG_SIZE]; 167*4c055a5aSSean Young } __packed; 168*4c055a5aSSean Young 169*4c055a5aSSean Young /* firmware errors */ 170*4c055a5aSSean Young struct redrat3_error { 171*4c055a5aSSean Young struct redrat3_header header; 172*4c055a5aSSean Young __be16 fw_error; 173*4c055a5aSSean Young } __packed; 174*4c055a5aSSean Young 1752154be65SJarod Wilson /* table of devices that work with this driver */ 1762154be65SJarod Wilson static struct usb_device_id redrat3_dev_table[] = { 1772154be65SJarod Wilson /* Original version of the RedRat3 */ 1782154be65SJarod Wilson {USB_DEVICE(USB_RR3USB_VENDOR_ID, USB_RR3USB_PRODUCT_ID)}, 1792154be65SJarod Wilson /* Second Version/release of the RedRat3 - RetRat3-II */ 1802154be65SJarod Wilson {USB_DEVICE(USB_RR3USB_VENDOR_ID, USB_RR3IIUSB_PRODUCT_ID)}, 1812154be65SJarod Wilson {} /* Terminating entry */ 1822154be65SJarod Wilson }; 1832154be65SJarod Wilson 1842154be65SJarod Wilson /* Structure to hold all of our device specific stuff */ 1852154be65SJarod Wilson struct redrat3_dev { 1862154be65SJarod Wilson /* core device bits */ 1872154be65SJarod Wilson struct rc_dev *rc; 1882154be65SJarod Wilson struct device *dev; 1892154be65SJarod Wilson 1902154be65SJarod Wilson /* save off the usb device pointer */ 1912154be65SJarod Wilson struct usb_device *udev; 1922154be65SJarod Wilson 1932154be65SJarod Wilson /* the receive endpoint */ 1942154be65SJarod Wilson struct usb_endpoint_descriptor *ep_in; 1952154be65SJarod Wilson /* the buffer to receive data */ 196*4c055a5aSSean Young void *bulk_in_buf; 1972154be65SJarod Wilson /* urb used to read ir data */ 1982154be65SJarod Wilson struct urb *read_urb; 1992154be65SJarod Wilson 2002154be65SJarod Wilson /* the send endpoint */ 2012154be65SJarod Wilson struct usb_endpoint_descriptor *ep_out; 2022154be65SJarod Wilson /* the buffer to send data */ 2032154be65SJarod Wilson unsigned char *bulk_out_buf; 2042154be65SJarod Wilson /* the urb used to send data */ 2052154be65SJarod Wilson struct urb *write_urb; 2062154be65SJarod Wilson 2072154be65SJarod Wilson /* usb dma */ 2082154be65SJarod Wilson dma_addr_t dma_in; 2092154be65SJarod Wilson dma_addr_t dma_out; 2102154be65SJarod Wilson 2112154be65SJarod Wilson /* rx signal timeout timer */ 2122154be65SJarod Wilson struct timer_list rx_timeout; 213c53f9f00SJarod Wilson u32 hw_timeout; 2142154be65SJarod Wilson 2152154be65SJarod Wilson /* is the detector enabled*/ 2162154be65SJarod Wilson bool det_enabled; 2172154be65SJarod Wilson /* Is the device currently transmitting?*/ 2182154be65SJarod Wilson bool transmitting; 2192154be65SJarod Wilson 2202154be65SJarod Wilson /* store for current packet */ 221*4c055a5aSSean Young struct redrat3_irdata irdata; 2222154be65SJarod Wilson u16 bytes_read; 2232154be65SJarod Wilson 2242154be65SJarod Wilson u32 carrier; 2252154be65SJarod Wilson 226*4c055a5aSSean Young char name[64]; 2272154be65SJarod Wilson char phys[64]; 2282154be65SJarod Wilson }; 2292154be65SJarod Wilson 2302154be65SJarod Wilson /* 2312154be65SJarod Wilson * redrat3_issue_async 2322154be65SJarod Wilson * 2332154be65SJarod Wilson * Issues an async read to the ir data in port.. 2342154be65SJarod Wilson * sets the callback to be redrat3_handle_async 2352154be65SJarod Wilson */ 2362154be65SJarod Wilson static void redrat3_issue_async(struct redrat3_dev *rr3) 2372154be65SJarod Wilson { 2382154be65SJarod Wilson int res; 2392154be65SJarod Wilson 2402154be65SJarod Wilson rr3_ftr(rr3->dev, "Entering %s\n", __func__); 2412154be65SJarod Wilson 2422154be65SJarod Wilson memset(rr3->bulk_in_buf, 0, rr3->ep_in->wMaxPacketSize); 2432154be65SJarod Wilson res = usb_submit_urb(rr3->read_urb, GFP_ATOMIC); 2442154be65SJarod Wilson if (res) 2452154be65SJarod Wilson rr3_dbg(rr3->dev, "%s: receive request FAILED! " 2462154be65SJarod Wilson "(res %d, len %d)\n", __func__, res, 2472154be65SJarod Wilson rr3->read_urb->transfer_buffer_length); 2482154be65SJarod Wilson } 2492154be65SJarod Wilson 2502154be65SJarod Wilson static void redrat3_dump_fw_error(struct redrat3_dev *rr3, int code) 2512154be65SJarod Wilson { 2522154be65SJarod Wilson if (!rr3->transmitting && (code != 0x40)) 2532154be65SJarod Wilson dev_info(rr3->dev, "fw error code 0x%02x: ", code); 2542154be65SJarod Wilson 2552154be65SJarod Wilson switch (code) { 2562154be65SJarod Wilson case 0x00: 2572154be65SJarod Wilson pr_cont("No Error\n"); 2582154be65SJarod Wilson break; 2592154be65SJarod Wilson 2602154be65SJarod Wilson /* Codes 0x20 through 0x2f are IR Firmware Errors */ 2612154be65SJarod Wilson case 0x20: 2622154be65SJarod Wilson pr_cont("Initial signal pulse not long enough " 2632154be65SJarod Wilson "to measure carrier frequency\n"); 2642154be65SJarod Wilson break; 2652154be65SJarod Wilson case 0x21: 2662154be65SJarod Wilson pr_cont("Not enough length values allocated for signal\n"); 2672154be65SJarod Wilson break; 2682154be65SJarod Wilson case 0x22: 2692154be65SJarod Wilson pr_cont("Not enough memory allocated for signal data\n"); 2702154be65SJarod Wilson break; 2712154be65SJarod Wilson case 0x23: 2722154be65SJarod Wilson pr_cont("Too many signal repeats\n"); 2732154be65SJarod Wilson break; 2742154be65SJarod Wilson case 0x28: 2752154be65SJarod Wilson pr_cont("Insufficient memory available for IR signal " 2762154be65SJarod Wilson "data memory allocation\n"); 2772154be65SJarod Wilson break; 2782154be65SJarod Wilson case 0x29: 2792154be65SJarod Wilson pr_cont("Insufficient memory available " 2802154be65SJarod Wilson "for IrDa signal data memory allocation\n"); 2812154be65SJarod Wilson break; 2822154be65SJarod Wilson 2832154be65SJarod Wilson /* Codes 0x30 through 0x3f are USB Firmware Errors */ 2842154be65SJarod Wilson case 0x30: 2852154be65SJarod Wilson pr_cont("Insufficient memory available for bulk " 2862154be65SJarod Wilson "transfer structure\n"); 2872154be65SJarod Wilson break; 2882154be65SJarod Wilson 2892154be65SJarod Wilson /* 2902154be65SJarod Wilson * Other error codes... These are primarily errors that can occur in 2912154be65SJarod Wilson * the control messages sent to the redrat 2922154be65SJarod Wilson */ 2932154be65SJarod Wilson case 0x40: 2942154be65SJarod Wilson if (!rr3->transmitting) 2952154be65SJarod Wilson pr_cont("Signal capture has been terminated\n"); 2962154be65SJarod Wilson break; 2972154be65SJarod Wilson case 0x41: 2982154be65SJarod Wilson pr_cont("Attempt to set/get and unknown signal I/O " 2992154be65SJarod Wilson "algorithm parameter\n"); 3002154be65SJarod Wilson break; 3012154be65SJarod Wilson case 0x42: 3022154be65SJarod Wilson pr_cont("Signal capture already started\n"); 3032154be65SJarod Wilson break; 3042154be65SJarod Wilson 3052154be65SJarod Wilson default: 3062154be65SJarod Wilson pr_cont("Unknown Error\n"); 3072154be65SJarod Wilson break; 3082154be65SJarod Wilson } 3092154be65SJarod Wilson } 3102154be65SJarod Wilson 311*4c055a5aSSean Young static u32 redrat3_val_to_mod_freq(struct redrat3_irdata *irdata) 3122154be65SJarod Wilson { 3132154be65SJarod Wilson u32 mod_freq = 0; 314*4c055a5aSSean Young u16 mod_freq_count = be16_to_cpu(irdata->mod_freq_count); 3152154be65SJarod Wilson 316*4c055a5aSSean Young if (mod_freq_count != 0) 317*4c055a5aSSean Young mod_freq = (RR3_CLK * be16_to_cpu(irdata->num_periods)) / 318*4c055a5aSSean Young (mod_freq_count * RR3_CLK_PER_COUNT); 3192154be65SJarod Wilson 3202154be65SJarod Wilson return mod_freq; 3212154be65SJarod Wilson } 3222154be65SJarod Wilson 3232154be65SJarod Wilson /* this function scales down the figures for the same result... */ 3242154be65SJarod Wilson static u32 redrat3_len_to_us(u32 length) 3252154be65SJarod Wilson { 3262154be65SJarod Wilson u32 biglen = length * 1000; 3272154be65SJarod Wilson u32 divisor = (RR3_CLK_CONV_FACTOR) / 1000; 3282154be65SJarod Wilson u32 result = (u32) (biglen / divisor); 3292154be65SJarod Wilson 3302154be65SJarod Wilson /* don't allow zero lengths to go back, breaks lirc */ 3312154be65SJarod Wilson return result ? result : 1; 3322154be65SJarod Wilson } 3332154be65SJarod Wilson 3342154be65SJarod Wilson /* 3352154be65SJarod Wilson * convert us back into redrat3 lengths 3362154be65SJarod Wilson * 3372154be65SJarod Wilson * length * 1000 length * 1000000 3382154be65SJarod Wilson * ------------- = ---------------- = micro 3392154be65SJarod Wilson * rr3clk / 1000 rr3clk 3402154be65SJarod Wilson 3412154be65SJarod Wilson * 6 * 2 4 * 3 micro * rr3clk micro * rr3clk / 1000 3422154be65SJarod Wilson * ----- = 4 ----- = 6 -------------- = len --------------------- 3432154be65SJarod Wilson * 3 2 1000000 1000 3442154be65SJarod Wilson */ 3452154be65SJarod Wilson static u32 redrat3_us_to_len(u32 microsec) 3462154be65SJarod Wilson { 3472154be65SJarod Wilson u32 result; 3482154be65SJarod Wilson u32 divisor; 3492154be65SJarod Wilson 3502154be65SJarod Wilson microsec &= IR_MAX_DURATION; 3512154be65SJarod Wilson divisor = (RR3_CLK_CONV_FACTOR / 1000); 3522154be65SJarod Wilson result = (u32)(microsec * divisor) / 1000; 3532154be65SJarod Wilson 3542154be65SJarod Wilson /* don't allow zero lengths to go back, breaks lirc */ 3552154be65SJarod Wilson return result ? result : 1; 3562154be65SJarod Wilson } 3572154be65SJarod Wilson 35868b2a69dSJarod Wilson /* timer callback to send reset event */ 3592154be65SJarod Wilson static void redrat3_rx_timeout(unsigned long data) 3602154be65SJarod Wilson { 3612154be65SJarod Wilson struct redrat3_dev *rr3 = (struct redrat3_dev *)data; 3622154be65SJarod Wilson 3632154be65SJarod Wilson rr3_dbg(rr3->dev, "calling ir_raw_event_reset\n"); 3642154be65SJarod Wilson ir_raw_event_reset(rr3->rc); 3652154be65SJarod Wilson } 3662154be65SJarod Wilson 3672154be65SJarod Wilson static void redrat3_process_ir_data(struct redrat3_dev *rr3) 3682154be65SJarod Wilson { 3692154be65SJarod Wilson DEFINE_IR_RAW_EVENT(rawir); 3702154be65SJarod Wilson struct device *dev; 371c53f9f00SJarod Wilson int i, trailer = 0; 372*4c055a5aSSean Young unsigned sig_size, single_len, offset, val; 3732154be65SJarod Wilson unsigned long delay; 374*4c055a5aSSean Young u32 mod_freq; 3752154be65SJarod Wilson 3762154be65SJarod Wilson if (!rr3) { 3772154be65SJarod Wilson pr_err("%s called with no context!\n", __func__); 3782154be65SJarod Wilson return; 3792154be65SJarod Wilson } 3802154be65SJarod Wilson 3812154be65SJarod Wilson rr3_ftr(rr3->dev, "Entered %s\n", __func__); 3822154be65SJarod Wilson 3832154be65SJarod Wilson dev = rr3->dev; 3842154be65SJarod Wilson 385c53f9f00SJarod Wilson /* Make sure we reset the IR kfifo after a bit of inactivity */ 386c53f9f00SJarod Wilson delay = usecs_to_jiffies(rr3->hw_timeout); 3872154be65SJarod Wilson mod_timer(&rr3->rx_timeout, jiffies + delay); 3882154be65SJarod Wilson 389*4c055a5aSSean Young mod_freq = redrat3_val_to_mod_freq(&rr3->irdata); 3902154be65SJarod Wilson rr3_dbg(dev, "Got mod_freq of %u\n", mod_freq); 3912154be65SJarod Wilson 3922154be65SJarod Wilson /* process each rr3 encoded byte into an int */ 393*4c055a5aSSean Young sig_size = be16_to_cpu(rr3->irdata.sig_size); 394*4c055a5aSSean Young for (i = 0; i < sig_size; i++) { 395*4c055a5aSSean Young offset = rr3->irdata.sigdata[i]; 396*4c055a5aSSean Young val = get_unaligned_be16(&rr3->irdata.lens[offset]); 397*4c055a5aSSean Young single_len = redrat3_len_to_us(val); 3982154be65SJarod Wilson 3992154be65SJarod Wilson /* we should always get pulse/space/pulse/space samples */ 4002154be65SJarod Wilson if (i % 2) 4012154be65SJarod Wilson rawir.pulse = false; 4022154be65SJarod Wilson else 4032154be65SJarod Wilson rawir.pulse = true; 4042154be65SJarod Wilson 4052154be65SJarod Wilson rawir.duration = US_TO_NS(single_len); 406c53f9f00SJarod Wilson /* Save initial pulse length to fudge trailer */ 407c53f9f00SJarod Wilson if (i == 0) 408c53f9f00SJarod Wilson trailer = rawir.duration; 4092c594ffaSJarod Wilson /* cap the value to IR_MAX_DURATION */ 4102c594ffaSJarod Wilson rawir.duration &= IR_MAX_DURATION; 4112c594ffaSJarod Wilson 4122154be65SJarod Wilson rr3_dbg(dev, "storing %s with duration %d (i: %d)\n", 4132154be65SJarod Wilson rawir.pulse ? "pulse" : "space", rawir.duration, i); 4142154be65SJarod Wilson ir_raw_event_store_with_filter(rr3->rc, &rawir); 4152154be65SJarod Wilson } 4162154be65SJarod Wilson 4172154be65SJarod Wilson /* add a trailing space, if need be */ 4182154be65SJarod Wilson if (i % 2) { 4192154be65SJarod Wilson rawir.pulse = false; 4202154be65SJarod Wilson /* this duration is made up, and may not be ideal... */ 421c53f9f00SJarod Wilson if (trailer < US_TO_NS(1000)) 422c53f9f00SJarod Wilson rawir.duration = US_TO_NS(2800); 423c53f9f00SJarod Wilson else 424c53f9f00SJarod Wilson rawir.duration = trailer; 4252154be65SJarod Wilson rr3_dbg(dev, "storing trailing space with duration %d\n", 4262154be65SJarod Wilson rawir.duration); 4272154be65SJarod Wilson ir_raw_event_store_with_filter(rr3->rc, &rawir); 4282154be65SJarod Wilson } 4292154be65SJarod Wilson 4302154be65SJarod Wilson rr3_dbg(dev, "calling ir_raw_event_handle\n"); 4312154be65SJarod Wilson ir_raw_event_handle(rr3->rc); 4322154be65SJarod Wilson } 4332154be65SJarod Wilson 4342154be65SJarod Wilson /* Util fn to send rr3 cmds */ 4352154be65SJarod Wilson static u8 redrat3_send_cmd(int cmd, struct redrat3_dev *rr3) 4362154be65SJarod Wilson { 4372154be65SJarod Wilson struct usb_device *udev; 4382154be65SJarod Wilson u8 *data; 4392154be65SJarod Wilson int res; 4402154be65SJarod Wilson 4412154be65SJarod Wilson data = kzalloc(sizeof(u8), GFP_KERNEL); 4422154be65SJarod Wilson if (!data) 4432154be65SJarod Wilson return -ENOMEM; 4442154be65SJarod Wilson 4452154be65SJarod Wilson udev = rr3->udev; 4462154be65SJarod Wilson res = usb_control_msg(udev, usb_rcvctrlpipe(udev, 0), cmd, 4472154be65SJarod Wilson USB_TYPE_VENDOR | USB_RECIP_DEVICE | USB_DIR_IN, 4482154be65SJarod Wilson 0x0000, 0x0000, data, sizeof(u8), HZ * 10); 4492154be65SJarod Wilson 4502154be65SJarod Wilson if (res < 0) { 4512154be65SJarod Wilson dev_err(rr3->dev, "%s: Error sending rr3 cmd res %d, data %d", 4522154be65SJarod Wilson __func__, res, *data); 4532154be65SJarod Wilson res = -EIO; 4542154be65SJarod Wilson } else 455*4c055a5aSSean Young res = data[0]; 4562154be65SJarod Wilson 4572154be65SJarod Wilson kfree(data); 4582154be65SJarod Wilson 4592154be65SJarod Wilson return res; 4602154be65SJarod Wilson } 4612154be65SJarod Wilson 4622154be65SJarod Wilson /* Enables the long range detector and starts async receive */ 4632154be65SJarod Wilson static int redrat3_enable_detector(struct redrat3_dev *rr3) 4642154be65SJarod Wilson { 4652154be65SJarod Wilson struct device *dev = rr3->dev; 4662154be65SJarod Wilson u8 ret; 4672154be65SJarod Wilson 4682154be65SJarod Wilson rr3_ftr(dev, "Entering %s\n", __func__); 4692154be65SJarod Wilson 4702154be65SJarod Wilson ret = redrat3_send_cmd(RR3_RC_DET_ENABLE, rr3); 4712154be65SJarod Wilson if (ret != 0) 4722154be65SJarod Wilson dev_dbg(dev, "%s: unexpected ret of %d\n", 4732154be65SJarod Wilson __func__, ret); 4742154be65SJarod Wilson 4752154be65SJarod Wilson ret = redrat3_send_cmd(RR3_RC_DET_STATUS, rr3); 4762154be65SJarod Wilson if (ret != 1) { 4772154be65SJarod Wilson dev_err(dev, "%s: detector status: %d, should be 1\n", 4782154be65SJarod Wilson __func__, ret); 4792154be65SJarod Wilson return -EIO; 4802154be65SJarod Wilson } 4812154be65SJarod Wilson 4822154be65SJarod Wilson rr3->det_enabled = true; 4832154be65SJarod Wilson redrat3_issue_async(rr3); 4842154be65SJarod Wilson 4852154be65SJarod Wilson return 0; 4862154be65SJarod Wilson } 4872154be65SJarod Wilson 4882154be65SJarod Wilson /* Disables the rr3 long range detector */ 4892154be65SJarod Wilson static void redrat3_disable_detector(struct redrat3_dev *rr3) 4902154be65SJarod Wilson { 4912154be65SJarod Wilson struct device *dev = rr3->dev; 4922154be65SJarod Wilson u8 ret; 4932154be65SJarod Wilson 4942154be65SJarod Wilson rr3_ftr(dev, "Entering %s\n", __func__); 4952154be65SJarod Wilson 4962154be65SJarod Wilson ret = redrat3_send_cmd(RR3_RC_DET_DISABLE, rr3); 4972154be65SJarod Wilson if (ret != 0) 4982154be65SJarod Wilson dev_err(dev, "%s: failure!\n", __func__); 4992154be65SJarod Wilson 5002154be65SJarod Wilson ret = redrat3_send_cmd(RR3_RC_DET_STATUS, rr3); 5012154be65SJarod Wilson if (ret != 0) 5022154be65SJarod Wilson dev_warn(dev, "%s: detector status: %d, should be 0\n", 5032154be65SJarod Wilson __func__, ret); 5042154be65SJarod Wilson 5052154be65SJarod Wilson rr3->det_enabled = false; 5062154be65SJarod Wilson } 5072154be65SJarod Wilson 5082154be65SJarod Wilson static inline void redrat3_delete(struct redrat3_dev *rr3, 5092154be65SJarod Wilson struct usb_device *udev) 5102154be65SJarod Wilson { 5112154be65SJarod Wilson rr3_ftr(rr3->dev, "%s cleaning up\n", __func__); 5122154be65SJarod Wilson usb_kill_urb(rr3->read_urb); 5132154be65SJarod Wilson usb_kill_urb(rr3->write_urb); 5142154be65SJarod Wilson 5152154be65SJarod Wilson usb_free_urb(rr3->read_urb); 5162154be65SJarod Wilson usb_free_urb(rr3->write_urb); 5172154be65SJarod Wilson 5182154be65SJarod Wilson usb_free_coherent(udev, rr3->ep_in->wMaxPacketSize, 5192154be65SJarod Wilson rr3->bulk_in_buf, rr3->dma_in); 5202154be65SJarod Wilson usb_free_coherent(udev, rr3->ep_out->wMaxPacketSize, 5212154be65SJarod Wilson rr3->bulk_out_buf, rr3->dma_out); 5222154be65SJarod Wilson 5232154be65SJarod Wilson kfree(rr3); 5242154be65SJarod Wilson } 5252154be65SJarod Wilson 526c53f9f00SJarod Wilson static u32 redrat3_get_timeout(struct redrat3_dev *rr3) 5272154be65SJarod Wilson { 528801b69f2SSean Young __be32 *tmp; 529c53f9f00SJarod Wilson u32 timeout = MS_TO_US(150); /* a sane default, if things go haywire */ 5302154be65SJarod Wilson int len, ret, pipe; 5312154be65SJarod Wilson 5322154be65SJarod Wilson len = sizeof(*tmp); 5332154be65SJarod Wilson tmp = kzalloc(len, GFP_KERNEL); 5342154be65SJarod Wilson if (!tmp) { 535c53f9f00SJarod Wilson dev_warn(rr3->dev, "Memory allocation faillure\n"); 5362154be65SJarod Wilson return timeout; 5372154be65SJarod Wilson } 5382154be65SJarod Wilson 539c53f9f00SJarod Wilson pipe = usb_rcvctrlpipe(rr3->udev, 0); 540c53f9f00SJarod Wilson ret = usb_control_msg(rr3->udev, pipe, RR3_GET_IR_PARAM, 5412154be65SJarod Wilson USB_TYPE_VENDOR | USB_RECIP_DEVICE | USB_DIR_IN, 5422154be65SJarod Wilson RR3_IR_IO_SIG_TIMEOUT, 0, tmp, len, HZ * 5); 543801b69f2SSean Young if (ret != len) 544c53f9f00SJarod Wilson dev_warn(rr3->dev, "Failed to read timeout from hardware\n"); 545801b69f2SSean Young else { 546801b69f2SSean Young timeout = redrat3_len_to_us(be32_to_cpup(tmp)); 5472154be65SJarod Wilson 548c53f9f00SJarod Wilson rr3_dbg(rr3->dev, "Got timeout of %d ms\n", timeout / 1000); 549801b69f2SSean Young } 550801b69f2SSean Young 551801b69f2SSean Young kfree(tmp); 552801b69f2SSean Young 5532154be65SJarod Wilson return timeout; 5542154be65SJarod Wilson } 5552154be65SJarod Wilson 5562154be65SJarod Wilson static void redrat3_reset(struct redrat3_dev *rr3) 5572154be65SJarod Wilson { 5582154be65SJarod Wilson struct usb_device *udev = rr3->udev; 5592154be65SJarod Wilson struct device *dev = rr3->dev; 5602154be65SJarod Wilson int rc, rxpipe, txpipe; 5612154be65SJarod Wilson u8 *val; 5622154be65SJarod Wilson int len = sizeof(u8); 5632154be65SJarod Wilson 5642154be65SJarod Wilson rr3_ftr(dev, "Entering %s\n", __func__); 5652154be65SJarod Wilson 5662154be65SJarod Wilson rxpipe = usb_rcvctrlpipe(udev, 0); 5672154be65SJarod Wilson txpipe = usb_sndctrlpipe(udev, 0); 5682154be65SJarod Wilson 5692154be65SJarod Wilson val = kzalloc(len, GFP_KERNEL); 5702154be65SJarod Wilson if (!val) { 5712154be65SJarod Wilson dev_err(dev, "Memory allocation failure\n"); 5722154be65SJarod Wilson return; 5732154be65SJarod Wilson } 5742154be65SJarod Wilson 5752154be65SJarod Wilson *val = 0x01; 5762154be65SJarod Wilson rc = usb_control_msg(udev, rxpipe, RR3_RESET, 5772154be65SJarod Wilson USB_TYPE_VENDOR | USB_RECIP_DEVICE | USB_DIR_IN, 5782154be65SJarod Wilson RR3_CPUCS_REG_ADDR, 0, val, len, HZ * 25); 5792154be65SJarod Wilson rr3_dbg(dev, "reset returned 0x%02x\n", rc); 5802154be65SJarod Wilson 5812154be65SJarod Wilson *val = 5; 5822154be65SJarod Wilson rc = usb_control_msg(udev, txpipe, RR3_SET_IR_PARAM, 5832154be65SJarod Wilson USB_TYPE_VENDOR | USB_RECIP_DEVICE | USB_DIR_OUT, 5842154be65SJarod Wilson RR3_IR_IO_LENGTH_FUZZ, 0, val, len, HZ * 25); 5852154be65SJarod Wilson rr3_dbg(dev, "set ir parm len fuzz %d rc 0x%02x\n", *val, rc); 5862154be65SJarod Wilson 5872154be65SJarod Wilson *val = RR3_DRIVER_MAXLENS; 5882154be65SJarod Wilson rc = usb_control_msg(udev, txpipe, RR3_SET_IR_PARAM, 5892154be65SJarod Wilson USB_TYPE_VENDOR | USB_RECIP_DEVICE | USB_DIR_OUT, 5902154be65SJarod Wilson RR3_IR_IO_MAX_LENGTHS, 0, val, len, HZ * 25); 5912154be65SJarod Wilson rr3_dbg(dev, "set ir parm max lens %d rc 0x%02x\n", *val, rc); 5922154be65SJarod Wilson 5932154be65SJarod Wilson kfree(val); 5942154be65SJarod Wilson } 5952154be65SJarod Wilson 5962154be65SJarod Wilson static void redrat3_get_firmware_rev(struct redrat3_dev *rr3) 5972154be65SJarod Wilson { 5982154be65SJarod Wilson int rc = 0; 5992154be65SJarod Wilson char *buffer; 6002154be65SJarod Wilson 6012154be65SJarod Wilson rr3_ftr(rr3->dev, "Entering %s\n", __func__); 6022154be65SJarod Wilson 6032154be65SJarod Wilson buffer = kzalloc(sizeof(char) * (RR3_FW_VERSION_LEN + 1), GFP_KERNEL); 6042154be65SJarod Wilson if (!buffer) { 6052154be65SJarod Wilson dev_err(rr3->dev, "Memory allocation failure\n"); 6062154be65SJarod Wilson return; 6072154be65SJarod Wilson } 6082154be65SJarod Wilson 6092154be65SJarod Wilson rc = usb_control_msg(rr3->udev, usb_rcvctrlpipe(rr3->udev, 0), 6102154be65SJarod Wilson RR3_FW_VERSION, 6112154be65SJarod Wilson USB_TYPE_VENDOR | USB_RECIP_DEVICE | USB_DIR_IN, 6122154be65SJarod Wilson 0, 0, buffer, RR3_FW_VERSION_LEN, HZ * 5); 6132154be65SJarod Wilson 6142154be65SJarod Wilson if (rc >= 0) 6152154be65SJarod Wilson dev_info(rr3->dev, "Firmware rev: %s", buffer); 6162154be65SJarod Wilson else 6172154be65SJarod Wilson dev_err(rr3->dev, "Problem fetching firmware ID\n"); 6182154be65SJarod Wilson 6192154be65SJarod Wilson kfree(buffer); 6202154be65SJarod Wilson rr3_ftr(rr3->dev, "Exiting %s\n", __func__); 6212154be65SJarod Wilson } 6222154be65SJarod Wilson 6232154be65SJarod Wilson static void redrat3_read_packet_start(struct redrat3_dev *rr3, int len) 6242154be65SJarod Wilson { 625*4c055a5aSSean Young struct redrat3_header *header = rr3->bulk_in_buf; 626*4c055a5aSSean Young unsigned pktlen, pkttype; 6272154be65SJarod Wilson 6282154be65SJarod Wilson rr3_ftr(rr3->dev, "Entering %s\n", __func__); 6292154be65SJarod Wilson 6302154be65SJarod Wilson /* grab the Length and type of transfer */ 631*4c055a5aSSean Young pktlen = be16_to_cpu(header->length); 632*4c055a5aSSean Young pkttype = be16_to_cpu(header->transfer_type); 6332154be65SJarod Wilson 634*4c055a5aSSean Young if (pktlen > sizeof(rr3->irdata)) { 635*4c055a5aSSean Young dev_warn(rr3->dev, "packet length %u too large\n", pktlen); 636*4c055a5aSSean Young return; 637*4c055a5aSSean Young } 6382154be65SJarod Wilson 639*4c055a5aSSean Young switch (pkttype) { 6402154be65SJarod Wilson case RR3_ERROR: 641*4c055a5aSSean Young if (len >= sizeof(struct redrat3_error)) { 642*4c055a5aSSean Young struct redrat3_error *error = rr3->bulk_in_buf; 643*4c055a5aSSean Young unsigned fw_error = be16_to_cpu(error->fw_error); 644*4c055a5aSSean Young redrat3_dump_fw_error(rr3, fw_error); 645*4c055a5aSSean Young } 6462154be65SJarod Wilson break; 6472154be65SJarod Wilson 6482154be65SJarod Wilson case RR3_MOD_SIGNAL_IN: 649*4c055a5aSSean Young memcpy(&rr3->irdata, rr3->bulk_in_buf, len); 6502154be65SJarod Wilson rr3->bytes_read = len; 6512154be65SJarod Wilson rr3_dbg(rr3->dev, "bytes_read %d, pktlen %d\n", 652*4c055a5aSSean Young rr3->bytes_read, pktlen); 6532154be65SJarod Wilson break; 6542154be65SJarod Wilson 6552154be65SJarod Wilson default: 656*4c055a5aSSean Young rr3_dbg(rr3->dev, "ignoring packet with type 0x%02x, len of %d, 0x%02x\n", 657*4c055a5aSSean Young pkttype, len, pktlen); 6582154be65SJarod Wilson break; 6592154be65SJarod Wilson } 6602154be65SJarod Wilson } 6612154be65SJarod Wilson 6622154be65SJarod Wilson static void redrat3_read_packet_continue(struct redrat3_dev *rr3, int len) 6632154be65SJarod Wilson { 664*4c055a5aSSean Young void *irdata = &rr3->irdata; 665*4c055a5aSSean Young 6662154be65SJarod Wilson rr3_ftr(rr3->dev, "Entering %s\n", __func__); 6672154be65SJarod Wilson 668*4c055a5aSSean Young if (len + rr3->bytes_read > sizeof(rr3->irdata)) { 669*4c055a5aSSean Young dev_warn(rr3->dev, "too much data for packet\n"); 670*4c055a5aSSean Young rr3->bytes_read = 0; 671*4c055a5aSSean Young return; 672*4c055a5aSSean Young } 673*4c055a5aSSean Young 674*4c055a5aSSean Young memcpy(irdata + rr3->bytes_read, rr3->bulk_in_buf, len); 6752154be65SJarod Wilson 6762154be65SJarod Wilson rr3->bytes_read += len; 677*4c055a5aSSean Young rr3_dbg(rr3->dev, "bytes_read %d, pktlen %d\n", rr3->bytes_read, 678*4c055a5aSSean Young be16_to_cpu(rr3->irdata.header.length)); 6792154be65SJarod Wilson } 6802154be65SJarod Wilson 6812154be65SJarod Wilson /* gather IR data from incoming urb, process it when we have enough */ 6822154be65SJarod Wilson static int redrat3_get_ir_data(struct redrat3_dev *rr3, int len) 6832154be65SJarod Wilson { 6842154be65SJarod Wilson struct device *dev = rr3->dev; 685*4c055a5aSSean Young unsigned pkttype; 6862154be65SJarod Wilson int ret = 0; 6872154be65SJarod Wilson 6882154be65SJarod Wilson rr3_ftr(dev, "Entering %s\n", __func__); 6892154be65SJarod Wilson 690*4c055a5aSSean Young if (rr3->bytes_read == 0 && len >= sizeof(struct redrat3_header)) { 6912154be65SJarod Wilson redrat3_read_packet_start(rr3, len); 6922154be65SJarod Wilson } else if (rr3->bytes_read != 0) { 6932154be65SJarod Wilson redrat3_read_packet_continue(rr3, len); 6942154be65SJarod Wilson } else if (rr3->bytes_read == 0) { 6952154be65SJarod Wilson dev_err(dev, "error: no packet data read\n"); 6962154be65SJarod Wilson ret = -ENODATA; 6972154be65SJarod Wilson goto out; 6982154be65SJarod Wilson } 6992154be65SJarod Wilson 700*4c055a5aSSean Young if (rr3->bytes_read < be16_to_cpu(rr3->irdata.header.length)) 7012154be65SJarod Wilson /* we're still accumulating data */ 7022154be65SJarod Wilson return 0; 7032154be65SJarod Wilson 7042154be65SJarod Wilson /* if we get here, we've got IR data to decode */ 705*4c055a5aSSean Young pkttype = be16_to_cpu(rr3->irdata.header.transfer_type); 706*4c055a5aSSean Young if (pkttype == RR3_MOD_SIGNAL_IN) 7072154be65SJarod Wilson redrat3_process_ir_data(rr3); 7082154be65SJarod Wilson else 709*4c055a5aSSean Young rr3_dbg(dev, "discarding non-signal data packet (type 0x%02x)\n", 710*4c055a5aSSean Young pkttype); 7112154be65SJarod Wilson 7122154be65SJarod Wilson out: 7132154be65SJarod Wilson rr3->bytes_read = 0; 7142154be65SJarod Wilson return ret; 7152154be65SJarod Wilson } 7162154be65SJarod Wilson 7172154be65SJarod Wilson /* callback function from USB when async USB request has completed */ 718801b69f2SSean Young static void redrat3_handle_async(struct urb *urb) 7192154be65SJarod Wilson { 7202154be65SJarod Wilson struct redrat3_dev *rr3; 721dbea1880SAndrew Vincer int ret; 7222154be65SJarod Wilson 7232154be65SJarod Wilson if (!urb) 7242154be65SJarod Wilson return; 7252154be65SJarod Wilson 7262154be65SJarod Wilson rr3 = urb->context; 7272154be65SJarod Wilson if (!rr3) { 7282154be65SJarod Wilson pr_err("%s called with invalid context!\n", __func__); 7292154be65SJarod Wilson usb_unlink_urb(urb); 7302154be65SJarod Wilson return; 7312154be65SJarod Wilson } 7322154be65SJarod Wilson 7332154be65SJarod Wilson rr3_ftr(rr3->dev, "Entering %s\n", __func__); 7342154be65SJarod Wilson 7352154be65SJarod Wilson switch (urb->status) { 7362154be65SJarod Wilson case 0: 737dbea1880SAndrew Vincer ret = redrat3_get_ir_data(rr3, urb->actual_length); 738dbea1880SAndrew Vincer if (!ret) { 739dbea1880SAndrew Vincer /* no error, prepare to read more */ 740dbea1880SAndrew Vincer redrat3_issue_async(rr3); 741dbea1880SAndrew Vincer } 7422154be65SJarod Wilson break; 7432154be65SJarod Wilson 7442154be65SJarod Wilson case -ECONNRESET: 7452154be65SJarod Wilson case -ENOENT: 7462154be65SJarod Wilson case -ESHUTDOWN: 7472154be65SJarod Wilson usb_unlink_urb(urb); 7482154be65SJarod Wilson return; 7492154be65SJarod Wilson 7502154be65SJarod Wilson case -EPIPE: 7512154be65SJarod Wilson default: 7522154be65SJarod Wilson dev_warn(rr3->dev, "Error: urb status = %d\n", urb->status); 7532154be65SJarod Wilson rr3->bytes_read = 0; 7542154be65SJarod Wilson break; 7552154be65SJarod Wilson } 7562154be65SJarod Wilson } 7572154be65SJarod Wilson 758801b69f2SSean Young static void redrat3_write_bulk_callback(struct urb *urb) 7592154be65SJarod Wilson { 7602154be65SJarod Wilson struct redrat3_dev *rr3; 7612154be65SJarod Wilson int len; 7622154be65SJarod Wilson 7632154be65SJarod Wilson if (!urb) 7642154be65SJarod Wilson return; 7652154be65SJarod Wilson 7662154be65SJarod Wilson rr3 = urb->context; 7672154be65SJarod Wilson if (rr3) { 7682154be65SJarod Wilson len = urb->actual_length; 7692154be65SJarod Wilson rr3_ftr(rr3->dev, "%s: called (status=%d len=%d)\n", 7702154be65SJarod Wilson __func__, urb->status, len); 7712154be65SJarod Wilson } 7722154be65SJarod Wilson } 7732154be65SJarod Wilson 7742154be65SJarod Wilson static u16 mod_freq_to_val(unsigned int mod_freq) 7752154be65SJarod Wilson { 7762154be65SJarod Wilson int mult = 6000000; 7772154be65SJarod Wilson 7782154be65SJarod Wilson /* Clk used in mod. freq. generation is CLK24/4. */ 779*4c055a5aSSean Young return 65536 - (mult / mod_freq); 7802154be65SJarod Wilson } 7812154be65SJarod Wilson 782dbea1880SAndrew Vincer static int redrat3_set_tx_carrier(struct rc_dev *rcdev, u32 carrier) 7832154be65SJarod Wilson { 784dbea1880SAndrew Vincer struct redrat3_dev *rr3 = rcdev->priv; 785dbea1880SAndrew Vincer struct device *dev = rr3->dev; 7862154be65SJarod Wilson 787dbea1880SAndrew Vincer rr3_dbg(dev, "Setting modulation frequency to %u", carrier); 78848cafec9SDan Carpenter if (carrier == 0) 78948cafec9SDan Carpenter return -EINVAL; 79048cafec9SDan Carpenter 7912154be65SJarod Wilson rr3->carrier = carrier; 7922154be65SJarod Wilson 7932154be65SJarod Wilson return carrier; 7942154be65SJarod Wilson } 7952154be65SJarod Wilson 796dbea1880SAndrew Vincer static int redrat3_transmit_ir(struct rc_dev *rcdev, unsigned *txbuf, 797dbea1880SAndrew Vincer unsigned count) 7982154be65SJarod Wilson { 7992154be65SJarod Wilson struct redrat3_dev *rr3 = rcdev->priv; 8002154be65SJarod Wilson struct device *dev = rr3->dev; 801*4c055a5aSSean Young struct redrat3_irdata *irdata = NULL; 802*4c055a5aSSean Young int i, ret, ret_len; 8032154be65SJarod Wilson int lencheck, cur_sample_len, pipe; 8042154be65SJarod Wilson int *sample_lens = NULL; 8052154be65SJarod Wilson u8 curlencheck = 0; 8062154be65SJarod Wilson int sendbuf_len; 8072154be65SJarod Wilson 8082154be65SJarod Wilson rr3_ftr(dev, "Entering %s\n", __func__); 8092154be65SJarod Wilson 8102154be65SJarod Wilson if (rr3->transmitting) { 8112154be65SJarod Wilson dev_warn(dev, "%s: transmitter already in use\n", __func__); 8122154be65SJarod Wilson return -EAGAIN; 8132154be65SJarod Wilson } 8142154be65SJarod Wilson 81506eae25fSSean Young count = min_t(unsigned, count, RR3_MAX_SIG_SIZE - RR3_TX_TRAILER_LEN); 8162154be65SJarod Wilson 817dbea1880SAndrew Vincer /* rr3 will disable rc detector on transmit */ 818dbea1880SAndrew Vincer rr3->det_enabled = false; 8192154be65SJarod Wilson rr3->transmitting = true; 8202154be65SJarod Wilson 8212154be65SJarod Wilson sample_lens = kzalloc(sizeof(int) * RR3_DRIVER_MAXLENS, GFP_KERNEL); 8222154be65SJarod Wilson if (!sample_lens) { 8232154be65SJarod Wilson ret = -ENOMEM; 8242154be65SJarod Wilson goto out; 8252154be65SJarod Wilson } 8262154be65SJarod Wilson 827*4c055a5aSSean Young irdata = kzalloc(sizeof(*irdata), GFP_KERNEL); 828*4c055a5aSSean Young if (!irdata) { 829801b69f2SSean Young ret = -ENOMEM; 830801b69f2SSean Young goto out; 831801b69f2SSean Young } 832801b69f2SSean Young 8332154be65SJarod Wilson for (i = 0; i < count; i++) { 8342154be65SJarod Wilson cur_sample_len = redrat3_us_to_len(txbuf[i]); 835801b69f2SSean Young if (cur_sample_len > 0xffff) { 836801b69f2SSean Young dev_warn(dev, "transmit period of %uus truncated to %uus\n", 837801b69f2SSean Young txbuf[i], redrat3_len_to_us(0xffff)); 838801b69f2SSean Young cur_sample_len = 0xffff; 839801b69f2SSean Young } 84006eae25fSSean Young for (lencheck = 0; lencheck < curlencheck; lencheck++) { 8412154be65SJarod Wilson if (sample_lens[lencheck] == cur_sample_len) 8422154be65SJarod Wilson break; 8432154be65SJarod Wilson } 8442154be65SJarod Wilson if (lencheck == curlencheck) { 8452154be65SJarod Wilson rr3_dbg(dev, "txbuf[%d]=%u, pos %d, enc %u\n", 8462154be65SJarod Wilson i, txbuf[i], curlencheck, cur_sample_len); 84706eae25fSSean Young if (curlencheck < RR3_DRIVER_MAXLENS) { 8482154be65SJarod Wilson /* now convert the value to a proper 8492154be65SJarod Wilson * rr3 value.. */ 8502154be65SJarod Wilson sample_lens[curlencheck] = cur_sample_len; 851*4c055a5aSSean Young put_unaligned_be16(cur_sample_len, 852*4c055a5aSSean Young &irdata->lens[curlencheck]); 8532154be65SJarod Wilson curlencheck++; 8542154be65SJarod Wilson } else { 85506eae25fSSean Young count = i - 1; 85606eae25fSSean Young break; 8572154be65SJarod Wilson } 8582154be65SJarod Wilson } 859*4c055a5aSSean Young irdata->sigdata[i] = lencheck; 8602154be65SJarod Wilson } 8612154be65SJarod Wilson 862*4c055a5aSSean Young irdata->sigdata[count] = RR3_END_OF_SIGNAL; 863*4c055a5aSSean Young irdata->sigdata[count + 1] = RR3_END_OF_SIGNAL; 8642154be65SJarod Wilson 865*4c055a5aSSean Young sendbuf_len = offsetof(struct redrat3_irdata, 866*4c055a5aSSean Young sigdata[count + RR3_TX_TRAILER_LEN]); 8672154be65SJarod Wilson /* fill in our packet header */ 868*4c055a5aSSean Young irdata->header.length = cpu_to_be16(sendbuf_len - 869*4c055a5aSSean Young sizeof(struct redrat3_header)); 870*4c055a5aSSean Young irdata->header.transfer_type = cpu_to_be16(RR3_MOD_SIGNAL_OUT); 871*4c055a5aSSean Young irdata->pause = cpu_to_be32(redrat3_len_to_us(100)); 872*4c055a5aSSean Young irdata->mod_freq_count = cpu_to_be16(mod_freq_to_val(rr3->carrier)); 873*4c055a5aSSean Young irdata->no_lengths = curlencheck; 874*4c055a5aSSean Young irdata->sig_size = cpu_to_be16(count + RR3_TX_TRAILER_LEN); 8752154be65SJarod Wilson 8762154be65SJarod Wilson pipe = usb_sndbulkpipe(rr3->udev, rr3->ep_out->bEndpointAddress); 877*4c055a5aSSean Young ret = usb_bulk_msg(rr3->udev, pipe, irdata, 8782154be65SJarod Wilson sendbuf_len, &ret_len, 10 * HZ); 879*4c055a5aSSean Young rr3_dbg(dev, "sent %d bytes, (ret %d)\n", ret_len, ret); 8802154be65SJarod Wilson 8812154be65SJarod Wilson /* now tell the hardware to transmit what we sent it */ 8822154be65SJarod Wilson pipe = usb_rcvctrlpipe(rr3->udev, 0); 8832154be65SJarod Wilson ret = usb_control_msg(rr3->udev, pipe, RR3_TX_SEND_SIGNAL, 8842154be65SJarod Wilson USB_TYPE_VENDOR | USB_RECIP_DEVICE | USB_DIR_IN, 885*4c055a5aSSean Young 0, 0, irdata, 2, HZ * 10); 8862154be65SJarod Wilson 8872154be65SJarod Wilson if (ret < 0) 8882154be65SJarod Wilson dev_err(dev, "Error: control msg send failed, rc %d\n", ret); 8892154be65SJarod Wilson else 890dbea1880SAndrew Vincer ret = count; 8912154be65SJarod Wilson 8922154be65SJarod Wilson out: 8932154be65SJarod Wilson kfree(sample_lens); 894*4c055a5aSSean Young kfree(irdata); 8952154be65SJarod Wilson 8962154be65SJarod Wilson rr3->transmitting = false; 897dbea1880SAndrew Vincer /* rr3 re-enables rc detector because it was enabled before */ 898dbea1880SAndrew Vincer rr3->det_enabled = true; 8992154be65SJarod Wilson 9002154be65SJarod Wilson return ret; 9012154be65SJarod Wilson } 9022154be65SJarod Wilson 9032154be65SJarod Wilson static struct rc_dev *redrat3_init_rc_dev(struct redrat3_dev *rr3) 9042154be65SJarod Wilson { 9052154be65SJarod Wilson struct device *dev = rr3->dev; 9062154be65SJarod Wilson struct rc_dev *rc; 9072154be65SJarod Wilson int ret = -ENODEV; 9082154be65SJarod Wilson u16 prod = le16_to_cpu(rr3->udev->descriptor.idProduct); 9092154be65SJarod Wilson 9102154be65SJarod Wilson rc = rc_allocate_device(); 9112154be65SJarod Wilson if (!rc) { 9122154be65SJarod Wilson dev_err(dev, "remote input dev allocation failed\n"); 9132154be65SJarod Wilson goto out; 9142154be65SJarod Wilson } 9152154be65SJarod Wilson 9162154be65SJarod Wilson snprintf(rr3->name, sizeof(rr3->name), "RedRat3%s " 9172154be65SJarod Wilson "Infrared Remote Transceiver (%04x:%04x)", 9182154be65SJarod Wilson prod == USB_RR3IIUSB_PRODUCT_ID ? "-II" : "", 9192154be65SJarod Wilson le16_to_cpu(rr3->udev->descriptor.idVendor), prod); 9202154be65SJarod Wilson 9212154be65SJarod Wilson usb_make_path(rr3->udev, rr3->phys, sizeof(rr3->phys)); 9222154be65SJarod Wilson 9232154be65SJarod Wilson rc->input_name = rr3->name; 9242154be65SJarod Wilson rc->input_phys = rr3->phys; 9252154be65SJarod Wilson usb_to_input_id(rr3->udev, &rc->input_id); 9262154be65SJarod Wilson rc->dev.parent = dev; 9272154be65SJarod Wilson rc->priv = rr3; 9282154be65SJarod Wilson rc->driver_type = RC_DRIVER_IR_RAW; 929c003ab1bSDavid Härdeman rc->allowed_protos = RC_BIT_ALL; 930c53f9f00SJarod Wilson rc->timeout = US_TO_NS(2750); 9312154be65SJarod Wilson rc->tx_ir = redrat3_transmit_ir; 9322154be65SJarod Wilson rc->s_tx_carrier = redrat3_set_tx_carrier; 9332154be65SJarod Wilson rc->driver_name = DRIVER_NAME; 93406eae25fSSean Young rc->rx_resolution = US_TO_NS(2); 9352154be65SJarod Wilson rc->map_name = RC_MAP_HAUPPAUGE; 9362154be65SJarod Wilson 9372154be65SJarod Wilson ret = rc_register_device(rc); 9382154be65SJarod Wilson if (ret < 0) { 9392154be65SJarod Wilson dev_err(dev, "remote dev registration failed\n"); 9402154be65SJarod Wilson goto out; 9412154be65SJarod Wilson } 9422154be65SJarod Wilson 9432154be65SJarod Wilson return rc; 9442154be65SJarod Wilson 9452154be65SJarod Wilson out: 9462154be65SJarod Wilson rc_free_device(rc); 9472154be65SJarod Wilson return NULL; 9482154be65SJarod Wilson } 9492154be65SJarod Wilson 9504c62e976SGreg Kroah-Hartman static int redrat3_dev_probe(struct usb_interface *intf, 9512154be65SJarod Wilson const struct usb_device_id *id) 9522154be65SJarod Wilson { 9532154be65SJarod Wilson struct usb_device *udev = interface_to_usbdev(intf); 9542154be65SJarod Wilson struct device *dev = &intf->dev; 9552154be65SJarod Wilson struct usb_host_interface *uhi; 9562154be65SJarod Wilson struct redrat3_dev *rr3; 9572154be65SJarod Wilson struct usb_endpoint_descriptor *ep; 9582154be65SJarod Wilson struct usb_endpoint_descriptor *ep_in = NULL; 9592154be65SJarod Wilson struct usb_endpoint_descriptor *ep_out = NULL; 9602154be65SJarod Wilson u8 addr, attrs; 9612154be65SJarod Wilson int pipe, i; 9622154be65SJarod Wilson int retval = -ENOMEM; 9632154be65SJarod Wilson 9642154be65SJarod Wilson rr3_ftr(dev, "%s called\n", __func__); 9652154be65SJarod Wilson 9662154be65SJarod Wilson uhi = intf->cur_altsetting; 9672154be65SJarod Wilson 9682154be65SJarod Wilson /* find our bulk-in and bulk-out endpoints */ 9692154be65SJarod Wilson for (i = 0; i < uhi->desc.bNumEndpoints; ++i) { 9702154be65SJarod Wilson ep = &uhi->endpoint[i].desc; 9712154be65SJarod Wilson addr = ep->bEndpointAddress; 9722154be65SJarod Wilson attrs = ep->bmAttributes; 9732154be65SJarod Wilson 9742154be65SJarod Wilson if ((ep_in == NULL) && 9752154be65SJarod Wilson ((addr & USB_ENDPOINT_DIR_MASK) == USB_DIR_IN) && 9762154be65SJarod Wilson ((attrs & USB_ENDPOINT_XFERTYPE_MASK) == 9772154be65SJarod Wilson USB_ENDPOINT_XFER_BULK)) { 9782154be65SJarod Wilson rr3_dbg(dev, "found bulk-in endpoint at 0x%02x\n", 9792154be65SJarod Wilson ep->bEndpointAddress); 9802154be65SJarod Wilson /* data comes in on 0x82, 0x81 is for other data... */ 9812154be65SJarod Wilson if (ep->bEndpointAddress == RR3_BULK_IN_EP_ADDR) 9822154be65SJarod Wilson ep_in = ep; 9832154be65SJarod Wilson } 9842154be65SJarod Wilson 9852154be65SJarod Wilson if ((ep_out == NULL) && 9862154be65SJarod Wilson ((addr & USB_ENDPOINT_DIR_MASK) == USB_DIR_OUT) && 9872154be65SJarod Wilson ((attrs & USB_ENDPOINT_XFERTYPE_MASK) == 9882154be65SJarod Wilson USB_ENDPOINT_XFER_BULK)) { 9892154be65SJarod Wilson rr3_dbg(dev, "found bulk-out endpoint at 0x%02x\n", 9902154be65SJarod Wilson ep->bEndpointAddress); 9912154be65SJarod Wilson ep_out = ep; 9922154be65SJarod Wilson } 9932154be65SJarod Wilson } 9942154be65SJarod Wilson 9952154be65SJarod Wilson if (!ep_in || !ep_out) { 9962154be65SJarod Wilson dev_err(dev, "Couldn't find both in and out endpoints\n"); 9972154be65SJarod Wilson retval = -ENODEV; 9982154be65SJarod Wilson goto no_endpoints; 9992154be65SJarod Wilson } 10002154be65SJarod Wilson 10012154be65SJarod Wilson /* allocate memory for our device state and initialize it */ 10022154be65SJarod Wilson rr3 = kzalloc(sizeof(*rr3), GFP_KERNEL); 10032154be65SJarod Wilson if (rr3 == NULL) { 10042154be65SJarod Wilson dev_err(dev, "Memory allocation failure\n"); 10057eb75715SDan Carpenter goto no_endpoints; 10062154be65SJarod Wilson } 10072154be65SJarod Wilson 10082154be65SJarod Wilson rr3->dev = &intf->dev; 10092154be65SJarod Wilson 10102154be65SJarod Wilson /* set up bulk-in endpoint */ 10112154be65SJarod Wilson rr3->read_urb = usb_alloc_urb(0, GFP_KERNEL); 10122154be65SJarod Wilson if (!rr3->read_urb) { 10132154be65SJarod Wilson dev_err(dev, "Read urb allocation failure\n"); 10142154be65SJarod Wilson goto error; 10152154be65SJarod Wilson } 10162154be65SJarod Wilson 10172154be65SJarod Wilson rr3->ep_in = ep_in; 10182154be65SJarod Wilson rr3->bulk_in_buf = usb_alloc_coherent(udev, ep_in->wMaxPacketSize, 10192154be65SJarod Wilson GFP_ATOMIC, &rr3->dma_in); 10202154be65SJarod Wilson if (!rr3->bulk_in_buf) { 10212154be65SJarod Wilson dev_err(dev, "Read buffer allocation failure\n"); 10222154be65SJarod Wilson goto error; 10232154be65SJarod Wilson } 10242154be65SJarod Wilson 10252154be65SJarod Wilson pipe = usb_rcvbulkpipe(udev, ep_in->bEndpointAddress); 10262154be65SJarod Wilson usb_fill_bulk_urb(rr3->read_urb, udev, pipe, 10272154be65SJarod Wilson rr3->bulk_in_buf, ep_in->wMaxPacketSize, 1028801b69f2SSean Young redrat3_handle_async, rr3); 10292154be65SJarod Wilson 10302154be65SJarod Wilson /* set up bulk-out endpoint*/ 10312154be65SJarod Wilson rr3->write_urb = usb_alloc_urb(0, GFP_KERNEL); 10322154be65SJarod Wilson if (!rr3->write_urb) { 10332154be65SJarod Wilson dev_err(dev, "Write urb allocation failure\n"); 10342154be65SJarod Wilson goto error; 10352154be65SJarod Wilson } 10362154be65SJarod Wilson 10372154be65SJarod Wilson rr3->ep_out = ep_out; 10382154be65SJarod Wilson rr3->bulk_out_buf = usb_alloc_coherent(udev, ep_out->wMaxPacketSize, 10392154be65SJarod Wilson GFP_ATOMIC, &rr3->dma_out); 10402154be65SJarod Wilson if (!rr3->bulk_out_buf) { 10412154be65SJarod Wilson dev_err(dev, "Write buffer allocation failure\n"); 10422154be65SJarod Wilson goto error; 10432154be65SJarod Wilson } 10442154be65SJarod Wilson 10452154be65SJarod Wilson pipe = usb_sndbulkpipe(udev, ep_out->bEndpointAddress); 10462154be65SJarod Wilson usb_fill_bulk_urb(rr3->write_urb, udev, pipe, 10472154be65SJarod Wilson rr3->bulk_out_buf, ep_out->wMaxPacketSize, 1048801b69f2SSean Young redrat3_write_bulk_callback, rr3); 10492154be65SJarod Wilson 10502154be65SJarod Wilson rr3->udev = udev; 10512154be65SJarod Wilson 10522154be65SJarod Wilson redrat3_reset(rr3); 10532154be65SJarod Wilson redrat3_get_firmware_rev(rr3); 10542154be65SJarod Wilson 10552154be65SJarod Wilson /* might be all we need to do? */ 10562154be65SJarod Wilson retval = redrat3_enable_detector(rr3); 10572154be65SJarod Wilson if (retval < 0) 10582154be65SJarod Wilson goto error; 10592154be65SJarod Wilson 1060c53f9f00SJarod Wilson /* store current hardware timeout, in us, will use for kfifo resets */ 1061c53f9f00SJarod Wilson rr3->hw_timeout = redrat3_get_timeout(rr3); 1062c53f9f00SJarod Wilson 10632154be65SJarod Wilson /* default.. will get overridden by any sends with a freq defined */ 10642154be65SJarod Wilson rr3->carrier = 38000; 10652154be65SJarod Wilson 10662154be65SJarod Wilson rr3->rc = redrat3_init_rc_dev(rr3); 10676ea7cf76SPeter Senna Tschudin if (!rr3->rc) { 10686ea7cf76SPeter Senna Tschudin retval = -ENOMEM; 10692154be65SJarod Wilson goto error; 10706ea7cf76SPeter Senna Tschudin } 10712154be65SJarod Wilson setup_timer(&rr3->rx_timeout, redrat3_rx_timeout, (unsigned long)rr3); 10722154be65SJarod Wilson 10732154be65SJarod Wilson /* we can register the device now, as it is ready */ 10742154be65SJarod Wilson usb_set_intfdata(intf, rr3); 10752154be65SJarod Wilson 10762154be65SJarod Wilson rr3_ftr(dev, "Exiting %s\n", __func__); 10772154be65SJarod Wilson return 0; 10782154be65SJarod Wilson 10792154be65SJarod Wilson error: 10802154be65SJarod Wilson redrat3_delete(rr3, rr3->udev); 10812154be65SJarod Wilson 10822154be65SJarod Wilson no_endpoints: 10832154be65SJarod Wilson dev_err(dev, "%s: retval = %x", __func__, retval); 10842154be65SJarod Wilson 10852154be65SJarod Wilson return retval; 10862154be65SJarod Wilson } 10872154be65SJarod Wilson 10884c62e976SGreg Kroah-Hartman static void redrat3_dev_disconnect(struct usb_interface *intf) 10892154be65SJarod Wilson { 10902154be65SJarod Wilson struct usb_device *udev = interface_to_usbdev(intf); 10912154be65SJarod Wilson struct redrat3_dev *rr3 = usb_get_intfdata(intf); 10922154be65SJarod Wilson 10932154be65SJarod Wilson rr3_ftr(&intf->dev, "Entering %s\n", __func__); 10942154be65SJarod Wilson 10952154be65SJarod Wilson if (!rr3) 10962154be65SJarod Wilson return; 10972154be65SJarod Wilson 10982154be65SJarod Wilson redrat3_disable_detector(rr3); 10992154be65SJarod Wilson 11002154be65SJarod Wilson usb_set_intfdata(intf, NULL); 11012154be65SJarod Wilson rc_unregister_device(rr3->rc); 1102c53f9f00SJarod Wilson del_timer_sync(&rr3->rx_timeout); 11032154be65SJarod Wilson redrat3_delete(rr3, udev); 11042154be65SJarod Wilson 11052154be65SJarod Wilson rr3_ftr(&intf->dev, "RedRat3 IR Transceiver now disconnected\n"); 11062154be65SJarod Wilson } 11072154be65SJarod Wilson 11082154be65SJarod Wilson static int redrat3_dev_suspend(struct usb_interface *intf, pm_message_t message) 11092154be65SJarod Wilson { 11102154be65SJarod Wilson struct redrat3_dev *rr3 = usb_get_intfdata(intf); 11112154be65SJarod Wilson rr3_ftr(rr3->dev, "suspend\n"); 11122154be65SJarod Wilson usb_kill_urb(rr3->read_urb); 11132154be65SJarod Wilson return 0; 11142154be65SJarod Wilson } 11152154be65SJarod Wilson 11162154be65SJarod Wilson static int redrat3_dev_resume(struct usb_interface *intf) 11172154be65SJarod Wilson { 11182154be65SJarod Wilson struct redrat3_dev *rr3 = usb_get_intfdata(intf); 11192154be65SJarod Wilson rr3_ftr(rr3->dev, "resume\n"); 11202154be65SJarod Wilson if (usb_submit_urb(rr3->read_urb, GFP_ATOMIC)) 11212154be65SJarod Wilson return -EIO; 11222154be65SJarod Wilson return 0; 11232154be65SJarod Wilson } 11242154be65SJarod Wilson 11252154be65SJarod Wilson static struct usb_driver redrat3_dev_driver = { 11262154be65SJarod Wilson .name = DRIVER_NAME, 11272154be65SJarod Wilson .probe = redrat3_dev_probe, 11284c62e976SGreg Kroah-Hartman .disconnect = redrat3_dev_disconnect, 11292154be65SJarod Wilson .suspend = redrat3_dev_suspend, 11302154be65SJarod Wilson .resume = redrat3_dev_resume, 11312154be65SJarod Wilson .reset_resume = redrat3_dev_resume, 11322154be65SJarod Wilson .id_table = redrat3_dev_table 11332154be65SJarod Wilson }; 11342154be65SJarod Wilson 1135ecb3b2b3SGreg Kroah-Hartman module_usb_driver(redrat3_dev_driver); 11362154be65SJarod Wilson 11372154be65SJarod Wilson MODULE_DESCRIPTION(DRIVER_DESC); 11382154be65SJarod Wilson MODULE_AUTHOR(DRIVER_AUTHOR); 11392154be65SJarod Wilson MODULE_AUTHOR(DRIVER_AUTHOR2); 11402154be65SJarod Wilson MODULE_LICENSE("GPL"); 11412154be65SJarod Wilson MODULE_DEVICE_TABLE(usb, redrat3_dev_table); 11422154be65SJarod Wilson 11432154be65SJarod Wilson module_param(debug, int, S_IRUGO | S_IWUSR); 11442154be65SJarod Wilson MODULE_PARM_DESC(debug, "Enable module debug spew. 0 = no debugging (default) " 11452154be65SJarod Wilson "0x1 = standard debug messages, 0x2 = function tracing debug. " 11462154be65SJarod Wilson "Flag bits are addative (i.e., 0x3 for both debug types)."); 1147