All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v5 0/6] ARM: hisi: Add initial support including clock driver for Hi3519 soc.
@ 2016-01-08  2:16 ` Jiancheng Xue
  0 siblings, 0 replies; 103+ messages in thread
From: Jiancheng Xue @ 2016-01-08  2:16 UTC (permalink / raw)
  To: mturquette, sboyd, p.zabel, robh+dt, pawel.moll, mark.rutland,
	ijc+devicetree, galak, linux, khilman, arnd, olof, xuwei5,
	haojian.zhuang, zhangfei.gao, bintian.wang
  Cc: linux-kernel, linux-clk, devicetree, linux-arm-kernel,
	yanhaifeng, yanghongwei, suwenping, ml.yang, gaofei,
	zhangzhenxing, xuejiancheng, Jiancheng Xue

Hello,

Hi3519 soc is mainly used for ip camera and sport DV solutions. This patchset adds initial support
for Hi3519 soc. It includes clock driver, arch configuration, debug uart configuration and device tree.
It has been tested on hi3519 reference board.

Any comments will be appreciated!

Thanks!

Change Log
----------
v5:
-Adjust clock and reset controller driver code

v4:
-Rebase to v4.4-rc7
-Divide patches according to Rob's comments
-Add spi nodes in hi3519-demb.dts

v3:
-Rebase to v4.4-rc4
-Adjust according to Arnd's comments
-Remove ARCH_HI3519, using ARCH_HISI directly

v2:
-Rebase to v4.4-rc3
-Put dt-binding doc and header file in a separate patch.
-Delete unused clocks definitions.
-Adjust the ARCH_xxx order in Kconfig file
-Rename ARCH_HI3xxx to ARCH_36xx

Jiancheng Xue (6):
  clk: hisilicon: add CRG driver for hi3519 soc
  ARM: hisi: add compatible string for Hi3519 soc
  ARM: config: hisi: enable CONFIG_RESET_CONTROLLER
  ARM: debug: add hi3519 debug uart
  mfd: dt-bindings: add device tree bindings for Hi3519 sysctrl
  ARM: dts: add dts files for Hi3519

Jiancheng Xue (6):
  clk: hisilicon: add CRG driver for hi3519 soc
  ARM: hisi: add compatible string for Hi3519 soc
  ARM: config: hisi: enable CONFIG_RESET_CONTROLLER
  ARM: debug: add hi3519 debug uart
  mfd: dt-bindings: add device tree bindings for Hi3519 sysctrl
  ARM: dts: add dts files for Hi3519

 .../devicetree/bindings/clock/hi3519-crg.txt       |  46 ++++++
 Documentation/devicetree/bindings/mfd/hi3519.txt   |  14 ++
 arch/arm/Kconfig.debug                             |  10 ++
 arch/arm/boot/dts/Makefile                         |   2 +
 arch/arm/boot/dts/hi3519-demb.dts                  |  42 +++++
 arch/arm/boot/dts/hi3519.dtsi                      | 175 +++++++++++++++++++++
 arch/arm/configs/hisi_defconfig                    |   1 +
 arch/arm/mach-hisi/hisilicon.c                     |  23 +--
 drivers/clk/hisilicon/Kconfig                      |   7 +
 drivers/clk/hisilicon/Makefile                     |   2 +
 drivers/clk/hisilicon/clk-hi3519.c                 | 105 +++++++++++++
 drivers/clk/hisilicon/reset.c                      | 129 +++++++++++++++
 drivers/clk/hisilicon/reset.h                      |  32 ++++
 include/dt-bindings/clock/hi3519-clock.h           |  43 +++++
 14 files changed, 612 insertions(+), 19 deletions(-)
 create mode 100644 Documentation/devicetree/bindings/clock/hi3519-crg.txt
 create mode 100644 Documentation/devicetree/bindings/mfd/hi3519.txt
 create mode 100644 arch/arm/boot/dts/hi3519-demb.dts
 create mode 100644 arch/arm/boot/dts/hi3519.dtsi
 create mode 100644 drivers/clk/hisilicon/clk-hi3519.c
 create mode 100644 drivers/clk/hisilicon/reset.c
 create mode 100644 drivers/clk/hisilicon/reset.h
 create mode 100644 include/dt-bindings/clock/hi3519-clock.h

-- 
1.9.1

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

end of thread, other threads:[~2016-01-25 14:47 UTC | newest]

Thread overview: 103+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-01-08  2:16 [PATCH v5 0/6] ARM: hisi: Add initial support including clock driver for Hi3519 soc Jiancheng Xue
2016-01-08  2:16 ` Jiancheng Xue
2016-01-08  2:16 ` Jiancheng Xue
2016-01-08  2:16 ` [PATCH v5 1/6] clk: hisilicon: add CRG driver for hi3519 soc Jiancheng Xue
2016-01-08  2:16   ` Jiancheng Xue
2016-01-08  2:16   ` Jiancheng Xue
2016-01-09  6:24   ` kbuild test robot
2016-01-09  6:24     ` kbuild test robot
2016-01-09  6:24     ` kbuild test robot
2016-01-09 15:33   ` Rob Herring
2016-01-09 15:33     ` Rob Herring
2016-01-11  3:47     ` xuejiancheng
2016-01-11  3:47       ` xuejiancheng
2016-01-11  3:47       ` xuejiancheng
2016-01-12 22:12   ` Stephen Boyd
2016-01-12 22:12     ` Stephen Boyd
2016-01-13  3:03     ` xuejiancheng
2016-01-13  3:03       ` xuejiancheng
2016-01-13  3:03       ` xuejiancheng
2016-01-13 18:57       ` Michael Turquette
2016-01-13 18:57         ` Michael Turquette
2016-01-13 18:57         ` Michael Turquette
2016-01-14 13:16         ` xuejiancheng
2016-01-14 13:16           ` xuejiancheng
2016-01-14 13:16           ` xuejiancheng
2016-01-15  7:57           ` xuejiancheng
2016-01-15  7:57             ` xuejiancheng
2016-01-15  7:57             ` xuejiancheng
2016-01-19 18:20             ` Rob Herring
2016-01-19 18:20               ` Rob Herring
2016-01-19 18:20               ` Rob Herring
2016-01-19 18:20               ` Rob Herring
2016-01-20  6:38               ` Tomeu Vizoso
2016-01-20  6:38                 ` Tomeu Vizoso
2016-01-20  6:38                 ` Tomeu Vizoso
2016-01-20  6:38                 ` Tomeu Vizoso
2016-01-22  8:50                 ` xuejiancheng
2016-01-22  8:50                   ` xuejiancheng
2016-01-22  8:50                   ` xuejiancheng
2016-01-22  8:50                   ` xuejiancheng
2016-01-22  9:55                   ` Tomeu Vizoso
2016-01-22  9:55                     ` Tomeu Vizoso
2016-01-22  9:55                     ` Tomeu Vizoso
2016-01-22  9:55                     ` Tomeu Vizoso
2016-01-08  2:16 ` [PATCH v5 2/6] ARM: hisi: add compatible string for Hi3519 soc Jiancheng Xue
2016-01-08  2:16   ` Jiancheng Xue
2016-01-08  2:16   ` Jiancheng Xue
2016-01-08  2:16 ` [PATCH v5 3/6] ARM: config: hisi: enable CONFIG_RESET_CONTROLLER Jiancheng Xue
2016-01-08  2:16   ` Jiancheng Xue
2016-01-08  2:16   ` Jiancheng Xue
2016-01-08  2:16 ` [PATCH v5 4/6] ARM: debug: add hi3519 debug uart Jiancheng Xue
2016-01-08  2:16   ` Jiancheng Xue
2016-01-08  2:16   ` Jiancheng Xue
2016-01-08 15:08   ` Russell King - ARM Linux
2016-01-08 15:08     ` Russell King - ARM Linux
2016-01-11  2:32     ` xuejiancheng
2016-01-11  2:32       ` xuejiancheng
2016-01-11  2:32       ` xuejiancheng
2016-01-08  2:16 ` [PATCH v5 5/6] mfd: dt-bindings: add device tree bindings for Hi3519 sysctrl Jiancheng Xue
2016-01-08  2:16   ` Jiancheng Xue
2016-01-08  2:16   ` Jiancheng Xue
2016-01-08 21:04   ` Rob Herring
2016-01-08 21:04     ` Rob Herring
2016-01-11  5:48   ` Lee Jones
2016-01-11  5:48     ` Lee Jones
2016-01-11  7:50     ` xuejiancheng
2016-01-11  7:50       ` xuejiancheng
2016-01-11  7:50       ` xuejiancheng
2016-01-11  8:55       ` Lee Jones
2016-01-11  8:55         ` Lee Jones
2016-01-12  1:35         ` xuejiancheng
2016-01-12  1:35           ` xuejiancheng
2016-01-12  1:35           ` xuejiancheng
2016-01-12  7:41           ` Lee Jones
2016-01-12  7:41             ` Lee Jones
2016-01-12  8:17             ` xuejiancheng
2016-01-12  8:17               ` xuejiancheng
2016-01-12  8:17               ` xuejiancheng
2016-01-12  8:39               ` Lee Jones
2016-01-12  8:39                 ` Lee Jones
2016-01-12  9:28                 ` xuejiancheng
2016-01-12  9:28                   ` xuejiancheng
2016-01-12  9:28                   ` xuejiancheng
2016-01-12 22:51                   ` Arnd Bergmann
2016-01-12 22:51                     ` Arnd Bergmann
2016-01-13  9:08                     ` xuejiancheng
2016-01-13  9:08                       ` xuejiancheng
2016-01-13  9:08                       ` xuejiancheng
2016-01-13 10:00                       ` Arnd Bergmann
2016-01-13 10:00                         ` Arnd Bergmann
2016-01-25 14:26                     ` Lee Jones
2016-01-25 14:26                       ` Lee Jones
2016-01-25 14:45                       ` Arnd Bergmann
2016-01-25 14:45                         ` Arnd Bergmann
2016-01-08  2:16 ` [PATCH v5 6/6] ARM: dts: add dts files for Hi3519 Jiancheng Xue
2016-01-08  2:16   ` Jiancheng Xue
2016-01-08  2:16   ` Jiancheng Xue
2016-01-08 15:10   ` Russell King - ARM Linux
2016-01-08 15:10     ` Russell King - ARM Linux
2016-01-08 15:10     ` Russell King - ARM Linux
2016-01-11  2:05     ` xuejiancheng
2016-01-11  2:05       ` xuejiancheng
2016-01-11  2:05       ` xuejiancheng

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.