staging: comedi: 8255_pci: fix possible NULL deref during detach
[GitHub/mt8127/android_kernel_alcatel_ttab.git] / drivers / staging / line6 / variax.h
CommitLineData
705ececd 1/*
e1a164d7 2 * Line6 Linux USB driver - 0.9.1beta
705ececd 3 *
1027f476 4 * Copyright (C) 2004-2010 Markus Grabner (grabner@icg.tugraz.at)
705ececd
MG
5 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License as
8 * published by the Free Software Foundation, version 2.
9 *
10 */
11
12#ifndef VARIAX_H
13#define VARIAX_H
14
705ececd
MG
15#include <linux/spinlock.h>
16#include <linux/usb.h>
17#include <linux/wait.h>
705ececd
MG
18#include <sound/core.h>
19
1027f476 20#include "driver.h"
705ececd
MG
21#include "dumprequest.h"
22
1027f476
MG
23#define VARIAX_STARTUP_DELAY1 1000
24#define VARIAX_STARTUP_DELAY3 100
25#define VARIAX_STARTUP_DELAY4 100
705ececd 26
e1a164d7
MG
27/*
28 Stages of Variax startup procedure
29*/
30enum {
31 VARIAX_STARTUP_INIT = 1,
32 VARIAX_STARTUP_VERSIONREQ,
33 VARIAX_STARTUP_WAIT,
34 VARIAX_STARTUP_ACTIVATE,
35 VARIAX_STARTUP_DUMPREQ,
36 VARIAX_STARTUP_WORKQUEUE,
37 VARIAX_STARTUP_SETUP,
38 VARIAX_STARTUP_LAST = VARIAX_STARTUP_SETUP - 1
39};
705ececd
MG
40
41enum {
42 VARIAX_DUMP_PASS1 = LINE6_DUMP_CURRENT,
43 VARIAX_DUMP_PASS2,
44 VARIAX_DUMP_PASS3
45};
46
705ececd 47/**
1027f476 48 Binary Variax model dump
705ececd
MG
49*/
50struct variax_model {
51 /**
1027f476 52 Header information (including program name).
705ececd
MG
53 */
54 unsigned char name[18];
55
56 /**
1027f476 57 Model parameters.
705ececd
MG
58 */
59 unsigned char control[78 * 2];
60};
61
62struct usb_line6_variax {
63 /**
1027f476 64 Generic Line6 USB data.
705ececd
MG
65 */
66 struct usb_line6 line6;
67
68 /**
1027f476
MG
69 Dump request structure.
70 Append two extra buffers for 3-pass data query.
705ececd 71 */
e1a164d7
MG
72 struct line6_dump_request dumpreq;
73 struct line6_dump_reqbuf extrabuf[2];
705ececd
MG
74
75 /**
1027f476 76 Buffer for activation code.
705ececd
MG
77 */
78 unsigned char *buffer_activate;
79
80 /**
1027f476 81 Model number.
705ececd
MG
82 */
83 int model;
84
85 /**
1027f476 86 Current model settings.
705ececd
MG
87 */
88 struct variax_model model_data;
89
90 /**
1027f476
MG
91 Name of connected guitar.
92 */
93 unsigned char guitar[18];
94
95 /**
96 Name of current model bank.
705ececd
MG
97 */
98 unsigned char bank[18];
99
100 /**
1027f476 101 Position of volume dial.
705ececd
MG
102 */
103 int volume;
104
105 /**
1027f476 106 Position of tone control dial.
705ececd
MG
107 */
108 int tone;
109
110 /**
1027f476
MG
111 Handler for device initializaton.
112 */
113 struct work_struct startup_work;
114
115 /**
e1a164d7 116 Timers for device initializaton.
1027f476 117 */
e1a164d7
MG
118 struct timer_list startup_timer1;
119 struct timer_list startup_timer2;
1027f476
MG
120
121 /**
122 Current progress in startup procedure.
705ececd 123 */
1027f476 124 int startup_progress;
705ececd
MG
125};
126
1027f476
MG
127extern void line6_variax_disconnect(struct usb_interface *interface);
128extern int line6_variax_init(struct usb_interface *interface,
129 struct usb_line6_variax *variax);
130extern void line6_variax_process_message(struct usb_line6_variax *variax);
705ececd 131
705ececd 132#endif