* [PATCH] clk: si5351: Add setup steps
@ 2015-11-19 13:40 Jacob Siverskog
2015-11-19 14:18 ` Belisko Marek
2015-11-19 21:00 ` Sebastian Hesselbarth
0 siblings, 2 replies; 5+ messages in thread
From: Jacob Siverskog @ 2015-11-19 13:40 UTC (permalink / raw)
To: Michael Turquette, Stephen Boyd, Sebastian Hesselbarth,
linux-kernel, linux-clk
Cc: Jacob Siverskog, Jens Rudberg
This is according to figure 12 ("I2C Programming Procedure") in
"Si5351A/B/C Data Sheet"
(https://www.silabs.com/Support%20Documents/TechnicalDocs/Si5351-B.pdf).
Without the PLL soft reset, we were unable to get three outputs
working at the same time.
According to Silicon Labs support, performing PLL soft reset will only
be noticable if the PLL parameters have been changed.
Signed-off-by: Jacob Siverskog <jacob@teenage.engineering>
Signed-off-by: Jens Rudberg <jens@teenage.engineering>
---
drivers/clk/clk-si5351.c | 13 +++++++++++++
1 file changed, 13 insertions(+)
diff --git a/drivers/clk/clk-si5351.c b/drivers/clk/clk-si5351.c
index e346b22..110de35 100644
--- a/drivers/clk/clk-si5351.c
+++ b/drivers/clk/clk-si5351.c
@@ -1091,6 +1091,11 @@ static int si5351_clkout_set_rate(struct clk_hw *hw, unsigned long rate,
si5351_set_bits(hwdata->drvdata, SI5351_CLK0_CTRL + hwdata->num,
SI5351_CLK_POWERDOWN, 0);
+ /* do a pll soft reset on both plls, needed in some cases to get all
+ * outputs running */
+ si5351_reg_write(hwdata->drvdata, SI5351_PLL_RESET,
+ SI5351_PLL_RESET_A | SI5351_PLL_RESET_B);
+
dev_dbg(&hwdata->drvdata->client->dev,
"%s - %s: rdiv = %u, parent_rate = %lu, rate = %lu\n",
__func__, clk_hw_get_name(hw), (1 << rdiv),
@@ -1359,6 +1364,14 @@ static int si5351_i2c_probe(struct i2c_client *client,
return PTR_ERR(drvdata->regmap);
}
+ /* Disable outputs */
+ si5351_reg_write(drvdata, SI5351_OUTPUT_ENABLE_CTRL, 0xff);
+
+ /* Power down all output drivers */
+ for (n = 0; n < 8; n++) {
+ si5351_reg_write(drvdata, SI5351_CLK0_CTRL + n, 0x80);
+ }
+
/* Disable interrupts */
si5351_reg_write(drvdata, SI5351_INTERRUPT_MASK, 0xf0);
/* Ensure pll select is on XTAL for Si5351A/B */
--
2.6.3
^ permalink raw reply related [flat|nested] 5+ messages in thread* Re: [PATCH] clk: si5351: Add setup steps 2015-11-19 13:40 [PATCH] clk: si5351: Add setup steps Jacob Siverskog @ 2015-11-19 14:18 ` Belisko Marek 2015-11-20 8:18 ` Jacob Siverskog 2015-11-19 21:00 ` Sebastian Hesselbarth 1 sibling, 1 reply; 5+ messages in thread From: Belisko Marek @ 2015-11-19 14:18 UTC (permalink / raw) To: Jacob Siverskog Cc: Michael Turquette, Stephen Boyd, Sebastian Hesselbarth, LKML, linux-clk, Jens Rudberg Hi Jacob, On Thu, Nov 19, 2015 at 2:40 PM, Jacob Siverskog <jacob@teenage.engineering> wrote: > This is according to figure 12 ("I2C Programming Procedure") in > "Si5351A/B/C Data Sheet" > (https://www.silabs.com/Support%20Documents/TechnicalDocs/Si5351-B.pdf). > > Without the PLL soft reset, we were unable to get three outputs > working at the same time. > > According to Silicon Labs support, performing PLL soft reset will only > be noticable if the PLL parameters have been changed. > > Signed-off-by: Jacob Siverskog <jacob@teenage.engineering> > Signed-off-by: Jens Rudberg <jens@teenage.engineering> > --- > drivers/clk/clk-si5351.c | 13 +++++++++++++ > 1 file changed, 13 insertions(+) > > diff --git a/drivers/clk/clk-si5351.c b/drivers/clk/clk-si5351.c > index e346b22..110de35 100644 > --- a/drivers/clk/clk-si5351.c > +++ b/drivers/clk/clk-si5351.c > @@ -1091,6 +1091,11 @@ static int si5351_clkout_set_rate(struct clk_hw *hw, unsigned long rate, > si5351_set_bits(hwdata->drvdata, SI5351_CLK0_CTRL + hwdata->num, > SI5351_CLK_POWERDOWN, 0); > > + /* do a pll soft reset on both plls, needed in some cases to get all > + * outputs running */ ^^^^ wrong format of multi line comment, please look at Documentation/CodingStyle > + si5351_reg_write(hwdata->drvdata, SI5351_PLL_RESET, > + SI5351_PLL_RESET_A | SI5351_PLL_RESET_B); ^^^^ according datasheet PLL_RESET_A/B are self clearing bits valid for Si5351A/C only so probably we need to add some code for B model > + > dev_dbg(&hwdata->drvdata->client->dev, > "%s - %s: rdiv = %u, parent_rate = %lu, rate = %lu\n", > __func__, clk_hw_get_name(hw), (1 << rdiv), > @@ -1359,6 +1364,14 @@ static int si5351_i2c_probe(struct i2c_client *client, > return PTR_ERR(drvdata->regmap); > } > > + /* Disable outputs */ > + si5351_reg_write(drvdata, SI5351_OUTPUT_ENABLE_CTRL, 0xff); > + > + /* Power down all output drivers */ > + for (n = 0; n < 8; n++) { > + si5351_reg_write(drvdata, SI5351_CLK0_CTRL + n, 0x80); > + } ^^^ single line after for statement doesn't need curly braces (if you run ./scripts/check_patch it will complain) > + > /* Disable interrupts */ > si5351_reg_write(drvdata, SI5351_INTERRUPT_MASK, 0xf0); > /* Ensure pll select is on XTAL for Si5351A/B */ > -- > 2.6.3 > > -- > To unsubscribe from this list: send the line "unsubscribe linux-kernel" in > the body of a message to majordomo@vger.kernel.org > More majordomo info at http://vger.kernel.org/majordomo-info.html > Please read the FAQ at http://www.tux.org/lkml/ BR, marek -- as simple and primitive as possible ------------------------------------------------- Marek Belisko - OPEN-NANDRA Freelance Developer Ruska Nova Ves 219 | Presov, 08005 Slovak Republic Tel: +421 915 052 184 skype: marekwhite twitter: #opennandra web: http://open-nandra.com ^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH] clk: si5351: Add setup steps 2015-11-19 14:18 ` Belisko Marek @ 2015-11-20 8:18 ` Jacob Siverskog 0 siblings, 0 replies; 5+ messages in thread From: Jacob Siverskog @ 2015-11-20 8:18 UTC (permalink / raw) To: Belisko Marek Cc: Michael Turquette, Stephen Boyd, Sebastian Hesselbarth, LKML, linux-clk, Jens Rudberg Hi Marek! Thanks for your feedback. On Thu, Nov 19, 2015 at 3:18 PM, Belisko Marek <marek.belisko@gmail.com> wrote: > Hi Jacob, > > On Thu, Nov 19, 2015 at 2:40 PM, Jacob Siverskog > <jacob@teenage.engineering> wrote: >> This is according to figure 12 ("I2C Programming Procedure") in >> "Si5351A/B/C Data Sheet" >> (https://www.silabs.com/Support%20Documents/TechnicalDocs/Si5351-B.pdf). >> >> Without the PLL soft reset, we were unable to get three outputs >> working at the same time. >> >> According to Silicon Labs support, performing PLL soft reset will only >> be noticable if the PLL parameters have been changed. >> >> Signed-off-by: Jacob Siverskog <jacob@teenage.engineering> >> Signed-off-by: Jens Rudberg <jens@teenage.engineering> >> --- >> drivers/clk/clk-si5351.c | 13 +++++++++++++ >> 1 file changed, 13 insertions(+) >> >> diff --git a/drivers/clk/clk-si5351.c b/drivers/clk/clk-si5351.c >> index e346b22..110de35 100644 >> --- a/drivers/clk/clk-si5351.c >> +++ b/drivers/clk/clk-si5351.c >> @@ -1091,6 +1091,11 @@ static int si5351_clkout_set_rate(struct clk_hw *hw, unsigned long rate, >> si5351_set_bits(hwdata->drvdata, SI5351_CLK0_CTRL + hwdata->num, >> SI5351_CLK_POWERDOWN, 0); >> >> + /* do a pll soft reset on both plls, needed in some cases to get all >> + * outputs running */ > ^^^^ wrong format of multi line comment, please look at > Documentation/CodingStyle >> + si5351_reg_write(hwdata->drvdata, SI5351_PLL_RESET, >> + SI5351_PLL_RESET_A | SI5351_PLL_RESET_B); > ^^^^ according datasheet PLL_RESET_A/B are self clearing bits > valid for Si5351A/C only > so probably we need to add some code for B model Well, this is interesting. In the latest data sheet (that I've been reading, https://www.silabs.com/Support%20Documents/TechnicalDocs/Si5351-B.pdf), this is not mentioned at all. For the register descriptions, it only refers to "AN619 Generating a register map" (http://www.silabs.com/Support%20Documents/TechnicalDocs/AN619.pdf), where no such caveat exists. I found an old datasheet on my computer that has the same phrasing as yours. I have sent an e-mail to our SiLabs representative regarding this matter. >> + >> dev_dbg(&hwdata->drvdata->client->dev, >> "%s - %s: rdiv = %u, parent_rate = %lu, rate = %lu\n", >> __func__, clk_hw_get_name(hw), (1 << rdiv), >> @@ -1359,6 +1364,14 @@ static int si5351_i2c_probe(struct i2c_client *client, >> return PTR_ERR(drvdata->regmap); >> } >> >> + /* Disable outputs */ >> + si5351_reg_write(drvdata, SI5351_OUTPUT_ENABLE_CTRL, 0xff); >> + >> + /* Power down all output drivers */ >> + for (n = 0; n < 8; n++) { >> + si5351_reg_write(drvdata, SI5351_CLK0_CTRL + n, 0x80); >> + } > ^^^ single line after for statement doesn't need curly > braces (if you run ./scripts/check_patch it will complain) I will fix all embarrassing cosmetic issues for the next version of the patch. >> + >> /* Disable interrupts */ >> si5351_reg_write(drvdata, SI5351_INTERRUPT_MASK, 0xf0); >> /* Ensure pll select is on XTAL for Si5351A/B */ >> -- >> 2.6.3 >> >> -- >> To unsubscribe from this list: send the line "unsubscribe linux-kernel" in >> the body of a message to majordomo@vger.kernel.org >> More majordomo info at http://vger.kernel.org/majordomo-info.html >> Please read the FAQ at http://www.tux.org/lkml/ > > BR, > > marek > > -- > as simple and primitive as possible > ------------------------------------------------- > Marek Belisko - OPEN-NANDRA > Freelance Developer > > Ruska Nova Ves 219 | Presov, 08005 Slovak Republic > Tel: +421 915 052 184 > skype: marekwhite > twitter: #opennandra > web: http://open-nandra.com Thanks, Jacob ^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH] clk: si5351: Add setup steps 2015-11-19 13:40 [PATCH] clk: si5351: Add setup steps Jacob Siverskog 2015-11-19 14:18 ` Belisko Marek @ 2015-11-19 21:00 ` Sebastian Hesselbarth 2015-11-20 8:31 ` Jacob Siverskog 1 sibling, 1 reply; 5+ messages in thread From: Sebastian Hesselbarth @ 2015-11-19 21:00 UTC (permalink / raw) To: Jacob Siverskog, Michael Turquette, Stephen Boyd, linux-kernel, linux-clk Cc: Jens Rudberg On 19.11.2015 14:40, Jacob Siverskog wrote: > This is according to figure 12 ("I2C Programming Procedure") in > "Si5351A/B/C Data Sheet" > (https://www.silabs.com/Support%20Documents/TechnicalDocs/Si5351-B.pdf). > > Without the PLL soft reset, we were unable to get three outputs > working at the same time. > > According to Silicon Labs support, performing PLL soft reset will only > be noticable if the PLL parameters have been changed. > > Signed-off-by: Jacob Siverskog <jacob@teenage.engineering> > Signed-off-by: Jens Rudberg <jens@teenage.engineering> > --- > drivers/clk/clk-si5351.c | 13 +++++++++++++ > 1 file changed, 13 insertions(+) Jacob, thanks for the patches! However, besides Mareks comments I have some more below. > diff --git a/drivers/clk/clk-si5351.c b/drivers/clk/clk-si5351.c > index e346b22..110de35 100644 > --- a/drivers/clk/clk-si5351.c > +++ b/drivers/clk/clk-si5351.c > @@ -1091,6 +1091,11 @@ static int si5351_clkout_set_rate(struct clk_hw *hw, unsigned long rate, > si5351_set_bits(hwdata->drvdata, SI5351_CLK0_CTRL + hwdata->num, > SI5351_CLK_POWERDOWN, 0); > > + /* do a pll soft reset on both plls, needed in some cases to get all > + * outputs running */ > + si5351_reg_write(hwdata->drvdata, SI5351_PLL_RESET, > + SI5351_PLL_RESET_A | SI5351_PLL_RESET_B); > + > dev_dbg(&hwdata->drvdata->client->dev, > "%s - %s: rdiv = %u, parent_rate = %lu, rate = %lu\n", > __func__, clk_hw_get_name(hw), (1 << rdiv), > @@ -1359,6 +1364,14 @@ static int si5351_i2c_probe(struct i2c_client *client, > return PTR_ERR(drvdata->regmap); > } > > + /* Disable outputs */ > + si5351_reg_write(drvdata, SI5351_OUTPUT_ENABLE_CTRL, 0xff); > + > + /* Power down all output drivers */ > + for (n = 0; n < 8; n++) { > + si5351_reg_write(drvdata, SI5351_CLK0_CTRL + n, 0x80); > + } Is disabling outputs and clock drivers required? If we disable the clocks here unconditionally, it will break those systems that require specific outputs to be always enabled. Consider one clock output driving your SoC or similar. If it is really required, you'll have to mention that in the patch description and we need to find a way to tag specific outputs to be never disabled. Sebastian > /* Disable interrupts */ > si5351_reg_write(drvdata, SI5351_INTERRUPT_MASK, 0xf0); > /* Ensure pll select is on XTAL for Si5351A/B */ > ^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH] clk: si5351: Add setup steps 2015-11-19 21:00 ` Sebastian Hesselbarth @ 2015-11-20 8:31 ` Jacob Siverskog 0 siblings, 0 replies; 5+ messages in thread From: Jacob Siverskog @ 2015-11-20 8:31 UTC (permalink / raw) To: Sebastian Hesselbarth Cc: Michael Turquette, Stephen Boyd, linux-kernel, linux-clk, Jens Rudberg Hi Sebastian! On Thu, Nov 19, 2015 at 10:00 PM, Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com> wrote: > On 19.11.2015 14:40, Jacob Siverskog wrote: >> This is according to figure 12 ("I2C Programming Procedure") in >> "Si5351A/B/C Data Sheet" >> (https://www.silabs.com/Support%20Documents/TechnicalDocs/Si5351-B.pdf). >> >> Without the PLL soft reset, we were unable to get three outputs >> working at the same time. >> >> According to Silicon Labs support, performing PLL soft reset will only >> be noticable if the PLL parameters have been changed. >> >> Signed-off-by: Jacob Siverskog <jacob@teenage.engineering> >> Signed-off-by: Jens Rudberg <jens@teenage.engineering> >> --- >> drivers/clk/clk-si5351.c | 13 +++++++++++++ >> 1 file changed, 13 insertions(+) > > Jacob, > > thanks for the patches! However, besides Mareks comments I have > some more below. > >> diff --git a/drivers/clk/clk-si5351.c b/drivers/clk/clk-si5351.c >> index e346b22..110de35 100644 >> --- a/drivers/clk/clk-si5351.c >> +++ b/drivers/clk/clk-si5351.c >> @@ -1091,6 +1091,11 @@ static int si5351_clkout_set_rate(struct clk_hw *hw, unsigned long rate, >> si5351_set_bits(hwdata->drvdata, SI5351_CLK0_CTRL + hwdata->num, >> SI5351_CLK_POWERDOWN, 0); >> >> + /* do a pll soft reset on both plls, needed in some cases to get all >> + * outputs running */ >> + si5351_reg_write(hwdata->drvdata, SI5351_PLL_RESET, >> + SI5351_PLL_RESET_A | SI5351_PLL_RESET_B); >> + >> dev_dbg(&hwdata->drvdata->client->dev, >> "%s - %s: rdiv = %u, parent_rate = %lu, rate = %lu\n", >> __func__, clk_hw_get_name(hw), (1 << rdiv), >> @@ -1359,6 +1364,14 @@ static int si5351_i2c_probe(struct i2c_client *client, >> return PTR_ERR(drvdata->regmap); >> } >> >> + /* Disable outputs */ >> + si5351_reg_write(drvdata, SI5351_OUTPUT_ENABLE_CTRL, 0xff); >> + >> + /* Power down all output drivers */ >> + for (n = 0; n < 8; n++) { >> + si5351_reg_write(drvdata, SI5351_CLK0_CTRL + n, 0x80); >> + } > > Is disabling outputs and clock drivers required? > > If we disable the clocks here unconditionally, it will > break those systems that require specific outputs to be always > enabled. Consider one clock output driving your SoC or similar. > > If it is really required, you'll have to mention that in the > patch description and we need to find a way to tag specific > outputs to be never disabled. The only change that we needed in order to get our setup working was the PLL soft reset. I added the other bits to conform more to the recommended programming procedure. Let's skip the output disabling and power down in order to not break the use case you're mentioning. Thanks, Jacob > > Sebastian > >> /* Disable interrupts */ >> si5351_reg_write(drvdata, SI5351_INTERRUPT_MASK, 0xf0); >> /* Ensure pll select is on XTAL for Si5351A/B */ >> > ^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2015-11-20 8:31 UTC | newest] Thread overview: 5+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2015-11-19 13:40 [PATCH] clk: si5351: Add setup steps Jacob Siverskog 2015-11-19 14:18 ` Belisko Marek 2015-11-20 8:18 ` Jacob Siverskog 2015-11-19 21:00 ` Sebastian Hesselbarth 2015-11-20 8:31 ` Jacob Siverskog
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox