From owner-cvs-all Sun Jun 14 06:53:57 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id GAA07105 for cvs-all-outgoing; Sun, 14 Jun 1998 06:53:57 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id GAA07099; Sun, 14 Jun 1998 06:53:54 -0700 (PDT) (envelope-from dfr@FreeBSD.org) From: Doug Rabson Received: (from dfr@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id GAA09316; Sun, 14 Jun 1998 06:53:15 -0700 (PDT) Date: Sun, 14 Jun 1998 06:53:15 -0700 (PDT) Message-Id: <199806141353.GAA09316@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-sys@FreeBSD.ORG Subject: cvs commit: src/sys/alpha/alpha clock_if.m src/sys/alpha/include clockvar.h src/sys/dev/dec mcclock_if.m src/sys/kern bus_if.m device_if.m makedevops.sh Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk dfr 1998/06/14 06:53:14 PDT Added files: sys/alpha/alpha clock_if.m sys/alpha/include clockvar.h sys/dev/dec mcclock_if.m sys/kern bus_if.m device_if.m makedevops.sh Log: [Add missing files from previous commit] Major changes to the generic device framework for FreeBSD/alpha: * Eliminate bus_t and make it possible for all devices to have attached children. * Support dynamically extendable interfaces for drivers to replace both the function pointers in driver_t and bus_ops_t (which has been removed entirely. Two system defined interfaces have been defined, 'device' which is mandatory for all devices and 'bus' which is recommended for all devices which support attached children. * In addition, the alpha port defines two simple interfaces 'clock' for attaching various real time clocks to the system and 'mcclock' for the many different variations of mc146818 clocks which can be attached to different alpha platforms. This eliminates two more function pointer tables in favour of the generic method dispatch system provided by the device framework. Future device interfaces may include: * cdev and bdev interfaces for devfs to use in replacement for specfs and the fixed interfaces bdevsw and cdevsw. * scsi interface to replace struct scsi_adapter (not sure how this works in CAM but I imagine there is something similar there). * various tailored interfaces for different bus types such as pci, isa, pccard etc. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message