Re: [PATCH v5 09/10] clk: tegra: Implement clocks for Tegra114

2013-02-07 Thread Peter De Schrijver
> 
> > > +   /* xusb_hs_src */
> > > +   val = readl(clk_base + CLK_SOURCE_XUSB_SS_SRC);
> > > +   val |= BIT(25); /* always select PLLU_60M */
> > > +   writel(val, clk_base + CLK_SOURCE_XUSB_SS_SRC);
> > > +
> > > +   clk = clk_register_fixed_factor(NULL, "xusb_hs_src", "pll_u_60M", 
> > > 0,
> > > +   1, 1);
> > > +   clks[xusb_hs_src] = clk;
> > > +
> > 
> > With device tree we can directly use pll_u_60M, no need to register 
> > clock with fixed factor 1.
> 
> This is true for now. In the future these clocks will need to be dvfs aware
> though. I think it makes sense to have a separate clock then?
> 

As this seems to be a different clock (ie. the hw allows you to select a
different parent), I think keeping this node makes sense.

Cheers,

Peter.
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/


Re: [PATCH v5 09/10] clk: tegra: Implement clocks for Tegra114

2013-02-04 Thread Prashant Gaikwad

On Monday 04 February 2013 08:04 PM, Peter De Schrijver wrote:

On Mon, Feb 04, 2013 at 08:08:55AM +0100, Prashant Gaikwad wrote:

On Friday 01 February 2013 03:48 PM, Peter De Schrijver wrote:

...


+   /* xusb_hs_src */
+   val = readl(clk_base + CLK_SOURCE_XUSB_SS_SRC);
+   val |= BIT(25); /* always select PLLU_60M */
+   writel(val, clk_base + CLK_SOURCE_XUSB_SS_SRC);
+
+   clk = clk_register_fixed_factor(NULL, "xusb_hs_src", "pll_u_60M", 0,
+   1, 1);
+   clks[xusb_hs_src] = clk;
+

With device tree we can directly use pll_u_60M, no need to register
clock with fixed factor 1.
Same comment for dis1-fixed, dsi2-fixed and mipi-cal-fast clocks.


Does it make sense to have separate DT IDs at all then?


We can use same DT ID.


Cheers,

Peter.


--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/


Re: [PATCH v5 09/10] clk: tegra: Implement clocks for Tegra114

2013-02-04 Thread Stephen Warren
On 02/04/2013 03:45 AM, Peter De Schrijver wrote:
> On Mon, Feb 04, 2013 at 08:08:55AM +0100, Prashant Gaikwad wrote:

>>> +   /* xusb_hs_src */
>>> +   val = readl(clk_base + CLK_SOURCE_XUSB_SS_SRC);
>>> +   val |= BIT(25); /* always select PLLU_60M */
>>> +   writel(val, clk_base + CLK_SOURCE_XUSB_SS_SRC);
>>> +
>>> +   clk = clk_register_fixed_factor(NULL, "xusb_hs_src", "pll_u_60M", 0,
>>> +   1, 1);
>>> +   clks[xusb_hs_src] = clk;
>>> +
>>
>> With device tree we can directly use pll_u_60M, no need to register 
>> clock with fixed factor 1.
> 
> This is true for now. In the future these clocks will need to be dvfs aware
> though. I think it makes sense to have a separate clock then?

Why does DVFS-awareness require it to be a different clock/ID?
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/


Re: [PATCH v5 09/10] clk: tegra: Implement clocks for Tegra114

2013-02-04 Thread Peter De Schrijver
On Mon, Feb 04, 2013 at 08:08:55AM +0100, Prashant Gaikwad wrote:
> On Friday 01 February 2013 03:48 PM, Peter De Schrijver wrote:

...

> > +   /* xusb_hs_src */
> > +   val = readl(clk_base + CLK_SOURCE_XUSB_SS_SRC);
> > +   val |= BIT(25); /* always select PLLU_60M */
> > +   writel(val, clk_base + CLK_SOURCE_XUSB_SS_SRC);
> > +
> > +   clk = clk_register_fixed_factor(NULL, "xusb_hs_src", "pll_u_60M", 0,
> > +   1, 1);
> > +   clks[xusb_hs_src] = clk;
> > +
> 
> With device tree we can directly use pll_u_60M, no need to register 
> clock with fixed factor 1.
> Same comment for dis1-fixed, dsi2-fixed and mipi-cal-fast clocks.
> 

Does it make sense to have separate DT IDs at all then?

Cheers,

Peter.
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/


Re: [PATCH v5 09/10] clk: tegra: Implement clocks for Tegra114

