From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1757676Ab1KVK0u (ORCPT ); Tue, 22 Nov 2011 05:26:50 -0500 Received: from cantor2.suse.de ([195.135.220.15]:44594 "EHLO mx2.suse.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1757486Ab1KVK0t (ORCPT ); Tue, 22 Nov 2011 05:26:49 -0500 Date: Tue, 22 Nov 2011 11:26:46 +0100 Message-ID: From: Takashi Iwai To: Tim Blechmann Cc: Clemens Ladisch , LKML , alsa-devel@alsa-project.org, Brian Gerst Subject: Re: [alsa-devel] [bisected] lx6464es fails to open a second time In-Reply-To: <12713926.WkIoyVagpM@moka> References: <2428359.JOQWRg64O4@moka> <4ECB5257.4040600@ladisch.de> <12713926.WkIoyVagpM@moka> User-Agent: Wanderlust/2.15.6 (Almost Unreal) SEMI/1.14.6 (Maruoka) FLIM/1.14.9 (=?UTF-8?B?R29qxY0=?=) APEL/10.7 Emacs/23.3 (x86_64-suse-linux-gnu) MULE/6.0 (HANACHIRUSATO) MIME-Version: 1.0 (generated by SEMI 1.14.6 - "Maruoka") Content-Type: text/plain; charset=US-ASCII Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org At Tue, 22 Nov 2011 11:17:45 +0100, Tim Blechmann wrote: > > > > today, i was able to bisect the issue and the first bad commit is: > > > > > > commit 6175ddf06b6172046a329e3abfd9c901a43efd2e > > > Author: Brian Gerst > > > Date: Fri Feb 5 09:37:07 2010 -0500 > > > > > > x86: Clean up mem*io functions. > > > > > > the communication with the device is done by passing simple commands via > > > memcpy_fromio and memcpy_toio (compare sound/pci/lx6464es/lx_core.c, > > > lines 75 to 99). any idea, what is going wrong there? > > > > The old and new implementations of memcpy_*io do not have any differences > > in the documented API, but the new ones are much more optimized, so they > > might not use 8- or 32-bit accesses or a different access pattern. > > > > Does the card's mapped I/O region behave exactly like memory, or has it > > any restrictions on how it can be used? In the latter case, you should > > implement your readbuf/writebuf functions by hand to use plain 32-bit > > accesses in order (or whatever is required). > > indeed, emulating memcpy_*io with ioread32/iowrite32 fixes the issue. Good to hear. Could you submit a patch? thanks, Takashi