mbox

[GIT,PULL] wireless wl12xx and omap device tree changes for v4.1

Message ID 20150325214050.GA31346@atomide.com
State New
Headers show

Pull-request

git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap tags/omap-for-v4.1/wl12xx-dt

Message

Tony Lindgren March 25, 2015, 9:40 p.m. UTC
The following changes since commit 06e5801b8cb3fc057d88cb4dc03c0b64b2744cda:

  Linux 4.0-rc4 (2015-03-15 17:38:20 -0700)

are available in the git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap tags/omap-for-v4.1/wl12xx-dt

for you to fetch changes up to 83c3a7d4ac7fdc29a64bf9a5467a36b4c72a1eed:

  wlcore: remove wl12xx_platform_data (2015-03-24 09:48:14 -0700)

----------------------------------------------------------------
Wireless and omap changes to make wl12xx driver to use device tree
data instead of platform data from Eliad Peller <eliad@wizery.com>:

- Add device-tree support to the wlcore (wl12xx/wl18xx) driver.

- Update the current users to use the bindings instead of pdata-quirks.

- Finally, remove the deprecated wl12xx_platform_data struct

Note that da850 board file code that still uses the platform data,
but we have da850.dtsi that can be used instead. So it was decided
that we should try to remove the wl12xx support from the da850
board file as suggested by Sekhar Nori <nsekhar@ti.com>. As it's
the last patch in the series, the last patch can be simply reverted
if needed.

As this series touches quite a bit of arch code, it was suggested
by Kalle Valo <kvalo@codeaurora.org> that the whole series should
be merged via the arm-soc tree.

----------------------------------------------------------------
Eliad Peller (4):
      dt: bindings: add TI's wilink wireless device
      wlcore: add device-tree support
      ARM: dts: add wl12xx/wl18xx bindings
      wlcore: remove wl12xx_platform_data

Luciano Coelho (2):
      wlcore: set irq_trigger in board files instead of hiding behind a quirk
      wl12xx: use frequency instead of enumerations for pdata clocks

 .../devicetree/bindings/net/wireless/ti,wlcore.txt |  47 +++++++++
 arch/arm/boot/dts/am335x-evmsk.dts                 |  11 ++
 arch/arm/boot/dts/omap3-cm-t3517.dts               |  10 ++
 arch/arm/boot/dts/omap3-cm-t3730.dts               |  10 ++
 arch/arm/boot/dts/omap3-evm-common.dtsi            |  10 ++
 arch/arm/boot/dts/omap3-igep0020-rev-f.dts         |   9 ++
 arch/arm/boot/dts/omap3-igep0030-rev-g.dts         |   9 ++
 arch/arm/boot/dts/omap3-zoom3.dts                  |  10 ++
 arch/arm/boot/dts/omap4-panda-common.dtsi          |  10 ++
 arch/arm/boot/dts/omap4-sdp.dts                    |  11 ++
 arch/arm/boot/dts/omap4-var-som-om44-wlan.dtsi     |  10 ++
 arch/arm/mach-davinci/Kconfig                      |  11 --
 arch/arm/mach-davinci/board-da850-evm.c            | 112 ---------------------
 arch/arm/mach-omap2/pdata-quirks.c                 |  74 --------------
 drivers/net/wireless/ti/wilink_platform_data.c     |  25 -----
 drivers/net/wireless/ti/wl12xx/main.c              |  63 ++++++++++--
 drivers/net/wireless/ti/wl12xx/wl12xx.h            |  28 ++++++
 drivers/net/wireless/ti/wlcore/boot.c              |   1 -
 drivers/net/wireless/ti/wlcore/debugfs.c           |   2 +-
 drivers/net/wireless/ti/wlcore/main.c              |  31 +++---
 drivers/net/wireless/ti/wlcore/sdio.c              |  63 ++++++++++--
 drivers/net/wireless/ti/wlcore/spi.c               |   6 +-
 drivers/net/wireless/ti/wlcore/wlcore.h            |   5 +-
 drivers/net/wireless/ti/wlcore/wlcore_i.h          |   6 +-
 include/linux/wl12xx.h                             |  49 ---------
 25 files changed, 311 insertions(+), 312 deletions(-)
 create mode 100644 Documentation/devicetree/bindings/net/wireless/ti,wlcore.txt

Comments

Olof Johansson April 3, 2015, 8:11 p.m. UTC | #1
Hi,

On Wed, Mar 25, 2015 at 02:40:51PM -0700, Tony Lindgren wrote:
> The following changes since commit 06e5801b8cb3fc057d88cb4dc03c0b64b2744cda:
> 
>   Linux 4.0-rc4 (2015-03-15 17:38:20 -0700)
> 
> are available in the git repository at:
> 
>   git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap tags/omap-for-v4.1/wl12xx-dt
> 
> for you to fetch changes up to 83c3a7d4ac7fdc29a64bf9a5467a36b4c72a1eed:
> 
>   wlcore: remove wl12xx_platform_data (2015-03-24 09:48:14 -0700)
> 
> ----------------------------------------------------------------
> Wireless and omap changes to make wl12xx driver to use device tree
> data instead of platform data from Eliad Peller <eliad@wizery.com>:
> 
> - Add device-tree support to the wlcore (wl12xx/wl18xx) driver.
> 
> - Update the current users to use the bindings instead of pdata-quirks.
> 
> - Finally, remove the deprecated wl12xx_platform_data struct
> 
> Note that da850 board file code that still uses the platform data,
> but we have da850.dtsi that can be used instead. So it was decided
> that we should try to remove the wl12xx support from the da850
> board file as suggested by Sekhar Nori <nsekhar@ti.com>. As it's
> the last patch in the series, the last patch can be simply reverted
> if needed.
> 
> As this series touches quite a bit of arch code, it was suggested
> by Kalle Valo <kvalo@codeaurora.org> that the whole series should
> be merged via the arm-soc tree.