2013-02-04 Thread Peter De Schrijver
On Mon, Feb 04, 2013 at 11:45:31AM +0100, Peter De Schrijver wrote:
> On Mon, Feb 04, 2013 at 08:08:55AM +0100, Prashant Gaikwad wrote:

...

> > > +
> > > +   /* dsia */
> > > +   clk = clk_register_mux(NULL, "dsia_mux", mux_plld_out0_plld2_out0,
> > > +  ARRAY_SIZE(mux_plld_out0_plld2_out0), 0,
> > > +  clk_base + PLLD_BASE, 25, 1, 0, 
> > > &pll_d_lock);
> > > +   clks[dsia_mux] = clk;
> > > +   clk = tegra_clk_register_periph_gate("dsia", "dsia_mux", 0, 
> > > clk_base,
> > > +   0, 48, &periph_h_regs,
> > > +   periph_clk_enb_refcnt);
> > > +   clk_register_clkdev(clk, "dsia", "tegradc.0");
> > > +   clks[dsia] = clk;
> > > +
> > > +   /* dsib */
> > > +   clk = clk_register_mux(NULL, "dsib_mux", mux_plld_out0_plld2_out0,
> > > +  ARRAY_SIZE(mux_plld_out0_plld2_out0), 0,
> > > +  clk_base + PLLD2_BASE, 25, 1, 0, 
> > > &pll_d2_lock);
> > > +   clks[dsib_mux] = clk;
> > > +   clk = tegra_clk_register_periph_gate("dsib", "dsib_mux", 0, 
> > > clk_base,
> > > +   0, 82, &periph_u_regs,
> > > +   periph_clk_enb_refcnt);
> > > +   clk_register_clkdev(clk, "dsib", "tegradc.1");
> > > +   clks[dsib] = clk;
> > > +
> > 
> > Can we use periph no div clock here for dsia and dsib?
> > 
> 
> Will check.
> 

Not as such. As you can see the muxes need a lock to protect access to the
PLLD_BASE and PLLD2_BASE registers respectively. The periph no div clock
doesn't provide for these locks though. Do you think it makes sense to add
the lock support for these 2 clocks?

Cheers,

Peter.
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/


Re: [PATCH v5 09/10] clk: tegra: Implement clocks for Tegra114

2013-02-04 Thread Peter De Schrijver
On Mon, Feb 04, 2013 at 08:08:55AM +0100, Prashant Gaikwad wrote:

...

> > +#define RST_DEVICES_L  0x004
> > +#define RST_DEVICES_H  0x008
> > +#define RST_DEVICES_U  0x00C
> > +#define RST_DEVICES_V  0x358
> > +#define RST_DEVICES_W  0x35C
> > +#define RST_DEVICES_X  0x28C
> > +#define RST_DEVICES_SET_L  0x300
> > +#define RST_DEVICES_CLR_L  0x304
> > +#define RST_DEVICES_SET_H  0x308
> > +#define RST_DEVICES_CLR_H  0x30c
> > +#define RST_DEVICES_SET_U  0x310
> > +#define RST_DEVICES_CLR_U  0x314
> > +#define RST_DEVICES_SET_V  0x430
> > +#define RST_DEVICES_CLR_V  0x434
> > +#define RST_DEVICES_SET_W  0x438
> > +#define RST_DEVICES_CLR_W  0x43c
> > +#define RST_DEVICES_NUM5
> 
> RST_DEVICES_SET/CLR_X?
> 

For all I can see (from the not yet public TRM), this is not actually used?
So I decided to not mention it here.

