Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753625AbbDOX63 (ORCPT ); Wed, 15 Apr 2015 19:58:29 -0400 Received: from cantor2.suse.de ([195.135.220.15]:56943 "EHLO mx2.suse.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751402AbbDOX6W (ORCPT ); Wed, 15 Apr 2015 19:58:22 -0400 Date: Thu, 16 Apr 2015 01:58:16 +0200 From: "Luis R. Rodriguez" To: Andy Walls , Hyong-Youb Kim , netdev@vger.kernel.org Cc: Andy Lutomirski , Toshi Kani , "H. Peter Anvin" , Ingo Molnar , linux-kernel@vger.kernel.org, Hal Rosenstock , Sean Hefty , Suresh Siddha , Rickard Strandqvist , Mike Marciniszyn , Roland Dreier , Juergen Gross , Mauro Carvalho Chehab , Borislav Petkov , Mel Gorman , Vlastimil Babka , Davidlohr Bueso , dave.hansen@linux.intel.com, plagnioj@jcrosoft.com, tglx@linutronix.de, Ville =?iso-8859-1?Q?Syrj=E4l=E4?= , linux-fbdev@vger.kernel.org, linux-media@vger.kernel.org, x86@kernel.org Subject: Re: ioremap_uc() followed by set_memory_wc() - burrying MTRR Message-ID: <20150415235816.GG5622@wotan.suse.de> References: <1428695379.6646.69.camel@misato.fc.hp.com> <20150410210538.GB5622@wotan.suse.de> <1428699490.21794.5.camel@misato.fc.hp.com> <20150411012938.GC5622@wotan.suse.de> <20150413174938.GE5622@wotan.suse.de> <1429137531.1899.28.camel@palomino.walls.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1429137531.1899.28.camel@palomino.walls.org> User-Agent: Mutt/1.5.21 (2010-09-15) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 2633 Lines: 54 Hey Andy, thanks for your review, adding Hyong-Youb Kim for review of the full range ioremap_wc() idea below. On Wed, Apr 15, 2015 at 06:38:51PM -0400, Andy Walls wrote: > Hi All, > > On Mon, 2015-04-13 at 19:49 +0200, Luis R. Rodriguez wrote: > > From the beginning it seems only framebuffer devices used MTRR/WC, > [snip] > > The ivtv device is a good example of the worst type of > > situations and these days. So perhap __arch_phys_wc_add() and a > > ioremap_ucminus() might be something more than transient unless hardware folks > > get a good memo or already know how to just Do The Right Thing (TM). > > Just to reiterate a subtle point, use of the ivtvfb is *optional*. A > user may or may not load it. When the user does load the ivtvfb driver, > the ivtv driver has already been initialized and may have functions of > the card already in use by userspace. I suspected this and its why I note that a rewrite to address a clean split with separate ioremap seems rather difficult in this case. > Hopefully no one is trying to use the OSD as framebuffer and the video > decoder/output engine for video display at the same time. Worst case concern I have also is the implications of having overlapping ioremap() calls (as proposed in my last reply) for different memory types and having the different virtual memory addresse used by different parts of the driver. Its not clear to me what the hardware implications of this are. > But the video > decoder/output device nodes may already be open for performing ioctl() > functions so unmapping the decoder IO space out from under them, when > loading the ivtvfb driver module, might not be a good thing. Using overlapping ioremap() calls with different memory types would address this concern provided hardware won't barf both on the device and CPU. Hardware folks could provide feedback or an ivtvfb user could test the patch supplied on both non-PAT and PAT systems. Even so, who knows, this might work on some systems while not on others, only hardware folks would know. An alternative... is to just ioremap_wc() the entire region, including MMIO registers for these old devices. I see one ethernet driver that does this, myri10ge, and am curious how and why they ended up deciding this and if they have run into any issues. I wonder if this is a reasonable comrpomise for these 2 remaining corner cases. Luis -- 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/