]> git.sur5r.net Git - u-boot/commit
clk: at91: Add clock driver
authorWenyou Yang <wenyou.yang@atmel.com>
Wed, 20 Jul 2016 09:55:12 +0000 (17:55 +0800)
committerAndreas Bießmann <andreas@biessmann.org>
Mon, 15 Aug 2016 20:12:00 +0000 (22:12 +0200)
commit9e5935c04e891abb38a92a893f3457cdf304ef4f
tree69230fbc19be7d58a5bfd974456bfd643bfd0d23
parent03dcd410d70b7251ac82f78088123e23170591d4
clk: at91: Add clock driver

The patch is referred to at91 clock driver of Linux, to make
the clock node descriptions in DT aligned with the Linux's.

Signed-off-by: Wenyou Yang <wenyou.yang@atmel.com>
Reviewed-by: Simon Glass <sjg@chromium.org>
17 files changed:
arch/arm/mach-at91/include/mach/at91_pmc.h
drivers/clk/Kconfig
drivers/clk/Makefile
drivers/clk/at91/Kconfig [new file with mode: 0644]
drivers/clk/at91/Makefile [new file with mode: 0644]
drivers/clk/at91/clk-generated.c [new file with mode: 0644]
drivers/clk/at91/clk-h32mx.c [new file with mode: 0644]
drivers/clk/at91/clk-main.c [new file with mode: 0644]
drivers/clk/at91/clk-master.c [new file with mode: 0644]
drivers/clk/at91/clk-peripheral.c [new file with mode: 0644]
drivers/clk/at91/clk-plla.c [new file with mode: 0644]
drivers/clk/at91/clk-slow.c [new file with mode: 0644]
drivers/clk/at91/clk-system.c [new file with mode: 0644]
drivers/clk/at91/clk-utmi.c [new file with mode: 0644]
drivers/clk/at91/pmc.c [new file with mode: 0644]
drivers/clk/at91/pmc.h [new file with mode: 0644]
drivers/clk/at91/sckc.c [new file with mode: 0644]