Changes since RFC v1: * add Dragino MS14 board support; * add "ref" oscillator input clock for pll-controller; add necessary nodes to board dts files. TODO: * add Onion Omega board support; * add AR9132 SoC clock driver; * fixup Kconfig & Makefile changes. Antony Pavlov (7): WIP: clk: add AR9331 SoCs clock driver WIP: MIPS: ath79: use drivers/clk/clk-ath79.c driver for ar933x MIPS: dts: qca: introduce AR9331 devicetree MIPS: ath79: add initial support for TP-LINK MR3020 devicetree: add Dragino vendor id MIPS: ath79: add initial support for Dragino MS14 (Dragino 2) WIP: MIPS: add ar9331 devicetree defconfigs .../devicetree/bindings/vendor-prefixes.txt | 1 + arch/mips/ath79/Kconfig | 10 ++ arch/mips/ath79/clock.c | 6 +- arch/mips/boot/dts/qca/Makefile | 2 + arch/mips/boot/dts/qca/ar9331.dtsi | 123 ++++++++++++++++++ arch/mips/boot/dts/qca/dragino_ms14.dts | 73 +++++++++++ arch/mips/boot/dts/qca/tl_mr3020.dts | 72 +++++++++++ arch/mips/configs/dragino-ms14-dt-raw_defconfig | 85 +++++++++++++ arch/mips/configs/tl-mr3020-dt-raw_defconfig | 85 +++++++++++++ drivers/clk/Makefile | 1 + drivers/clk/clk-ath79.c | 137 +++++++++++++++++++++ include/dt-bindings/clock/ar933x-clk.h | 22 ++++ 12 files changed, 616 insertions(+), 1 deletion(-) create mode 100644 arch/mips/boot/dts/qca/ar9331.dtsi create mode 100644 arch/mips/boot/dts/qca/dragino_ms14.dts create mode 100644 arch/mips/boot/dts/qca/tl_mr3020.dts create mode 100644 arch/mips/configs/dragino-ms14-dt-raw_defconfig create mode 100644 arch/mips/configs/tl-mr3020-dt-raw_defconfig create mode 100644 drivers/clk/clk-ath79.c create mode 100644 include/dt-bindings/clock/ar933x-clk.h -- 2.6.2