All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v2 0/8] Common Clock Framework support for Samsung S3C64xx
@ 2013-07-22 23:49 ` Tomasz Figa
  0 siblings, 0 replies; 90+ messages in thread
From: Tomasz Figa @ 2013-07-22 23:49 UTC (permalink / raw)
  To: linux-samsung-soc-u79uwXL29TY76Z2rM5mHXA
  Cc: linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r,
	devicetree-u79uwXL29TY76Z2rM5mHXA, Kukjin Kim, Mark Brown,
	Mike Turquette, Arnd Bergmann, Olof Johansson,
	stern-nwvwT67g6+6dFdvTe/nMLpVzexx5G7lz,
	gregkh-hQyY1W1yCW8ekmWlsbkhG0B+6BGkLq7r,
	linux-usb-u79uwXL29TY76Z2rM5mHXA, Sylwester Nawrocki,
	Heiko Stübner, Thomas Abraham, Tomasz Figa

This series is an attempt to move clock support on Samsung S3C64xx SoCs
to Common Clock Framework.

First, support for PLL types present on S3C64xx SoCs is added to Samsung
Common Clock Framework driver. Then the main clock driver for mentioned
SoCs is introduced. Further patches contain fixes for drivers to make them
compliant with CCF semantics, migration of platform code to use the new
clock driver and removal of old clock management code.

Depends on:
 - [PATCH v4 00/20] Samsung PWM support cleanup
   http://thread.gmane.org/gmane.linux.kernel.samsung-soc/20856

On S3C6410-based Tiny6410 board (Mini6410-compatible):

Tested-by: Tomasz Figa <tomasz.figa-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>

For v1:

Acked-by: Mike Turquette <mturquette-QSEj5FYQhm4dnm+yROfE0A@public.gmane.org>

Changes since v1:
 - added patch for read-only muxes,
 - exported configurable muxes and dividers,
 - defined mout_syncmux as read-only mux,
 - in DT-enabled case fixed-clock binding is used to define external clocks.

Tomasz Figa (8):
  clk: mux: Add support for read-only muxes.
  clk: samsung: pll: Add support for PLL6552 and PLL6553
  clk: samsung: Add clock driver for S3C64xx SoCs
  ARM: SAMSUNG: Add soc_is_s3c6400/s3c6410 macros
  ARM: s3c64xx: dma: Use clk_prepare_enable/clk_disable_unprepare
  usb: host: ohci-s3c2410 Use clk_prepare_enable/clk_disable_unprepare
  ARM: s3c64xx: Migrate clock handling to Common Clock Framework
  ARM: s3c64xx: Remove old clock management code

 .../bindings/clock/samsung,s3c64xx-clock.txt       |   77 ++
 arch/arm/Kconfig                                   |    2 +-
 arch/arm/mach-s3c64xx/Makefile                     |    2 +-
 arch/arm/mach-s3c64xx/clock.c                      | 1007 --------------------
 arch/arm/mach-s3c64xx/common.c                     |   21 +-
 arch/arm/mach-s3c64xx/common.h                     |   12 +-
 arch/arm/mach-s3c64xx/dma.c                        |    4 +-
 arch/arm/mach-s3c64xx/include/mach/regs-clock.h    |  132 +--
 arch/arm/mach-s3c64xx/mach-anw6410.c               |    2 +-
 arch/arm/mach-s3c64xx/mach-crag6410.c              |    2 +-
 arch/arm/mach-s3c64xx/mach-hmt.c                   |    2 +-
 arch/arm/mach-s3c64xx/mach-mini6410.c              |    2 +-
 arch/arm/mach-s3c64xx/mach-ncp.c                   |    2 +-
 arch/arm/mach-s3c64xx/mach-smartq.c                |   11 +-
 arch/arm/mach-s3c64xx/mach-smdk6400.c              |    2 +-
 arch/arm/mach-s3c64xx/mach-smdk6410.c              |    2 +-
 arch/arm/mach-s3c64xx/pm.c                         |   21 -
 arch/arm/mach-s3c64xx/s3c6400.c                    |    6 -
 arch/arm/mach-s3c64xx/s3c6410.c                    |    7 -
 arch/arm/plat-samsung/include/plat/cpu.h           |    4 +
 drivers/clk/clk-mux.c                              |   10 +-
 drivers/clk/samsung/Makefile                       |    1 +
 drivers/clk/samsung/clk-pll.c                      |  160 ++++
 drivers/clk/samsung/clk-pll.h                      |    4 +
 drivers/clk/samsung/clk-s3c64xx.c                  |  465 +++++++++
 drivers/usb/host/ohci-s3c2410.c                    |    8 +-
 include/dt-bindings/clock/samsung,s3c64xx-clock.h  |  178 ++++
 include/linux/clk-provider.h                       |    2 +
 28 files changed, 943 insertions(+), 1205 deletions(-)
 create mode 100644 Documentation/devicetree/bindings/clock/samsung,s3c64xx-clock.txt
 delete mode 100644 arch/arm/mach-s3c64xx/clock.c
 create mode 100644 drivers/clk/samsung/clk-s3c64xx.c
 create mode 100644 include/dt-bindings/clock/samsung,s3c64xx-clock.h

-- 
1.8.3.2

--
To unsubscribe from this list: send the line "unsubscribe linux-usb" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

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

end of thread, other threads:[~2013-08-27 23:45 UTC | newest]

Thread overview: 90+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-07-22 23:49 [PATCH v2 0/8] Common Clock Framework support for Samsung S3C64xx Tomasz Figa
2013-07-22 23:49 ` Tomasz Figa
2013-07-22 23:49 ` [PATCH v2 1/8] clk: mux: Add support for read-only muxes Tomasz Figa
2013-07-22 23:49   ` Tomasz Figa
     [not found]   ` <1374536965-3545-2-git-send-email-tomasz.figa-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
2013-07-23 11:22     ` Sergei Shtylyov
2013-07-23 11:22       ` Sergei Shtylyov
2013-07-23 11:25       ` Tomasz Figa
2013-07-23 11:25         ` Tomasz Figa
2013-07-27 12:41   ` Tomasz Figa
2013-07-27 12:41     ` Tomasz Figa
2013-08-02 21:46     ` Mike Turquette
2013-08-02 21:46       ` Mike Turquette
2013-07-22 23:49 ` [PATCH v2 4/8] ARM: SAMSUNG: Add soc_is_s3c6400/s3c6410 macros Tomasz Figa
2013-07-22 23:49   ` Tomasz Figa
2013-07-22 23:49 ` [PATCH v2 5/8] ARM: s3c64xx: dma: Use clk_prepare_enable/clk_disable_unprepare Tomasz Figa
2013-07-22 23:49   ` Tomasz Figa
2013-07-28 12:32   ` Mark Brown
2013-07-28 12:32     ` Mark Brown
     [not found] ` <1374536965-3545-1-git-send-email-tomasz.figa-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
