xref: /freebsd/share/man/man4/urio.4 (revision 77a0943ded95b9e6438f7db70c4a28e4d93946d4)
1.\" Copyright (c) 2000 Dirk-Willem van Gulik
2.\" 	<dirkx@webweaving.org>. All rights reserved.
3.\"
4.\" Redistribution and use in source and binary forms, with or without
5.\" modification, are permitted provided that the following conditions
6.\" are met:
7.\" 1. Redistributions of source code must retain the above copyright
8.\"    notice, this list of conditions and the following disclaimer.
9.\" 2. Redistributions in binary form must reproduce the above copyright
10.\"    notice, this list of conditions and the following disclaimer in the
11.\"    documentation and/or other materials provided with the distribution.
12.\" 3. All advertising materials mentioning features or use of this software
13.\"    must display the following acknowledgement:
14.\"	This product includes software developed by Bill Paul.
15.\" 4. Neither the name of the author nor the names of any co-contributors
16.\"    may be used to endorse or promote products derived from this software
17.\"   without specific prior written permission.
18.\"
19.\" THIS SOFTWARE IS PROVIDED BY NICK HIBMA AND CONTRIBUTORS ``AS IS'' AND
20.\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
21.\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
22.\" ARE DISCLAIMED.  IN NO EVENT SHALL NICK HIBMA OR THE VOICES IN HIS HEAD
23.\" BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
24.\" CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
25.\" SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
26.\" INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
27.\" CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
28.\" ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
29.\" THE POSSIBILITY OF SUCH DAMAGE.
30.\"
31.\"	$FreeBSD$
32.\"
33.Dd March 5, 2000
34.Dt URIO 4
35.Os FreeBSD
36.Sh NAME
37.Nm urio
38.Nd USB driver for the Rio500 MP3 player
39.Sh SYNOPSIS
40.Cd "device urio0"
41.Sh DESCRIPTION
42The
43.Nm
44driver provides support for the Rio500 MP3 player from Diamond MultiMedia
45which attaches to the USB port.
46The
47.Nm
48device must be configured in the kernel, along with
49.Em usb
50and one of the
51.Em uhci
52or
53.Em ohci
54controllers.
55.Pp
56Subsequently, the
57.Pa /dev/urio0
58device can be used by the Rio500 userland applications.
59.Sh FILES
60.Bl -tag -width /dev/ums0 -compact
61.It Pa /dev/urio0
62blocking device node
63.Sh EXAMPLES
64The following line in the kernel configuration file adds the
65.Nm
66driver to the kernel:
67.Dl device urio
68.Pp
69The following commands create the device node in the
70.Pa /dev
71directory:
72.Dl cd /dev
73.Dl sh MAKEDEV urio0
74.Pp
75Finally, to download a song over the
76.Tn USB
77connection into the Rio500 using the
78.Xr rio_add_song 1
79utility (see the
80.Sx SEE ALSO
81section):
82.Dl rio_add_song /usr/local/MP3/TraceyChapman/02-Fast-Car.mp3
83.Sh SEE ALSO
84.Xr ohci 4 ,
85.Xr uhci 4 ,
86.Xr usb 4
87.Rs
88.%T The Rio 500 SourceForge Project Web Page
89.%O http://rio500.sourceforge.net/
90.Re
91.Pp
92The Rio500 tools from SourceForge
93are the actual userland tools used to download,
94format or rename songs on players.
95When compiling these tools,
96the following pre-build configuration command will ensure that
97.Pa rio_usb.h
98is available in the include path
99and that the device used is
100.Pa /dev/urio0 :
101.Bd -literal -offset indent
102CFLAGS="-I/usr/include/dev/usb" ./configure \\
103    --with-devicepath='/dev' --with-deviceentry='urio0'
104.Ed
105.\".Sh HISTORY
106.Sh AUTHORS
107.An -nosplit
108The
109.Nm
110driver was written by
111.An Iwasa Kazmi Aq kzmi@ca2.so-net.ne.jp
112for
113.Fx .
114.Pp
115This manual page was written by
116.An Dirk-Willem van Gulik Aq dirkx@webweaving.org .
117