Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1759077Ab0GPTj0 (ORCPT ); Fri, 16 Jul 2010 15:39:26 -0400 Received: from mail4.comsite.net ([205.238.176.238]:15742 "EHLO mail4.comsite.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1758837Ab0GPTjY (ORCPT ); Fri, 16 Jul 2010 15:39:24 -0400 X-Default-Received-SPF: pass (skip=forwardok (res=PASS)) x-ip-name=129.33.193.72; From: Milton Miller To: Lee Jones CC: linux-kernel@vger.kernel.org, linux-arm-kernel@lists.infradead.org, Russell King , Martin Michlmayr , Woody Suwalski , Andrew Morton Subject: Re: [PATCH] Stop ARM boards crashing when CUPS is loaded - 2.6.35-rc5 References: <4C408BEF.1060302@canonical.com> <4C3C72C6.4000005@canonical.com> <20100715130214.4c9303b2.akpm@linux-foundation.org> <20100715200618.GA6773@n2100.arm.linux.org.uk> <4C40218A.4090806@canonical.com> <20100716092018.GB16995@n2100.arm.linux.org.uk> In-Reply-To: <4C408BEF.1060302@canonical.com> Message-ID: Date: Fri, 16 Jul 2010 14:38:38 -0500 X-Originating-IP: 129.33.193.72 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 2993 Lines: 73 On Fri, 16 Jul 2010 about 10:42:23 -0600 Lee Jones wrote: >On 16/07/10 17:23, Milton Miller wrote: > > On Fri Jul 16 2010 about 05:33:06 EST, Lee Jones wrote: > > > > The best solution is probably for the parport code to go through a > > > > modernisation cycle like the serial code did, essentially using > > > > platform devices to pass the base addresses. This would make the > > > > driver more portable, and eliminates this problem entirely (because > > > > platforms which don't have parports won't register the platform device(s) > > > > necessary for parport to even probe illegal addresses.) > > > > > > This sounds brilliant - when are you going to start? > > > > It has a long time ago ... > > > > drivers/parport/parport_pc.c calls parport_pc_find_nonpci_ports, > > which is in asm/parport.h > >I'm not entirely sure what you're trying to say here? > >How does that help with the platformisation of the driver? I was reading quickly, but my point was the code already defers to the architecture the method of finding the ports to scan, which is the important part. I just looked at the 8250 code and it abuses the platform device model. Instead of a platform device for each port, it has multiple port descriptions set via platform_data in one or a a few device instances. It then only uses this information to fill in its internal array of all ports, which drives the actual registration with the serial core. It also registers a platform device to to get suspend and resume hooks, but now has to scan its list of ports for all the instances driven from this "device". Yech. Please don't use this as an example of a modern driver. > > > > In all seriousness, do you think anyone is likely to undertake this > > > work anytime soon? I am seeing this problem in a distribution which > > > is due for release in October. I have no problem implementing a config > > > change in the meantime, but as you say, a more _correct_ and portable > > > solution should be sought. > > > > Why not replace the arm asm/parport.h with asm-generic/parport.h which > > already has a check for CONFIG_ISA, which appears to only be selected > > on a few ARM platforms? > >static int __devinit parport_pc_find_isa_ports(int autoirq, int autodma); >static int __devinit parport_pc_find_nonpci_ports(int autoirq, int autodma) >{ >#ifdef CONFIG_ISA > return parport_pc_find_isa_ports(autoirq, autodma); >#else > return 0; >#endif >} > >That's perfect! > >This would work a treat. > >Surely this #ifdef should be in all the parport.h files which call >parport_pc_find_isa_ports? No, as CONFIG_ISA is supposed to be ISA slots, and other architectures may frequently have 8250 ports at the pc legacy port numbers without ISA slots. milton -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/