- add dev_noimpl(xxx,yyy) macro to replace "(dev_type_xxx((*))) yyy",
and use appropriately
- create more helper macros:
. cdev__xyz_init(c,n), such as cdev__ocri_init() for
/* open, close, read, ioctl */, etc.
. cdev__xRy_init(c,n), where nullop is used instead of enodev to dummy out
method `R' and the comments now read /* xxx (read) yyy */ instead
. cdev__xyz_t_init(c,n,t) - as per cdev__xyz_init, but sets d_type = t
as well
- use seltrue instead of dev_noimpl(poll,*), as (IIRC) cdevsw.d_poll should
always DTRT WRT returning a valid result. (a few devices previously
incorrectly returned ENODEV)
- use dev_noimpl(stop,enodev) instead of dev_noimpl(stop,nullop) if tty
== 0, because it doesn't matter if dev_type_stop isn't implemented in that
case, and it allows the use of the cdev__xyz_init macros. certain ports
(sparc,sparc64,x68k) used the nullop method for dev_type_stop in a few
drivers, whereas everything else uses enodev
- ensure that the comments are accurate WRT the behaviour of a given entry
2001-03-26 16:33:22 +04:00
|
|
|
/* $NetBSD: conf.h,v 1.18 2001/03/26 12:33:25 lukem Exp $ */
|
1996-03-31 00:17:55 +03:00
|
|
|
|
1998-09-05 19:28:08 +04:00
|
|
|
/*-
|
|
|
|
* Copyright (c) 1996 The NetBSD Foundation, Inc.
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* This code is derived from software contributed to The NetBSD Foundation
|
|
|
|
* by Christos Zoulas.
|
1996-03-31 00:17:55 +03:00
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
|
|
|
* 3. All advertising materials mentioning features or use of this software
|
|
|
|
* must display the following acknowledgement:
|
1998-09-05 19:28:08 +04:00
|
|
|
* This product includes software developed by the NetBSD
|
|
|
|
* Foundation, Inc. and its contributors.
|
|
|
|
* 4. Neither the name of The NetBSD Foundation nor the names of its
|
|
|
|
* contributors may be used to endorse or promote products derived
|
|
|
|
* from this software without specific prior written permission.
|
1996-03-31 00:17:55 +03:00
|
|
|
*
|
1998-09-05 19:28:08 +04:00
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
|
|
|
|
* ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
|
|
|
|
* TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
|
|
|
|
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
|
|
|
|
* BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
|
|
|
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
|
|
|
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
|
|
|
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
|
|
|
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
|
|
|
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
|
|
|
* POSSIBILITY OF SUCH DAMAGE.
|
1996-03-31 00:17:55 +03:00
|
|
|
*/
|
|
|
|
|
|
|
|
#define mmread mmrw
|
|
|
|
#define mmwrite mmrw
|
|
|
|
cdev_decl(mm);
|
|
|
|
|
|
|
|
cdev_decl(openprom);
|
|
|
|
|
- add dev_noimpl(xxx,yyy) macro to replace "(dev_type_xxx((*))) yyy",
and use appropriately
- create more helper macros:
. cdev__xyz_init(c,n), such as cdev__ocri_init() for
/* open, close, read, ioctl */, etc.
. cdev__xRy_init(c,n), where nullop is used instead of enodev to dummy out
method `R' and the comments now read /* xxx (read) yyy */ instead
. cdev__xyz_t_init(c,n,t) - as per cdev__xyz_init, but sets d_type = t
as well
- use seltrue instead of dev_noimpl(poll,*), as (IIRC) cdevsw.d_poll should
always DTRT WRT returning a valid result. (a few devices previously
incorrectly returned ENODEV)
- use dev_noimpl(stop,enodev) instead of dev_noimpl(stop,nullop) if tty
== 0, because it doesn't matter if dev_type_stop isn't implemented in that
case, and it allows the use of the cdev__xyz_init macros. certain ports
(sparc,sparc64,x68k) used the nullop method for dev_type_stop in a few
drivers, whereas everything else uses enodev
- ensure that the comments are accurate WRT the behaviour of a given entry
2001-03-26 16:33:22 +04:00
|
|
|
/* open, close, ioctl, poll */
|
|
|
|
#define cdev_tctrl_init(c,n) cdev__ocip_init(c,n)
|
1999-12-15 11:01:00 +03:00
|
|
|
|
|
|
|
cdev_decl(tctrl);
|
|
|
|
|
1996-03-31 00:17:55 +03:00
|
|
|
cdev_decl(cn);
|
|
|
|
|
|
|
|
cdev_decl(zs);
|
1999-07-31 03:58:25 +04:00
|
|
|
cdev_decl(com);
|
1996-03-31 00:17:55 +03:00
|
|
|
|
|
|
|
bdev_decl(fd);
|
|
|
|
cdev_decl(fd);
|
|
|
|
|
|
|
|
cdev_decl(fb);
|
|
|
|
|
|
|
|
cdev_decl(ms);
|
|
|
|
|
|
|
|
cdev_decl(kbd);
|
1997-10-18 03:59:44 +04:00
|
|
|
cdev_decl(kd);
|
1996-03-31 00:17:55 +03:00
|
|
|
|
|
|
|
cdev_decl(bwtwo);
|
|
|
|
|
1996-11-12 02:57:12 +03:00
|
|
|
cdev_decl(cgtwo);
|
|
|
|
|
1996-03-31 00:17:55 +03:00
|
|
|
cdev_decl(cgthree);
|
|
|
|
|
|
|
|
cdev_decl(cgfour);
|
|
|
|
|
|
|
|
cdev_decl(cgsix);
|
|
|
|
|
|
|
|
cdev_decl(cgeight);
|
|
|
|
|
1996-06-19 17:25:01 +04:00
|
|
|
cdev_decl(tcx);
|
|
|
|
|
1996-10-01 03:45:10 +04:00
|
|
|
cdev_decl(cgfourteen);
|
|
|
|
|
1999-08-01 04:23:48 +04:00
|
|
|
cdev_decl(p9100); /* pnozz */
|
|
|
|
|
1996-03-31 00:17:55 +03:00
|
|
|
bdev_decl(xd);
|
|
|
|
cdev_decl(xd);
|
|
|
|
|
|
|
|
bdev_decl(xy);
|
|
|
|
cdev_decl(xy);
|
|
|
|
|
|
|
|
bdev_decl(sw);
|
|
|
|
cdev_decl(sw);
|
1996-06-21 00:06:16 +04:00
|
|
|
|
1996-12-31 10:12:43 +03:00
|
|
|
bdev_decl(md);
|
|
|
|
cdev_decl(md);
|
1998-05-20 04:04:33 +04:00
|
|
|
|
1998-11-13 07:47:03 +03:00
|
|
|
bdev_decl(raid);
|
|
|
|
cdev_decl(raid);
|
|
|
|
|
1998-05-20 04:04:33 +04:00
|
|
|
cdev_decl(mtty);
|
|
|
|
cdev_decl(mbpp);
|
1998-09-22 01:13:51 +04:00
|
|
|
|
|
|
|
cdev_decl(bpp);
|
1998-10-10 06:00:49 +04:00
|
|
|
|
|
|
|
cdev_decl(scsibus);
|