blob: cf0b4a5883f665f27f2f9d34d13e9854d080565f [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * sisusb - usb kernel driver for Net2280/SiS315 based USB2VGA dongles
3 *
4 * Copyright (C) 2005 by Thomas Winischhofer, Vienna, Austria
5 *
6 * If distributed as part of the Linux kernel, this code is licensed under the
7 * terms of the GPL v2.
8 *
9 * Otherwise, the following license terms apply:
10 *
Felipe Balbi1c1772a2007-08-10 09:34:29 -040011 * Redistribution and use in source and binary forms, with or without
12 * modification, are permitted provided that the following conditions
13 * are met:
14 * 1) Redistributions of source code must retain the above copyright
15 * notice, this list of conditions and the following disclaimer.
16 * 2) Redistributions in binary form must reproduce the above copyright
17 * notice, this list of conditions and the following disclaimer in the
18 * documentation and/or other materials provided with the distribution.
19 * 3) The name of the author may not be used to endorse or promote products
20 * derived from this software without specific prior written permission.
21 *
22 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESSED OR
23 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
24 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
25 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
26 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
27 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
28 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
29 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
30 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
31 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Linus Torvalds1da177e2005-04-16 15:20:36 -070032 *
Felipe Balbied86d972007-08-10 09:34:24 -040033 * Author: Thomas Winischhofer <thomas@winischhofer.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -070034 *
35 */
36
37#ifndef _SISUSB_H_
38#define _SISUSB_H_
39
40#ifdef CONFIG_COMPAT
Linus Torvalds1da177e2005-04-16 15:20:36 -070041#define SISUSB_NEW_CONFIG_COMPAT
42#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070043
Arjan van de Ven2682d272006-03-28 01:00:21 -080044#include <linux/mutex.h>
45
Thomas Winischhofer1bbb4f22005-08-29 17:01:16 +020046/* For older kernels, support for text consoles is by default
Felipe Balbi2acbd642007-08-10 09:34:27 -040047 * off. To enable text console support, change the following:
Thomas Winischhofer1bbb4f22005-08-29 17:01:16 +020048 */
Felipe Balbi9dedd362007-08-10 09:34:26 -040049/* #define CONFIG_USB_SISUSBVGA_CON */
Thomas Winischhofer1bbb4f22005-08-29 17:01:16 +020050
Linus Torvalds1da177e2005-04-16 15:20:36 -070051/* Version Information */
52
53#define SISUSB_VERSION 0
Felipe Balbied86d972007-08-10 09:34:24 -040054#define SISUSB_REVISION 0
Thomas Winischhofer1bbb4f22005-08-29 17:01:16 +020055#define SISUSB_PATCHLEVEL 8
56
57/* Include console and mode switching code? */
58
59#ifdef CONFIG_USB_SISUSBVGA_CON
60#define INCL_SISUSB_CON 1
61#endif
62
Thomas Winischhofer1bbb4f22005-08-29 17:01:16 +020063#include <linux/console.h>
64#include <linux/vt_kern.h>
65#include "sisusb_struct.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070066
67/* USB related */
68
Thomas Winischhofer1bbb4f22005-08-29 17:01:16 +020069#define SISUSB_MINOR 133 /* official */
Linus Torvalds1da177e2005-04-16 15:20:36 -070070
71/* Size of the sisusb input/output buffers */
72#define SISUSB_IBUF_SIZE 0x01000
73#define SISUSB_OBUF_SIZE 0x10000 /* fixed */
74
Felipe Balbi1c1772a2007-08-10 09:34:29 -040075#define NUMOBUFS 8 /* max number of output buffers/output URBs */
Linus Torvalds1da177e2005-04-16 15:20:36 -070076
77/* About endianness:
78 *
79 * 1) I/O ports, PCI config registers. The read/write()
80 * calls emulate inX/outX. Hence, the data is
81 * expected/delivered in machine endiannes by this
82 * driver.
83 * 2) Video memory. The data is copied 1:1. There is
84 * no swapping. Ever. This means for userland that
85 * the data has to be prepared properly. (Hint:
86 * think graphics data format, command queue,
87 * hardware cursor.)
88 * 3) MMIO. Data is copied 1:1. MMIO must be swapped
89 * properly by userland.
90 *
91 */
92
93#ifdef __BIG_ENDIAN
Felipe Balbied86d972007-08-10 09:34:24 -040094#define SISUSB_CORRECT_ENDIANNESS_PACKET(p) \
Linus Torvalds1da177e2005-04-16 15:20:36 -070095 do { \
96 p->header = cpu_to_le16(p->header); \
97 p->address = cpu_to_le32(p->address); \
98 p->data = cpu_to_le32(p->data); \
99 } while(0)
100#else
101#define SISUSB_CORRECT_ENDIANNESS_PACKET(p)
102#endif
103
104struct sisusb_usb_data;
105
Felipe Balbi1c1772a2007-08-10 09:34:29 -0400106struct sisusb_urb_context { /* urb->context for outbound bulk URBs */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107 struct sisusb_usb_data *sisusb;
108 int urbindex;
109 int *actual_length;
110};
111
112struct sisusb_usb_data {
113 struct usb_device *sisusb_dev;
114 struct usb_interface *interface;
115 struct kref kref;
116 wait_queue_head_t wait_q; /* for syncind and timeouts */
Felipe Balbi1c1772a2007-08-10 09:34:29 -0400117 struct mutex lock; /* general race avoidance */
118 unsigned int ifnum; /* interface number of the USB device */
119 int minor; /* minor (for logging clarity) */
120 int isopen; /* !=0 if open */
121 int present; /* !=0 if device is present on the bus */
122 int ready; /* !=0 if device is ready for userland */
Felipe Balbi1c1772a2007-08-10 09:34:29 -0400123 int numobufs; /* number of obufs = number of out urbs */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124 char *obuf[NUMOBUFS], *ibuf; /* transfer buffers */
125 int obufsize, ibufsize;
126 dma_addr_t transfer_dma_out[NUMOBUFS];
127 dma_addr_t transfer_dma_in;
128 struct urb *sisurbout[NUMOBUFS];
129 struct urb *sisurbin;
130 unsigned char urbstatus[NUMOBUFS];
131 unsigned char completein;
132 struct sisusb_urb_context urbout_context[NUMOBUFS];
133 unsigned long flagb0;
Felipe Balbi1c1772a2007-08-10 09:34:29 -0400134 unsigned long vrambase; /* framebuffer base */
135 unsigned int vramsize; /* framebuffer size (bytes) */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136 unsigned long mmiobase;
137 unsigned int mmiosize;
138 unsigned long ioportbase;
Felipe Balbi1c1772a2007-08-10 09:34:29 -0400139 unsigned char devinit; /* device initialized? */
140 unsigned char gfxinit; /* graphics core initialized? */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141 unsigned short chipid, chipvendor;
142 unsigned short chiprevision;
Thomas Winischhofer1bbb4f22005-08-29 17:01:16 +0200143#ifdef INCL_SISUSB_CON
144 struct SiS_Private *SiS_Pr;
145 unsigned long scrbuf;
146 unsigned int scrbuf_size;
147 int haveconsole, con_first, con_last;
148 int havethisconsole[MAX_NR_CONSOLES];
149 int textmodedestroyed;
Felipe Balbi1c1772a2007-08-10 09:34:29 -0400150 unsigned int sisusb_num_columns; /* real number, not vt's idea */
Thomas Winischhofer1bbb4f22005-08-29 17:01:16 +0200151 int cur_start_addr, con_rolled_over;
152 int sisusb_cursor_loc, bad_cursor_pos;
153 int sisusb_cursor_size_from;
154 int sisusb_cursor_size_to;
155 int current_font_height, current_font_512;
156 int font_backup_size, font_backup_height, font_backup_512;
157 char *font_backup;
158 int font_slot;
159 struct vc_data *sisusb_display_fg;
160 int is_gfx;
161 int con_blanked;
162#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163};
164
165#define to_sisusb_dev(d) container_of(d, struct sisusb_usb_data, kref)
166
167/* USB transport related */
168
169/* urbstatus */
170#define SU_URB_BUSY 1
171#define SU_URB_ALLOC 2
172
173/* Endpoints */
174
175#define SISUSB_EP_GFX_IN 0x0e /* gfx std packet out(0e)/in(8e) */
176#define SISUSB_EP_GFX_OUT 0x0e
177
178#define SISUSB_EP_GFX_BULK_OUT 0x01 /* gfx mem bulk out/in */
179#define SISUSB_EP_GFX_BULK_IN 0x02 /* ? 2 is "OUT" ? */
180
181#define SISUSB_EP_GFX_LBULK_OUT 0x03 /* gfx large mem bulk out */
182
183#define SISUSB_EP_UNKNOWN_04 0x04 /* ? 4 is "OUT" ? - unused */
184
185#define SISUSB_EP_BRIDGE_IN 0x0d /* Net2280 out(0d)/in(8d) */
186#define SISUSB_EP_BRIDGE_OUT 0x0d
187
188#define SISUSB_TYPE_MEM 0
189#define SISUSB_TYPE_IO 1
190
191struct sisusb_packet {
192 unsigned short header;
193 u32 address;
194 u32 data;
Felipe Balbi1c1772a2007-08-10 09:34:29 -0400195} __attribute__ ((__packed__));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196
197#define CLEARPACKET(packet) memset(packet, 0, 10)
198
199/* PCI bridge related */
200
201#define SISUSB_PCI_MEMBASE 0xd0000000
202#define SISUSB_PCI_MMIOBASE 0xe4000000
203#define SISUSB_PCI_IOPORTBASE 0x0000d000
204
205#define SISUSB_PCI_PSEUDO_MEMBASE 0x10000000
206#define SISUSB_PCI_PSEUDO_MMIOBASE 0x20000000
207#define SISUSB_PCI_PSEUDO_IOPORTBASE 0x0000d000
208#define SISUSB_PCI_PSEUDO_PCIBASE 0x00010000
209
210#define SISUSB_PCI_MMIOSIZE (128*1024)
211#define SISUSB_PCI_PCONFSIZE 0x5c
212
213/* graphics core related */
214
215#define AROFFSET 0x40
216#define ARROFFSET 0x41
217#define GROFFSET 0x4e
218#define SROFFSET 0x44
219#define CROFFSET 0x54
220#define MISCROFFSET 0x4c
221#define MISCWOFFSET 0x42
222#define INPUTSTATOFFSET 0x5A
223#define PART1OFFSET 0x04
224#define PART2OFFSET 0x10
225#define PART3OFFSET 0x12
226#define PART4OFFSET 0x14
227#define PART5OFFSET 0x16
228#define CAPTUREOFFSET 0x00
229#define VIDEOOFFSET 0x02
230#define COLREGOFFSET 0x48
231#define PELMASKOFFSET 0x46
232#define VGAENABLE 0x43
233
234#define SISAR SISUSB_PCI_IOPORTBASE + AROFFSET
235#define SISARR SISUSB_PCI_IOPORTBASE + ARROFFSET
236#define SISGR SISUSB_PCI_IOPORTBASE + GROFFSET
237#define SISSR SISUSB_PCI_IOPORTBASE + SROFFSET
238#define SISCR SISUSB_PCI_IOPORTBASE + CROFFSET
239#define SISMISCR SISUSB_PCI_IOPORTBASE + MISCROFFSET
240#define SISMISCW SISUSB_PCI_IOPORTBASE + MISCWOFFSET
241#define SISINPSTAT SISUSB_PCI_IOPORTBASE + INPUTSTATOFFSET
242#define SISPART1 SISUSB_PCI_IOPORTBASE + PART1OFFSET
243#define SISPART2 SISUSB_PCI_IOPORTBASE + PART2OFFSET
244#define SISPART3 SISUSB_PCI_IOPORTBASE + PART3OFFSET
245#define SISPART4 SISUSB_PCI_IOPORTBASE + PART4OFFSET
246#define SISPART5 SISUSB_PCI_IOPORTBASE + PART5OFFSET
247#define SISCAP SISUSB_PCI_IOPORTBASE + CAPTUREOFFSET
248#define SISVID SISUSB_PCI_IOPORTBASE + VIDEOOFFSET
249#define SISCOLIDXR SISUSB_PCI_IOPORTBASE + COLREGOFFSET - 1
250#define SISCOLIDX SISUSB_PCI_IOPORTBASE + COLREGOFFSET
251#define SISCOLDATA SISUSB_PCI_IOPORTBASE + COLREGOFFSET + 1
252#define SISCOL2IDX SISPART5
253#define SISCOL2DATA SISPART5 + 1
254#define SISPEL SISUSB_PCI_IOPORTBASE + PELMASKOFFSET
255#define SISVGAEN SISUSB_PCI_IOPORTBASE + VGAENABLE
256#define SISDACA SISCOLIDX
257#define SISDACD SISCOLDATA
258
259/* ioctl related */
260
261/* Structure argument for SISUSB_GET_INFO ioctl */
262struct sisusb_info {
Felipe Balbi1c1772a2007-08-10 09:34:29 -0400263 __u32 sisusb_id; /* for identifying sisusb */
264#define SISUSB_ID 0x53495355 /* Identify myself with 'SISU' */
265 __u8 sisusb_version;
266 __u8 sisusb_revision;
267 __u8 sisusb_patchlevel;
268 __u8 sisusb_gfxinit; /* graphics core initialized? */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269
Felipe Balbi1c1772a2007-08-10 09:34:29 -0400270 __u32 sisusb_vrambase;
271 __u32 sisusb_mmiobase;
272 __u32 sisusb_iobase;
273 __u32 sisusb_pcibase;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274
Felipe Balbi1c1772a2007-08-10 09:34:29 -0400275 __u32 sisusb_vramsize; /* framebuffer size in bytes */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276
Felipe Balbi1c1772a2007-08-10 09:34:29 -0400277 __u32 sisusb_minor;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278
Felipe Balbi1c1772a2007-08-10 09:34:29 -0400279 __u32 sisusb_fbdevactive; /* != 0 if framebuffer device active */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280
Felipe Balbi1c1772a2007-08-10 09:34:29 -0400281 __u32 sisusb_conactive; /* != 0 if console driver active */
Thomas Winischhofer1bbb4f22005-08-29 17:01:16 +0200282
Felipe Balbi1c1772a2007-08-10 09:34:29 -0400283 __u8 sisusb_reserved[28]; /* for future use */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284};
285
286struct sisusb_command {
Felipe Balbi1c1772a2007-08-10 09:34:29 -0400287 __u8 operation; /* see below */
288 __u8 data0; /* operation dependent */
289 __u8 data1; /* operation dependent */
290 __u8 data2; /* operation dependent */
291 __u32 data3; /* operation dependent */
292 __u32 data4; /* for future use */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293};
294
Thomas Winischhofer1bbb4f22005-08-29 17:01:16 +0200295#define SUCMD_GET 0x01 /* for all: data0 = index, data3 = port */
296#define SUCMD_SET 0x02 /* data1 = value */
297#define SUCMD_SETOR 0x03 /* data1 = or */
298#define SUCMD_SETAND 0x04 /* data1 = and */
299#define SUCMD_SETANDOR 0x05 /* data1 = and, data2 = or */
300#define SUCMD_SETMASK 0x06 /* data1 = data, data2 = mask */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301
Thomas Winischhofer1bbb4f22005-08-29 17:01:16 +0200302#define SUCMD_CLRSCR 0x07 /* data0:1:2 = length, data3 = address */
303
Felipe Balbi1c1772a2007-08-10 09:34:29 -0400304#define SUCMD_HANDLETEXTMODE 0x08 /* Reset/destroy text mode */
Thomas Winischhofer1bbb4f22005-08-29 17:01:16 +0200305
306#define SUCMD_SETMODE 0x09 /* Set a display mode (data3 = SiS mode) */
307#define SUCMD_SETVESAMODE 0x0a /* Set a display mode (data3 = VESA mode) */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308
309#define SISUSB_COMMAND _IOWR(0xF3,0x3D,struct sisusb_command)
Thomas Winischhofer1bbb4f22005-08-29 17:01:16 +0200310#define SISUSB_GET_CONFIG_SIZE _IOR(0xF3,0x3E,__u32)
311#define SISUSB_GET_CONFIG _IOR(0xF3,0x3F,struct sisusb_info)
312
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313#endif /* SISUSB_H */