2013-07-22 23:49   ` [PATCH v2 2/8] clk: samsung: pll: Add support for PLL6552 and PLL6553 Tomasz Figa
2013-07-22 23:49     ` Tomasz Figa
2013-07-23 23:52     ` [PATCH v3 " Tomasz Figa
2013-07-23 23:52       ` Tomasz Figa
2013-07-28 12:30       ` Mark Brown
2013-07-28 12:30         ` Mark Brown
2013-07-28 12:38         ` Tomasz Figa
2013-07-28 12:38           ` Tomasz Figa
2013-08-02 22:53           ` Mike Turquette
2013-08-02 22:53             ` Mike Turquette
2013-07-22 23:49   ` [PATCH v2 3/8] clk: samsung: Add clock driver for S3C64xx SoCs Tomasz Figa
2013-07-22 23:49     ` Tomasz Figa
2013-07-23 23:55     ` [PATCH v3 " Tomasz Figa
2013-07-23 23:55       ` Tomasz Figa
2013-07-22 23:49   ` [PATCH v2 6/8] usb: host: ohci-s3c2410 Use clk_prepare_enable/clk_disable_unprepare Tomasz Figa
2013-07-22 23:49     ` Tomasz Figa
2013-07-23  0:15     ` Fabio Estevam
2013-07-23  0:15       ` Fabio Estevam
     [not found]       ` <CAOMZO5D4X+GT+LdUOjorJ8xgBCwv9iAP4W-RzKrbnE-93kxmUg-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2013-07-23  0:44         ` Tomasz Figa
