All of lore.kernel.org
 help / color / mirror / Atom feed
From: Gabor Juhos <juhosg@openwrt.org>
To: Ralf Baechle <ralf@linux-mips.org>
Cc: John Crispin <blogic@openwrt.org>,
	linux-mips <linux-mips@linux-mips.org>,
	Gabor Juhos <juhosg@openwrt.org>
Subject: [PATCH 00/11] MIPS: ath79: add support for the QCA955X SoCs
Date: Fri, 15 Feb 2013 15:38:14 +0100	[thread overview]
Message-ID: <1360939105-23591-1-git-send-email-juhosg@openwrt.org> (raw)

This series adds support for the Qualcomm Atheros QCA955[68] SoCs
and for the AP136-010 reference board

The series depends on the following patch:
  MIPS: ath79: use dynamically allocated USB platform devices
  https://patchwork.linux-mips.org/patch/4933/

Gabor Juhos (11):
  MIPS: ath79: add early printk support for the QCA955X SoCs
  MIPS: ath79: add SoC detection code for the QCA955X SoCs
  MIPS: ath79: add clock setup code for the QCA955X SoCs
  MIPS: ath79: add IRQ handling code for the QCA955X SoCs
  MIPS: ath79: add GPIO setup code for the QCA955X SoCs
  MIPS: ath79: add QCA955X specific glue to ath79_device_reset_{set,clear}
  MIPS: ath79: register UART for the QCA955X SoCs
  MIPS: ath79: add WMAC registration code for the QCA955X SoCs
  MIPS: ath79: add PCI controller registration code for the QCA9558 SoC
  MIPS: ath79: add USB controller registration code for the QCA955X SoCs
  MIPS: ath79: add support for the Qualcomm Atheros AP136-010 board

 arch/mips/ath79/Kconfig                        |   20 ++-
 arch/mips/ath79/Makefile                       |    1 +
 arch/mips/ath79/clock.c                        |   78 ++++++++++++
 arch/mips/ath79/common.c                       |    4 +
 arch/mips/ath79/dev-common.c                   |    3 +-
 arch/mips/ath79/dev-usb.c                      |   15 +++
 arch/mips/ath79/dev-wmac.c                     |   20 +++
 arch/mips/ath79/early_printk.c                 |    2 +
 arch/mips/ath79/gpio.c                         |    4 +-
 arch/mips/ath79/irq.c                          |  110 +++++++++++++++--
 arch/mips/ath79/mach-ap136.c                   |  156 ++++++++++++++++++++++++
 arch/mips/ath79/machtypes.h                    |    1 +
 arch/mips/ath79/pci.c                          |   36 ++++++
 arch/mips/ath79/setup.c                        |   18 ++-
 arch/mips/configs/ath79_defconfig              |    1 +
 arch/mips/include/asm/mach-ath79/ar71xx_regs.h |   96 +++++++++++++++
 arch/mips/include/asm/mach-ath79/ath79.h       |   17 +++
 arch/mips/include/asm/mach-ath79/irq.h         |    6 +-
 18 files changed, 576 insertions(+), 12 deletions(-)
 create mode 100644 arch/mips/ath79/mach-ap136.c

--
1.7.10

             reply	other threads:[~2013-02-15 14:38 UTC|newest]

Thread overview: 20+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2013-02-15 14:38 Gabor Juhos [this message]
2013-02-15 14:38 ` [PATCH 01/11] MIPS: ath79: add early printk support for the QCA955X SoCs Gabor Juhos
2013-02-15 14:38 ` [PATCH 02/11] MIPS: ath79: add SoC detection code " Gabor Juhos
2013-02-15 16:00   ` John Crispin
2013-02-15 16:42     ` Gabor Juhos
2013-02-15 14:38 ` [PATCH 03/11] MIPS: ath79: add clock setup " Gabor Juhos
2013-02-15 14:38 ` [PATCH 04/11] MIPS: ath79: add IRQ handling " Gabor Juhos
2013-02-15 16:01   ` John Crispin
2013-02-15 17:26     ` Gabor Juhos
2013-02-15 14:38 ` [PATCH 05/11] MIPS: ath79: add GPIO setup " Gabor Juhos
2013-02-15 14:38 ` [PATCH 06/11] MIPS: ath79: add QCA955X specific glue to ath79_device_reset_{set,clear} Gabor Juhos
2013-02-15 14:38 ` [PATCH 07/11] MIPS: ath79: register UART for the QCA955X SoCs Gabor Juhos
2013-02-15 14:38 ` [PATCH 08/11] MIPS: ath79: add WMAC registration code " Gabor Juhos
2013-02-15 16:01   ` John Crispin
2013-02-15 17:13     ` Gabor Juhos
2013-02-15 14:38 ` [PATCH 09/11] MIPS: ath79: add PCI controller " Gabor Juhos
2013-02-15 14:38 ` [PATCH 10/11] MIPS: ath79: add USB " Gabor Juhos
2013-02-15 14:38 ` [PATCH 11/11] MIPS: ath79: add support for the Qualcomm Atheros AP136-010 board Gabor Juhos
2013-02-15 16:02   ` John Crispin
2013-02-15 17:34     ` Gabor Juhos

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1360939105-23591-1-git-send-email-juhosg@openwrt.org \
    --to=juhosg@openwrt.org \
    --cc=blogic@openwrt.org \
    --cc=linux-mips@linux-mips.org \
    --cc=ralf@linux-mips.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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.