All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v2 00/13] MIPS: support for the Atheros AR231X SoCs
@ 2014-10-21 23:03 Sergey Ryazanov
  2014-10-21 23:03 ` [PATCH v2 01/13] MIPS: ath25: add common parts Sergey Ryazanov
                   ` (12 more replies)
  0 siblings, 13 replies; 35+ messages in thread
From: Sergey Ryazanov @ 2014-10-21 23:03 UTC (permalink / raw)
  To: Ralf Baechle; +Cc: Linux MIPS

This patch set contains initial support for the following Atheros SoCs: AR5312,
AR2312, AR2313, AR2315, AR2316, AR2317, AR2318.

- Patches 1 through 10 and patch 13 add support for different parts of AR231x
  SoCs.
- Patch 11 recover ath5k AHB bus support
- Patch 12 updates ath5k dependecies

The code was successfully tested with AR2313, AR2315 and AR2317 SoCs.

This code has been written by OpenWRT developers and it resided in OpenWRT's
tree for a long time. My work was to cleanup the code and its rebase on the
latest linux-mips tree.

Changes since RFC:
  - use dynamic IRQ numbers allocation
  - group ath5 related changes in one patch
  - group devices registration in separate patch

Changes since v1:
  - rename MIPS machine ar231x -> ath25
  - drop the GPIO and Watchdog drivers, since they need more work
  - add patch which recover ath5k AHB bus support
  - rebased on top of 3.18-rc1

Sergey Ryazanov (13):
  MIPS: ath25: add common parts
  MIPS: ath25: add basic AR5312 SoC support
  MIPS: ath25: add basic AR2315 SoC support
  MIPS: ath25: add interrupts handling routines
  MIPS: ath25: add early printk support
  MIPS: ath25: add UART support
  MIPS: ath25: add board configuration detection
  MIPS: ath25: add SoC type detection
  MIPS: ath25: register various chip devices
  MIPS: ath25: add AR2315 PCI host controller driver
  ath5k: revert AHB bus support removing
  ath5k: update dependencies
  MIPS: ath25: add Wireless device support

 arch/mips/Kbuild.platforms                         |   1 +
 arch/mips/Kconfig                                  |  15 +
 arch/mips/ath25/Kconfig                            |  18 +
 arch/mips/ath25/Makefile                           |  16 +
 arch/mips/ath25/Platform                           |   6 +
 arch/mips/ath25/ar2315.c                           | 367 +++++++++++++
 arch/mips/ath25/ar2315.h                           |  24 +
 arch/mips/ath25/ar5312.c                           | 374 +++++++++++++
 arch/mips/ath25/ar5312.h                           |  24 +
 arch/mips/ath25/board.c                            | 228 ++++++++
 arch/mips/ath25/devices.c                          | 125 +++++
 arch/mips/ath25/devices.h                          |  39 ++
 arch/mips/ath25/early_printk.c                     |  45 ++
 arch/mips/ath25/prom.c                             |  34 ++
 arch/mips/include/asm/mach-ath25/ar2315_regs.h     | 580 +++++++++++++++++++++
 arch/mips/include/asm/mach-ath25/ar5312_regs.h     | 215 ++++++++
 arch/mips/include/asm/mach-ath25/ath25.h           |  31 ++
 arch/mips/include/asm/mach-ath25/ath25_platform.h  |  73 +++
 .../include/asm/mach-ath25/cpu-feature-overrides.h |  84 +++
 arch/mips/include/asm/mach-ath25/dma-coherence.h   |  76 +++
 arch/mips/include/asm/mach-ath25/gpio.h            |  16 +
 arch/mips/include/asm/mach-ath25/war.h             |  25 +
 arch/mips/pci/Makefile                             |   1 +
 arch/mips/pci/pci-ar2315.c                         | 352 +++++++++++++
 drivers/net/wireless/ath/ath5k/Kconfig             |  14 +-
 drivers/net/wireless/ath/ath5k/Makefile            |   1 +
 drivers/net/wireless/ath/ath5k/ahb.c               | 234 +++++++++
 drivers/net/wireless/ath/ath5k/ath5k.h             |  28 +
 drivers/net/wireless/ath/ath5k/base.c              |  14 +
 drivers/net/wireless/ath/ath5k/led.c               |   6 +
 30 files changed, 3063 insertions(+), 3 deletions(-)
 create mode 100644 arch/mips/ath25/Kconfig
 create mode 100644 arch/mips/ath25/Makefile
 create mode 100644 arch/mips/ath25/Platform
 create mode 100644 arch/mips/ath25/ar2315.c
 create mode 100644 arch/mips/ath25/ar2315.h
 create mode 100644 arch/mips/ath25/ar5312.c
 create mode 100644 arch/mips/ath25/ar5312.h
 create mode 100644 arch/mips/ath25/board.c
 create mode 100644 arch/mips/ath25/devices.c
 create mode 100644 arch/mips/ath25/devices.h
 create mode 100644 arch/mips/ath25/early_printk.c
 create mode 100644 arch/mips/ath25/prom.c
 create mode 100644 arch/mips/include/asm/mach-ath25/ar2315_regs.h
 create mode 100644 arch/mips/include/asm/mach-ath25/ar5312_regs.h
 create mode 100644 arch/mips/include/asm/mach-ath25/ath25.h
 create mode 100644 arch/mips/include/asm/mach-ath25/ath25_platform.h
 create mode 100644 arch/mips/include/asm/mach-ath25/cpu-feature-overrides.h
 create mode 100644 arch/mips/include/asm/mach-ath25/dma-coherence.h
 create mode 100644 arch/mips/include/asm/mach-ath25/gpio.h
 create mode 100644 arch/mips/include/asm/mach-ath25/war.h
 create mode 100644 arch/mips/pci/pci-ar2315.c
 create mode 100644 drivers/net/wireless/ath/ath5k/ahb.c