2013-07-23  0:44           ` Tomasz Figa
     [not found]     ` <1374536965-3545-7-git-send-email-tomasz.figa-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
2013-07-31 18:58       ` Tomasz Figa
2013-07-31 18:58         ` Tomasz Figa
2013-07-31 20:44         ` Alan Stern
2013-07-31 20:44           ` Alan Stern
     [not found]           ` <Pine.LNX.4.44L0.1307311643110.1546-100000-IYeN2dnnYyZXsRXLowluHWD2FQJk+8+b@public.gmane.org>
2013-08-01  7:45             ` Greg KH
2013-08-01  7:45               ` Greg KH
2013-07-22 23:49   ` [PATCH v2 7/8] ARM: s3c64xx: Migrate clock handling to Common Clock Framework Tomasz Figa
2013-07-22 23:49     ` Tomasz Figa
2013-08-05 17:01   ` [PATCH v2 0/8] Common Clock Framework support for Samsung S3C64xx Kukjin Kim
2013-08-05 17:01     ` Kukjin Kim
     [not found]     ` <51FFDA70.7080900-Sze3O3UU22JBDgjK7y7TUQ@public.gmane.org>
2013-08-05 18:06       ` Mike Turquette
2013-08-05 18:06         ` Mike Turquette
2013-08-05 18:13         ` Kukjin Kim
2013-08-05 18:13           ` Kukjin Kim
2013-08-05 19:02           ` Mike Turquette
2013-08-05 19:02             ` Mike Turquette
2013-08-05 23:42             ` Tomasz Figa
2013-08-05 23:42               ` Tomasz Figa
2013-08-06 19:47               ` Mike Turquette
2013-08-06 19:47                 ` Mike Turquette
2013-08-06 22:06                 ` Tomasz Figa
2013-08-06 22:06                   ` Tomasz Figa
2013-08-06 22:11                   ` Kukjin Kim
2013-08-06 22:11                     ` Kukjin Kim
2013-08-06 22:13                     ` Tomasz Figa
2013-08-06 22:13                       ` Tomasz Figa
2013-08-16 10:44         ` Tomasz Figa
2013-08-16 10:44           ` Tomasz Figa
2013-08-16 21:02           ` Mike Turquette
2013-08-16 21:02             ` Mike Turquette
2013-08-16 21:15             ` Tomasz Figa
2013-08-16 21:15               ` Tomasz Figa
2013-08-17 10:30               ` Kukjin Kim
2013-08-17 10:30                 ` Kukjin Kim
2013-08-20  0:22                 ` Mike Turquette
2013-08-20  0:22                   ` Mike Turquette
2013-08-20  7:09                   ` Kukjin Kim
2013-08-20  7:09                     ` Kukjin Kim
2013-08-25 17:19                     ` Kukjin Kim
2013-08-25 17:19                       ` Kukjin Kim
2013-08-21  0:33                   ` [PATCH] clk: samsung: pll: Use new registration method for PLL6552 and PLL6553 Tomasz Figa
2013-08-21  0:33                     ` Tomasz Figa
2013-08-27  1:14                     ` Mike Turquette
2013-08-27  1:14                       ` Mike Turquette
2013-08-27 17:16                       ` Kukjin Kim
2013-08-27 17:16                         ` Kukjin Kim
2013-08-27 23:45                         ` Mike Turquette
2013-08-27 23:45                           ` Mike Turquette
2013-07-22 23:49 ` [PATCH v2 8/8] ARM: s3c64xx: Remove old clock management code Tomasz Figa
2013-07-22 23:49   ` Tomasz Figa
2013-07-24 12:20 ` [PATCH v2 0/8] Common Clock Framework support for Samsung S3C64xx Kukjin Kim
2013-07-24 12:20   ` Kukjin Kim

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.