All of lore.kernel.org
 help / color / mirror / Atom feed
From: John Crispin <blogic@openwrt.org>
To: Ralf Baechle <ralf@linux-mips.org>
Cc: Gabor Juhos <juhosg@openwrt.org>,
	linux-mips@linux-mips.org, John Crispin <blogic@openwrt.org>
Subject: [PATCH 00/18] MIPS: ralink: add several new Ralink SoC
Date: Wed, 10 Apr 2013 13:47:09 +0200	[thread overview]
Message-ID: <1365594447-13068-1-git-send-email-blogic@openwrt.org> (raw)

This series adds support for the Ralink WiSoCs that we do not support so far.

In parallel to this series we are also pushing spi and gpio drivers.

If all goes well, v3.10 will have full SoC support.
(with the exception of Ethernet which still needs a rewrite)

Thanks go to Gabor who has been heavily involved in testing an crunching bugs.

Signed-off-by: John Crispin <blogic@openwrt.org

Gabor Juhos (2):
  MIPS: ralink: add PCI IRQ handling
  MIPS: ralink: add cpu-feature-overrides.h

John Crispin (16):
  MIPS: ralink: fix RT305x clock setup
  MIPS: ralink: add missing comment in irq driver
  MIPS: ralink: add RT5350 sdram register defines
  MIPS: ralink: add RT3352 usb register defines
  MIPS: ralink: add pinmux driver
  MIPS: ralink: extend RT3050 dtsi file
  MIPS: ralink: add RT5350 dtsi file
  MIPS: ralink: make early_printk work on RT2880
  MIPS: ralink: adds support for RT2880 SoC family
  MIPS: ralink: add rt2880 dts files
  MIPS: ralink: adds support for RT3883 SoC family
  MIPS: ralink: add rt3883 dts files
  MIPS: ralink: adds support for MT7620 SoC family
  MIPS: ralink: add MT7620 dts files
  MIPS: ralink: add support for periodic timer irq
  MIPS: ralink: add support for runtime memory detection

 arch/mips/Kconfig                                  |    2 +-
 arch/mips/include/asm/mach-ralink/mt7620.h         |   66 ++++++
 arch/mips/include/asm/mach-ralink/rt288x.h         |   49 ++++
 .../asm/mach-ralink/rt288x/cpu-feature-overrides.h |   56 +++++
 arch/mips/include/asm/mach-ralink/rt305x.h         |   19 ++
 .../asm/mach-ralink/rt305x/cpu-feature-overrides.h |   56 +++++
 arch/mips/include/asm/mach-ralink/rt3883.h         |  247 ++++++++++++++++++++
 .../asm/mach-ralink/rt3883/cpu-feature-overrides.h |   55 +++++
 arch/mips/ralink/Kconfig                           |   23 ++
 arch/mips/ralink/Makefile                          |    5 +-
 arch/mips/ralink/Platform                          |   18 ++
 arch/mips/ralink/common.h                          |   11 +-
 arch/mips/ralink/dts/Makefile                      |    3 +
 arch/mips/ralink/dts/mt7620.dtsi                   |  138 +++++++++++
 arch/mips/ralink/dts/mt7620_eval.dts               |   22 ++
 arch/mips/ralink/dts/rt2880.dtsi                   |  116 +++++++++
 arch/mips/ralink/dts/rt2880_eval.dts               |   52 +++++
 arch/mips/ralink/dts/rt3050.dtsi                   |   96 ++++++--
 arch/mips/ralink/dts/rt3052_eval.dts               |    2 +-
 arch/mips/ralink/dts/rt3883.dtsi                   |  186 +++++++++++++++
 arch/mips/ralink/dts/rt3883_eval.dts               |   52 +++++
 arch/mips/ralink/dts/rt5350.dtsi                   |  181 ++++++++++++++
 arch/mips/ralink/early_printk.c                    |    4 +
 arch/mips/ralink/irq.c                             |    5 +
 arch/mips/ralink/memory.c                          |  119 ++++++++++
 arch/mips/ralink/mt7620.c                          |  209 +++++++++++++++++
 arch/mips/ralink/of.c                              |    5 +
 arch/mips/ralink/pinmux.c                          |   95 ++++++++
 arch/mips/ralink/rt288x.c                          |  143 ++++++++++++
 arch/mips/ralink/rt305x.c                          |   20 +-
 arch/mips/ralink/rt3883.c                          |  244 +++++++++++++++++++
 arch/mips/ralink/timer.c                           |  192 +++++++++++++++
 32 files changed, 2468 insertions(+), 23 deletions(-)
 create mode 100644 arch/mips/include/asm/mach-ralink/mt7620.h
 create mode 100644 arch/mips/include/asm/mach-ralink/rt288x.h
 create mode 100644 arch/mips/include/asm/mach-ralink/rt288x/cpu-feature-overrides.h
 create mode 100644 arch/mips/include/asm/mach-ralink/rt305x/cpu-feature-overrides.h
 create mode 100644 arch/mips/include/asm/mach-ralink/rt3883.h
 create mode 100644 arch/mips/include/asm/mach-ralink/rt3883/cpu-feature-overrides.h
 create mode 100644 arch/mips/ralink/dts/mt7620.dtsi
 create mode 100644 arch/mips/ralink/dts/mt7620_eval.dts
 create mode 100644 arch/mips/ralink/dts/rt2880.dtsi
 create mode 100644 arch/mips/ralink/dts/rt2880_eval.dts
 create mode 100644 arch/mips/ralink/dts/rt3883.dtsi
 create mode 100644 arch/mips/ralink/dts/rt3883_eval.dts
 create mode 100644 arch/mips/ralink/dts/rt5350.dtsi
 create mode 100644 arch/mips/ralink/memory.c
 create mode 100644 arch/mips/ralink/mt7620.c
 create mode 100644 arch/mips/ralink/pinmux.c
 create mode 100644 arch/mips/ralink/rt288x.c
 create mode 100644 arch/mips/ralink/rt3883.c
 create mode 100644 arch/mips/ralink/timer.c