-- 
1.8.5.5

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

end of thread, other threads:[~2014-10-28 14:00 UTC | newest]

Thread overview: 35+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-10-21 23:03 [PATCH v2 00/13] MIPS: support for the Atheros AR231X SoCs Sergey Ryazanov
2014-10-21 23:03 ` [PATCH v2 01/13] MIPS: ath25: add common parts Sergey Ryazanov
2014-10-21 23:36   ` John Crispin
2014-10-22 12:40     ` Sergey Ryazanov
2014-10-22  8:31   ` John Crispin
2014-10-22 13:06     ` Sergey Ryazanov
2014-10-22 13:09       ` John Crispin
2014-10-21 23:03 ` [PATCH v2 02/13] MIPS: ath25: add basic AR5312 SoC support Sergey Ryazanov
2014-10-21 23:48   ` John Crispin
2014-10-22  0:03     ` John Crispin
2014-10-22 14:11     ` Sergey Ryazanov
2014-10-21 23:03 ` [PATCH v2 03/13] MIPS: ath25: add basic AR2315 " Sergey Ryazanov
2014-10-21 23:03 ` [PATCH v2 04/13] MIPS: ath25: add interrupts handling routines Sergey Ryazanov
2014-10-22  8:26   ` John Crispin
2014-10-22 14:51     ` Sergey Ryazanov
2014-10-22  8:49   ` John Crispin
2014-10-21 23:03 ` [PATCH v2 05/13] MIPS: ath25: add early printk support Sergey Ryazanov
2014-10-21 23:03 ` [PATCH v2 06/13] MIPS: ath25: add UART support Sergey Ryazanov
2014-10-21 23:03 ` [PATCH v2 07/13] MIPS: ath25: add board configuration detection Sergey Ryazanov
2014-10-21 23:03 ` [PATCH v2 08/13] MIPS: ath25: add SoC type detection Sergey Ryazanov
2014-10-21 23:03 ` [PATCH v2 09/13] MIPS: ath25: register various chip devices Sergey Ryazanov
2014-10-22  8:39   ` John Crispin
2014-10-22 15:22     ` Sergey Ryazanov
2014-10-21 23:03 ` [PATCH v2 10/13] MIPS: ath25: add AR2315 PCI host controller driver Sergey Ryazanov
2014-10-22  8:47   ` John Crispin
2014-10-22 15:25     ` Sergey Ryazanov
2014-10-21 23:03 ` [PATCH v2 11/13] ath5k: revert AHB bus support removing Sergey Ryazanov
2014-10-22 12:18   ` Bob Copeland
2014-10-22 12:37     ` Sergey Ryazanov
2014-10-27 18:04   ` John W. Linville
2014-10-28  7:08     ` Sergey Ryazanov
2014-10-28 13:48       ` John W. Linville
2014-10-21 23:03 ` [PATCH v2 12/13] ath5k: update dependencies Sergey Ryazanov
2014-10-27 18:05   ` John W. Linville
2014-10-21 23:03 ` [PATCH v2 13/13] MIPS: ath25: add Wireless device support Sergey Ryazanov

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.