> > +
> > +#define CLK_OUT_ENB_L  0x010
> > +#define CLK_OUT_ENB_H  0x014
> > +#define CLK_OUT_ENB_U  0x018
> > +#define CLK_OUT_ENB_V  0x360
> > +#define CLK_OUT_ENB_W  0x364
> > +#define CLK_OUT_ENB_X  0x280
> > +#define CLK_OUT_ENB_SET_L  0x320
> > +#define CLK_OUT_ENB_CLR_L  0x324
> > +#define CLK_OUT_ENB_SET_H  0x328
> > +#define CLK_OUT_ENB_CLR_H  0x32c
> > +#define CLK_OUT_ENB_SET_U  0x330
> > +#define CLK_OUT_ENB_CLR_U  0x334
> > +#define CLK_OUT_ENB_SET_V  0x440
> > +#define CLK_OUT_ENB_CLR_V  0x444
> > +#define CLK_OUT_ENB_SET_W  0x448
> > +#define CLK_OUT_ENB_CLR_W  0x44c
> > +#define CLK_OUT_ENB_SET_X  0x284
> > +#define CLK_OUT_ENB_CLR_X  0x288
> > +#define CLK_OUT_ENB_NUM6
> 
> 
> 
> > +
> > +   /* dsia */
> > +   clk = clk_register_mux(NULL, "dsia_mux", mux_plld_out0_plld2_out0,
> > +  ARRAY_SIZE(mux_plld_out0_plld2_out0), 0,
> > +  clk_base + PLLD_BASE, 25, 1, 0, &pll_d_lock);
> > +   clks[dsia_mux] = clk;
> > +   clk = tegra_clk_register_periph_gate("dsia", "dsia_mux", 0, 
> > clk_base,
> > +   0, 48, &periph_h_regs,
> > +   periph_clk_enb_refcnt);
> > +   clk_register_clkdev(clk, "dsia", "tegradc.0");
> > +   clks[dsia] = clk;
> > +
> > +   /* dsib */
> > +   clk = clk_register_mux(NULL, "dsib_mux", mux_plld_out0_plld2_out0,
> > +  ARRAY_SIZE(mux_plld_out0_plld2_out0), 0,
> > +  clk_base + PLLD2_BASE, 25, 1, 0, 
> > &pll_d2_lock);
> > +   clks[dsib_mux] = clk;
> > +   clk = tegra_clk_register_periph_gate("dsib", "dsib_mux", 0, 
> > clk_base,
> > +   0, 82, &periph_u_regs,
> > +   periph_clk_enb_refcnt);
> > +   clk_register_clkdev(clk, "dsib", "tegradc.1");
> > +   clks[dsib] = clk;
> > +
> 
> Can we use periph no div clock here for dsia and dsib?
> 

Will check.

> > +   /* xusb_hs_src */
> > +   val = readl(clk_base + CLK_SOURCE_XUSB_SS_SRC);
> > +   val |= BIT(25); /* always select PLLU_60M */
> > +   writel(val, clk_base + CLK_SOURCE_XUSB_SS_SRC);
> > +
> > +   clk = clk_register_fixed_factor(NULL, "xusb_hs_src", "pll_u_60M", 0,
> > +   1, 1);
> > +   clks[xusb_hs_src] = clk;
> > +
> 
> With device tree we can directly use pll_u_60M, no need to register 
> clock with fixed factor 1.

This is true for now. In the future these clocks will need to be dvfs aware
though. I think it makes sense to have a separate clock then?

> Same comment for dis1-fixed, dsi2-fixed and mipi-cal-fast clocks.
> 

Those might not need to become dvfs aware.

