All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v4 0/8] wilink: add device tree support
@ 2013-07-30 13:04 ` Luciano Coelho
  0 siblings, 0 replies; 43+ messages in thread
From: Luciano Coelho @ 2013-07-30 13:04 UTC (permalink / raw)
  To: linux-wireless, tony, nsekhar
  Cc: coelho, luca, mturquette, mark.rutland, balbi, grant.likely,
	rob.herring, devicetree-discuss, linux-doc, linux-kernel,
	linux-omap, linux-arm-kernel, nm, martinez.javier

Hi,

This patch series adds device tree support to the wlcore_sdio driver,
which is used by WiLink6, WiLink7 and WiLink8.

The first patches do some clean-up to make the data needed in the
wilink device tree node smaller.  The remaining patches implement the
actual device tree node parsing in wlcore_sdio.

Regarding the XTAL clock issues, for now we don't support XTAL mode
with DT, but I have sent a proposal for a small change in the clock
framework to support this, but it's still under discussions [1].

The DTS file changes will be sent separately, since they need to go
via different trees.

A new version of the bindings documentation has been sent [2] and, if
no more comments are given to it, I'll apply it via my tree.

[1] http://news.gmane.org/find-root.php?message_id=1372971912-10877-1-git-send-email-coelho@ti.com
[2] http://news.gmane.org/find-root.php?message_id=1375109728-5931-1-git-send-email-coelho@ti.com

Changes in v4:

* Rebased on top of 3.11-rc3 (eg. no more changes on the board files
  that were removed);

* Use the new irq_get_trigger_type() instead of
  irqd_get_trigger_type() (thanks Javier);

* Added some missing const's (thanks Felipe);

* Reverted Tony's workaround to get WiLink to work on Panda while DT
  was not supported yet.


Please review.


Luciano Coelho (8):
  wl1251: split wl251 platform data to a separate structure
  wlcore: set irq_flags in the board files instead of hiding behind a
    quirk
  wlcore: remove pwr_in_suspend from platform data
  wl12xx: use frequency instead of enumerations for pdata clocks
  wlcore: add initial device tree support to the sdio module
  wlcore: sdio: add wilink clock providers
  wlcore: sdio: get clocks from device tree
  wlcore/wl12xx: check if we got correct clock data from DT

 arch/arm/mach-davinci/board-da850-evm.c        |  11 ++-
 arch/arm/mach-omap2/board-omap3evm.c           |  22 ++++-
 arch/arm/mach-omap2/board-omap3pandora.c       |   4 +-
 arch/arm/mach-omap2/board-rx51-peripherals.c   |   2 +-
 arch/arm/mach-omap2/board-zoom-peripherals.c   |  33 +++++++-
 arch/arm/mach-omap2/devices.c                  |  39 ---------
 drivers/net/wireless/ti/wilink_platform_data.c |  37 ++++++--
 drivers/net/wireless/ti/wl1251/sdio.c          |  12 +--
 drivers/net/wireless/ti/wl1251/spi.c           |   2 +-
 drivers/net/wireless/ti/wl12xx/main.c          |  78 +++++++++++++++--
 drivers/net/wireless/ti/wl12xx/wl12xx.h        |  28 +++++++
 drivers/net/wireless/ti/wlcore/debugfs.c       |   2 +-
 drivers/net/wireless/ti/wlcore/main.c          |  20 ++---
 drivers/net/wireless/ti/wlcore/sdio.c          | 112 +++++++++++++++++++++++--
 drivers/net/wireless/ti/wlcore/wlcore.h        |   5 +-
 drivers/net/wireless/ti/wlcore/wlcore_i.h      |   1 +
 include/linux/wl12xx.h                         |  52 +++++-------
 17 files changed, 340 insertions(+), 120 deletions(-)

-- 
1.8.3.2


^ permalink raw reply	[flat|nested] 43+ messages in thread

end of thread, other threads:[~2014-03-06 10:52 UTC | newest]

Thread overview: 43+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2013-07-30 13:04 [PATCH v4 0/8] wilink: add device tree support Luciano Coelho
2013-07-30 13:04 ` Luciano Coelho
2013-07-30 13:04 ` Luciano Coelho
2013-07-30 13:04 ` [PATCH v4 1/8] wl1251: split wl251 platform data to a separate structure Luciano Coelho
2013-07-30 13:04   ` Luciano Coelho
2013-07-30 13:04   ` Luciano Coelho
2013-07-30 13:04 ` [PATCH v4 2/8] wlcore: set irq_flags in the board files instead of hiding behind a quirk Luciano Coelho
2013-07-30 13:04   ` Luciano Coelho
2013-07-30 13:04   ` Luciano Coelho
2013-07-30 13:04 ` [PATCH v4 3/8] wlcore: remove pwr_in_suspend from platform data Luciano Coelho
2013-07-30 13:04   ` Luciano Coelho
2013-07-30 13:04   ` Luciano Coelho
2013-07-30 13:04 ` [PATCH v4 4/8] wl12xx: use frequency instead of enumerations for pdata clocks Luciano Coelho
2013-07-30 13:04   ` Luciano Coelho
2013-07-30 13:04   ` Luciano Coelho
2013-07-30 13:04 ` [PATCH v4 5/8] wlcore: add initial device tree support to the sdio module Luciano Coelho
2013-07-30 13:04   ` Luciano Coelho
2013-07-30 13:04   ` Luciano Coelho
2013-07-30 13:04 ` [PATCH v4 6/8] wlcore: sdio: add wilink clock providers Luciano Coelho
2013-07-30 13:04   ` Luciano Coelho
2013-07-30 13:04   ` Luciano Coelho
2013-07-30 22:35   ` Mike Turquette
2013-07-30 22:35     ` Mike Turquette
2013-07-30 22:35     ` Mike Turquette
2013-07-30 23:04     ` Luciano Coelho
2013-07-30 23:04       ` Luciano Coelho
2013-07-30 23:04       ` Luciano Coelho
2013-07-30 13:04 ` [PATCH v4 7/8] wlcore: sdio: get clocks from device tree Luciano Coelho
2013-07-30 13:04   ` Luciano Coelho
2013-07-30 13:04   ` Luciano Coelho
2013-07-30 13:04 ` [PATCH v4 8/8] wlcore/wl12xx: check if we got correct clock data from DT Luciano Coelho
2013-07-30 13:04   ` Luciano Coelho
2013-07-30 13:04   ` Luciano Coelho
2014-02-28  7:26 ` [PATCH v4 0/8] wilink: add device tree support Yegor Yefremov
2014-02-28  7:26   ` Yegor Yefremov
2014-02-28  9:22   ` Alexandre Belloni
2014-02-28  9:22     ` Alexandre Belloni
2014-03-06 10:51     ` Yegor Yefremov
2014-03-06 10:51       ` Yegor Yefremov
2014-02-28 12:29   ` Luca Coelho
2014-02-28 12:29     ` Luca Coelho
2014-02-28 14:12     ` Luca Coelho
2014-02-28 14:12       ` Luca Coelho

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.