2 * sisusb - usb kernel driver for SiS315(E) based USB2VGA dongles
6 * Copyright (C) 2005 by Thomas Winischhofer, Vienna, Austria
8 * If distributed as part of the Linux kernel, this code is licensed under the
11 * Otherwise, the following license terms apply:
13 * * Redistribution and use in source and binary forms, with or without
14 * * modification, are permitted provided that the following conditions
16 * * 1) Redistributions of source code must retain the above copyright
17 * * notice, this list of conditions and the following disclaimer.
18 * * 2) Redistributions in binary form must reproduce the above copyright
19 * * notice, this list of conditions and the following disclaimer in the
20 * * documentation and/or other materials provided with the distribution.
21 * * 3) The name of the author may not be used to endorse or promote products
22 * * derived from this software without specific psisusbr written permission.
24 * * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESSED OR
25 * * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
26 * * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
27 * * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
28 * * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
29 * * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
30 * * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
31 * * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
32 * * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
33 * * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
35 * Author: Thomas Winischhofer <thomas@winischhofer.net>
39 #include <linux/mutex.h>
40 #include <linux/module.h>
41 #include <linux/kernel.h>
42 #include <linux/signal.h>
43 #include <linux/errno.h>
44 #include <linux/poll.h>
45 #include <linux/init.h>
46 #include <linux/slab.h>
47 #include <linux/spinlock.h>
48 #include <linux/kref.h>
49 #include <linux/usb.h>
50 #include <linux/vmalloc.h>
53 #include "sisusb_init.h"
55 #ifdef INCL_SISUSB_CON
56 #include <linux/font.h>
59 #define SISUSB_DONTSYNC
61 /* Forward declarations / clean-up routines */
63 #ifdef INCL_SISUSB_CON
64 static int sisusb_first_vc
;
65 static int sisusb_last_vc
;
66 module_param_named(first
, sisusb_first_vc
, int, 0);
67 module_param_named(last
, sisusb_last_vc
, int, 0);
68 MODULE_PARM_DESC(first
, "Number of first console to take over (1 - MAX_NR_CONSOLES)");
69 MODULE_PARM_DESC(last
, "Number of last console to take over (1 - MAX_NR_CONSOLES)");
72 static struct usb_driver sisusb_driver
;
74 static void sisusb_free_buffers(struct sisusb_usb_data
*sisusb
)
78 for (i
= 0; i
< NUMOBUFS
; i
++) {
79 kfree(sisusb
->obuf
[i
]);
80 sisusb
->obuf
[i
] = NULL
;
86 static void sisusb_free_urbs(struct sisusb_usb_data
*sisusb
)
90 for (i
= 0; i
< NUMOBUFS
; i
++) {
91 usb_free_urb(sisusb
->sisurbout
[i
]);
92 sisusb
->sisurbout
[i
] = NULL
;
94 usb_free_urb(sisusb
->sisurbin
);
95 sisusb
->sisurbin
= NULL
;
98 /* Level 0: USB transport layer */
102 /* out-urb management */
104 /* Return 1 if all free, 0 otherwise */
105 static int sisusb_all_free(struct sisusb_usb_data
*sisusb
)
109 for (i
= 0; i
< sisusb
->numobufs
; i
++) {
111 if (sisusb
->urbstatus
[i
] & SU_URB_BUSY
)
119 /* Kill all busy URBs */
120 static void sisusb_kill_all_busy(struct sisusb_usb_data
*sisusb
)
124 if (sisusb_all_free(sisusb
))
127 for (i
= 0; i
< sisusb
->numobufs
; i
++) {
129 if (sisusb
->urbstatus
[i
] & SU_URB_BUSY
)
130 usb_kill_urb(sisusb
->sisurbout
[i
]);
135 /* Return 1 if ok, 0 if error (not all complete within timeout) */
136 static int sisusb_wait_all_out_complete(struct sisusb_usb_data
*sisusb
)
138 int timeout
= 5 * HZ
, i
= 1;
140 wait_event_timeout(sisusb
->wait_q
, (i
= sisusb_all_free(sisusb
)),
146 static int sisusb_outurb_available(struct sisusb_usb_data
*sisusb
)
150 for (i
= 0; i
< sisusb
->numobufs
; i
++) {
152 if ((sisusb
->urbstatus
[i
] & (SU_URB_BUSY
|SU_URB_ALLOC
)) == 0)
160 static int sisusb_get_free_outbuf(struct sisusb_usb_data
*sisusb
)
162 int i
, timeout
= 5 * HZ
;
164 wait_event_timeout(sisusb
->wait_q
,
165 ((i
= sisusb_outurb_available(sisusb
)) >= 0), timeout
);
170 static int sisusb_alloc_outbuf(struct sisusb_usb_data
*sisusb
)
174 i
= sisusb_outurb_available(sisusb
);
177 sisusb
->urbstatus
[i
] |= SU_URB_ALLOC
;
182 static void sisusb_free_outbuf(struct sisusb_usb_data
*sisusb
, int index
)
184 if ((index
>= 0) && (index
< sisusb
->numobufs
))
185 sisusb
->urbstatus
[index
] &= ~SU_URB_ALLOC
;
188 /* completion callback */
190 static void sisusb_bulk_completeout(struct urb
*urb
)
192 struct sisusb_urb_context
*context
= urb
->context
;
193 struct sisusb_usb_data
*sisusb
;
198 sisusb
= context
->sisusb
;
200 if (!sisusb
|| !sisusb
->sisusb_dev
|| !sisusb
->present
)
203 #ifndef SISUSB_DONTSYNC
204 if (context
->actual_length
)
205 *(context
->actual_length
) += urb
->actual_length
;
208 sisusb
->urbstatus
[context
->urbindex
] &= ~SU_URB_BUSY
;
209 wake_up(&sisusb
->wait_q
);
212 static int sisusb_bulkout_msg(struct sisusb_usb_data
*sisusb
, int index
,
213 unsigned int pipe
, void *data
, int len
, int *actual_length
,
214 int timeout
, unsigned int tflags
)
216 struct urb
*urb
= sisusb
->sisurbout
[index
];
217 int retval
, byteswritten
= 0;
220 urb
->transfer_flags
= 0;
222 usb_fill_bulk_urb(urb
, sisusb
->sisusb_dev
, pipe
, data
, len
,
223 sisusb_bulk_completeout
,
224 &sisusb
->urbout_context
[index
]);
226 urb
->transfer_flags
|= tflags
;
227 urb
->actual_length
= 0;
230 sisusb
->urbout_context
[index
].actual_length
= (timeout
) ?
231 NULL
: actual_length
;
233 /* Declare this urb/buffer in use */
234 sisusb
->urbstatus
[index
] |= SU_URB_BUSY
;
237 retval
= usb_submit_urb(urb
, GFP_KERNEL
);
239 /* If OK, and if timeout > 0, wait for completion */
240 if ((retval
== 0) && timeout
) {
241 wait_event_timeout(sisusb
->wait_q
,
242 (!(sisusb
->urbstatus
[index
] & SU_URB_BUSY
)),
244 if (sisusb
->urbstatus
[index
] & SU_URB_BUSY
) {
245 /* URB timed out... kill it and report error */
249 /* Otherwise, report urb status */
250 retval
= urb
->status
;
251 byteswritten
= urb
->actual_length
;
256 *actual_length
= byteswritten
;
263 /* completion callback */
265 static void sisusb_bulk_completein(struct urb
*urb
)
267 struct sisusb_usb_data
*sisusb
= urb
->context
;
269 if (!sisusb
|| !sisusb
->sisusb_dev
|| !sisusb
->present
)
272 sisusb
->completein
= 1;
273 wake_up(&sisusb
->wait_q
);
276 static int sisusb_bulkin_msg(struct sisusb_usb_data
*sisusb
,
277 unsigned int pipe
, void *data
, int len
,
278 int *actual_length
, int timeout
, unsigned int tflags
)
280 struct urb
*urb
= sisusb
->sisurbin
;
281 int retval
, readbytes
= 0;
283 urb
->transfer_flags
= 0;
285 usb_fill_bulk_urb(urb
, sisusb
->sisusb_dev
, pipe
, data
, len
,
286 sisusb_bulk_completein
, sisusb
);
288 urb
->transfer_flags
|= tflags
;
289 urb
->actual_length
= 0;
291 sisusb
->completein
= 0;
292 retval
= usb_submit_urb(urb
, GFP_KERNEL
);
294 wait_event_timeout(sisusb
->wait_q
, sisusb
->completein
, timeout
);
295 if (!sisusb
->completein
) {
296 /* URB timed out... kill it and report error */
300 /* URB completed within timeout */
301 retval
= urb
->status
;
302 readbytes
= urb
->actual_length
;
307 *actual_length
= readbytes
;
315 /* Send a bulk message of variable size
317 * To copy the data from userspace, give pointer to "userbuffer",
318 * to copy from (non-DMA) kernel memory, give "kernbuffer". If
319 * both of these are NULL, it is assumed, that the transfer
320 * buffer "sisusb->obuf[index]" is set up with the data to send.
321 * Index is ignored if either kernbuffer or userbuffer is set.
322 * If async is nonzero, URBs will be sent without waiting for
323 * completion of the previous URB.
325 * (return 0 on success)
328 static int sisusb_send_bulk_msg(struct sisusb_usb_data
*sisusb
, int ep
, int len
,
329 char *kernbuffer
, const char __user
*userbuffer
, int index
,
330 ssize_t
*bytes_written
, unsigned int tflags
, int async
)
332 int result
= 0, retry
, count
= len
;
333 int passsize
, thispass
, transferred_len
= 0;
334 int fromuser
= (userbuffer
!= NULL
) ? 1 : 0;
335 int fromkern
= (kernbuffer
!= NULL
) ? 1 : 0;
339 (*bytes_written
) = 0;
342 if (!sisusb
|| !sisusb
->present
|| !sisusb
->sisusb_dev
)
345 /* If we copy data from kernel or userspace, force the
346 * allocation of a buffer/urb. If we have the data in
347 * the transfer buffer[index] already, reuse the buffer/URB
348 * if the length is > buffer size. (So, transmitting
349 * large data amounts directly from the transfer buffer
350 * treats the buffer as a ring buffer. However, we need
351 * to sync in this case.)
353 if (fromuser
|| fromkern
)
355 else if (len
> sisusb
->obufsize
)
358 pipe
= usb_sndbulkpipe(sisusb
->sisusb_dev
, ep
);
361 passsize
= thispass
= (sisusb
->obufsize
< count
) ?
362 sisusb
->obufsize
: count
;
365 index
= sisusb_get_free_outbuf(sisusb
);
370 buffer
= sisusb
->obuf
[index
];
374 if (copy_from_user(buffer
, userbuffer
, passsize
))
377 userbuffer
+= passsize
;
379 } else if (fromkern
) {
381 memcpy(buffer
, kernbuffer
, passsize
);
382 kernbuffer
+= passsize
;
389 if (!sisusb
->sisusb_dev
)
392 result
= sisusb_bulkout_msg(sisusb
, index
, pipe
,
393 buffer
, thispass
, &transferred_len
,
394 async
? 0 : 5 * HZ
, tflags
);
396 if (result
== -ETIMEDOUT
) {
398 /* Will not happen if async */
405 if ((result
== 0) && !async
&& transferred_len
) {
407 thispass
-= transferred_len
;
408 buffer
+= transferred_len
;
417 (*bytes_written
) += passsize
;
420 /* Force new allocation in next iteration */
421 if (fromuser
|| fromkern
)
427 #ifdef SISUSB_DONTSYNC
428 (*bytes_written
) = len
;
429 /* Some URBs/buffers might be busy */
431 sisusb_wait_all_out_complete(sisusb
);
432 (*bytes_written
) = transferred_len
;
433 /* All URBs and all buffers are available */
437 return ((*bytes_written
) == len
) ? 0 : -EIO
;
440 /* Receive a bulk message of variable size
442 * To copy the data to userspace, give pointer to "userbuffer",
443 * to copy to kernel memory, give "kernbuffer". One of them
444 * MUST be set. (There is no technique for letting the caller
445 * read directly from the ibuf.)
449 static int sisusb_recv_bulk_msg(struct sisusb_usb_data
*sisusb
, int ep
, int len
,
450 void *kernbuffer
, char __user
*userbuffer
, ssize_t
*bytes_read
,
453 int result
= 0, retry
, count
= len
;
454 int bufsize
, thispass
, transferred_len
;
461 if (!sisusb
|| !sisusb
->present
|| !sisusb
->sisusb_dev
)
464 pipe
= usb_rcvbulkpipe(sisusb
->sisusb_dev
, ep
);
465 buffer
= sisusb
->ibuf
;
466 bufsize
= sisusb
->ibufsize
;
470 #ifdef SISUSB_DONTSYNC
471 if (!(sisusb_wait_all_out_complete(sisusb
)))
477 if (!sisusb
->sisusb_dev
)
480 thispass
= (bufsize
< count
) ? bufsize
: count
;
482 result
= sisusb_bulkin_msg(sisusb
, pipe
, buffer
, thispass
,
483 &transferred_len
, 5 * HZ
, tflags
);
486 thispass
= transferred_len
;
488 else if (result
== -ETIMEDOUT
) {
501 (*bytes_read
) += thispass
;
506 if (copy_to_user(userbuffer
, buffer
, thispass
))
509 userbuffer
+= thispass
;
513 memcpy(kernbuffer
, buffer
, thispass
);
514 kernbuffer
+= thispass
;
522 return ((*bytes_read
) == len
) ? 0 : -EIO
;
525 static int sisusb_send_packet(struct sisusb_usb_data
*sisusb
, int len
,
526 struct sisusb_packet
*packet
)
529 ssize_t bytes_transferred
= 0;
535 #ifdef SISUSB_DONTSYNC
536 if (!(sisusb_wait_all_out_complete(sisusb
)))
540 /* Eventually correct endianness */
541 SISUSB_CORRECT_ENDIANNESS_PACKET(packet
);
543 /* 1. send the packet */
544 ret
= sisusb_send_bulk_msg(sisusb
, SISUSB_EP_GFX_OUT
, len
,
545 (char *)packet
, NULL
, 0, &bytes_transferred
, 0, 0);
547 if ((ret
== 0) && (len
== 6)) {
549 /* 2. if packet len == 6, it means we read, so wait for 32bit
550 * return value and write it to packet->data
552 ret
= sisusb_recv_bulk_msg(sisusb
, SISUSB_EP_GFX_IN
, 4,
553 (char *)&tmp
, NULL
, &bytes_transferred
, 0);
555 packet
->data
= le32_to_cpu(tmp
);
561 static int sisusb_send_bridge_packet(struct sisusb_usb_data
*sisusb
, int len
,
562 struct sisusb_packet
*packet
, unsigned int tflags
)
565 ssize_t bytes_transferred
= 0;
571 #ifdef SISUSB_DONTSYNC
572 if (!(sisusb_wait_all_out_complete(sisusb
)))
576 /* Eventually correct endianness */
577 SISUSB_CORRECT_ENDIANNESS_PACKET(packet
);
579 /* 1. send the packet */
580 ret
= sisusb_send_bulk_msg(sisusb
, SISUSB_EP_BRIDGE_OUT
, len
,
581 (char *)packet
, NULL
, 0, &bytes_transferred
, tflags
, 0);
583 if ((ret
== 0) && (len
== 6)) {
585 /* 2. if packet len == 6, it means we read, so wait for 32bit
586 * return value and write it to packet->data
588 ret
= sisusb_recv_bulk_msg(sisusb
, SISUSB_EP_BRIDGE_IN
, 4,
589 (char *)&tmp
, NULL
, &bytes_transferred
, 0);
591 packet
->data
= le32_to_cpu(tmp
);
597 /* access video memory and mmio (return 0 on success) */
601 /* The following routines assume being used to transfer byte, word,
604 * - the write routines expect "data" in machine endianness format.
605 * The data will be converted to leXX in sisusb_xxx_packet.
606 * - the read routines can expect read data in machine-endianess.
609 static int sisusb_write_memio_byte(struct sisusb_usb_data
*sisusb
, int type
,
612 struct sisusb_packet packet
;
615 packet
.header
= (1 << (addr
& 3)) | (type
<< 6);
616 packet
.address
= addr
& ~3;
617 packet
.data
= data
<< ((addr
& 3) << 3);
618 ret
= sisusb_send_packet(sisusb
, 10, &packet
);
622 static int sisusb_write_memio_word(struct sisusb_usb_data
*sisusb
, int type
,
625 struct sisusb_packet packet
;
628 packet
.address
= addr
& ~3;
632 packet
.header
= (type
<< 6) | 0x0003;
633 packet
.data
= (u32
)data
;
634 ret
= sisusb_send_packet(sisusb
, 10, &packet
);
637 packet
.header
= (type
<< 6) | 0x0006;
638 packet
.data
= (u32
)data
<< 8;
639 ret
= sisusb_send_packet(sisusb
, 10, &packet
);
642 packet
.header
= (type
<< 6) | 0x000c;
643 packet
.data
= (u32
)data
<< 16;
644 ret
= sisusb_send_packet(sisusb
, 10, &packet
);
647 packet
.header
= (type
<< 6) | 0x0008;
648 packet
.data
= (u32
)data
<< 24;
649 ret
= sisusb_send_packet(sisusb
, 10, &packet
);
650 packet
.header
= (type
<< 6) | 0x0001;
651 packet
.address
= (addr
& ~3) + 4;
652 packet
.data
= (u32
)data
>> 8;
653 ret
|= sisusb_send_packet(sisusb
, 10, &packet
);
659 static int sisusb_write_memio_24bit(struct sisusb_usb_data
*sisusb
, int type
,
662 struct sisusb_packet packet
;
665 packet
.address
= addr
& ~3;
669 packet
.header
= (type
<< 6) | 0x0007;
670 packet
.data
= data
& 0x00ffffff;
671 ret
= sisusb_send_packet(sisusb
, 10, &packet
);
674 packet
.header
= (type
<< 6) | 0x000e;
675 packet
.data
= data
<< 8;
676 ret
= sisusb_send_packet(sisusb
, 10, &packet
);
679 packet
.header
= (type
<< 6) | 0x000c;
680 packet
.data
= data
<< 16;
681 ret
= sisusb_send_packet(sisusb
, 10, &packet
);
682 packet
.header
= (type
<< 6) | 0x0001;
683 packet
.address
= (addr
& ~3) + 4;
684 packet
.data
= (data
>> 16) & 0x00ff;
685 ret
|= sisusb_send_packet(sisusb
, 10, &packet
);
688 packet
.header
= (type
<< 6) | 0x0008;
689 packet
.data
= data
<< 24;
690 ret
= sisusb_send_packet(sisusb
, 10, &packet
);
691 packet
.header
= (type
<< 6) | 0x0003;
692 packet
.address
= (addr
& ~3) + 4;
693 packet
.data
= (data
>> 8) & 0xffff;
694 ret
|= sisusb_send_packet(sisusb
, 10, &packet
);
700 static int sisusb_write_memio_long(struct sisusb_usb_data
*sisusb
, int type
,
703 struct sisusb_packet packet
;
706 packet
.address
= addr
& ~3;
710 packet
.header
= (type
<< 6) | 0x000f;
712 ret
= sisusb_send_packet(sisusb
, 10, &packet
);
715 packet
.header
= (type
<< 6) | 0x000e;
716 packet
.data
= data
<< 8;
717 ret
= sisusb_send_packet(sisusb
, 10, &packet
);
718 packet
.header
= (type
<< 6) | 0x0001;
719 packet
.address
= (addr
& ~3) + 4;
720 packet
.data
= data
>> 24;
721 ret
|= sisusb_send_packet(sisusb
, 10, &packet
);
724 packet
.header
= (type
<< 6) | 0x000c;
725 packet
.data
= data
<< 16;
726 ret
= sisusb_send_packet(sisusb
, 10, &packet
);
727 packet
.header
= (type
<< 6) | 0x0003;
728 packet
.address
= (addr
& ~3) + 4;
729 packet
.data
= data
>> 16;
730 ret
|= sisusb_send_packet(sisusb
, 10, &packet
);
733 packet
.header
= (type
<< 6) | 0x0008;
734 packet
.data
= data
<< 24;
735 ret
= sisusb_send_packet(sisusb
, 10, &packet
);
736 packet
.header
= (type
<< 6) | 0x0007;
737 packet
.address
= (addr
& ~3) + 4;
738 packet
.data
= data
>> 8;
739 ret
|= sisusb_send_packet(sisusb
, 10, &packet
);
745 /* The xxx_bulk routines copy a buffer of variable size. They treat the
746 * buffer as chars, therefore lsb/msb has to be corrected if using the
747 * byte/word/long/etc routines for speed-up
749 * If data is from userland, set "userbuffer" (and clear "kernbuffer"),
750 * if data is in kernel space, set "kernbuffer" (and clear "userbuffer");
751 * if neither "kernbuffer" nor "userbuffer" are given, it is assumed
752 * that the data already is in the transfer buffer "sisusb->obuf[index]".
755 static int sisusb_write_mem_bulk(struct sisusb_usb_data
*sisusb
, u32 addr
,
756 char *kernbuffer
, int length
, const char __user
*userbuffer
,
757 int index
, ssize_t
*bytes_written
)
759 struct sisusb_packet packet
;
762 u8 swap8
, fromkern
= kernbuffer
? 1 : 0;
764 u32 swap32
, flag
= (length
>> 28) & 1;
767 /* if neither kernbuffer not userbuffer are given, assume
770 if (!fromkern
&& !userbuffer
)
771 kernbuffer
= sisusb
->obuf
[index
];
773 (*bytes_written
= 0);
775 length
&= 0x00ffffff;
781 if (get_user(swap8
, (u8 __user
*)userbuffer
))
784 swap8
= kernbuffer
[0];
786 ret
= sisusb_write_memio_byte(sisusb
, SISUSB_TYPE_MEM
,
796 if (get_user(swap16
, (u16 __user
*)userbuffer
))
799 swap16
= *((u16
*)kernbuffer
);
801 ret
= sisusb_write_memio_word(sisusb
, SISUSB_TYPE_MEM
,
805 (*bytes_written
) += 2;
811 if (copy_from_user(&buf
, userbuffer
, 3))
814 swap32
= (buf
[0] << 16) |
818 swap32
= (buf
[2] << 16) |
824 swap32
= (kernbuffer
[0] << 16) |
825 (kernbuffer
[1] << 8) |
828 swap32
= (kernbuffer
[2] << 16) |
829 (kernbuffer
[1] << 8) |
833 ret
= sisusb_write_memio_24bit(sisusb
, SISUSB_TYPE_MEM
,
837 (*bytes_written
) += 3;
843 if (get_user(swap32
, (u32 __user
*)userbuffer
))
846 swap32
= *((u32
*)kernbuffer
);
848 ret
= sisusb_write_memio_long(sisusb
, SISUSB_TYPE_MEM
,
851 (*bytes_written
) += 4;
856 if ((length
& ~3) > 0x10000) {
858 packet
.header
= 0x001f;
859 packet
.address
= 0x000001d4;
861 ret
= sisusb_send_bridge_packet(sisusb
, 10,
863 packet
.header
= 0x001f;
864 packet
.address
= 0x000001d0;
865 packet
.data
= (length
& ~3);
866 ret
|= sisusb_send_bridge_packet(sisusb
, 10,
868 packet
.header
= 0x001f;
869 packet
.address
= 0x000001c0;
870 packet
.data
= flag
| 0x16;
871 ret
|= sisusb_send_bridge_packet(sisusb
, 10,
874 ret
|= sisusb_send_bulk_msg(sisusb
,
875 SISUSB_EP_GFX_LBULK_OUT
,
878 bytes_written
, 0, 1);
879 userbuffer
+= (*bytes_written
);
880 } else if (fromkern
) {
881 ret
|= sisusb_send_bulk_msg(sisusb
,
882 SISUSB_EP_GFX_LBULK_OUT
,
885 bytes_written
, 0, 1);
886 kernbuffer
+= (*bytes_written
);
888 ret
|= sisusb_send_bulk_msg(sisusb
,
889 SISUSB_EP_GFX_LBULK_OUT
,
892 bytes_written
, 0, 1);
893 kernbuffer
+= ((*bytes_written
) &
894 (sisusb
->obufsize
-1));
899 packet
.header
= 0x001f;
900 packet
.address
= 0x00000194;
902 ret
= sisusb_send_bridge_packet(sisusb
, 10,
904 packet
.header
= 0x001f;
905 packet
.address
= 0x00000190;
906 packet
.data
= (length
& ~3);
907 ret
|= sisusb_send_bridge_packet(sisusb
, 10,
909 if (sisusb
->flagb0
!= 0x16) {
910 packet
.header
= 0x001f;
911 packet
.address
= 0x00000180;
912 packet
.data
= flag
| 0x16;
913 ret
|= sisusb_send_bridge_packet(sisusb
,
915 sisusb
->flagb0
= 0x16;
918 ret
|= sisusb_send_bulk_msg(sisusb
,
919 SISUSB_EP_GFX_BULK_OUT
,
922 bytes_written
, 0, 1);
923 userbuffer
+= (*bytes_written
);
924 } else if (fromkern
) {
925 ret
|= sisusb_send_bulk_msg(sisusb
,
926 SISUSB_EP_GFX_BULK_OUT
,
929 bytes_written
, 0, 1);
930 kernbuffer
+= (*bytes_written
);
932 ret
|= sisusb_send_bulk_msg(sisusb
,
933 SISUSB_EP_GFX_BULK_OUT
,
936 bytes_written
, 0, 1);
937 kernbuffer
+= ((*bytes_written
) &
938 (sisusb
->obufsize
-1));
944 dev_err(&sisusb
->sisusb_dev
->dev
,
945 "Wrote %zd of %d bytes, error %d\n",
946 *bytes_written
, length
,
948 else if (msgcount
== 500)
949 dev_err(&sisusb
->sisusb_dev
->dev
,
950 "Too many errors, logging stopped\n");
952 addr
+= (*bytes_written
);
953 length
-= (*bytes_written
);
961 return ret
? -EIO
: 0;
964 /* Remember: Read data in packet is in machine-endianess! So for
965 * byte, word, 24bit, long no endian correction is necessary.
968 static int sisusb_read_memio_byte(struct sisusb_usb_data
*sisusb
, int type
,
971 struct sisusb_packet packet
;
974 CLEARPACKET(&packet
);
975 packet
.header
= (1 << (addr
& 3)) | (type
<< 6);
976 packet
.address
= addr
& ~3;
977 ret
= sisusb_send_packet(sisusb
, 6, &packet
);
978 *data
= (u8
)(packet
.data
>> ((addr
& 3) << 3));
982 static int sisusb_read_memio_word(struct sisusb_usb_data
*sisusb
, int type
,
985 struct sisusb_packet packet
;
988 CLEARPACKET(&packet
);
990 packet
.address
= addr
& ~3;
994 packet
.header
= (type
<< 6) | 0x0003;
995 ret
= sisusb_send_packet(sisusb
, 6, &packet
);
996 *data
= (u16
)(packet
.data
);
999 packet
.header
= (type
<< 6) | 0x0006;
1000 ret
= sisusb_send_packet(sisusb
, 6, &packet
);
1001 *data
= (u16
)(packet
.data
>> 8);
1004 packet
.header
= (type
<< 6) | 0x000c;
1005 ret
= sisusb_send_packet(sisusb
, 6, &packet
);
1006 *data
= (u16
)(packet
.data
>> 16);
1009 packet
.header
= (type
<< 6) | 0x0008;
1010 ret
= sisusb_send_packet(sisusb
, 6, &packet
);
1011 *data
= (u16
)(packet
.data
>> 24);
1012 packet
.header
= (type
<< 6) | 0x0001;
1013 packet
.address
= (addr
& ~3) + 4;
1014 ret
|= sisusb_send_packet(sisusb
, 6, &packet
);
1015 *data
|= (u16
)(packet
.data
<< 8);
1021 static int sisusb_read_memio_24bit(struct sisusb_usb_data
*sisusb
, int type
,
1022 u32 addr
, u32
*data
)
1024 struct sisusb_packet packet
;
1027 packet
.address
= addr
& ~3;
1031 packet
.header
= (type
<< 6) | 0x0007;
1032 ret
= sisusb_send_packet(sisusb
, 6, &packet
);
1033 *data
= packet
.data
& 0x00ffffff;
1036 packet
.header
= (type
<< 6) | 0x000e;
1037 ret
= sisusb_send_packet(sisusb
, 6, &packet
);
1038 *data
= packet
.data
>> 8;
1041 packet
.header
= (type
<< 6) | 0x000c;
1042 ret
= sisusb_send_packet(sisusb
, 6, &packet
);
1043 *data
= packet
.data
>> 16;
1044 packet
.header
= (type
<< 6) | 0x0001;
1045 packet
.address
= (addr
& ~3) + 4;
1046 ret
|= sisusb_send_packet(sisusb
, 6, &packet
);
1047 *data
|= ((packet
.data
& 0xff) << 16);
1050 packet
.header
= (type
<< 6) | 0x0008;
1051 ret
= sisusb_send_packet(sisusb
, 6, &packet
);
1052 *data
= packet
.data
>> 24;
1053 packet
.header
= (type
<< 6) | 0x0003;
1054 packet
.address
= (addr
& ~3) + 4;
1055 ret
|= sisusb_send_packet(sisusb
, 6, &packet
);
1056 *data
|= ((packet
.data
& 0xffff) << 8);
1062 static int sisusb_read_memio_long(struct sisusb_usb_data
*sisusb
, int type
,
1063 u32 addr
, u32
*data
)
1065 struct sisusb_packet packet
;
1068 packet
.address
= addr
& ~3;
1072 packet
.header
= (type
<< 6) | 0x000f;
1073 ret
= sisusb_send_packet(sisusb
, 6, &packet
);
1074 *data
= packet
.data
;
1077 packet
.header
= (type
<< 6) | 0x000e;
1078 ret
= sisusb_send_packet(sisusb
, 6, &packet
);
1079 *data
= packet
.data
>> 8;
1080 packet
.header
= (type
<< 6) | 0x0001;
1081 packet
.address
= (addr
& ~3) + 4;
1082 ret
|= sisusb_send_packet(sisusb
, 6, &packet
);
1083 *data
|= (packet
.data
<< 24);
1086 packet
.header
= (type
<< 6) | 0x000c;
1087 ret
= sisusb_send_packet(sisusb
, 6, &packet
);
1088 *data
= packet
.data
>> 16;
1089 packet
.header
= (type
<< 6) | 0x0003;
1090 packet
.address
= (addr
& ~3) + 4;
1091 ret
|= sisusb_send_packet(sisusb
, 6, &packet
);
1092 *data
|= (packet
.data
<< 16);
1095 packet
.header
= (type
<< 6) | 0x0008;
1096 ret
= sisusb_send_packet(sisusb
, 6, &packet
);
1097 *data
= packet
.data
>> 24;
1098 packet
.header
= (type
<< 6) | 0x0007;
1099 packet
.address
= (addr
& ~3) + 4;
1100 ret
|= sisusb_send_packet(sisusb
, 6, &packet
);
1101 *data
|= (packet
.data
<< 8);
1107 static int sisusb_read_mem_bulk(struct sisusb_usb_data
*sisusb
, u32 addr
,
1108 char *kernbuffer
, int length
, char __user
*userbuffer
,
1109 ssize_t
*bytes_read
)
1118 length
&= 0x00ffffff;
1123 ret
|= sisusb_read_memio_byte(sisusb
, SISUSB_TYPE_MEM
,
1128 if (put_user(buf
[0], (u8 __user
*)userbuffer
))
1131 kernbuffer
[0] = buf
[0];
1136 ret
|= sisusb_read_memio_word(sisusb
, SISUSB_TYPE_MEM
,
1141 if (put_user(swap16
, (u16 __user
*)userbuffer
))
1144 *((u16
*)kernbuffer
) = swap16
;
1150 ret
|= sisusb_read_memio_24bit(sisusb
, SISUSB_TYPE_MEM
,
1155 buf
[0] = (swap32
>> 16) & 0xff;
1156 buf
[1] = (swap32
>> 8) & 0xff;
1157 buf
[2] = swap32
& 0xff;
1159 buf
[2] = (swap32
>> 16) & 0xff;
1160 buf
[1] = (swap32
>> 8) & 0xff;
1161 buf
[0] = swap32
& 0xff;
1164 if (copy_to_user(userbuffer
,
1168 kernbuffer
[0] = buf
[0];
1169 kernbuffer
[1] = buf
[1];
1170 kernbuffer
[2] = buf
[2];
1176 ret
|= sisusb_read_memio_long(sisusb
, SISUSB_TYPE_MEM
,
1181 if (put_user(swap32
, (u32 __user
*)userbuffer
))
1186 *((u32
*)kernbuffer
) = swap32
;
1200 /* High level: Gfx (indexed) register access */
1202 #ifdef INCL_SISUSB_CON
1203 int sisusb_setreg(struct sisusb_usb_data
*sisusb
, int port
, u8 data
)
1205 return sisusb_write_memio_byte(sisusb
, SISUSB_TYPE_IO
, port
, data
);
1208 int sisusb_getreg(struct sisusb_usb_data
*sisusb
, int port
, u8
*data
)
1210 return sisusb_read_memio_byte(sisusb
, SISUSB_TYPE_IO
, port
, data
);
1214 int sisusb_setidxreg(struct sisusb_usb_data
*sisusb
, int port
,
1219 ret
= sisusb_write_memio_byte(sisusb
, SISUSB_TYPE_IO
, port
, index
);
1220 ret
|= sisusb_write_memio_byte(sisusb
, SISUSB_TYPE_IO
, port
+ 1, data
);
1224 int sisusb_getidxreg(struct sisusb_usb_data
*sisusb
, int port
,
1229 ret
= sisusb_write_memio_byte(sisusb
, SISUSB_TYPE_IO
, port
, index
);
1230 ret
|= sisusb_read_memio_byte(sisusb
, SISUSB_TYPE_IO
, port
+ 1, data
);
1234 int sisusb_setidxregandor(struct sisusb_usb_data
*sisusb
, int port
, u8 idx
,
1240 ret
= sisusb_write_memio_byte(sisusb
, SISUSB_TYPE_IO
, port
, idx
);
1241 ret
|= sisusb_read_memio_byte(sisusb
, SISUSB_TYPE_IO
, port
+ 1, &tmp
);
1244 ret
|= sisusb_write_memio_byte(sisusb
, SISUSB_TYPE_IO
, port
+ 1, tmp
);
1248 static int sisusb_setidxregmask(struct sisusb_usb_data
*sisusb
,
1249 int port
, u8 idx
, u8 data
, u8 mask
)
1254 ret
= sisusb_write_memio_byte(sisusb
, SISUSB_TYPE_IO
, port
, idx
);
1255 ret
|= sisusb_read_memio_byte(sisusb
, SISUSB_TYPE_IO
, port
+ 1, &tmp
);
1257 tmp
|= (data
& mask
);
1258 ret
|= sisusb_write_memio_byte(sisusb
, SISUSB_TYPE_IO
, port
+ 1, tmp
);
1262 int sisusb_setidxregor(struct sisusb_usb_data
*sisusb
, int port
,
1265 return sisusb_setidxregandor(sisusb
, port
, index
, 0xff, myor
);
1268 int sisusb_setidxregand(struct sisusb_usb_data
*sisusb
, int port
,
1271 return sisusb_setidxregandor(sisusb
, port
, idx
, myand
, 0x00);
1274 /* Write/read video ram */
1276 #ifdef INCL_SISUSB_CON
1277 int sisusb_writeb(struct sisusb_usb_data
*sisusb
, u32 adr
, u8 data
)
1279 return sisusb_write_memio_byte(sisusb
, SISUSB_TYPE_MEM
, adr
, data
);
1282 int sisusb_readb(struct sisusb_usb_data
*sisusb
, u32 adr
, u8
*data
)
1284 return sisusb_read_memio_byte(sisusb
, SISUSB_TYPE_MEM
, adr
, data
);
1287 int sisusb_copy_memory(struct sisusb_usb_data
*sisusb
, char *src
,
1288 u32 dest
, int length
)
1292 return sisusb_write_mem_bulk(sisusb
, dest
, src
, length
,
1296 #ifdef SISUSBENDIANTEST
1297 static int sisusb_read_memory(struct sisusb_usb_data
*sisusb
, char *dest
,
1298 u32 src
, int length
)
1302 return sisusb_read_mem_bulk(sisusb
, src
, dest
, length
,
1308 #ifdef SISUSBENDIANTEST
1309 static void sisusb_testreadwrite(struct sisusb_usb_data
*sisusb
)
1311 static char srcbuffer
[] = { 0x11, 0x22, 0x33, 0x44, 0x55, 0x66, 0x77 };
1312 char destbuffer
[10];
1315 sisusb_copy_memory(sisusb
, srcbuffer
, sisusb
->vrambase
, 7);
1317 for (i
= 1; i
<= 7; i
++) {
1318 dev_dbg(&sisusb
->sisusb_dev
->dev
,
1319 "sisusb: rwtest %d bytes\n", i
);
1320 sisusb_read_memory(sisusb
, destbuffer
, sisusb
->vrambase
, i
);
1321 for (j
= 0; j
< i
; j
++) {
1322 dev_dbg(&sisusb
->sisusb_dev
->dev
,
1323 "rwtest read[%d] = %x\n",
1330 /* access pci config registers (reg numbers 0, 4, 8, etc) */
1332 static int sisusb_write_pci_config(struct sisusb_usb_data
*sisusb
,
1333 int regnum
, u32 data
)
1335 struct sisusb_packet packet
;
1338 packet
.header
= 0x008f;
1339 packet
.address
= regnum
| 0x10000;
1341 ret
= sisusb_send_packet(sisusb
, 10, &packet
);
1345 static int sisusb_read_pci_config(struct sisusb_usb_data
*sisusb
,
1346 int regnum
, u32
*data
)
1348 struct sisusb_packet packet
;
1351 packet
.header
= 0x008f;
1352 packet
.address
= (u32
)regnum
| 0x10000;
1353 ret
= sisusb_send_packet(sisusb
, 6, &packet
);
1354 *data
= packet
.data
;
1358 /* Clear video RAM */
1360 static int sisusb_clear_vram(struct sisusb_usb_data
*sisusb
,
1361 u32 address
, int length
)
1366 if (address
< sisusb
->vrambase
)
1369 if (address
>= sisusb
->vrambase
+ sisusb
->vramsize
)
1372 if (address
+ length
> sisusb
->vrambase
+ sisusb
->vramsize
)
1373 length
= sisusb
->vrambase
+ sisusb
->vramsize
- address
;
1378 /* allocate free buffer/urb and clear the buffer */
1379 i
= sisusb_alloc_outbuf(sisusb
);
1383 memset(sisusb
->obuf
[i
], 0, sisusb
->obufsize
);
1385 /* We can write a length > buffer size here. The buffer
1386 * data will simply be re-used (like a ring-buffer).
1388 ret
= sisusb_write_mem_bulk(sisusb
, address
, NULL
, length
, NULL
, i
, &j
);
1390 /* Free the buffer/urb */
1391 sisusb_free_outbuf(sisusb
, i
);
1396 /* Initialize the graphics core (return 0 on success)
1397 * This resets the graphics hardware and puts it into
1398 * a defined mode (640x480@60Hz)
1401 #define GETREG(r, d) sisusb_read_memio_byte(sisusb, SISUSB_TYPE_IO, r, d)
1402 #define SETREG(r, d) sisusb_write_memio_byte(sisusb, SISUSB_TYPE_IO, r, d)
1403 #define SETIREG(r, i, d) sisusb_setidxreg(sisusb, r, i, d)
1404 #define GETIREG(r, i, d) sisusb_getidxreg(sisusb, r, i, d)
1405 #define SETIREGOR(r, i, o) sisusb_setidxregor(sisusb, r, i, o)
1406 #define SETIREGAND(r, i, a) sisusb_setidxregand(sisusb, r, i, a)
1407 #define SETIREGANDOR(r, i, a, o) sisusb_setidxregandor(sisusb, r, i, a, o)
1408 #define READL(a, d) sisusb_read_memio_long(sisusb, SISUSB_TYPE_MEM, a, d)
1409 #define WRITEL(a, d) sisusb_write_memio_long(sisusb, SISUSB_TYPE_MEM, a, d)
1410 #define READB(a, d) sisusb_read_memio_byte(sisusb, SISUSB_TYPE_MEM, a, d)
1411 #define WRITEB(a, d) sisusb_write_memio_byte(sisusb, SISUSB_TYPE_MEM, a, d)
1413 static int sisusb_triggersr16(struct sisusb_usb_data
*sisusb
, u8 ramtype
)
1418 ret
= GETIREG(SISSR
, 0x16, &tmp8
);
1421 ret
|= SETIREG(SISSR
, 0x16, tmp8
);
1423 ret
|= SETIREG(SISSR
, 0x16, tmp8
);
1426 ret
|= SETIREG(SISSR
, 0x16, tmp8
);
1428 ret
|= SETIREG(SISSR
, 0x16, tmp8
);
1430 ret
|= SETIREG(SISSR
, 0x16, tmp8
);
1432 ret
|= SETIREG(SISSR
, 0x16, tmp8
);
1434 ret
|= SETIREG(SISSR
, 0x16, tmp8
);
1436 ret
|= SETIREG(SISSR
, 0x16, tmp8
);
1438 ret
|= SETIREG(SISSR
, 0x16, tmp8
);
1443 static int sisusb_getbuswidth(struct sisusb_usb_data
*sisusb
,
1447 u8 ramtype
, done
= 0;
1449 u32 ramptr
= SISUSB_PCI_MEMBASE
;
1451 ret
= GETIREG(SISSR
, 0x3a, &ramtype
);
1454 ret
|= SETIREG(SISSR
, 0x13, 0x00);
1457 ret
|= SETIREG(SISSR
, 0x14, 0x12);
1458 ret
|= SETIREGAND(SISSR
, 0x15, 0xef);
1460 ret
|= SETIREG(SISSR
, 0x14, 0x02);
1463 ret
|= sisusb_triggersr16(sisusb
, ramtype
);
1464 ret
|= WRITEL(ramptr
+ 0, 0x01234567);
1465 ret
|= WRITEL(ramptr
+ 4, 0x456789ab);
1466 ret
|= WRITEL(ramptr
+ 8, 0x89abcdef);
1467 ret
|= WRITEL(ramptr
+ 12, 0xcdef0123);
1468 ret
|= WRITEL(ramptr
+ 16, 0x55555555);
1469 ret
|= WRITEL(ramptr
+ 20, 0x55555555);
1470 ret
|= WRITEL(ramptr
+ 24, 0xffffffff);
1471 ret
|= WRITEL(ramptr
+ 28, 0xffffffff);
1472 ret
|= READL(ramptr
+ 0, &t0
);
1473 ret
|= READL(ramptr
+ 4, &t1
);
1474 ret
|= READL(ramptr
+ 8, &t2
);
1475 ret
|= READL(ramptr
+ 12, &t3
);
1479 *chab
= 0; *bw
= 64;
1481 if ((t3
!= 0xcdef0123) || (t2
!= 0x89abcdef)) {
1482 if ((t1
== 0x456789ab) && (t0
== 0x01234567)) {
1483 *chab
= 0; *bw
= 64;
1484 ret
|= SETIREGAND(SISSR
, 0x14, 0xfd);
1487 if ((t1
!= 0x456789ab) || (t0
!= 0x01234567)) {
1488 *chab
= 1; *bw
= 64;
1489 ret
|= SETIREGANDOR(SISSR
, 0x14, 0xfc, 0x01);
1491 ret
|= sisusb_triggersr16(sisusb
, ramtype
);
1492 ret
|= WRITEL(ramptr
+ 0, 0x89abcdef);
1493 ret
|= WRITEL(ramptr
+ 4, 0xcdef0123);
1494 ret
|= WRITEL(ramptr
+ 8, 0x55555555);
1495 ret
|= WRITEL(ramptr
+ 12, 0x55555555);
1496 ret
|= WRITEL(ramptr
+ 16, 0xaaaaaaaa);
1497 ret
|= WRITEL(ramptr
+ 20, 0xaaaaaaaa);
1498 ret
|= READL(ramptr
+ 4, &t1
);
1500 if (t1
!= 0xcdef0123) {
1502 ret
|= SETIREGOR(SISSR
, 0x15, 0x10);
1508 *chab
= 0; *bw
= 64; /* default: cha, bw = 64 */
1512 if (t1
== 0x456789ab) {
1513 if (t0
== 0x01234567) {
1514 *chab
= 0; *bw
= 64;
1518 if (t0
== 0x01234567) {
1519 *chab
= 0; *bw
= 32;
1520 ret
|= SETIREG(SISSR
, 0x14, 0x00);
1526 ret
|= SETIREG(SISSR
, 0x14, 0x03);
1527 ret
|= sisusb_triggersr16(sisusb
, ramtype
);
1529 ret
|= WRITEL(ramptr
+ 0, 0x01234567);
1530 ret
|= WRITEL(ramptr
+ 4, 0x456789ab);
1531 ret
|= WRITEL(ramptr
+ 8, 0x89abcdef);
1532 ret
|= WRITEL(ramptr
+ 12, 0xcdef0123);
1533 ret
|= WRITEL(ramptr
+ 16, 0x55555555);
1534 ret
|= WRITEL(ramptr
+ 20, 0x55555555);
1535 ret
|= WRITEL(ramptr
+ 24, 0xffffffff);
1536 ret
|= WRITEL(ramptr
+ 28, 0xffffffff);
1537 ret
|= READL(ramptr
+ 0, &t0
);
1538 ret
|= READL(ramptr
+ 4, &t1
);
1540 if (t1
== 0x456789ab) {
1541 if (t0
== 0x01234567) {
1542 *chab
= 1; *bw
= 64;
1546 if (t0
== 0x01234567) {
1547 *chab
= 1; *bw
= 32;
1548 ret
|= SETIREG(SISSR
, 0x14, 0x01);
1556 static int sisusb_verify_mclk(struct sisusb_usb_data
*sisusb
)
1559 u32 ramptr
= SISUSB_PCI_MEMBASE
;
1560 u8 tmp1
, tmp2
, i
, j
;
1562 ret
|= WRITEB(ramptr
, 0xaa);
1563 ret
|= WRITEB(ramptr
+ 16, 0x55);
1564 ret
|= READB(ramptr
, &tmp1
);
1565 ret
|= READB(ramptr
+ 16, &tmp2
);
1566 if ((tmp1
!= 0xaa) || (tmp2
!= 0x55)) {
1567 for (i
= 0, j
= 16; i
< 2; i
++, j
+= 16) {
1568 ret
|= GETIREG(SISSR
, 0x21, &tmp1
);
1569 ret
|= SETIREGAND(SISSR
, 0x21, (tmp1
& 0xfb));
1570 ret
|= SETIREGOR(SISSR
, 0x3c, 0x01); /* not on 330 */
1571 ret
|= SETIREGAND(SISSR
, 0x3c, 0xfe); /* not on 330 */
1572 ret
|= SETIREG(SISSR
, 0x21, tmp1
);
1573 ret
|= WRITEB(ramptr
+ 16 + j
, j
);
1574 ret
|= READB(ramptr
+ 16 + j
, &tmp1
);
1576 ret
|= WRITEB(ramptr
+ j
, j
);
1584 static int sisusb_set_rank(struct sisusb_usb_data
*sisusb
, int *iret
,
1585 int index
, u8 rankno
, u8 chab
, const u8 dramtype
[][5], int bw
)
1587 int ret
= 0, ranksize
;
1592 if ((rankno
== 2) && (dramtype
[index
][0] == 2))
1595 ranksize
= dramtype
[index
][3] / 2 * bw
/ 32;
1597 if ((ranksize
* rankno
) > 128)
1601 while ((ranksize
>>= 1) > 0)
1604 tmp
|= ((rankno
- 1) << 2);
1605 tmp
|= ((bw
/ 64) & 0x02);
1606 tmp
|= (chab
& 0x01);
1608 ret
= SETIREG(SISSR
, 0x14, tmp
);
1609 ret
|= sisusb_triggersr16(sisusb
, 0); /* sic! */
1616 static int sisusb_check_rbc(struct sisusb_usb_data
*sisusb
, int *iret
,
1624 for (i
= 0, j
= 0; i
< testn
; i
++) {
1625 ret
|= WRITEL(sisusb
->vrambase
+ j
, j
);
1629 for (i
= 0, j
= 0; i
< testn
; i
++) {
1630 ret
|= READL(sisusb
->vrambase
+ j
, &tmp
);
1641 static int sisusb_check_ranks(struct sisusb_usb_data
*sisusb
,
1642 int *iret
, int rankno
, int idx
, int bw
, const u8 rtype
[][5])
1644 int ret
= 0, i
, i2ret
;
1649 for (i
= rankno
; i
>= 1; i
--) {
1650 inc
= 1 << (rtype
[idx
][2] + rtype
[idx
][1] + rtype
[idx
][0] +
1652 ret
|= sisusb_check_rbc(sisusb
, &i2ret
, inc
, 2);
1657 inc
= 1 << (rtype
[idx
][2] + bw
/ 64 + 2);
1658 ret
|= sisusb_check_rbc(sisusb
, &i2ret
, inc
, 4);
1662 inc
= 1 << (10 + bw
/ 64);
1663 ret
|= sisusb_check_rbc(sisusb
, &i2ret
, inc
, 2);
1671 static int sisusb_get_sdram_size(struct sisusb_usb_data
*sisusb
, int *iret
,
1674 int ret
= 0, i2ret
= 0, i
, j
;
1675 static const u8 sdramtype
[13][5] = {
1676 { 2, 12, 9, 64, 0x35 },
1677 { 1, 13, 9, 64, 0x44 },
1678 { 2, 12, 8, 32, 0x31 },
1679 { 2, 11, 9, 32, 0x25 },
1680 { 1, 12, 9, 32, 0x34 },
1681 { 1, 13, 8, 32, 0x40 },
1682 { 2, 11, 8, 16, 0x21 },
1683 { 1, 12, 8, 16, 0x30 },
1684 { 1, 11, 9, 16, 0x24 },
1685 { 1, 11, 8, 8, 0x20 },
1686 { 2, 9, 8, 4, 0x01 },
1687 { 1, 10, 8, 4, 0x10 },
1688 { 1, 9, 8, 2, 0x00 }
1691 *iret
= 1; /* error */
1693 for (i
= 0; i
< 13; i
++) {
1694 ret
|= SETIREGANDOR(SISSR
, 0x13, 0x80, sdramtype
[i
][4]);
1695 for (j
= 2; j
> 0; j
--) {
1696 ret
|= sisusb_set_rank(sisusb
, &i2ret
, i
, j
, chab
,
1701 ret
|= sisusb_check_ranks(sisusb
, &i2ret
, j
, i
, bw
,
1704 *iret
= 0; /* ram size found */
1713 static int sisusb_setup_screen(struct sisusb_usb_data
*sisusb
,
1714 int clrall
, int drwfr
)
1718 int i
, length
, modex
, modey
, bpp
;
1720 modex
= 640; modey
= 480; bpp
= 2;
1722 address
= sisusb
->vrambase
; /* Clear video ram */
1725 length
= sisusb
->vramsize
;
1727 length
= modex
* bpp
* modey
;
1729 ret
= sisusb_clear_vram(sisusb
, address
, length
);
1731 if (!ret
&& drwfr
) {
1732 for (i
= 0; i
< modex
; i
++) {
1733 address
= sisusb
->vrambase
+ (i
* bpp
);
1734 ret
|= sisusb_write_memio_word(sisusb
, SISUSB_TYPE_MEM
,
1736 address
+= (modex
* (modey
-1) * bpp
);
1737 ret
|= sisusb_write_memio_word(sisusb
, SISUSB_TYPE_MEM
,
1740 for (i
= 0; i
< modey
; i
++) {
1741 address
= sisusb
->vrambase
+ ((i
* modex
) * bpp
);
1742 ret
|= sisusb_write_memio_word(sisusb
, SISUSB_TYPE_MEM
,
1744 address
+= ((modex
- 1) * bpp
);
1745 ret
|= sisusb_write_memio_word(sisusb
, SISUSB_TYPE_MEM
,
1753 static int sisusb_set_default_mode(struct sisusb_usb_data
*sisusb
,
1756 int ret
= 0, i
, j
, modex
, modey
, bpp
, du
;
1757 u8 sr31
, cr63
, tmp8
;
1758 static const char attrdata
[] = {
1759 0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07,
1760 0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f,
1761 0x01, 0x00, 0x00, 0x00
1763 static const char crtcrdata
[] = {
1764 0x5f, 0x4f, 0x50, 0x82, 0x54, 0x80, 0x0b, 0x3e,
1765 0x00, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
1766 0xea, 0x8c, 0xdf, 0x28, 0x40, 0xe7, 0x04, 0xa3,
1769 static const char grcdata
[] = {
1770 0x00, 0x00, 0x00, 0x00, 0x00, 0x40, 0x05, 0x0f,
1773 static const char crtcdata
[] = {
1774 0x5f, 0x4f, 0x4f, 0x83, 0x55, 0x81, 0x0b, 0x3e,
1775 0xe9, 0x8b, 0xdf, 0xe8, 0x0c, 0x00, 0x00, 0x05,
1779 modex
= 640; modey
= 480; bpp
= 2;
1781 GETIREG(SISSR
, 0x31, &sr31
);
1782 GETIREG(SISCR
, 0x63, &cr63
);
1783 SETIREGOR(SISSR
, 0x01, 0x20);
1784 SETIREG(SISCR
, 0x63, cr63
& 0xbf);
1785 SETIREGOR(SISCR
, 0x17, 0x80);
1786 SETIREGOR(SISSR
, 0x1f, 0x04);
1787 SETIREGAND(SISSR
, 0x07, 0xfb);
1788 SETIREG(SISSR
, 0x00, 0x03); /* seq */
1789 SETIREG(SISSR
, 0x01, 0x21);
1790 SETIREG(SISSR
, 0x02, 0x0f);
1791 SETIREG(SISSR
, 0x03, 0x00);
1792 SETIREG(SISSR
, 0x04, 0x0e);
1793 SETREG(SISMISCW
, 0x23); /* misc */
1794 for (i
= 0; i
<= 0x18; i
++) { /* crtc */
1795 SETIREG(SISCR
, i
, crtcrdata
[i
]);
1797 for (i
= 0; i
<= 0x13; i
++) { /* att */
1798 GETREG(SISINPSTAT
, &tmp8
);
1800 SETREG(SISAR
, attrdata
[i
]);
1802 GETREG(SISINPSTAT
, &tmp8
);
1803 SETREG(SISAR
, 0x14);
1804 SETREG(SISAR
, 0x00);
1805 GETREG(SISINPSTAT
, &tmp8
);
1806 SETREG(SISAR
, 0x20);
1807 GETREG(SISINPSTAT
, &tmp8
);
1808 for (i
= 0; i
<= 0x08; i
++) { /* grc */
1809 SETIREG(SISGR
, i
, grcdata
[i
]);
1811 SETIREGAND(SISGR
, 0x05, 0xbf);
1812 for (i
= 0x0A; i
<= 0x0E; i
++) { /* clr ext */
1813 SETIREG(SISSR
, i
, 0x00);
1815 SETIREGAND(SISSR
, 0x37, 0xfe);
1816 SETREG(SISMISCW
, 0xef); /* sync */
1817 SETIREG(SISCR
, 0x11, 0x00); /* crtc */
1818 for (j
= 0x00, i
= 0; i
<= 7; i
++, j
++)
1819 SETIREG(SISCR
, j
, crtcdata
[i
]);
1821 for (j
= 0x10; i
<= 10; i
++, j
++)
1822 SETIREG(SISCR
, j
, crtcdata
[i
]);
1824 for (j
= 0x15; i
<= 12; i
++, j
++)
1825 SETIREG(SISCR
, j
, crtcdata
[i
]);
1827 for (j
= 0x0A; i
<= 15; i
++, j
++)
1828 SETIREG(SISSR
, j
, crtcdata
[i
]);
1830 SETIREG(SISSR
, 0x0E, (crtcdata
[16] & 0xE0));
1831 SETIREGANDOR(SISCR
, 0x09, 0x5f, ((crtcdata
[16] & 0x01) << 5));
1832 SETIREG(SISCR
, 0x14, 0x4f);
1833 du
= (modex
/ 16) * (bpp
* 2); /* offset/pitch */
1834 SETIREGANDOR(SISSR
, 0x0e, 0xf0, ((du
>> 8) & 0x0f));
1835 SETIREG(SISCR
, 0x13, (du
& 0xff));
1838 SETIREG(SISSR
, 0x10, tmp8
);
1839 SETIREG(SISSR
, 0x31, 0x00); /* VCLK */
1840 SETIREG(SISSR
, 0x2b, 0x1b);
1841 SETIREG(SISSR
, 0x2c, 0xe1);
1842 SETIREG(SISSR
, 0x2d, 0x01);
1843 SETIREGAND(SISSR
, 0x3d, 0xfe); /* FIFO */
1844 SETIREG(SISSR
, 0x08, 0xae);
1845 SETIREGAND(SISSR
, 0x09, 0xf0);
1846 SETIREG(SISSR
, 0x08, 0x34);
1847 SETIREGOR(SISSR
, 0x3d, 0x01);
1848 SETIREGAND(SISSR
, 0x1f, 0x3f); /* mode regs */
1849 SETIREGANDOR(SISSR
, 0x06, 0xc0, 0x0a);
1850 SETIREG(SISCR
, 0x19, 0x00);
1851 SETIREGAND(SISCR
, 0x1a, 0xfc);
1852 SETIREGAND(SISSR
, 0x0f, 0xb7);
1853 SETIREGAND(SISSR
, 0x31, 0xfb);
1854 SETIREGANDOR(SISSR
, 0x21, 0x1f, 0xa0);
1855 SETIREGAND(SISSR
, 0x32, 0xf3);
1856 SETIREGANDOR(SISSR
, 0x07, 0xf8, 0x03);
1857 SETIREG(SISCR
, 0x52, 0x6c);
1859 SETIREG(SISCR
, 0x0d, 0x00); /* adjust frame */
1860 SETIREG(SISCR
, 0x0c, 0x00);
1861 SETIREG(SISSR
, 0x0d, 0x00);
1862 SETIREGAND(SISSR
, 0x37, 0xfe);
1864 SETIREG(SISCR
, 0x32, 0x20);
1865 SETIREGAND(SISSR
, 0x01, 0xdf); /* enable display */
1866 SETIREG(SISCR
, 0x63, (cr63
& 0xbf));
1867 SETIREG(SISSR
, 0x31, (sr31
& 0xfb));
1870 SETIREG(SISSR
, 0x20, 0xa1); /* enable engines */
1871 SETIREGOR(SISSR
, 0x1e, 0x5a);
1873 SETIREG(SISSR
, 0x26, 0x01); /* disable cmdqueue */
1874 SETIREG(SISSR
, 0x27, 0x1f);
1875 SETIREG(SISSR
, 0x26, 0x00);
1878 SETIREG(SISCR
, 0x34, 0x44); /* we just set std mode #44 */
1883 static int sisusb_init_gfxcore(struct sisusb_usb_data
*sisusb
)
1885 int ret
= 0, i
, j
, bw
, chab
, iret
, retry
= 3;
1888 static const char mclktable
[] = {
1889 0x3b, 0x22, 0x01, 143,
1890 0x3b, 0x22, 0x01, 143,
1891 0x3b, 0x22, 0x01, 143,
1892 0x3b, 0x22, 0x01, 143
1894 static const char eclktable
[] = {
1895 0x3b, 0x22, 0x01, 143,
1896 0x3b, 0x22, 0x01, 143,
1897 0x3b, 0x22, 0x01, 143,
1898 0x3b, 0x22, 0x01, 143
1900 static const char ramtypetable1
[] = {
1901 0x00, 0x04, 0x60, 0x60,
1902 0x0f, 0x0f, 0x1f, 0x1f,
1903 0xba, 0xba, 0xba, 0xba,
1904 0xa9, 0xa9, 0xac, 0xac,
1905 0xa0, 0xa0, 0xa0, 0xa8,
1906 0x00, 0x00, 0x02, 0x02,
1907 0x30, 0x30, 0x40, 0x40
1909 static const char ramtypetable2
[] = {
1910 0x77, 0x77, 0x44, 0x44,
1911 0x77, 0x77, 0x44, 0x44,
1912 0x00, 0x00, 0x00, 0x00,
1913 0x5b, 0x5b, 0xab, 0xab,
1914 0x00, 0x00, 0xf0, 0xf8
1920 ret
= GETREG(SISVGAEN
, &tmp8
);
1921 ret
|= SETREG(SISVGAEN
, (tmp8
| 0x01));
1923 /* Enable GPU access to VRAM */
1924 ret
|= GETREG(SISMISCR
, &tmp8
);
1925 ret
|= SETREG(SISMISCW
, (tmp8
| 0x01));
1930 /* Reset registers */
1931 ret
|= SETIREGAND(SISCR
, 0x5b, 0xdf);
1932 ret
|= SETIREG(SISSR
, 0x05, 0x86);
1933 ret
|= SETIREGOR(SISSR
, 0x20, 0x01);
1935 ret
|= SETREG(SISMISCW
, 0x67);
1937 for (i
= 0x06; i
<= 0x1f; i
++)
1938 ret
|= SETIREG(SISSR
, i
, 0x00);
1940 for (i
= 0x21; i
<= 0x27; i
++)
1941 ret
|= SETIREG(SISSR
, i
, 0x00);
1943 for (i
= 0x31; i
<= 0x3d; i
++)
1944 ret
|= SETIREG(SISSR
, i
, 0x00);
1946 for (i
= 0x12; i
<= 0x1b; i
++)
1947 ret
|= SETIREG(SISSR
, i
, 0x00);
1949 for (i
= 0x79; i
<= 0x7c; i
++)
1950 ret
|= SETIREG(SISCR
, i
, 0x00);
1955 ret
|= SETIREG(SISCR
, 0x63, 0x80);
1957 ret
|= GETIREG(SISSR
, 0x3a, &ramtype
);
1960 ret
|= SETIREG(SISSR
, 0x28, mclktable
[ramtype
* 4]);
1961 ret
|= SETIREG(SISSR
, 0x29, mclktable
[(ramtype
* 4) + 1]);
1962 ret
|= SETIREG(SISSR
, 0x2a, mclktable
[(ramtype
* 4) + 2]);
1964 ret
|= SETIREG(SISSR
, 0x2e, eclktable
[ramtype
* 4]);
1965 ret
|= SETIREG(SISSR
, 0x2f, eclktable
[(ramtype
* 4) + 1]);
1966 ret
|= SETIREG(SISSR
, 0x30, eclktable
[(ramtype
* 4) + 2]);
1968 ret
|= SETIREG(SISSR
, 0x07, 0x18);
1969 ret
|= SETIREG(SISSR
, 0x11, 0x0f);
1974 for (i
= 0x15, j
= 0; i
<= 0x1b; i
++, j
++) {
1975 ret
|= SETIREG(SISSR
, i
,
1976 ramtypetable1
[(j
*4) + ramtype
]);
1978 for (i
= 0x40, j
= 0; i
<= 0x44; i
++, j
++) {
1979 ret
|= SETIREG(SISCR
, i
,
1980 ramtypetable2
[(j
*4) + ramtype
]);
1983 ret
|= SETIREG(SISCR
, 0x49, 0xaa);
1985 ret
|= SETIREG(SISSR
, 0x1f, 0x00);
1986 ret
|= SETIREG(SISSR
, 0x20, 0xa0);
1987 ret
|= SETIREG(SISSR
, 0x23, 0xf6);
1988 ret
|= SETIREG(SISSR
, 0x24, 0x0d);
1989 ret
|= SETIREG(SISSR
, 0x25, 0x33);
1991 ret
|= SETIREG(SISSR
, 0x11, 0x0f);
1993 ret
|= SETIREGOR(SISPART1
, 0x2f, 0x01);
1995 ret
|= SETIREGAND(SISCAP
, 0x3f, 0xef);
2000 ret
|= SETIREG(SISPART1
, 0x00, 0x00);
2002 ret
|= GETIREG(SISSR
, 0x13, &tmp8
);
2005 ret
|= SETIREG(SISPART1
, 0x02, 0x00);
2006 ret
|= SETIREG(SISPART1
, 0x2e, 0x08);
2008 ret
|= sisusb_read_pci_config(sisusb
, 0x50, &tmp32
);
2009 tmp32
&= 0x00f00000;
2010 tmp8
= (tmp32
== 0x100000) ? 0x33 : 0x03;
2011 ret
|= SETIREG(SISSR
, 0x25, tmp8
);
2012 tmp8
= (tmp32
== 0x100000) ? 0xaa : 0x88;
2013 ret
|= SETIREG(SISCR
, 0x49, tmp8
);
2015 ret
|= SETIREG(SISSR
, 0x27, 0x1f);
2016 ret
|= SETIREG(SISSR
, 0x31, 0x00);
2017 ret
|= SETIREG(SISSR
, 0x32, 0x11);
2018 ret
|= SETIREG(SISSR
, 0x33, 0x00);
2023 ret
|= SETIREG(SISCR
, 0x83, 0x00);
2025 ret
|= sisusb_set_default_mode(sisusb
, 0);
2027 ret
|= SETIREGAND(SISSR
, 0x21, 0xdf);
2028 ret
|= SETIREGOR(SISSR
, 0x01, 0x20);
2029 ret
|= SETIREGOR(SISSR
, 0x16, 0x0f);
2031 ret
|= sisusb_triggersr16(sisusb
, ramtype
);
2033 /* Disable refresh */
2034 ret
|= SETIREGAND(SISSR
, 0x17, 0xf8);
2035 ret
|= SETIREGOR(SISSR
, 0x19, 0x03);
2037 ret
|= sisusb_getbuswidth(sisusb
, &bw
, &chab
);
2038 ret
|= sisusb_verify_mclk(sisusb
);
2041 ret
|= sisusb_get_sdram_size(sisusb
, &iret
, bw
, chab
);
2043 dev_err(&sisusb
->sisusb_dev
->dev
,
2044 "RAM size detection failed, assuming 8MB video RAM\n");
2045 ret
|= SETIREG(SISSR
, 0x14, 0x31);
2049 dev_err(&sisusb
->sisusb_dev
->dev
,
2050 "DDR RAM device found, assuming 8MB video RAM\n");
2051 ret
|= SETIREG(SISSR
, 0x14, 0x31);
2055 /* Enable refresh */
2056 ret
|= SETIREG(SISSR
, 0x16, ramtypetable1
[4 + ramtype
]);
2057 ret
|= SETIREG(SISSR
, 0x17, ramtypetable1
[8 + ramtype
]);
2058 ret
|= SETIREG(SISSR
, 0x19, ramtypetable1
[16 + ramtype
]);
2060 ret
|= SETIREGOR(SISSR
, 0x21, 0x20);
2062 ret
|= SETIREG(SISSR
, 0x22, 0xfb);
2063 ret
|= SETIREG(SISSR
, 0x21, 0xa5);
2082 static void sisusb_get_ramconfig(struct sisusb_usb_data
*sisusb
)
2084 u8 tmp8
, tmp82
, ramtype
;
2086 char *ramtypetext1
= NULL
;
2087 static const char ram_datarate
[4] = {'S', 'S', 'D', 'D'};
2088 static const char ram_dynamictype
[4] = {'D', 'G', 'D', 'G'};
2089 static const int busSDR
[4] = {64, 64, 128, 128};
2090 static const int busDDR
[4] = {32, 32, 64, 64};
2091 static const int busDDRA
[4] = {64+32, 64+32, (64+32)*2, (64+32)*2};
2093 sisusb_getidxreg(sisusb
, SISSR
, 0x14, &tmp8
);
2094 sisusb_getidxreg(sisusb
, SISSR
, 0x15, &tmp82
);
2095 sisusb_getidxreg(sisusb
, SISSR
, 0x3a, &ramtype
);
2096 sisusb
->vramsize
= (1 << ((tmp8
& 0xf0) >> 4)) * 1024 * 1024;
2098 switch ((tmp8
>> 2) & 0x03) {
2100 ramtypetext1
= "1 ch/1 r";
2104 bw
= busSDR
[(tmp8
& 0x03)];
2108 ramtypetext1
= "1 ch/2 r";
2109 sisusb
->vramsize
<<= 1;
2110 bw
= busSDR
[(tmp8
& 0x03)];
2113 ramtypetext1
= "asymmeric";
2114 sisusb
->vramsize
+= sisusb
->vramsize
/2;
2115 bw
= busDDRA
[(tmp8
& 0x03)];
2118 ramtypetext1
= "2 channel";
2119 sisusb
->vramsize
<<= 1;
2120 bw
= busDDR
[(tmp8
& 0x03)];
2124 dev_info(&sisusb
->sisusb_dev
->dev
,
2125 "%dMB %s %cDR S%cRAM, bus width %d\n",
2126 sisusb
->vramsize
>> 20, ramtypetext1
,
2127 ram_datarate
[ramtype
], ram_dynamictype
[ramtype
], bw
);
2130 static int sisusb_do_init_gfxdevice(struct sisusb_usb_data
*sisusb
)
2132 struct sisusb_packet packet
;
2137 packet
.header
= 0x001f;
2138 packet
.address
= 0x00000324;
2139 packet
.data
= 0x00000004;
2140 ret
= sisusb_send_bridge_packet(sisusb
, 10, &packet
, 0);
2142 packet
.header
= 0x001f;
2143 packet
.address
= 0x00000364;
2144 packet
.data
= 0x00000004;
2145 ret
|= sisusb_send_bridge_packet(sisusb
, 10, &packet
, 0);
2147 packet
.header
= 0x001f;
2148 packet
.address
= 0x00000384;
2149 packet
.data
= 0x00000004;
2150 ret
|= sisusb_send_bridge_packet(sisusb
, 10, &packet
, 0);
2152 packet
.header
= 0x001f;
2153 packet
.address
= 0x00000100;
2154 packet
.data
= 0x00000700;
2155 ret
|= sisusb_send_bridge_packet(sisusb
, 10, &packet
, 0);
2157 packet
.header
= 0x000f;
2158 packet
.address
= 0x00000004;
2159 ret
|= sisusb_send_bridge_packet(sisusb
, 6, &packet
, 0);
2160 packet
.data
|= 0x17;
2161 ret
|= sisusb_send_bridge_packet(sisusb
, 10, &packet
, 0);
2163 /* Init BAR 0 (VRAM) */
2164 ret
|= sisusb_read_pci_config(sisusb
, 0x10, &tmp32
);
2165 ret
|= sisusb_write_pci_config(sisusb
, 0x10, 0xfffffff0);
2166 ret
|= sisusb_read_pci_config(sisusb
, 0x10, &tmp32
);
2168 tmp32
|= SISUSB_PCI_MEMBASE
;
2169 ret
|= sisusb_write_pci_config(sisusb
, 0x10, tmp32
);
2171 /* Init BAR 1 (MMIO) */
2172 ret
|= sisusb_read_pci_config(sisusb
, 0x14, &tmp32
);
2173 ret
|= sisusb_write_pci_config(sisusb
, 0x14, 0xfffffff0);
2174 ret
|= sisusb_read_pci_config(sisusb
, 0x14, &tmp32
);
2176 tmp32
|= SISUSB_PCI_MMIOBASE
;
2177 ret
|= sisusb_write_pci_config(sisusb
, 0x14, tmp32
);
2179 /* Init BAR 2 (i/o ports) */
2180 ret
|= sisusb_read_pci_config(sisusb
, 0x18, &tmp32
);
2181 ret
|= sisusb_write_pci_config(sisusb
, 0x18, 0xfffffff0);
2182 ret
|= sisusb_read_pci_config(sisusb
, 0x18, &tmp32
);
2184 tmp32
|= SISUSB_PCI_IOPORTBASE
;
2185 ret
|= sisusb_write_pci_config(sisusb
, 0x18, tmp32
);
2187 /* Enable memory and i/o access */
2188 ret
|= sisusb_read_pci_config(sisusb
, 0x04, &tmp32
);
2190 ret
|= sisusb_write_pci_config(sisusb
, 0x04, tmp32
);
2193 /* Some further magic */
2194 packet
.header
= 0x001f;
2195 packet
.address
= 0x00000050;
2196 packet
.data
= 0x000000ff;
2197 ret
|= sisusb_send_bridge_packet(sisusb
, 10, &packet
, 0);
2203 /* Initialize the graphics device (return 0 on success)
2204 * This initializes the net2280 as well as the PCI registers
2205 * of the graphics board.
2208 static int sisusb_init_gfxdevice(struct sisusb_usb_data
*sisusb
, int initscreen
)
2210 int ret
= 0, test
= 0;
2213 if (sisusb
->devinit
== 1) {
2214 /* Read PCI BARs and see if they have been set up */
2215 ret
|= sisusb_read_pci_config(sisusb
, 0x10, &tmp32
);
2219 if ((tmp32
& 0xfffffff0) == SISUSB_PCI_MEMBASE
)
2222 ret
|= sisusb_read_pci_config(sisusb
, 0x14, &tmp32
);
2226 if ((tmp32
& 0xfffffff0) == SISUSB_PCI_MMIOBASE
)
2229 ret
|= sisusb_read_pci_config(sisusb
, 0x18, &tmp32
);
2233 if ((tmp32
& 0xfffffff0) == SISUSB_PCI_IOPORTBASE
)
2237 /* No? So reset the device */
2238 if ((sisusb
->devinit
== 0) || (test
!= 3)) {
2240 ret
|= sisusb_do_init_gfxdevice(sisusb
);
2243 sisusb
->devinit
= 1;
2247 if (sisusb
->devinit
) {
2248 /* Initialize the graphics core */
2249 if (sisusb_init_gfxcore(sisusb
) == 0) {
2250 sisusb
->gfxinit
= 1;
2251 sisusb_get_ramconfig(sisusb
);
2252 ret
|= sisusb_set_default_mode(sisusb
, 1);
2253 ret
|= sisusb_setup_screen(sisusb
, 1, initscreen
);
2261 #ifdef INCL_SISUSB_CON
2263 /* Set up default text mode:
2264 * - Set text mode (0x03)
2265 * - Upload default font
2266 * - Upload user font (if available)
2269 int sisusb_reset_text_mode(struct sisusb_usb_data
*sisusb
, int init
)
2271 int ret
= 0, slot
= sisusb
->font_slot
, i
;
2272 const struct font_desc
*myfont
;
2275 static const char bootstring
[] =
2276 "SiSUSB VGA text console, (C) 2005 Thomas Winischhofer.";
2277 static const char bootlogo
[] = "(o_ //\\ V_/_";
2279 /* sisusb->lock is down */
2281 if (!sisusb
->SiS_Pr
)
2284 sisusb
->SiS_Pr
->IOAddress
= SISUSB_PCI_IOPORTBASE
+ 0x30;
2285 sisusb
->SiS_Pr
->sisusb
= (void *)sisusb
;
2288 SiSUSBSetMode(sisusb
->SiS_Pr
, 0x03);
2290 myfont
= find_font("VGA8x16");
2294 tempbuf
= vmalloc(8192);
2298 for (i
= 0; i
< 256; i
++)
2299 memcpy(tempbuf
+ (i
* 32), myfont
->data
+ (i
* 16), 16);
2301 /* Upload default font */
2302 ret
= sisusbcon_do_font_op(sisusb
, 1, 0, tempbuf
, 8192,
2307 /* Upload user font (and reset current slot) */
2308 if (sisusb
->font_backup
) {
2309 ret
|= sisusbcon_do_font_op(sisusb
, 1, 2, sisusb
->font_backup
,
2310 8192, sisusb
->font_backup_512
, 1, NULL
,
2311 sisusb
->font_backup_height
, 0);
2313 sisusbcon_do_font_op(sisusb
, 1, 0, NULL
, 0, 0, 1,
2317 if (init
&& !sisusb
->scrbuf
) {
2319 tempbuf
= vmalloc(8192);
2323 tempbufb
= (u16
*)tempbuf
;
2325 *(tempbufb
++) = 0x0720;
2328 tempbufb
= (u16
*)tempbuf
;
2329 while (bootlogo
[i
]) {
2330 *(tempbufb
++) = 0x0700 | bootlogo
[i
++];
2336 tempbufb
= (u16
*)tempbuf
+ 6;
2337 while (bootstring
[i
])
2338 *(tempbufb
++) = 0x0700 | bootstring
[i
++];
2340 ret
|= sisusb_copy_memory(sisusb
, tempbuf
,
2341 sisusb
->vrambase
, 8192);
2347 } else if (sisusb
->scrbuf
) {
2348 ret
|= sisusb_copy_memory(sisusb
, (char *)sisusb
->scrbuf
,
2349 sisusb
->vrambase
, sisusb
->scrbuf_size
);
2352 if (sisusb
->sisusb_cursor_size_from
>= 0 &&
2353 sisusb
->sisusb_cursor_size_to
>= 0) {
2354 sisusb_setidxreg(sisusb
, SISCR
, 0x0a,
2355 sisusb
->sisusb_cursor_size_from
);
2356 sisusb_setidxregandor(sisusb
, SISCR
, 0x0b, 0xe0,
2357 sisusb
->sisusb_cursor_size_to
);
2359 sisusb_setidxreg(sisusb
, SISCR
, 0x0a, 0x2d);
2360 sisusb_setidxreg(sisusb
, SISCR
, 0x0b, 0x0e);
2361 sisusb
->sisusb_cursor_size_to
= -1;
2364 slot
= sisusb
->sisusb_cursor_loc
;
2368 sisusb
->sisusb_cursor_loc
= -1;
2369 sisusb
->bad_cursor_pos
= 1;
2371 sisusb_set_cursor(sisusb
, slot
);
2373 sisusb_setidxreg(sisusb
, SISCR
, 0x0c, (sisusb
->cur_start_addr
>> 8));
2374 sisusb_setidxreg(sisusb
, SISCR
, 0x0d, (sisusb
->cur_start_addr
& 0xff));
2376 sisusb
->textmodedestroyed
= 0;
2378 /* sisusb->lock is down */
2387 static int sisusb_open(struct inode
*inode
, struct file
*file
)
2389 struct sisusb_usb_data
*sisusb
;
2390 struct usb_interface
*interface
;
2391 int subminor
= iminor(inode
);
2393 interface
= usb_find_interface(&sisusb_driver
, subminor
);
2397 sisusb
= usb_get_intfdata(interface
);
2401 mutex_lock(&sisusb
->lock
);
2403 if (!sisusb
->present
|| !sisusb
->ready
) {
2404 mutex_unlock(&sisusb
->lock
);
2408 if (sisusb
->isopen
) {
2409 mutex_unlock(&sisusb
->lock
);
2413 if (!sisusb
->devinit
) {
2414 if (sisusb
->sisusb_dev
->speed
== USB_SPEED_HIGH
||
2415 sisusb
->sisusb_dev
->speed
>= USB_SPEED_SUPER
) {
2416 if (sisusb_init_gfxdevice(sisusb
, 0)) {
2417 mutex_unlock(&sisusb
->lock
);
2418 dev_err(&sisusb
->sisusb_dev
->dev
,
2419 "Failed to initialize device\n");
2423 mutex_unlock(&sisusb
->lock
);
2424 dev_err(&sisusb
->sisusb_dev
->dev
,
2425 "Device not attached to USB 2.0 hub\n");
2430 /* Increment usage count for our sisusb */
2431 kref_get(&sisusb
->kref
);
2435 file
->private_data
= sisusb
;
2437 mutex_unlock(&sisusb
->lock
);
2442 void sisusb_delete(struct kref
*kref
)
2444 struct sisusb_usb_data
*sisusb
= to_sisusb_dev(kref
);
2449 usb_put_dev(sisusb
->sisusb_dev
);
2451 sisusb
->sisusb_dev
= NULL
;
2452 sisusb_free_buffers(sisusb
);
2453 sisusb_free_urbs(sisusb
);
2454 #ifdef INCL_SISUSB_CON
2455 kfree(sisusb
->SiS_Pr
);
2460 static int sisusb_release(struct inode
*inode
, struct file
*file
)
2462 struct sisusb_usb_data
*sisusb
;
2464 sisusb
= file
->private_data
;
2468 mutex_lock(&sisusb
->lock
);
2470 if (sisusb
->present
) {
2471 /* Wait for all URBs to finish if device still present */
2472 if (!sisusb_wait_all_out_complete(sisusb
))
2473 sisusb_kill_all_busy(sisusb
);
2477 file
->private_data
= NULL
;
2479 mutex_unlock(&sisusb
->lock
);
2481 /* decrement the usage count on our device */
2482 kref_put(&sisusb
->kref
, sisusb_delete
);
2487 static ssize_t
sisusb_read(struct file
*file
, char __user
*buffer
,
2488 size_t count
, loff_t
*ppos
)
2490 struct sisusb_usb_data
*sisusb
;
2491 ssize_t bytes_read
= 0;
2497 sisusb
= file
->private_data
;
2501 mutex_lock(&sisusb
->lock
);
2504 if (!sisusb
->present
|| !sisusb
->ready
|| !sisusb
->sisusb_dev
) {
2505 mutex_unlock(&sisusb
->lock
);
2509 if ((*ppos
) >= SISUSB_PCI_PSEUDO_IOPORTBASE
&&
2510 (*ppos
) < SISUSB_PCI_PSEUDO_IOPORTBASE
+ 128) {
2512 address
= (*ppos
) - SISUSB_PCI_PSEUDO_IOPORTBASE
+
2513 SISUSB_PCI_IOPORTBASE
;
2516 * Byte, word and long(32) can be read. As this
2517 * emulates inX instructions, the data returned is
2518 * in machine-endianness.
2522 if (sisusb_read_memio_byte(sisusb
, SISUSB_TYPE_IO
,
2525 else if (put_user(buf8
, (u8 __user
*)buffer
))
2533 if (sisusb_read_memio_word(sisusb
, SISUSB_TYPE_IO
,
2536 else if (put_user(buf16
, (u16 __user
*)buffer
))
2544 if (sisusb_read_memio_long(sisusb
, SISUSB_TYPE_IO
,
2547 else if (put_user(buf32
, (u32 __user
*)buffer
))
2559 } else if ((*ppos
) >= SISUSB_PCI_PSEUDO_MEMBASE
&& (*ppos
) <
2560 SISUSB_PCI_PSEUDO_MEMBASE
+ sisusb
->vramsize
) {
2562 address
= (*ppos
) - SISUSB_PCI_PSEUDO_MEMBASE
+
2566 * Remember: Data delivered is never endian-corrected
2568 errno
= sisusb_read_mem_bulk(sisusb
, address
,
2569 NULL
, count
, buffer
, &bytes_read
);
2574 } else if ((*ppos
) >= SISUSB_PCI_PSEUDO_MMIOBASE
&&
2575 (*ppos
) < SISUSB_PCI_PSEUDO_MMIOBASE
+
2576 SISUSB_PCI_MMIOSIZE
) {
2578 address
= (*ppos
) - SISUSB_PCI_PSEUDO_MMIOBASE
+
2579 SISUSB_PCI_MMIOBASE
;
2582 * Remember: Data delivered is never endian-corrected
2584 errno
= sisusb_read_mem_bulk(sisusb
, address
,
2585 NULL
, count
, buffer
, &bytes_read
);
2590 } else if ((*ppos
) >= SISUSB_PCI_PSEUDO_PCIBASE
&&
2591 (*ppos
) <= SISUSB_PCI_PSEUDO_PCIBASE
+ 0x5c) {
2594 mutex_unlock(&sisusb
->lock
);
2598 address
= (*ppos
) - SISUSB_PCI_PSEUDO_PCIBASE
;
2600 /* Read PCI config register
2601 * Return value delivered in machine endianness.
2603 if (sisusb_read_pci_config(sisusb
, address
, &buf32
))
2605 else if (put_user(buf32
, (u32 __user
*)buffer
))
2616 (*ppos
) += bytes_read
;
2618 mutex_unlock(&sisusb
->lock
);
2620 return errno
? errno
: bytes_read
;
2623 static ssize_t
sisusb_write(struct file
*file
, const char __user
*buffer
,
2624 size_t count
, loff_t
*ppos
)
2626 struct sisusb_usb_data
*sisusb
;
2628 ssize_t bytes_written
= 0;
2633 sisusb
= file
->private_data
;
2637 mutex_lock(&sisusb
->lock
);
2640 if (!sisusb
->present
|| !sisusb
->ready
|| !sisusb
->sisusb_dev
) {
2641 mutex_unlock(&sisusb
->lock
);
2645 if ((*ppos
) >= SISUSB_PCI_PSEUDO_IOPORTBASE
&&
2646 (*ppos
) < SISUSB_PCI_PSEUDO_IOPORTBASE
+ 128) {
2648 address
= (*ppos
) - SISUSB_PCI_PSEUDO_IOPORTBASE
+
2649 SISUSB_PCI_IOPORTBASE
;
2652 * Byte, word and long(32) can be written. As this
2653 * emulates outX instructions, the data is expected
2654 * in machine-endianness.
2658 if (get_user(buf8
, (u8 __user
*)buffer
))
2660 else if (sisusb_write_memio_byte(sisusb
,
2661 SISUSB_TYPE_IO
, address
, buf8
))
2669 if (get_user(buf16
, (u16 __user
*)buffer
))
2671 else if (sisusb_write_memio_word(sisusb
,
2672 SISUSB_TYPE_IO
, address
, buf16
))
2680 if (get_user(buf32
, (u32 __user
*)buffer
))
2682 else if (sisusb_write_memio_long(sisusb
,
2683 SISUSB_TYPE_IO
, address
, buf32
))
2694 } else if ((*ppos
) >= SISUSB_PCI_PSEUDO_MEMBASE
&&
2695 (*ppos
) < SISUSB_PCI_PSEUDO_MEMBASE
+
2698 address
= (*ppos
) - SISUSB_PCI_PSEUDO_MEMBASE
+
2702 * Buffer is copied 1:1, therefore, on big-endian
2703 * machines, the data must be swapped by userland
2704 * in advance (if applicable; no swapping in 8bpp
2705 * mode or if YUV data is being transferred).
2707 errno
= sisusb_write_mem_bulk(sisusb
, address
, NULL
,
2708 count
, buffer
, 0, &bytes_written
);
2711 errno
= bytes_written
;
2713 } else if ((*ppos
) >= SISUSB_PCI_PSEUDO_MMIOBASE
&&
2714 (*ppos
) < SISUSB_PCI_PSEUDO_MMIOBASE
+
2715 SISUSB_PCI_MMIOSIZE
) {
2717 address
= (*ppos
) - SISUSB_PCI_PSEUDO_MMIOBASE
+
2718 SISUSB_PCI_MMIOBASE
;
2721 * Buffer is copied 1:1, therefore, on big-endian
2722 * machines, the data must be swapped by userland
2725 errno
= sisusb_write_mem_bulk(sisusb
, address
, NULL
,
2726 count
, buffer
, 0, &bytes_written
);
2729 errno
= bytes_written
;
2731 } else if ((*ppos
) >= SISUSB_PCI_PSEUDO_PCIBASE
&&
2732 (*ppos
) <= SISUSB_PCI_PSEUDO_PCIBASE
+
2733 SISUSB_PCI_PCONFSIZE
) {
2736 mutex_unlock(&sisusb
->lock
);
2740 address
= (*ppos
) - SISUSB_PCI_PSEUDO_PCIBASE
;
2742 /* Write PCI config register.
2743 * Given value expected in machine endianness.
2745 if (get_user(buf32
, (u32 __user
*)buffer
))
2747 else if (sisusb_write_pci_config(sisusb
, address
, buf32
))
2760 (*ppos
) += bytes_written
;
2762 mutex_unlock(&sisusb
->lock
);
2764 return errno
? errno
: bytes_written
;
2767 static loff_t
sisusb_lseek(struct file
*file
, loff_t offset
, int orig
)
2769 struct sisusb_usb_data
*sisusb
;
2772 sisusb
= file
->private_data
;
2776 mutex_lock(&sisusb
->lock
);
2779 if (!sisusb
->present
|| !sisusb
->ready
|| !sisusb
->sisusb_dev
) {
2780 mutex_unlock(&sisusb
->lock
);
2784 ret
= no_seek_end_llseek(file
, offset
, orig
);
2786 mutex_unlock(&sisusb
->lock
);
2790 static int sisusb_handle_command(struct sisusb_usb_data
*sisusb
,
2791 struct sisusb_command
*y
, unsigned long arg
)
2793 int retval
, port
, length
;
2796 /* All our commands require the device
2797 * to be initialized.
2799 if (!sisusb
->devinit
)
2803 SISUSB_PCI_PSEUDO_IOPORTBASE
+
2804 SISUSB_PCI_IOPORTBASE
;
2806 switch (y
->operation
) {
2808 retval
= sisusb_getidxreg(sisusb
, port
, y
->data0
, &y
->data1
);
2810 if (copy_to_user((void __user
*)arg
, y
, sizeof(*y
)))
2816 retval
= sisusb_setidxreg(sisusb
, port
, y
->data0
, y
->data1
);
2820 retval
= sisusb_setidxregor(sisusb
, port
, y
->data0
, y
->data1
);
2824 retval
= sisusb_setidxregand(sisusb
, port
, y
->data0
, y
->data1
);
2827 case SUCMD_SETANDOR
:
2828 retval
= sisusb_setidxregandor(sisusb
, port
, y
->data0
,
2829 y
->data1
, y
->data2
);
2833 retval
= sisusb_setidxregmask(sisusb
, port
, y
->data0
,
2834 y
->data1
, y
->data2
);
2838 /* Gfx core must be initialized */
2839 if (!sisusb
->gfxinit
)
2842 length
= (y
->data0
<< 16) | (y
->data1
<< 8) | y
->data2
;
2843 address
= y
->data3
- SISUSB_PCI_PSEUDO_MEMBASE
+
2845 retval
= sisusb_clear_vram(sisusb
, address
, length
);
2848 case SUCMD_HANDLETEXTMODE
:
2850 #ifdef INCL_SISUSB_CON
2851 /* Gfx core must be initialized, SiS_Pr must exist */
2852 if (!sisusb
->gfxinit
|| !sisusb
->SiS_Pr
)
2857 retval
= sisusb_reset_text_mode(sisusb
, 0);
2860 sisusb
->textmodedestroyed
= 1;
2866 #ifdef INCL_SISUSB_CON
2868 /* Gfx core must be initialized, SiS_Pr must exist */
2869 if (!sisusb
->gfxinit
|| !sisusb
->SiS_Pr
)
2874 sisusb
->SiS_Pr
->IOAddress
= SISUSB_PCI_IOPORTBASE
+ 0x30;
2875 sisusb
->SiS_Pr
->sisusb
= (void *)sisusb
;
2877 if (SiSUSBSetMode(sisusb
->SiS_Pr
, y
->data3
))
2882 case SUCMD_SETVESAMODE
:
2883 /* Gfx core must be initialized, SiS_Pr must exist */
2884 if (!sisusb
->gfxinit
|| !sisusb
->SiS_Pr
)
2889 sisusb
->SiS_Pr
->IOAddress
= SISUSB_PCI_IOPORTBASE
+ 0x30;
2890 sisusb
->SiS_Pr
->sisusb
= (void *)sisusb
;
2892 if (SiSUSBSetVESAMode(sisusb
->SiS_Pr
, y
->data3
))
2908 static long sisusb_ioctl(struct file
*file
, unsigned int cmd
, unsigned long arg
)
2910 struct sisusb_usb_data
*sisusb
;
2911 struct sisusb_info x
;
2912 struct sisusb_command y
;
2914 u32 __user
*argp
= (u32 __user
*)arg
;
2916 sisusb
= file
->private_data
;
2920 mutex_lock(&sisusb
->lock
);
2923 if (!sisusb
->present
|| !sisusb
->ready
|| !sisusb
->sisusb_dev
) {
2929 case SISUSB_GET_CONFIG_SIZE
:
2931 if (put_user(sizeof(x
), argp
))
2936 case SISUSB_GET_CONFIG
:
2938 x
.sisusb_id
= SISUSB_ID
;
2939 x
.sisusb_version
= SISUSB_VERSION
;
2940 x
.sisusb_revision
= SISUSB_REVISION
;
2941 x
.sisusb_patchlevel
= SISUSB_PATCHLEVEL
;
2942 x
.sisusb_gfxinit
= sisusb
->gfxinit
;
2943 x
.sisusb_vrambase
= SISUSB_PCI_PSEUDO_MEMBASE
;
2944 x
.sisusb_mmiobase
= SISUSB_PCI_PSEUDO_MMIOBASE
;
2945 x
.sisusb_iobase
= SISUSB_PCI_PSEUDO_IOPORTBASE
;
2946 x
.sisusb_pcibase
= SISUSB_PCI_PSEUDO_PCIBASE
;
2947 x
.sisusb_vramsize
= sisusb
->vramsize
;
2948 x
.sisusb_minor
= sisusb
->minor
;
2949 x
.sisusb_fbdevactive
= 0;
2950 #ifdef INCL_SISUSB_CON
2951 x
.sisusb_conactive
= sisusb
->haveconsole
? 1 : 0;
2953 x
.sisusb_conactive
= 0;
2955 memset(x
.sisusb_reserved
, 0, sizeof(x
.sisusb_reserved
));
2957 if (copy_to_user((void __user
*)arg
, &x
, sizeof(x
)))
2962 case SISUSB_COMMAND
:
2964 if (copy_from_user(&y
, (void __user
*)arg
, sizeof(y
)))
2967 retval
= sisusb_handle_command(sisusb
, &y
, arg
);
2977 mutex_unlock(&sisusb
->lock
);
2981 #ifdef SISUSB_NEW_CONFIG_COMPAT
2982 static long sisusb_compat_ioctl(struct file
*f
, unsigned int cmd
,
2988 case SISUSB_GET_CONFIG_SIZE
:
2989 case SISUSB_GET_CONFIG
:
2990 case SISUSB_COMMAND
:
2991 retval
= sisusb_ioctl(f
, cmd
, arg
);
2995 return -ENOIOCTLCMD
;
3000 static const struct file_operations usb_sisusb_fops
= {
3001 .owner
= THIS_MODULE
,
3002 .open
= sisusb_open
,
3003 .release
= sisusb_release
,
3004 .read
= sisusb_read
,
3005 .write
= sisusb_write
,
3006 .llseek
= sisusb_lseek
,
3007 #ifdef SISUSB_NEW_CONFIG_COMPAT
3008 .compat_ioctl
= sisusb_compat_ioctl
,
3010 .unlocked_ioctl
= sisusb_ioctl
3013 static struct usb_class_driver usb_sisusb_class
= {
3014 .name
= "sisusbvga%d",
3015 .fops
= &usb_sisusb_fops
,
3016 .minor_base
= SISUSB_MINOR
3019 static int sisusb_probe(struct usb_interface
*intf
,
3020 const struct usb_device_id
*id
)
3022 struct usb_device
*dev
= interface_to_usbdev(intf
);
3023 struct sisusb_usb_data
*sisusb
;
3026 dev_info(&dev
->dev
, "USB2VGA dongle found at address %d\n",
3029 /* Allocate memory for our private */
3030 sisusb
= kzalloc(sizeof(*sisusb
), GFP_KERNEL
);
3034 kref_init(&sisusb
->kref
);
3036 mutex_init(&(sisusb
->lock
));
3038 /* Register device */
3039 retval
= usb_register_dev(intf
, &usb_sisusb_class
);
3041 dev_err(&sisusb
->sisusb_dev
->dev
,
3042 "Failed to get a minor for device %d\n",
3048 sisusb
->sisusb_dev
= dev
;
3049 sisusb
->minor
= intf
->minor
;
3050 sisusb
->vrambase
= SISUSB_PCI_MEMBASE
;
3051 sisusb
->mmiobase
= SISUSB_PCI_MMIOBASE
;
3052 sisusb
->mmiosize
= SISUSB_PCI_MMIOSIZE
;
3053 sisusb
->ioportbase
= SISUSB_PCI_IOPORTBASE
;
3054 /* Everything else is zero */
3056 /* Allocate buffers */
3057 sisusb
->ibufsize
= SISUSB_IBUF_SIZE
;
3058 sisusb
->ibuf
= kmalloc(SISUSB_IBUF_SIZE
, GFP_KERNEL
);
3059 if (!sisusb
->ibuf
) {
3064 sisusb
->numobufs
= 0;
3065 sisusb
->obufsize
= SISUSB_OBUF_SIZE
;
3066 for (i
= 0; i
< NUMOBUFS
; i
++) {
3067 sisusb
->obuf
[i
] = kmalloc(SISUSB_OBUF_SIZE
, GFP_KERNEL
);
3068 if (!sisusb
->obuf
[i
]) {
3079 sisusb
->sisurbin
= usb_alloc_urb(0, GFP_KERNEL
);
3080 if (!sisusb
->sisurbin
) {
3084 sisusb
->completein
= 1;
3086 for (i
= 0; i
< sisusb
->numobufs
; i
++) {
3087 sisusb
->sisurbout
[i
] = usb_alloc_urb(0, GFP_KERNEL
);
3088 if (!sisusb
->sisurbout
[i
]) {
3092 sisusb
->urbout_context
[i
].sisusb
= (void *)sisusb
;
3093 sisusb
->urbout_context
[i
].urbindex
= i
;
3094 sisusb
->urbstatus
[i
] = 0;
3097 dev_info(&sisusb
->sisusb_dev
->dev
, "Allocated %d output buffers\n",
3100 #ifdef INCL_SISUSB_CON
3101 /* Allocate our SiS_Pr */
3102 sisusb
->SiS_Pr
= kmalloc(sizeof(struct SiS_Private
), GFP_KERNEL
);
3103 if (!sisusb
->SiS_Pr
) {
3109 /* Do remaining init stuff */
3111 init_waitqueue_head(&sisusb
->wait_q
);
3113 usb_set_intfdata(intf
, sisusb
);
3115 usb_get_dev(sisusb
->sisusb_dev
);
3117 sisusb
->present
= 1;
3119 if (dev
->speed
== USB_SPEED_HIGH
|| dev
->speed
>= USB_SPEED_SUPER
) {
3121 #ifdef INCL_SISUSB_CON
3122 if (sisusb_first_vc
> 0 && sisusb_last_vc
> 0 &&
3123 sisusb_first_vc
<= sisusb_last_vc
&&
3124 sisusb_last_vc
<= MAX_NR_CONSOLES
)
3127 if (sisusb_init_gfxdevice(sisusb
, initscreen
))
3128 dev_err(&sisusb
->sisusb_dev
->dev
,
3129 "Failed to early initialize device\n");
3132 dev_info(&sisusb
->sisusb_dev
->dev
,
3133 "Not attached to USB 2.0 hub, deferring init\n");
3137 #ifdef SISUSBENDIANTEST
3138 dev_dbg(&sisusb
->sisusb_dev
->dev
, "*** RWTEST ***\n");
3139 sisusb_testreadwrite(sisusb
);
3140 dev_dbg(&sisusb
->sisusb_dev
->dev
, "*** RWTEST END ***\n");
3143 #ifdef INCL_SISUSB_CON
3144 sisusb_console_init(sisusb
, sisusb_first_vc
, sisusb_last_vc
);
3150 sisusb_free_urbs(sisusb
);
3152 sisusb_free_buffers(sisusb
);
3154 usb_deregister_dev(intf
, &usb_sisusb_class
);
3160 static void sisusb_disconnect(struct usb_interface
*intf
)
3162 struct sisusb_usb_data
*sisusb
;
3164 /* This should *not* happen */
3165 sisusb
= usb_get_intfdata(intf
);
3169 #ifdef INCL_SISUSB_CON
3170 sisusb_console_exit(sisusb
);
3173 usb_deregister_dev(intf
, &usb_sisusb_class
);
3175 mutex_lock(&sisusb
->lock
);
3177 /* Wait for all URBs to complete and kill them in case (MUST do) */
3178 if (!sisusb_wait_all_out_complete(sisusb
))
3179 sisusb_kill_all_busy(sisusb
);
3181 usb_set_intfdata(intf
, NULL
);
3183 sisusb
->present
= 0;
3186 mutex_unlock(&sisusb
->lock
);
3188 /* decrement our usage count */
3189 kref_put(&sisusb
->kref
, sisusb_delete
);
3192 static const struct usb_device_id sisusb_table
[] = {
3193 { USB_DEVICE(0x0711, 0x0550) },
3194 { USB_DEVICE(0x0711, 0x0900) },
3195 { USB_DEVICE(0x0711, 0x0901) },
3196 { USB_DEVICE(0x0711, 0x0902) },
3197 { USB_DEVICE(0x0711, 0x0903) },
3198 { USB_DEVICE(0x0711, 0x0918) },
3199 { USB_DEVICE(0x0711, 0x0920) },
3200 { USB_DEVICE(0x0711, 0x0950) },
3201 { USB_DEVICE(0x0711, 0x5200) },
3202 { USB_DEVICE(0x182d, 0x021c) },
3203 { USB_DEVICE(0x182d, 0x0269) },
3207 MODULE_DEVICE_TABLE(usb
, sisusb_table
);
3209 static struct usb_driver sisusb_driver
= {
3211 .probe
= sisusb_probe
,
3212 .disconnect
= sisusb_disconnect
,
3213 .id_table
= sisusb_table
,
3216 static int __init
usb_sisusb_init(void)
3219 #ifdef INCL_SISUSB_CON
3220 sisusb_init_concode();
3223 return usb_register(&sisusb_driver
);
3226 static void __exit
usb_sisusb_exit(void)
3228 usb_deregister(&sisusb_driver
);
3231 module_init(usb_sisusb_init
);
3232 module_exit(usb_sisusb_exit
);
3234 MODULE_AUTHOR("Thomas Winischhofer <thomas@winischhofer.net>");
3235 MODULE_DESCRIPTION("sisusbvga - Driver for Net2280/SiS315-based USB2VGA dongles");
3236 MODULE_LICENSE("GPL");