I'm happy to merge this, but -rc4 is newer than anything else we have. Can you
respin on -rc2? Unless there's a need for -rc4, of course.


Thanks,


-Olof
Olof Johansson April 3, 2015, 8:22 p.m. UTC | #2
On Fri, Apr 03, 2015 at 01:11:22PM -0700, Olof Johansson wrote:
> Hi,
> 
> On Wed, Mar 25, 2015 at 02:40:51PM -0700, Tony Lindgren wrote:
> > The following changes since commit 06e5801b8cb3fc057d88cb4dc03c0b64b2744cda:
> > 
> >   Linux 4.0-rc4 (2015-03-15 17:38:20 -0700)
> > 
> > are available in the git repository at:
> > 
> >   git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap tags/omap-for-v4.1/wl12xx-dt
> > 
> > for you to fetch changes up to 83c3a7d4ac7fdc29a64bf9a5467a36b4c72a1eed:
> > 
> >   wlcore: remove wl12xx_platform_data (2015-03-24 09:48:14 -0700)
> > 
> > ----------------------------------------------------------------
> > Wireless and omap changes to make wl12xx driver to use device tree
> > data instead of platform data from Eliad Peller <eliad@wizery.com>:
> > 
> > - Add device-tree support to the wlcore (wl12xx/wl18xx) driver.
> > 
> > - Update the current users to use the bindings instead of pdata-quirks.
> > 
> > - Finally, remove the deprecated wl12xx_platform_data struct
> > 
> > Note that da850 board file code that still uses the platform data,
> > but we have da850.dtsi that can be used instead. So it was decided
> > that we should try to remove the wl12xx support from the da850
> > board file as suggested by Sekhar Nori <nsekhar@ti.com>. As it's
> > the last patch in the series, the last patch can be simply reverted
> > if needed.
> > 
> > As this series touches quite a bit of arch code, it was suggested
> > by Kalle Valo <kvalo@codeaurora.org> that the whole series should
> > be merged via the arm-soc tree.
> 
> I'm happy to merge this, but -rc4 is newer than anything else we have. Can you
> respin on -rc2? Unless there's a need for -rc4, of course.

Nevermind, we've already got -rc4 elsewhere, so I'll just catch this branch up
too.


-Olof
Tony Lindgren April 3, 2015, 10:12 p.m. UTC | #3
* Olof Johansson <olof@lixom.net> [150403 13:22]:
> On Fri, Apr 03, 2015 at 01:11:22PM -0700, Olof Johansson wrote:
> > Hi,
> > 
> > On Wed, Mar 25, 2015 at 02:40:51PM -0700, Tony Lindgren wrote:
> > > The following changes since commit 06e5801b8cb3fc057d88cb4dc03c0b64b2744cda:
> > > 
> > >   Linux 4.0-rc4 (2015-03-15 17:38:20 -0700)
> > > 
> > > are available in the git repository at:
> > > 
> > >   git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap tags/omap-for-v4.1/wl12xx-dt
> > > 
> > > for you to fetch changes up to 83c3a7d4ac7fdc29a64bf9a5467a36b4c72a1eed:
> > > 
> > >   wlcore: remove wl12xx_platform_data (2015-03-24 09:48:14 -0700)
> > > 
> > > ----------------------------------------------------------------
> > > Wireless and omap changes to make wl12xx driver to use device tree
> > > data instead of platform data from Eliad Peller <eliad@wizery.com>:
> > > 
> > > - Add device-tree support to the wlcore (wl12xx/wl18xx) driver.
> > > 
> > > - Update the current users to use the bindings instead of pdata-quirks.
> > > 
> > > - Finally, remove the deprecated wl12xx_platform_data struct
> > > 
> > > Note that da850 board file code that still uses the platform data,
> > > but we have da850.dtsi that can be used instead. So it was decided
> > > that we should try to remove the wl12xx support from the da850
> > > board file as suggested by Sekhar Nori <nsekhar@ti.com>. As it's
> > > the last patch in the series, the last patch can be simply reverted
> > > if needed.
> > > 
> > > As this series touches quite a bit of arch code, it was suggested
> > > by Kalle Valo <kvalo@codeaurora.org> that the whole series should
> > > be merged via the arm-soc tree.
> > 
> > I'm happy to merge this, but -rc4 is newer than anything else we have. Can you
> > respin on -rc2? Unless there's a need for -rc4, of course.
> 
> Nevermind, we've already got -rc4 elsewhere, so I'll just catch this branch up
> too.

OK thanks that avoids basing on a non -rc tag and merge conflicts.

Regards,

Tony