> > +   /* xusb_host */
> > +   clk = tegra_clk_register_periph_gate("xusb_host", "xusb_host_src", 
> > 0,
> > +   clk_base, 0, 89, &periph_u_regs,
> > +   periph_clk_enb_refcnt);
> > +   clk_register_clkdev(clk, "tegra_xhci", "host");
> > +   clks[xusb_host] = clk;
> > +
> > +   /* xusb_ss */
> > +   clk = tegra_clk_register_periph_gate("xusb_ss", "xusb_ss_src", 0,
> > +   clk_base, 0, 156, &periph_w_regs,
> > +   periph_clk_enb_refcnt);
> > +   clk_register_clkdev(clk, "tegra_xhci", "ss");
> > +   clks[xusb_host] = clk;
> > +
> > +   /* xusb_dev */
> > +   clk = tegra_clk_register_periph_gate("xusb_dev", "xusb_dev_src", 0,
> > +   clk_base, 0, 95, &periph_u_regs,
> > +   per

Re: [PATCH v5 09/10] clk: tegra: Implement clocks for Tegra114

2013-02-03 Thread Prashant Gaikwad

On Friday 01 February 2013 03:48 PM, Peter De Schrijver wrote:

Implement most clocks for Tegra114. The super clocks for the CPU complex
are still missing and will be implemented in a future version.

Signed-off-by: Peter De Schrijver 
---
  drivers/clk/tegra/Makefile   |1 +
  drivers/clk/tegra/clk-tegra114.c | 2002 ++
  2 files changed, 2003 insertions(+), 0 deletions(-)
  create mode 100644 drivers/clk/tegra/clk-tegra114.c

diff --git a/drivers/clk/tegra/Makefile b/drivers/clk/tegra/Makefile
index 2b41b0f..f49fac2 100644
--- a/drivers/clk/tegra/Makefile
+++ b/drivers/clk/tegra/Makefile
@@ -9,3 +9,4 @@ obj-y   += clk-super.o

  obj-$(CONFIG_ARCH_TEGRA_2x_SOC) += clk-tegra20.o
  obj-$(CONFIG_ARCH_TEGRA_3x_SOC) += clk-tegra30.o
+obj-$(CONFIG_ARCH_TEGRA_114_SOC)   += clk-tegra114.o
diff --git a/drivers/clk/tegra/clk-tegra114.c b/drivers/clk/tegra/clk-tegra114.c
new file mode 100644
index 000..f8165d2
--- /dev/null
+++ b/drivers/clk/tegra/clk-tegra114.c
@@ -0,0 +1,2002 @@
+/*
+ * Copyright (c) 2012, 2013, NVIDIA CORPORATION.  All rights reserved.
+ *
+ * This program is free software; you can redistribute it and/or modify it
+ * under the terms and conditions of the GNU General Public License,
+ * version 2, as published by the Free Software Foundation.
+ *
+ * This program is distributed in the hope it will be useful, but WITHOUT
+ * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
+ * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for
+ * more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program.  If not, see .
+ */
+
+#include 
+#include 
+#include 
+#include 
+#include 
+#include 
+#include 
+#include 
+
+#include "clk.h"
+
+#define RST_DEVICES_L  0x004
+#define RST_DEVICES_H  0x008
+#define RST_DEVICES_U  0x00C
+#define RST_DEVICES_V  0x358
+#define RST_DEVICES_W  0x35C
+#define RST_DEVICES_X  0x28C
+#define RST_DEVICES_SET_L  0x300
+#define RST_DEVICES_CLR_L  0x304
+#define RST_DEVICES_SET_H  0x308
+#define RST_DEVICES_CLR_H  0x30c
+#define RST_DEVICES_SET_U  0x310
+#define RST_DEVICES_CLR_U  0x314
+#define RST_DEVICES_SET_V  0x430
+#define RST_DEVICES_CLR_V  0x434
+#define RST_DEVICES_SET_W  0x438
+#define RST_DEVICES_CLR_W  0x43c
+#define RST_DEVICES_NUM5


RST_DEVICES_SET/CLR_X?


+
+#define CLK_OUT_ENB_L  0x010
+#define CLK_OUT_ENB_H  0x014
+#define CLK_OUT_ENB_U  0x018
+#define CLK_OUT_ENB_V  0x360
+#define CLK_OUT_ENB_W  0x364
+#define CLK_OUT_ENB_X  0x280
+#define CLK_OUT_ENB_SET_L  0x320
+#define CLK_OUT_ENB_CLR_L  0x324
+#define CLK_OUT_ENB_SET_H  0x328
+#define CLK_OUT_ENB_CLR_H  0x32c
+#define CLK_OUT_ENB_SET_U  0x330
+#define CLK_OUT_ENB_CLR_U  0x334
+#define CLK_OUT_ENB_SET_V  0x440
+#define CLK_OUT_ENB_CLR_V  0x444
+#define CLK_OUT_ENB_SET_W  0x448
+#define CLK_OUT_ENB_CLR_W  0x44c
+#define CLK_OUT_ENB_SET_X  0x284
+#define CLK_OUT_ENB_CLR_X  0x288
+#define CLK_OUT_ENB_NUM6





+
+   /* dsia */
+   clk = clk_register_mux(NULL, "dsia_mux", mux_plld_out0_plld2_out0,
+  ARRAY_SIZE(mux_plld_out0_plld2_out0), 0,
+  clk_base + PLLD_BASE, 25, 1, 0, &pll_d_lock);
+   clks[dsia_mux] = clk;
+   clk = tegra_clk_register_periph_gate("dsia", "dsia_mux", 0, clk_base,
+   0, 48, &periph_h_regs,
+   periph_clk_enb_refcnt);
+   clk_register_clkdev(clk, "dsia", "tegradc.0");
+   clks[dsia] = clk;
+
+   /* dsib */
+   clk = clk_register_mux(NULL, "dsib_mux", mux_plld_out0_plld2_out0,
+  ARRAY_SIZE(mux_plld_out0_plld2_out0), 0,
+  clk_base + PLLD2_BASE, 25, 1, 0, &pll_d2_lock);
+   clks[dsib_mux] = clk;
+   clk = tegra_clk_register_periph_gate("dsib", "dsib_mux", 0, clk_base,
+   0, 82, &periph_u_regs,
+   periph_clk_enb_refcnt);
+   clk_register_clkdev(clk, "dsib", "tegradc.1");
+   clks[dsib] = clk;
+


Can we use periph no div clock here for dsia and dsib?


+   /* xusb_hs_src */
+   val = readl(clk_base + CLK_SOURCE_XUSB_SS_SRC);
+   val |= BIT(25); /* always select PLLU_60M */
+   writel(val, clk_base + CLK_SOURCE_XUSB_SS_SRC);
+
+   clk = clk_register_fixed_factor(NULL, "xusb_h