All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v5 0/4] MIPS Boston support
@ 2017-06-17 20:52 ` Paul Burton
  0 siblings, 0 replies; 21+ messages in thread
From: Paul Burton @ 2017-06-17 20:52 UTC (permalink / raw)
  To: linux-mips; +Cc: Ralf Baechle, Paul Burton

This series introduces support for the MIPS Boston development board,
allowing generic kernels to run on it. Typically a Boston board will be
running the U-Boot bootloader & we make use of the Flattened Image Tree
(FIT) image format for the kernel.

If physical Boston hardware is unavailable this series can be tested
using QEMU built from the master branch (or v2.9 onwards). To do so,
configure the kernel for the generic 64r6el_defconfig & run QEMU like
so:

  $ make ARCH=mips 64r6el_defconfig
  $ make ARCH=mips CROSS_COMPILE=my-toolchain-
  $ qemu-system-mips64el -M boston \
      -kernel arch/mips/boot/vmlinux.gz.itb \
      serial stdio

Applies atop v4.12-rc5.

Paul Burton (4):
  dt-bindings: Document img,boston-clock binding
  clk: boston: Add a driver for MIPS Boston board clocks
  MIPS: DTS: img: Don't attempt to build-in all .dtb files
  MIPS: generic: Support MIPS Boston development boards

 .../devicetree/bindings/clock/img,boston-clock.txt |  31 +++
 MAINTAINERS                                        |  10 +
 arch/mips/boot/dts/img/Makefile                    |   5 +-
 arch/mips/boot/dts/img/boston.dts                  | 224 +++++++++++++++++++++
 arch/mips/configs/generic/board-boston.config      |  48 +++++
 arch/mips/generic/Kconfig                          |  12 ++
 arch/mips/generic/vmlinux.its.S                    |  25 +++
 drivers/clk/Kconfig                                |   1 +
 drivers/clk/Makefile                               |   1 +
 drivers/clk/imgtec/Kconfig                         |   9 +
 drivers/clk/imgtec/Makefile                        |   1 +
 drivers/clk/imgtec/clk-boston.c                    | 103 ++++++++++
 include/dt-bindings/clock/boston-clock.h           |  14 ++
 13 files changed, 482 insertions(+), 2 deletions(-)
 create mode 100644 Documentation/devicetree/bindings/clock/img,boston-clock.txt
 create mode 100644 arch/mips/boot/dts/img/boston.dts
 create mode 100644 arch/mips/configs/generic/board-boston.config
 create mode 100644 drivers/clk/imgtec/Kconfig
 create mode 100644 drivers/clk/imgtec/Makefile
 create mode 100644 drivers/clk/imgtec/clk-boston.c
 create mode 100644 include/dt-bindings/clock/boston-clock.h

-- 
2.13.1

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

end of thread, other threads:[~2017-06-23 22:28 UTC | newest]

Thread overview: 21+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-06-17 20:52 [PATCH v5 0/4] MIPS Boston support Paul Burton
2017-06-17 20:52 ` Paul Burton
2017-06-17 20:52 ` [PATCH v5 1/4] dt-bindings: Document img,boston-clock binding Paul Burton
2017-06-17 20:52   ` Paul Burton
2017-06-20  0:27   ` Stephen Boyd
2017-06-22 20:56   ` Rob Herring
2017-06-22 21:36     ` Paul Burton
2017-06-22 21:36       ` Paul Burton
2017-06-17 20:52 ` [PATCH v5 2/4] clk: boston: Add a driver for MIPS Boston board clocks Paul Burton
2017-06-17 20:52   ` Paul Burton
2017-06-20  0:26   ` Stephen Boyd
2017-06-20 16:45     ` Paul Burton
2017-06-20 16:45       ` Paul Burton
2017-06-23 22:20   ` James Hogan
2017-06-23 22:20     ` James Hogan
2017-06-17 20:52 ` [PATCH v5 3/4] MIPS: DTS: img: Don't attempt to build-in all .dtb files Paul Burton
2017-06-17 20:52   ` Paul Burton
2017-06-17 20:52 ` [PATCH v5 4/4] MIPS: generic: Support MIPS Boston development boards Paul Burton
2017-06-17 20:52   ` Paul Burton
2017-06-23 22:28   ` James Hogan
2017-06-23 22:28     ` James Hogan

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.