[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Message-ID: <3354043.ejE77YinPM@wuerfel>
Date: Thu, 02 Oct 2014 14:11:22 +0200
From: Arnd Bergmann <arnd@...db.de>
To: Vladimir Kondratiev <qca_vkondrat@....qualcomm.com>
Cc: "John W. Linville" <linville@...driver.com>,
wil6210@....qualcomm.com, netdev@...r.kernel.org,
linux-wireless@...r.kernel.org,
linux-arm-kernel@...ts.infradead.org
Subject: Re: [PATCH] wil6210: remove obsolete msm platform code
On Thursday 02 October 2014 14:29:06 Vladimir Kondratiev wrote:
> On Tuesday, September 30, 2014 05:48:20 PM Arnd Bergmann wrote:
> > The wil6210 driver has a glue layer for the Qualcomm MSM platform
> > code, which apparently could never build and is unlikely to
> > ever be able to in the future, as the MSM platform is being phased
> > out in favor of the new QCOM platform, and the driver relies
> > on out-of-tree infrastructure. Trying to build it currently
> > results in this error:
> >
> > drivers/net/wireless/ath/wil6210/wil_platform_msm.c:19:27: fatal error: linux/msm-bus.h: No such file or directory
> >
> > Removing the driver fixes the build and makes it possible to
> > build an allmodconfig kernel for MSM.
> >
> > Signed-off-by: Arnd Bergmann <arnd@...db.de>
> >
>
> We are investigating this, looking for the appropriate solution.
> Thanks for pointing to this.
FWIW, I took a closer look at the actual driver code now. It's
actually worse than I thought and I don't see any possible way
out other than removing this driver completely and starting a
new one, if you want to use it for mach-qcom. I hadn't realized
before that this is actually new code rather than ancient bitrot
that suddenly started causing problems.
Some of the worst problems are:
- the driver scans for DT properties that are completely
undocumented and have not been reviewed
- if they had been reviewed, the first comment you would have
received is that the binding makes no sense: you scan for
another node rather than taking the node you already have for
the PCI device, then pass data into a random soc-specific
driver API that is not part of the upstream kernel.
- as mentioned in the my patch above, the code has never been
compiled on a mainline kernel and now breaks builds.
I think the only way forward is to have the platform support for
whatever chip this is meant for reviewed and merged first and
then you can write a new glue driver for the interfaces we end
up putting into the kernel.
My guess is that with proper interfaces between the platform
bus driver and the wil driver glue, there would be very little
left in terms of interface and you can just call a generic
interface from the PCI driver, passing the 'struct device'
for the PCI dev in to an exported interface when provided.
Arnd
--
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Powered by blists - more mailing lists