Add a pnpbios(4) manpage.
[dragonfly.git] / share / man / man4 / man4.i386 / pnpbios.4
1 .\"
2 .\" Copyright (c) 2001
3 .\" Kazutaka YOKOTA <yokota@zodiac.mech.utsunomiya-u.ac.jp>
4 .\" All rights reserved.
5 .\"
6 .\" Redistribution and use in source and binary forms, with or without
7 .\" modification, are permitted provided that the following conditions
8 .\" are met:
9 .\" 1. Redistributions of source code must retain the above copyright
10 .\"    notice, this list of conditions and the following disclaimer as
11 .\"    the first lines of this file unmodified.
12 .\" 2. Redistributions in binary form must reproduce the above copyright
13 .\"    notice, this list of conditions and the following disclaimer in the
14 .\"    documentation and/or other materials provided with the distribution.
15 .\"
16 .\" THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
17 .\" IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
18 .\" OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
19 .\" IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
20 .\" INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
21 .\" NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
22 .\" DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
23 .\" THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
24 .\" (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
25 .\" THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
26 .\"
27 .\" $FreeBSD: src/share/man/man4/man4.i386/pnpbios.4,v 1.3 2005/07/15 17:35:26 hrs Exp $
28 .\" $DragonFly: src/share/man/man4/man4.i386/pnpbios.4,v 1.1 2008/06/22 20:00:23 swildner Exp $
29 .\"
30 .Dd June 22, 2008
31 .Dt PNPBIOS 4 i386
32 .Os
33 .Sh NAME
34 .Nm pnpbios
35 .Nd support for embedded devices on the motherboard
36 .Sh SYNOPSIS
37 .Cd device pnpbios
38 .Sh DESCRIPTION
39 The
40 .Nm
41 driver enumerates embedded ISA devices on the motherboard whose BIOS
42 supports
43 .Dq "Plug and Play BIOS Specification" .
44 It assigns ISA bus resources (interrupt line, DMA channel, I/O ports,
45 and memory region) to each device and activates it.
46 .Pp
47 If it cannot assign necessary resources to a device without
48 causing conflict with other devices in the system,
49 the device will not be activated and will be unavailable
50 to programs.
51 .Sh CAVEATS
52 There is no explicit way to disable individual embedded devices.
53 The
54 .Nm
55 driver will find all devices reported by the
56 .Dq "Plug and Play (PnP)"
57 BIOS and try to activate them all.
58 .Pp
59 There is no way to explicitly assign particular resource to a device.
60 The resource assignment is fully automatic and there is
61 no provision for manual override.
62 .Sh SEE ALSO
63 .Xr pnp 4
64 .Sh STANDARDS
65 .Rs
66 .%A Compaq
67 .%A Phenix
68 .%A Intel
69 .%T "Plug and Play BIOS Specification Version 1.0A"
70 .%D May 5, 1994
71 .Re
72 .Pp
73 .Rs
74 .%A Compaq
75 .%A Phenix
76 .%A Intel
77 .%T "Plug and Play BIOS CLARIFICATION Paper for Plug and Play BIOS Specification Version 1.0A"
78 .%D October 6, 1994
79 .Re
80 .Sh HISTORY
81 The
82 .Nm
83 driver first appeared in
84 .Fx 4.0 .
85 .Sh AUTHORS
86 The
87 .Nm
88 driver was written by
89 .An Mike Smith .