-- 
1.7.10.4

             reply	other threads:[~2013-04-10 11:54 UTC|newest]

Thread overview: 26+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2013-04-10 11:47 John Crispin [this message]
2013-04-10 11:47 ` [PATCH 01/18] MIPS: ralink: add PCI IRQ handling John Crispin
2013-04-10 11:47 ` [PATCH 02/18] MIPS: ralink: fix RT305x clock setup John Crispin
2013-04-10 13:47   ` Jonas Gorski
2013-04-10 13:49   ` Sergei Shtylyov
2013-04-10 11:47 ` [PATCH 03/18] MIPS: ralink: add missing comment in irq driver John Crispin
2013-04-10 11:47 ` [PATCH 04/18] MIPS: ralink: add RT5350 sdram register defines John Crispin
2013-04-10 11:47 ` [PATCH 05/18] MIPS: ralink: add RT3352 usb " John Crispin
2013-04-10 11:47 ` [PATCH 06/18] MIPS: ralink: add pinmux driver John Crispin
2013-04-10 13:51   ` Jonas Gorski
2013-04-10 11:47 ` [PATCH 07/18] MIPS: ralink: extend RT3050 dtsi file John Crispin
2013-04-10 11:47 ` [PATCH 08/18] MIPS: ralink: add RT5350 " John Crispin
2013-04-10 13:53   ` Jonas Gorski
2013-04-10 13:54     ` John Crispin
2013-04-10 11:47 ` [PATCH 09/18] MIPS: ralink: make early_printk work on RT2880 John Crispin
2013-04-10 11:47 ` [PATCH 10/18] MIPS: ralink: adds support for RT2880 SoC family John Crispin
2013-04-10 11:47 ` [PATCH 11/18] MIPS: ralink: add rt2880 dts files John Crispin
2013-04-10 11:47 ` [PATCH 12/18] MIPS: ralink: adds support for RT3883 SoC family John Crispin
2013-04-10 11:47 ` [PATCH 13/18] MIPS: ralink: add rt3883 dts files John Crispin
2013-04-10 11:47 ` [PATCH 14/18] MIPS: ralink: adds support for MT7620 SoC family John Crispin
2013-04-10 11:47 ` [PATCH 15/18] MIPS: ralink: add MT7620 dts files John Crispin
2013-04-10 11:47 ` [PATCH 16/18] MIPS: ralink: add support for periodic timer irq John Crispin
2013-04-10 13:41   ` Lars-Peter Clausen
2013-04-10 11:47 ` [PATCH 17/18] MIPS: ralink: add cpu-feature-overrides.h John Crispin
2013-04-10 11:47 ` [PATCH 18/18] MIPS: ralink: add support for runtime memory detection John Crispin
2013-04-10 13:56   ` Jonas Gorski

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=1365594447-13068-1-git-send-email-blogic@openwrt.org \
    --to=blogic@openwrt.org \
    --cc=juhosg@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.