Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S932293Ab0FDPF5 (ORCPT ); Fri, 4 Jun 2010 11:05:57 -0400 Received: from usul.saidi.cx ([204.11.33.34]:35414 "EHLO usul.overt.org" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S1752354Ab0FDPF4 (ORCPT ); Fri, 4 Jun 2010 11:05:56 -0400 Date: Fri, 4 Jun 2010 08:05:51 -0700 From: Philip Langdale To: Maxim Levitsky Cc: linux-kernel , adq_dvb@lidskialf.net, "linux-mmc@vger.kernel.org" Subject: Re: [PATCH] mmc: make sdhci work with ricoh mmc controller Message-ID: <20100604080551.3dba90af@fido5> In-Reply-To: <1275646048.26010.22.camel@maxim-laptop> References: <1275516180.30272.4.camel@maxim-laptop> <1275527787-3783-1-git-send-email-maximlevitsky@gmail.com> <20100603091113.7b1d6fc0@fido5> <1275582709.2563.19.camel@maxim-laptop> <20100603093914.3397ac42@fido5> <20100603100510.37d02c2b@fido5> <1275586531.2594.3.camel@maxim-laptop> <20100603214223.61325b5d@fido5> <1275646048.26010.22.camel@maxim-laptop> X-Mailer: Claws Mail 3.7.6 (GTK+ 2.20.1; x86_64-pc-linux-gnu) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-SA-Do-Not-RunX1: Yes Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 3488 Lines: 93 On Fri, 04 Jun 2010 13:07:28 +0300 Maxim Levitsky wrote: > > > > On this subject: > > > > 1) Would it make sense to have the hard-coded caps reflect the full > > set of caps you see on the sdhci side? > This would be ugly cause two driver instances would have to talk one > with another. A global variable will be necessary. Instead of doing it at runtime, we could read them offline and then write them in. Of course, I suspect there's some variation in capabilities of Ricoh parts - I know there's at least two generations of MMC controllers with the same PCI IDs. :-/ > > > > > 2) We ought to be able to set the MMC high-speed flag for this > > controller; I've tried it out and it works fine. The default sdhci > > code will never set this flag. I think it would need to an > > additional quirk. Pierre argued against setting it on the basis > > that SD high speed has slightly different timings; I haven't seen > > hardware where this has been an issue. > > > > > However that suspend/resume race is tough one. > > > The problem seems that controller doesn't like both devices to be > > > poked at same time, and normally they won't, but here on resume > > > both are tested for a card, and this is done asynchronously by > > > mmc core. > > > > > > I will get to bottom of this sooner or later (I hope). > > > > Hmm. So, if the issue is the test, then you should be able to > > serialize in mmc core instead of forcing sync resume in general. An > > ugly way would be a quirk that says to serialize all card tests if > > the controller is present in the system. In practice it would be > > fine as systems won't have arbitrary other sdhci controllers if > > they have this ricoh mmc thing. But yes, it isn't clean. :-P > This seems to be worse that I thought. > The problem is that mmc controller tells that card is removed on > resume (after a while it reappears) > > This brings a question though, are MMC and SD cards electrically > different? > If not them its interesting how the controller distinguishes between > them. They are not. I suspect the controller pokes the card using SPI mode just enough to tell them apart. > > This isn't a show stopper though, cause the cards are > removed/reinserted anyway unless CONFIG_MMC_UNSAFE_RESUME is set. > The fact that this triggers system hang is another story, and sooner > or later will be fixed ether by some hack in mmc code or by making > del_gendisk not hang when userspace is frozen. > > > It not due to interleaving, because I tried binding sdhci-pci to only > mmc interface, and yet same problem happens. > > Magically, if async suspend is disabled everything works, and it well > tested. and that despite me disabling async suspend on all 4 > functions. (And I know that this works, and makes pm core suspend > them in order from 0 to 4 and synchronously. > I tried adding large delays to simulate delays caused by waiting for > other devices, but it didn't help. > > I''l get to bottom of this. I'm not familiar with what pm core allows but can you tell it to serialise the functions but still handle the device asynchronously? That would still allow the maximum possible asynchrony. > > > > > > --phil > > > --phil -- 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/