summaryrefslogtreecommitdiffstats
path: root/sys/dev/mcd
Commit message (Collapse)AuthorAgeFilesLines
* Remove five now unused fields from struct cdevsw. They should neverphk1999-09-251-5/+0
| | | | | | | | have been there in the first place. A GENERIC kernel shrinks almost 1k. Add a slightly different safetybelt under nostop for tty drivers. Add some missing FreeBSD tags
* Trying to set BAD144 handling on a CD is sufficiently "Dont Do Thatphk1999-09-201-3/+0
| | | | then" that we don't need to give the ioctl special treatment.
* Changes to centralise the default blocksize behaviour.julian1999-09-091-2/+2
| | | | | | More likely to follow. Submitted by: phk@freebsd.org
* Set si_bsize_phys and si_bsize_max in all legacy CD drivers.phk1999-09-011-0/+2
|
* $Id$ -> $FreeBSD$peter1999-08-282-2/+2
|
* Convert DEVFS hooks in (most) drivers to make_dev().phk1999-08-231-30/+9
| | | | | | | | | | | | | | | | Diskslice/label code not yet handled. Vinum, i4b, alpha, pc98 not dealt with (left to respective Maintainers) Add the correct hook for devfs to kern_conf.c The net result of this excercise is that a lot less files depends on DEVFS, and devtoname() gets more sensible output in many cases. A few drivers had minor additional cleanups performed relating to cdevsw registration. A few drivers don't register a cdevsw{} anymore, but only use make_dev().
* Simplify cdevsw registration.phk1999-05-311-16/+5
| | | | | | | | | | | | | | | | | | | | | | | | | The cdevsw_add() function now finds the major number(s) in the struct cdevsw passed to it. cdevsw_add_generic() is no longer needed, cdevsw_add() does the same thing. cdevsw_add() will print an message if the d_maj field looks bogus. Remove nblkdev and nchrdev variables. Most places they were used bogusly. Instead check a dev_t for validity by seeing if devsw() or bdevsw() returns NULL. Move bdevsw() and devsw() functions to kern/kern_conf.c Bump __FreeBSD_version to 400006 This commit removes: 72 bogus makedev() calls 26 bogus SYSINIT functions if_xe.c bogusly accessed cdevsw[], author/maintainer please fix. I4b and vinum not changed. Patches emailed to authors. LINT probably broken until they catch up.
* This commit should be a extensive NO-OP:phk1999-05-301-6/+21
| | | | | | | | | | | | | Reformat and initialize correctly all "struct cdevsw". Initialize the d_maj and d_bmaj fields. The d_reset field was not removed, although it is never used. I used a program to do most of this, so all the files now use the same consistent format. Please keep it that way. Vinum and i4b not modified, patches emailed to respective authors.
* Fix some of the places where too much inside knowledge about major/minorphk1999-05-081-2/+2
| | | | layout and dev_t structure is being (ab)used.
* Introduce two functions: physread() and physwrite() and use these directlyphk1999-05-071-9/+2
| | | | | | in *devsw[] rather than the 46 local copies of the same functions. (grog will do the same for vinum when he has time)
* Missing 'int' in declaration of variables.peter1999-05-061-2/+2
|
* Fix up a few easy 'assignment used as truth value' and 'suggest parenspeter1999-05-061-3/+3
| | | | | around && within ||' type warnings. I'm pretty sure I have not masked any problems here, I've committed real problem fixes seperately.
* s/static foo_devsw_installed = 0;/static int foo_devsw_installed;/.dt1999-04-281-2/+2
| | | | (Edited automatically)
* Initialize isa_devtab entries for interrupt handlers in individualbde1998-10-221-2/+4
| | | | | | | device drivers, not in ioconf.c. Use a different hack in isa_device.h so that a new config(8) is not required yet. pc98 parts approved by: kato
* Fixed printf format errors (only 1 left in GENERIC now).bde1998-07-131-3/+3
|
* There is no such thing any more as "struct bdevsw".julian1998-07-041-8/+20
| | | | | | | | | | | | | | | | | | There is only cdevsw (which should be renamed in a later edit to deventry or something). cdevsw contains the union of what were in both bdevsw an cdevsw entries. The bdevsw[] table stiff exists and is a second pointer to the cdevsw entry of the device. it's major is in d_bmaj rather than d_maj. some cleanup still to happen (e.g. dsopen now gets two pointers to the same cdevsw struct instead of one to a bdevsw and one to a cdevsw). rawread()/rawwrite() went away as part of this though it's not strictly the same patch, just that it involves all the same lines in the drivers. cdroms no longer have write() entries (they did have rawwrite (?)). tapes no longer have support for bdev operations. Reviewed by: Eivind Eklund and Mike Smith Changes suggested by eivind.
* This commit fixes various 64bit portability problems required fordfr1998-06-071-2/+2
| | | | | | | | | | FreeBSD/alpha. The most significant item is to change the command argument to ioctl functions from int to u_long. This change brings us inline with various other BSD versions. Driver writers may like to use (__FreeBSD_version == 300003) to detect this change. The prototype FreeBSD/alpha machdep will follow in a couple of days time.
* Make all file-system (MFS, FFS, NFS, LFS, DEVFS) related option new-style.eivind1998-01-241-1/+3
| | | | | | | | This introduce an xxxFS_BOOT for each of the rootable filesystems. (Presently not required, but encouraged to allow a smooth move of option *FS to opt_dontuse.h later.) LFS is temporarily disabled, and will be re-enabled tomorrow.
* In all such uses of struct buf: 's/b_un.b_addr/b_data/g'phk1997-12-021-2/+2
|
* Remove a bunch of variables which were unused both in GENERIC and LINT.phk1997-11-071-1/+5
| | | | Found by: -Wunused
* aha1542.c aic6360.c cy.c fd.c ft.cgibbs1997-09-211-17/+19
| | | | | | | | | | | | if_ie.c if_wl.c if_zp.c isa.c isa_device.h labpc.c mcd.c ncr5380.c scd.c seagate.c si.c sio.c tw.c ultra14f.c wcd.c wd.c: Update for changes in the callout interface. apic_vector.s icu_vector.s ipl.s ipl_funcs.c: Add CAM software/hardware interrupt support.
* Removed unused #includes.bde1997-07-201-8/+1
|
* on second thoughts, it doesn't even need <machine/ipl.h> either.peter1997-06-011-2/+1
|
* <machine/spl.h> -> <machine/ipl.h>peter1997-06-011-2/+2
|
* Add the D_DISK flag to the cdevsw structs of various CD-ROM drivers.joerg1997-05-101-2/+2
|
* This mega-commit brings the following:joerg1997-05-041-1/+53
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | . It makes cd9660 root f/s working again. . It makes CD9660 a new-style option. . It adds support to mount an ISO9660 multi-session CD-ROM as the root filesystem (the last session actually, but that's what is expected behaviour). Sigh. The CDIOREADTOCENTRYS did a copyout() of its own, and thus has been unusable for me for this work. Too bad it didn't simply stuff the max 100 entries into the struct ioc_read_toc_entry, but relied on a user supplied data buffer instead. :-( I now had to reinvent the wheel, and created a CDIOREADTOCENTRY ioctl command that can be used in a kernel context. While doing this, i noticed the following bogosities in existing CD-ROM drivers: wcd: This driver is likely to be totally bogus when someone tries two succeeding CDIOREADTOCENTRYS (or now CDIOREADTOCENTRY) commands with requesting MSF format, since it apparently operates on an internal table. scd: This driver apparently returns just a single TOC entry only for the CDIOREADTOCENTRYS command. I have only been able to test the CDIOREADTOCENTRY command with the cd(4) driver. I hereby request the respective maintainers of the other CD-ROM drivers to verify my code for their driver. When it comes to merging this CD-ROM multisession stuff into RELENG_2_2 i will only consider drivers where i've got a confirmation that it actually works.
* Fixed the type of timeout functions and removed casts that hid thebde1997-04-201-10/+17
| | | | | | | | | type mismatches. mcd and scd were/are particularly bogus. They used a general purpose function taking 2 args for the timeout function and fudged varargs stuff to supply the second arg for the timeout case. This broke `cc -mrtd'. Bounce through a timeout function instead. The timeout arg still gets bogusly cast from int to `void *' and back.
* Don't include <sys/ioctl.h> in the kernel. Stage 1: don't includebde1997-03-241-2/+1
| | | | | it when it is not used. In most cases, the reasons for including it went away when the special ioctl headers became self-sufficient.
* Don't #include <sys/fcntl.h> in <sys/file.h> if KERNEL is defined.bde1997-03-231-2/+2
| | | | | Fixed everything that depended on getting fcntl.h stuff from the wrong place. Most things don't depend on file.h stuff at all.
* Back out part 1 of the MCFH that changed $Id$ to $FreeBSD$. We are notpeter1997-02-222-2/+2
| | | | ready for it yet.
* Make the long-awaited change from $Id$ to $FreeBSD$jkh1997-01-142-2/+2
| | | | | | | | This will make a number of things easier in the future, as well as (finally!) avoiding the Id-smashing problem which has plagued developers for so long. Boy, I'm glad we're not using sup anymore. This update would have been insane otherwise.
* Remove devconf, it never grew up to be of any use.phk1996-09-061-30/+1
|
* Make a "DWIM" function for adding [bc]devsw entries for bdev drivers.phk1996-07-231-13/+3
| | | | | | | | | Saves about 280 butes of source per driver, 56 bytes in object size and another 56 bytes moves from data to bss. No functional change intended nor expected. GENERIC should be about one k smaller now :-)
* Removed unused #includes of <i386/isa/icu.h> and <i386/isa/icu.h>. icu.hbde1996-06-181-3/+1
| | | | | | | is only used by the icu support modules and by a few drivers that know too much about the icu (most only use it to convert `n' to `IRQn'). isa.h is only used by ioconf.c and by a few drivers that know too much about isa addresses (a few have to, because config is deficient).
* Clean up -Wunused warnings.gpalmer1996-06-121-2/+2
| | | | Reviewed by: bde
* Fixed group and permissions for devfs devices (group operator was games;bde1996-06-081-11/+13
| | | | permissions 0640 was 0600).
* Forget that TAILQ's must be init'ed.phk1996-05-031-1/+2
|
* Move from the old buf.b_actf to the new TAILQ(buf.b_act).phk1996-05-031-8/+8
|
* Removed now-unused #includes of <machine/cpu.h>. They were for bootverbosebde1996-04-071-2/+1
| | | | being declared in the wrong place.
* Switched from using devfs_add_sw() to using devfs_add_swf()scrappy1996-03-281-21/+13
| | | | Reviewed by: julian@freebsd.org
* Fix/cleanup raw partition open/close codeache1996-03-171-23/+20
|
* Fix re-sense codeache1996-02-271-4/+6
| | | | Remove unused part of close code
* rmcd0c: now several ioctls (eject/close/debug/reset/etc.) worksache1996-02-271-58/+71
| | | | | even not CD sensed. Open of this device without CD sensed allowed too. Other ioctls re-sense CD for this device.
* Implement CDIOCSTARTache1996-02-131-2/+4
|
* Implement CD_MEDIA_CATALOG request for read_subchannelache1996-02-031-27/+38
| | | | Obtained from: NetBSD
* Detect yet one kind of device (taken from NetBSD)ache1996-02-031-9/+13
| | | | Use more accurate TOC size calculation
* Implement PREVENT & CLOSE ioctlsache1996-02-021-2/+19
|
* Remove close tray on open - works very bad with xcdplayerache1996-02-021-2/+2
|
* Calculate TOC size to match what scsi cd says.ache1996-02-022-4/+4
| | | | Exchange control<->addr_type fields
* Implement PLAYBLOCKS ioctl, add argument checking to other PLAY* ioctlsache1996-02-011-10/+53
| | | | Obtained from: NetBSD (partially)
OpenPOWER on IntegriCloud