From owner-freebsd-arch@FreeBSD.ORG Wed Sep 10 01:47:58 2003 Return-Path: Delivered-To: freebsd-arch@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0751C16A4BF; Wed, 10 Sep 2003 01:47:58 -0700 (PDT) Received: from herring.nlsystems.com (mailgate.nlsystems.com [80.177.232.242]) by mx1.FreeBSD.org (Postfix) with ESMTP id BEC7943F75; Wed, 10 Sep 2003 01:47:56 -0700 (PDT) (envelope-from dfr@nlsystems.com) Received: from [10.0.0.2] (herring.nlsystems.com [10.0.0.2]) by herring.nlsystems.com (8.12.9/8.12.8) with ESMTP id h8A8lZgs047343; Wed, 10 Sep 2003 09:47:35 +0100 (BST) (envelope-from dfr@nlsystems.com) From: Doug Rabson To: Eric Anholt In-Reply-To: <1063180423.634.31.camel@leguin> References: <1063180423.634.31.camel@leguin> Content-Type: text/plain Message-Id: <1063183655.43759.10.camel@herring.nlsystems.com> Mime-Version: 1.0 X-Mailer: Ximian Evolution 1.4.0 Date: 10 Sep 2003 09:47:35 +0100 Content-Transfer-Encoding: 7bit X-Spam-Status: No, hits=-4.9 required=5.0 tests=EMAIL_ATTRIBUTION,IN_REP_TO,QUOTED_EMAIL_TEXT,REFERENCES, REPLY_WITH_QUOTES,USER_AGENT_XIMIAN version=2.55 X-Spam-Checker-Version: SpamAssassin 2.55 (1.174.2.19-2003-05-19-exp) cc: arch@FreeBSD.org cc: John Baldwin Subject: RE: When to burn those bridges X-BeenThere: freebsd-arch@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Discussion related to FreeBSD architecture List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 10 Sep 2003 08:47:58 -0000 On Wed, 2003-09-10 at 08:53, Eric Anholt wrote: > On Wed, 2003-09-10 at 00:15, John Baldwin wrote: > > On 09-Sep-2003 Doug Rabson wrote: > > > I haven't been paying much attention recently on release engineering > > > issues so probably I have missed something. When do people think is the > > > right time to branch off the 5.x line of development and set fire to the > > > bridges? > > > > Go ahead and kill the ISA compat drivers if you need to. I do think > > that you can probably do this work in a p4 branch until it is ready > > and delay the killing of compat shims until then maybe. > > > > > This led me back to the idea of multiple inheritance in kobj/newbus. > > > Using multiple inheritance for the smbus re-work makes the chip drivers > > > much simpler since they don't have to explicitly list the 'parent' > > > methods in their method tables. The same thing goes for cardbus too. On > > > these lines, I went back and read through Justin's old inheritance > > > patches. These patches supported single inheritance for multiple > > > interfaces at the cost of changing the driver API considerably. I've > > > been tinkering with an alternative approach which supports multiple > > > inheritance at the class level, almost preserving the driver API while > > > changing the ABI slightly. > > > > Yes, please. There is the same problem with agp(4) and the hostb(4) > > driver and agp(4) for Intel motherboards with onboard graphics and > > the drm(4) driver for the same graphics chip. > > I thought we wanted agp(4) to replace hostb(4) when agp would attach. > It's not the same problem for intel onboard graphics and the drm driver, > then, since we need both drivers for the DRM to work. I think keithw > solved this by making the agp driver provide a "drmsub" child device > which the i8x0 DRM attaches to. Would there be any problems with > putting that in CVS? That is exactly what Keith did for the i830. I have his patches for it and I was supposed to review and commit them but they kind of got pushed to the bottom of the pile due to my recent house move. Would you like to do the honours? As far as I'm concerned, the patches are commit-ready apart from some minor violations of style(9) which I don't really care about but others might.