[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <4ECB5257.4040600@ladisch.de>
Date: Tue, 22 Nov 2011 08:42:15 +0100
From: Clemens Ladisch <clemens@...isch.de>
To: Tim Blechmann <tim@...ngt.org>
CC: LKML <linux-kernel@...r.kernel.org>, alsa-devel@...a-project.org,
Takashi Iwai <tiwai@...e.de>, Brian Gerst <brgerst@...il.com>
Subject: Re: [alsa-devel] [bisected] lx6464es fails to open a second time
Tim Blechmann wrote:
> some time ago, i've been developing the driver for the lx6464es ethersound
> sound card, which has been included into the kernel for some time. however i
> haven't been able to use it in kernels after 2.6.33.
>
> today, i was able to bisect the issue and the first bad commit is:
>
> commit 6175ddf06b6172046a329e3abfd9c901a43efd2e
> Author: Brian Gerst <brgerst@...il.com>
> 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).
Regards,
Clemens
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists