mail archive of the barebox mailing list
 help / color / mirror / Atom feed
* [PATCH 0/9] MIPS: add Atheros AR933x SoC & TP-LINK MR3020 board support
@ 2014-03-27 21:26 Antony Pavlov
  2014-03-27 21:26 ` [PATCH 1/9] MIPS: lib: add BAREBOX_CLK_TABLE to linker script Antony Pavlov
                   ` (9 more replies)
  0 siblings, 10 replies; 14+ messages in thread
From: Antony Pavlov @ 2014-03-27 21:26 UTC (permalink / raw)
  To: barebox

Antony Pavlov (8):
  MIPS: lib: add BAREBOX_CLK_TABLE to linker script
  MIPS: ath79: add DEBUG_LL support for Atheros AR933x
  serial: add Atheros AR933x driver
  clk: add Atheros AR933x driver
  MIPS: ath79: ar9331: add devicetree files
  MIPS: ath79: add tplink-mr3020 board support
  MIPS: tplink-mr3020: add documentation
  MIPS: add tplink-mr3020_defconfig

Du Huanpeng (1):
  MIPS: add Atheros ar933x family support

 Documentation/boards.dox                         |   1 +
 arch/mips/Kconfig                                |  14 ++
 arch/mips/Makefile                               |   3 +
 arch/mips/boards/tplink-mr3020/Makefile          |   1 +
 arch/mips/boards/tplink-mr3020/board.c           |  27 +++
 arch/mips/boards/tplink-mr3020/tplink-mr3020.dox |  64 +++++++
 arch/mips/configs/tplink-mr3020_defconfig        |  29 ++++
 arch/mips/dts/ar9331.dtsi                        |  26 +++
 arch/mips/dts/include/dt-bindings                |   1 +
 arch/mips/dts/tplink-mr3020.dts                  |  18 ++
 arch/mips/lib/barebox.lds.S                      |   2 +
 arch/mips/mach-ath79/Kconfig                     |  15 ++
 arch/mips/mach-ath79/Makefile                    |   1 +
 arch/mips/mach-ath79/include/mach/ar71xx_regs.h  |  64 +++++++
 arch/mips/mach-ath79/include/mach/ath79.h        |  33 ++++
 arch/mips/mach-ath79/include/mach/debug_ll.h     |  56 +++++++
 arch/mips/mach-ath79/reset.c                     |  32 ++++
 drivers/clk/Makefile                             |   1 +
 drivers/clk/clk-ar933x.c                         | 175 +++++++++++++++++++
 drivers/serial/Kconfig                           |   7 +
 drivers/serial/Makefile                          |   1 +
 drivers/serial/serial_ar933x.c                   | 204 +++++++++++++++++++++++
 drivers/serial/serial_ar933x.h                   |  69 ++++++++
 include/dt-bindings/clock/ar933x-clk.h           |  22 +++
 24 files changed, 866 insertions(+)
 create mode 100644 arch/mips/boards/tplink-mr3020/Makefile
 create mode 100644 arch/mips/boards/tplink-mr3020/board.c
 create mode 100644 arch/mips/boards/tplink-mr3020/tplink-mr3020.dox
 create mode 100644 arch/mips/configs/tplink-mr3020_defconfig
 create mode 100644 arch/mips/dts/ar9331.dtsi
 create mode 120000 arch/mips/dts/include/dt-bindings
 create mode 100644 arch/mips/dts/tplink-mr3020.dts
 create mode 100644 arch/mips/mach-ath79/Kconfig
 create mode 100644 arch/mips/mach-ath79/Makefile
 create mode 100644 arch/mips/mach-ath79/include/mach/ar71xx_regs.h
 create mode 100644 arch/mips/mach-ath79/include/mach/ath79.h
 create mode 100644 arch/mips/mach-ath79/include/mach/debug_ll.h
 create mode 100644 arch/mips/mach-ath79/reset.c
 create mode 100644 drivers/clk/clk-ar933x.c
 create mode 100644 drivers/serial/serial_ar933x.c
 create mode 100644 drivers/serial/serial_ar933x.h
 create mode 100644 include/dt-bindings/clock/ar933x-clk.h

-- 
1.9.0


_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox

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

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

Thread overview: 14+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2014-03-27 21:26 [PATCH 0/9] MIPS: add Atheros AR933x SoC & TP-LINK MR3020 board support Antony Pavlov
2014-03-27 21:26 ` [PATCH 1/9] MIPS: lib: add BAREBOX_CLK_TABLE to linker script Antony Pavlov
2014-03-27 21:26 ` [PATCH 2/9] MIPS: add Atheros ar933x family support Antony Pavlov
2014-03-27 21:26 ` [PATCH 3/9] MIPS: ath79: add DEBUG_LL support for Atheros AR933x Antony Pavlov
2014-03-27 21:26 ` [PATCH 4/9] serial: add Atheros AR933x driver Antony Pavlov
2014-03-27 21:26 ` [PATCH 5/9] clk: " Antony Pavlov
2014-03-27 21:26 ` [PATCH 6/9] MIPS: ath79: ar9331: add devicetree files Antony Pavlov
2014-03-27 21:26 ` [PATCH 7/9] MIPS: ath79: add tplink-mr3020 board support Antony Pavlov
2014-03-28  9:44   ` Sascha Hauer
2014-03-27 21:26 ` [PATCH 8/9] MIPS: tplink-mr3020: add documentation Antony Pavlov
2014-03-27 21:26 ` [PATCH 9/9] MIPS: add tplink-mr3020_defconfig Antony Pavlov
2014-03-28  9:28 ` [PATCH 0/9] MIPS: add Atheros AR933x SoC & TP-LINK MR3020 board support Antony Pavlov
2014-03-28  9:38   ` Sascha Hauer
2014-03-28 10:39     ` Antony Pavlov

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