Linux MIPS Architecture development
 help / color / mirror / Atom feed
* [PATCH 00/13] MIPS: ath79: add initial support for AR933X SoCs
@ 2011-06-20 19:26 Gabor Juhos
  2011-06-20 19:26 ` [PATCH 01/13] MIPS: ath79: remove superfluous parentheses Gabor Juhos
                   ` (13 more replies)
  0 siblings, 14 replies; 33+ messages in thread
From: Gabor Juhos @ 2011-06-20 19:26 UTC (permalink / raw)
  To: Ralf Baechle; +Cc: linux-mips, Kathy Giori, Luis R. Rodriguez, Gabor Juhos

This patch set adds initial support for the Atheros AR933X SoCs.

The patch set depends on the following unmerged patches:
MIPS: ath79: modify number of available IRQs
MIPS: ath79: handle more MISC IRQs
MIPS: ath79: add common USB Host Controller device

Gabor Juhos (13):
  MIPS: ath79: remove superfluous parentheses
  MIPS: ath79: add revision id for the AR933X SoCs
  MIPS: ath79: add early printk support for the AR933X SoCs
  MIPS: ath79: add AR933X specific clock init
  MIPS: ath79: add AR933X specific glue for
    ath79_device_reset_{set,clear}
  MIPS: ath79: add AR933X specific IRQ initialization
  MIPS: ath79: add AR933X specific GPIO initialization
  MIPS: ath79: add config symbol for the AR933X SoCs
  USB: ehci-ath79: add device_id entry for the AR933X SoCs
  MIPS: ath79: add AR933X specific USB platform device registration
  serial: add driver for the built-in UART of the AR933X SoC
  MIPS: ath79: register UART device for the AR933X SoCs
  MIPS: ath79: add initial support for the Atheros AP121 reference
    board

 arch/mips/ath79/Kconfig                            |   15 +
 arch/mips/ath79/Makefile                           |    1 +
 arch/mips/ath79/clock.c                            |   55 ++
 arch/mips/ath79/common.c                           |    4 +
 arch/mips/ath79/dev-common.c                       |   38 +-
 arch/mips/ath79/dev-usb.c                          |   19 +
 arch/mips/ath79/early_printk.c                     |   76 ++-
 arch/mips/ath79/gpio.c                             |    2 +
 arch/mips/ath79/irq.c                              |    5 +-
 arch/mips/ath79/mach-ap121.c                       |   88 +++
 arch/mips/ath79/machtypes.h                        |    1 +
 arch/mips/ath79/setup.c                            |   18 +-
 arch/mips/include/asm/mach-ath79/ar71xx_regs.h     |   43 ++
 arch/mips/include/asm/mach-ath79/ar933x_uart.h     |   67 ++
 .../include/asm/mach-ath79/ar933x_uart_platform.h  |   18 +
 arch/mips/include/asm/mach-ath79/ath79.h           |   10 +-
 drivers/tty/serial/Kconfig                         |   23 +
 drivers/tty/serial/Makefile                        |    2 +
 drivers/tty/serial/ar933x_uart.c                   |  688 ++++++++++++++++++++
 drivers/usb/host/Kconfig                           |    2 +-
 drivers/usb/host/ehci-ath79.c                      |    4 +
 include/linux/serial_core.h                        |    4 +
 22 files changed, 1166 insertions(+), 17 deletions(-)
 create mode 100644 arch/mips/ath79/mach-ap121.c
 create mode 100644 arch/mips/include/asm/mach-ath79/ar933x_uart.h
 create mode 100644 arch/mips/include/asm/mach-ath79/ar933x_uart_platform.h
 create mode 100644 drivers/tty/serial/ar933x_uart.c

-- 
1.7.2.1

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

end of thread, other threads:[~2011-11-16 19:18 UTC | newest]

Thread overview: 33+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-06-20 19:26 [PATCH 00/13] MIPS: ath79: add initial support for AR933X SoCs Gabor Juhos
2011-06-20 19:26 ` [PATCH 01/13] MIPS: ath79: remove superfluous parentheses Gabor Juhos
2011-11-16 19:10   ` Ralf Baechle
2011-06-20 19:26 ` [PATCH 02/13] MIPS: ath79: add revision id for the AR933X SoCs Gabor Juhos
2011-06-21 10:22   ` Sergei Shtylyov
2011-06-21 18:17     ` Gabor Juhos
2011-11-16 19:11   ` Ralf Baechle
2011-06-20 19:26 ` [PATCH 03/13] MIPS: ath79: add early printk support " Gabor Juhos
2011-11-16 19:11   ` Ralf Baechle
2011-06-20 19:26 ` [PATCH 04/13] MIPS: ath79: add AR933X specific clock init Gabor Juhos
2011-11-16 19:11   ` Ralf Baechle
2011-06-20 19:26 ` [PATCH 05/13] MIPS: ath79: add AR933X specific glue for ath79_device_reset_{set,clear} Gabor Juhos
2011-11-16 19:11   ` Ralf Baechle
2011-06-20 19:26 ` [PATCH 06/13] MIPS: ath79: add AR933X specific IRQ initialization Gabor Juhos
2011-11-16 19:11   ` Ralf Baechle
2011-06-20 19:26 ` [PATCH 07/13] MIPS: ath79: add AR933X specific GPIO initialization Gabor Juhos
2011-11-16 19:11   ` Ralf Baechle
2011-06-20 19:26 ` [PATCH 08/13] MIPS: ath79: add config symbol for the AR933X SoCs Gabor Juhos
2011-11-16 19:12   ` Ralf Baechle
2011-06-20 19:26 ` [PATCH 09/13] USB: ehci-ath79: add device_id entry " Gabor Juhos
2011-11-16 19:13   ` Ralf Baechle
2011-06-20 19:26 ` [PATCH 10/13] MIPS: ath79: add AR933X specific USB platform device registration Gabor Juhos
2011-11-16 19:13   ` Ralf Baechle
2011-06-20 19:26 ` [PATCH 11/13] serial: add driver for the built-in UART of the AR933X SoC Gabor Juhos
2011-06-21  8:59   ` Alan Cox
2011-06-21 18:55     ` Gabor Juhos
2011-07-01 21:11     ` Greg KH
2011-11-16 19:13       ` Ralf Baechle
2011-06-20 19:26 ` [PATCH 12/13] MIPS: ath79: register UART device for the AR933X SoCs Gabor Juhos
2011-11-16 19:14   ` Ralf Baechle
2011-06-20 19:26 ` [PATCH 13/13] MIPS: ath79: add initial support for the Atheros AP121 reference board Gabor Juhos
2011-11-16 19:14   ` Ralf Baechle
2011-11-16 19:18 ` [PATCH 00/13] MIPS: ath79: add initial support for AR933X SoCs Ralf Baechle

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox