All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v5 00/21] Tegra210 Clock Support
@ 2015-05-12 17:23 ` Rhyland Klein
  0 siblings, 0 replies; 74+ messages in thread
From: Rhyland Klein @ 2015-05-12 17:23 UTC (permalink / raw)
  To: Peter De Schrijver
  Cc: Mike Turquette, Stephen Warren, Stephen Boyd, Thierry Reding,
	Alexandre Courbot, Bill Huang, Paul Walmsley, Jim Lin,
	Benson Leung, linux-clk-u79uwXL29TY76Z2rM5mHXA,
	linux-tegra-u79uwXL29TY76Z2rM5mHXA,
	linux-kernel-u79uwXL29TY76Z2rM5mHXA, Rhyland Klein

This patch series updates the tegra common clock driver and adds
support for the Tegra210 clocks. The clocks in Tegra210 changed
significantly in some ways from earlier generations, so to support
them, we need to extend our base framework a bit and add some new
features.

Some patches here also address issues found while adding features
and other cleanup type work.

Note this series does depend on
"clk: tegra: Fix comments for structure definitions" which has been
reviewed already.

v5:
  - Reorderd some patches
  - Added Thierry's kerneldoc update patch as dependency

v4:
  - Fixed minor checkpatch errors and other typos
  - Rebased ontop of linux-next 20150504

v3:
  - Added a fix from Andrew Bresticker that was found while testing
    this code.

Andrew Bresticker (1):
  clk: tegra: pll: Fix issues with rates for VCO PLLs

Bill Huang (7):
  clk: tegra: pll-params: change misc_reg count from 3 -> 6
  clk: tegra: pll: Add code to handle if resets are supported by PLL
  clk: tegra: pll: Adjust vco_min if SDM present
  clk: tegra: pll: Add dyn_ramp callback
  clk: tegra: pll: Add Set_default logic
  clk: tegra: pll: Add logic for SS
  clk: tegra: Add Super Gen5 Logic

Rhyland Klein (12):
  clk: tegra: Modify tegra_audio_clk_init to accept more plls
  clk: tegra: periph: add new periph clks and muxes for Tegra210
  clk: tegra: pll: add tegra_pll_wait_for_lock to clk header
  clk: tegra: pll: simplify clk_enable_path
  clk: tegra: pll: update warning msg
  clk: tegra: pll: Don't unconditionally set LOCK flags
  clk: tegra: pll: Add logic for handling SDM data
  clk: tegra: pll: Add logic for out-of-table rates for T210
  clk: tegra: pll: Add specialized logic for T210
  clk: tegra: pll: Add support for PLLMB for T210
  clk: tegra: pll: Fix _pll_ramp_calc_pll logic and
    _calc_dynamic_ramp_rate
  clk: tegra210: add support for Tegra210 clocks

Thierry Reding (1):
  clk: tegra: Update struct tegra_clk_pll_params kerneldoc

 .../bindings/clock/nvidia,tegra210-car.txt         |   56 +
 drivers/clk/tegra/Makefile                         |    2 +
 drivers/clk/tegra/clk-id.h                         |   67 +-
 drivers/clk/tegra/clk-pll.c                        |  709 ++++-
 drivers/clk/tegra/clk-tegra-audio.c                |   25 +-
 drivers/clk/tegra/clk-tegra-periph.c               |  304 ++-
 drivers/clk/tegra/clk-tegra-super-gen5.c           |  150 ++
 drivers/clk/tegra/clk-tegra114.c                   |   31 +-
 drivers/clk/tegra/clk-tegra124.c                   |   32 +-
 drivers/clk/tegra/clk-tegra20.c                    |   18 +-
 drivers/clk/tegra/clk-tegra210.c                   | 2792 ++++++++++++++++++++
 drivers/clk/tegra/clk-tegra30.c                    |   32 +-
 drivers/clk/tegra/clk.h                            |  123 +-
 include/dt-bindings/clock/tegra210-car.h           |  401 +++
 14 files changed, 4595 insertions(+), 147 deletions(-)
 create mode 100644 Documentation/devicetree/bindings/clock/nvidia,tegra210-car.txt
 create mode 100644 drivers/clk/tegra/clk-tegra-super-gen5.c
 create mode 100644 drivers/clk/tegra/clk-tegra210.c
 create mode 100644 include/dt-bindings/clock/tegra210-car.h

-- 
1.7.9.5

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

end of thread, other threads:[~2015-06-04 18:53 UTC | newest]

Thread overview: 74+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-05-12 17:23 [PATCH v5 00/21] Tegra210 Clock Support Rhyland Klein
2015-05-12 17:23 ` Rhyland Klein
2015-05-12 17:23 ` [PATCH v5 04/21] clk: tegra: pll: add tegra_pll_wait_for_lock to clk header Rhyland Klein
2015-05-12 21:52   ` Benson Leung
2015-05-12 17:23 ` [PATCH v5 05/21] clk: tegra: pll: simplify clk_enable_path Rhyland Klein
2015-05-12 17:23 ` [PATCH v5 06/21] clk: tegra: pll: update warning msg Rhyland Klein
     [not found] ` <1431451444-23155-1-git-send-email-rklein-DDmLM1+adcrQT0dZR+AlfA@public.gmane.org>
2015-05-12 17:23   ` [PATCH v5 01/21] clk: tegra: Update struct tegra_clk_pll_params kerneldoc Rhyland Klein
2015-05-12 17:23     ` Rhyland Klein
2015-05-12 17:23   ` [PATCH v5 01/21] FROMLIST: " Rhyland Klein
2015-05-12 17:23     ` Rhyland Klein
2015-05-12 17:23   ` [PATCH v5 02/21] clk: tegra: Modify tegra_audio_clk_init to accept more plls Rhyland Klein
2015-05-12 17:23     ` Rhyland Klein
2015-05-12 17:23   ` [PATCH v5 03/21] clk: tegra: periph: add new periph clks and muxes for Tegra210 Rhyland Klein
2015-05-12 17:23     ` Rhyland Klein
2015-05-12 17:23   ` [PATCH v5 07/21] clk: tegra: pll-params: change misc_reg count from 3 -> 6 Rhyland Klein
2015-05-12 17:23     ` Rhyland Klein
2015-05-12 17:23   ` [PATCH v5 10/21] clk: tegra: pll: Add logic for out-of-table rates for T210 Rhyland Klein
2015-05-12 17:23     ` Rhyland Klein
     [not found]     ` <1431451444-23155-12-git-send-email-rklein-DDmLM1+adcrQT0dZR+AlfA@public.gmane.org>
2015-05-13  0:01       ` Benson Leung
2015-05-13  0:01         ` Benson Leung
2015-05-12 17:23   ` [PATCH v5 13/21] clk: tegra: pll: Add support for PLLMB " Rhyland Klein
2015-05-12 17:23     ` Rhyland Klein
     [not found]     ` <1431451444-23155-15-git-send-email-rklein-DDmLM1+adcrQT0dZR+AlfA@public.gmane.org>
2015-05-13 22:04       ` Benson Leung
2015-05-13 22:04         ` Benson Leung
2015-05-12 17:23   ` [PATCH v5 15/21] clk: tegra: pll: Add dyn_ramp callback Rhyland Klein
2015-05-12 17:23     ` Rhyland Klein
     [not found]     ` <1431451444-23155-17-git-send-email-rklein-DDmLM1+adcrQT0dZR+AlfA@public.gmane.org>
2015-05-13 22:20       ` Benson Leung
2015-05-13 22:20         ` Benson Leung
2015-05-12 17:24   ` [PATCH v5 20/21] clk: tegra210: add support for Tegra210 clocks Rhyland Klein
2015-05-12 17:24     ` Rhyland Klein
2015-05-14 20:23     ` Benson Leung
2015-05-20 17:17       ` Rhyland Klein
2015-05-20 17:17         ` Rhyland Klein
     [not found]     ` <1431451444-23155-22-git-send-email-rklein-DDmLM1+adcrQT0dZR+AlfA@public.gmane.org>
