From: Steve Longerbeam <stevel@mvista.com>
To: baitisj@evolution.com
Cc: Pete Popov <ppopov@mvista.com>,
Linux MIPS mailing list <linux-mips@linux-mips.org>
Subject: Re: USB OHCI device port on Alchemy
Date: Thu, 08 May 2003 14:21:28 -0700 [thread overview]
Message-ID: <3EBACA58.3050303@mvista.com> (raw)
In-Reply-To: 1052415629.558.91.camel@zeus.mvista.com
[-- Attachment #1.1: Type: text/plain, Size: 981 bytes --]
Pete Popov wrote:
>On Wed, 2003-05-07 at 20:31, Jeff Baitis wrote:
>
>
>>Out of curiousity:
>>
>>Has anyone played with the AU1X00 USB device port yet? If not, what would you
>>guys suggest that the AU1X00 appear as? USB over Ethernet? Or maybe a simple
>>dummy device that will perform bulk transfers?
>>
>>
>
>Steve wrote it, tried, knows all about it :)
>
Hi Jeff,
Ok, so there's more interest in this driver than I expected, so I guess
it's high time I write some docs for it under Documentation/mips
somewhere.
In the meantime, attached are some instructions on how to use the TTY
function driver.
In answer to your questions, there is no USB over ethernet function
driver. But I did write a "raw" function driver that simply presents
a bulk IN and bulk OUT endpoint for raw bulk data transfer. I will
write up some instructions on that as well.
Steve
--
Steve Longerbeam
MontaVista Software, Inc.
office:408-328-9008, fax:408-328-3875
http://www.mvista.com
[-- Attachment #1.2: Type: text/html, Size: 1492 bytes --]
[-- Attachment #2: au1x00_usbdev.txt --]
[-- Type: text/plain, Size: 2949 bytes --]
Instructions for using the Au1x00 USB TTY Function driver
---------------------------------------------------------
Note: These instructions assume the use of a Pb1500 reference board
(Au1500) but should work with the Pb1000, Pb1100, and Db1x00
boards as well (but is untested on these boards).
Follow these steps:
1. cp arch/mips/configs/defconfig-pb1500 .config
make oldconfig
make menuconfig
(enable 'Au1000 USB TTY Device support' under char devices as built-in).
make dep; make
mips_fp_le-objcopy -O srec vmlinux /tftpboot/vmlinux.s3
2. Now you have a kernel with the Au1x00 USB device TTY driver
support built-in. Boot a Pb1500 with this kernel.
3. Now you have a choice, you can use a PC as the USB host,
or a Pb1x00. I have used both a PC and two Pb1500s side-by-side,
one as the USB host and one as the TTY device. Remember that
if you use another Pb1000/Pb1500 as the USB host, you'll need
seperate NFS servers to provide two completely seperate root
filesystems.
4. On the USB host, enable usbserial generic support as a module. Under
"USB support -->", go to "USB Serial Converter support --->" and
enable "USB Serial Converter support" as a module, then enable
"USB Generic Serial Driver".
5. Install the usbserial module on the host:
insmod usbserial vendor=0x6d04 product=0x0bc0
6. Make sure you've got the usb TTY nodes on your host:
mknod /dev/ttyUSB0 c 188 0
mknod /dev/ttyUSB1 c 188 1
7. On the USB device, make the usb TTY device nodes:
mknod /dev/ttyUSBdev0 c 189 0
mknod /dev/ttyUSBdev1 c 189 1
8. Now you should be ready to connect host to device. You can
tail -f /var/log/kern.log on both sides to watch the progress of
communication on the control endpoint 0. When the device is
configured, you should see something about "usbserial attached"
on the host, and:
Jan 1 00:01:31 10 kernel: usbdev.c: do_setup: req 9 SET_CONFIGURATION
Jan 1 00:01:31 10 kernel: usbdev.c: set config, config=1
on the device.
9. Now you can try actually communicating over the TTY ports. Try
running minicom on both sides, the host minicom opens
/dev/ttyUSB0, the device minicom opens /dev/ttyUSBdev0. Type
into either minicom window and you should see the characters
appear on the other side.
10. Try starting a getty login process on either side. On the host:
getty ttyUSB0 &
and on the device:
getty ttyUSBdev0 &
You should then see a login prompt in minicom on the opposite
sides.
11. Try echoing strings to the other side:
echo hello world > /dev/ttyUSB0 # hello world should appear in minicom on device-side
echo hello world > /dev/ttyUSBdev0 # hello world should appear in minicom on host-side
12. You can try the above minicom/getty/echo tests on port 1, but last
I checked, endpoints 4 and 5 (which make up port 1) were still
having problems.
next prev parent reply other threads:[~2003-05-08 21:21 UTC|newest]
Thread overview: 9+ messages / expand[flat|nested] mbox.gz Atom feed top
2003-05-08 3:31 USB OHCI device port on Alchemy Jeff Baitis
2003-05-08 6:53 ` Yasushi SHOJI
2003-05-08 21:14 ` Jeff Baitis
2003-05-08 21:31 ` Steve Longerbeam
2003-05-08 23:41 ` Jeff Baitis
2003-05-08 23:43 ` Pete Popov
2003-05-08 17:40 ` Pete Popov
2003-05-08 21:21 ` Steve Longerbeam [this message]
2003-05-09 13:37 ` Brad Parker
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=3EBACA58.3050303@mvista.com \
--to=stevel@mvista.com \
--cc=baitisj@evolution.com \
--cc=linux-mips@linux-mips.org \
--cc=ppopov@mvista.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.