2015-05-20  9:47       ` Jim Lin
2015-05-20  9:47         ` Jim Lin
     [not found]         ` <555C582A.7050508-DDmLM1+adcrQT0dZR+AlfA@public.gmane.org>
2015-05-20 17:16           ` Rhyland Klein
2015-05-20 17:16             ` Rhyland Klein
2015-05-12 17:23 ` [PATCH v5 08/21] clk: tegra: pll: Don't unconditionally set LOCK flags Rhyland Klein
2015-05-12 17:23 ` [PATCH v5 09/21] clk: tegra: pll: Add logic for handling SDM data Rhyland Klein
     [not found]   ` <1431451444-23155-11-git-send-email-rklein-DDmLM1+adcrQT0dZR+AlfA@public.gmane.org>
2015-05-18 22:35     ` Benson Leung
2015-05-18 22:35       ` Benson Leung
2015-05-12 17:23 ` [PATCH v5 11/21] clk: tegra: pll: Add code to handle if resets are supported by PLL Rhyland Klein
2015-05-12 17:23 ` [PATCH v5 12/21] clk: tegra: pll: Add specialized logic for T210 Rhyland Klein
     [not found]   ` <1431451444-23155-14-git-send-email-rklein-DDmLM1+adcrQT0dZR+AlfA@public.gmane.org>
2015-05-13 20:59     ` Benson Leung
2015-05-13 20:59       ` Benson Leung
     [not found]       ` <CANLzEkuqCB+wF65MrtWwnsgTDhw0T9Vae9C5sBALGDbPvwrr_w-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2015-05-20 17:24         ` Rhyland Klein
2015-05-20 17:24           ` Rhyland Klein
     [not found]           ` <555CC357.5090105-DDmLM1+adcrQT0dZR+AlfA@public.gmane.org>
2015-05-20 17:26             ` Benson Leung
2015-05-20 17:26               ` Benson Leung
2015-05-12 17:23 ` [PATCH v5 14/21] clk: tegra: pll: Adjust vco_min if SDM present Rhyland Klein
     [not found]   ` <1431451444-23155-16-git-send-email-rklein-DDmLM1+adcrQT0dZR+AlfA@public.gmane.org>
2015-05-13 22:11     ` Benson Leung
2015-05-13 22:11       ` Benson Leung
2015-06-04 18:52     ` Stephen Boyd
2015-06-04 18:52       ` Stephen Boyd
2015-05-12 17:23 ` [PATCH v5 16/21] clk: tegra: pll: Add Set_default logic Rhyland Klein
2015-05-14  0:04   ` Benson Leung
2015-05-20 17:20     ` Rhyland Klein
2015-05-20 17:20       ` Rhyland Klein
2015-05-12 17:24 ` [PATCH v5 17/21] clk: tegra: pll: Add logic for SS Rhyland Klein
2015-05-14  0:25   ` Benson Leung
     [not found]     ` <CANLzEks10KmCAx4tK0oSejJ6Z+oBRS2+pcsktvStQrogCarTJQ-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2015-05-20 17:19       ` Rhyland Klein
2015-05-20 17:19         ` Rhyland Klein
2015-05-12 17:24 ` [PATCH v5 18/21] clk: tegra: pll: Fix _pll_ramp_calc_pll logic and _calc_dynamic_ramp_rate Rhyland Klein
     [not found]   ` <1431451444-23155-20-git-send-email-rklein-DDmLM1+adcrQT0dZR+AlfA@public.gmane.org>
2015-05-14  0:29     ` Benson Leung
2015-05-14  0:29       ` Benson Leung
2015-05-12 17:24 ` [PATCH v5 19/21] clk: tegra: Add Super Gen5 Logic Rhyland Klein
2015-05-13 20:36   ` Benson Leung
2015-05-14 19:37   ` Benson Leung
     [not found]     ` <CANLzEkvUAhXCCvtdHEfmJGONkzNu_dBHj1UUm6Et93kXV1Mz0g-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2015-05-25  8:19       ` Bill Huang
2015-05-25  8:19         ` Bill Huang
2015-05-25  8:19         ` Bill Huang
2015-05-12 17:24 ` [PATCH v5 21/21] clk: tegra: pll: Fix issues with rates for VCO PLLs Rhyland Klein
     [not found]   ` <1431451444-23155-23-git-send-email-rklein-DDmLM1+adcrQT0dZR+AlfA@public.gmane.org>
2015-05-14 20:02     ` Benson Leung
2015-05-14 20:02       ` Benson Leung

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.