* Re: Role of PLL_ENABLE_BIT
[not found] <2111968107.110151406781109677.JavaMail.weblogic@epmlwas02a>
@ 2014-07-31 4:51 ` Yadwinder Singh Brar
[not found] ` <CAEe5pB_3PfgaWMBA2nDF018p6oGtP3BTBp_dxt2V+hh192+dVQ@mail.gmail.com>
2014-07-31 10:07 ` Andreas Färber
0 siblings, 2 replies; 5+ messages in thread
From: Yadwinder Singh Brar @ 2014-07-31 4:51 UTC (permalink / raw)
To: linux-samsung-soc, hsnaves
Cc: Mike Turquette, Tomasz Figa, Vikas Sajjan, Yadwinder Singh
Hi Humberto,
> ------- Original Message -------
> Sender : Humberto Naves<hsnaves@gmail.com>
> Date : Jul 31, 2014 00:16 (GMT+09:00)
> Title : Role of PLL_ENABLE_BIT
>
> Hi,
>
>
> I am using an ODROID-XU board, and I was trying to change the rates of some PLL clocks for a while, but I could not. After a while, I realized that the cpu was trapped in an infinite loop waiting for the PLL35XX_LOCK_STAT bit to be set. Furthermore, I discovered that the reason was that the the PLL35XX_ENABLE_BIT was not set.
>
>
> I wonder if this is really a driver problem, since in the set_rate functions, the ENABLE_BIT is not set. Can someone confirm if this is indeed the expected behavior of the driver?
>
hmm .. actually it doesn't clear also ENABLE_BIT, I wonder how its getting clear
in your case since we don't have enable/disable() implemented yet.
>
>
> By the way, In order to solve this issue, I changed the files according to the following diff
>
>
> diff --git a/drivers/clk/samsung/clk-pll.c b/drivers/clk/samsung/clk-pll.c
> index b07fad2..9300274 100644
> --- a/drivers/clk/samsung/clk-pll.c
> +++ b/drivers/clk/samsung/clk-pll.c
> @@ -131,14 +131,15 @@ static const struct clk_ops samsung_pll3000_clk_ops = {
> /* Maximum lock time can be 270 * PDIV cycles */
> #define PLL35XX_LOCK_FACTOR (270)
>
> -#define PLL35XX_MDIV_MASK (0x3FF)
> -#define PLL35XX_PDIV_MASK (0x3F)
> -#define PLL35XX_SDIV_MASK (0x7)
> +#define PLL35XX_MDIV_MASK (0x3FF)
> +#define PLL35XX_PDIV_MASK (0x3F)
> +#define PLL35XX_SDIV_MASK (0x7)
> #define PLL35XX_LOCK_STAT_MASK (0x1)
> -#define PLL35XX_MDIV_SHIFT (16)
> -#define PLL35XX_PDIV_SHIFT (8)
> -#define PLL35XX_SDIV_SHIFT (0)
> +#define PLL35XX_MDIV_SHIFT (16)
> +#define PLL35XX_PDIV_SHIFT (8)
> +#define PLL35XX_SDIV_SHIFT (0)
> #define PLL35XX_LOCK_STAT_SHIFT (29)
> +#define PLL35XX_ENABLE_SHIFT (31)
>
> static unsigned long samsung_pll35xx_recalc_rate(struct clk_hw *hw,
> unsigned long parent_rate)
> @@ -190,6 +191,7 @@ static int samsung_pll35xx_set_rate(struct clk_hw *hw, unsigned long drate,
> /* If only s change, change just s value only*/
> tmp &= ~(PLL35XX_SDIV_MASK << PLL35XX_SDIV_SHIFT);
> tmp |= rate->sdiv << PLL35XX_SDIV_SHIFT;
> + tmp |= (1 << PLL35XX_ENABLE_SHIFT);
> __raw_writel(tmp, pll->con_reg);
>
> return 0;
> @@ -206,6 +208,7 @@ static int samsung_pll35xx_set_rate(struct clk_hw *hw, unsigned long drate,
> tmp |= (rate->mdiv << PLL35XX_MDIV_SHIFT) |
> (rate->pdiv << PLL35XX_PDIV_SHIFT) |
> (rate->sdiv << PLL35XX_SDIV_SHIFT);
> + tmp |= (1 << PLL35XX_ENABLE_SHIFT);
Ideally tmp should already have this bit set since we are not clearing it
after doing tmp = __raw_readl(tmp);
Can you please check value of tmp here ? and Is there anything else in
your kernel clearing this bit ?
Regards,
Yadwinder
> __raw_writel(tmp, pll->con_reg);
>
> /* wait_lock_time */
> @@ -242,6 +245,7 @@ static const struct clk_ops samsung_pll35xx_clk_min_ops = {
> #define PLL36XX_SDIV_SHIFT (0)
> #define PLL36XX_KDIV_SHIFT (0)
> #define PLL36XX_LOCK_STAT_SHIFT (29)
> +#define PLL36XX_ENABLE_SHIFT (31)
>
> static unsigned long samsung_pll36xx_recalc_rate(struct clk_hw *hw,
> unsigned long parent_rate)
> @@ -299,6 +303,7 @@ static int samsung_pll36xx_set_rate(struct clk_hw *hw, unsigned long drate,
> /* If only s change, change just s value only*/
> pll_con0 &= ~(PLL36XX_SDIV_MASK << PLL36XX_SDIV_SHIFT);
> pll_con0 |= (rate->sdiv << PLL36XX_SDIV_SHIFT);
> + pll_con0 |= (1 << PLL36XX_ENABLE_SHIFT);
> __raw_writel(pll_con0, pll->con_reg);
>
> return 0;
> @@ -314,6 +319,7 @@ static int samsung_pll36xx_set_rate(struct clk_hw *hw, unsigned long drate,
> pll_con0 |= (rate->mdiv << PLL36XX_MDIV_SHIFT) |
> (rate->pdiv << PLL36XX_PDIV_SHIFT) |
> (rate->sdiv << PLL36XX_SDIV_SHIFT);
> + pll_con0 |= (1 << PLL36XX_ENABLE_SHIFT);
> __raw_writel(pll_con0, pll->con_reg);
>
> pll_con1 &= ~(PLL36XX_KDIV_MASK << PLL36XX_KDIV_SHIFT);
^ permalink raw reply [flat|nested] 5+ messages in thread
* Fwd: Role of PLL_ENABLE_BIT
[not found] ` <CAEe5pB_3PfgaWMBA2nDF018p6oGtP3BTBp_dxt2V+hh192+dVQ@mail.gmail.com>
@ 2014-07-31 9:06 ` Humberto Naves
0 siblings, 0 replies; 5+ messages in thread
From: Humberto Naves @ 2014-07-31 9:06 UTC (permalink / raw)
To: linux-samsung-soc
---------- Forwarded message ----------
From: Humberto Naves <hsnaves@gmail.com>
Date: Thu, Jul 31, 2014 at 11:01 AM
Subject: Re: Role of PLL_ENABLE_BIT
To: Yadwinder Singh Brar <yadi.brar01@gmail.com>
Cc: linux-samsung-soc <linux-samsung-soc@vger.kernel.org>, Mike
Turquette <mturquette@linaro.org>, Tomasz Figa <t.figa@samsung.com>,
Vikas Sajjan <sajjan.linux@gmail.com>, Yadwinder Singh
<yadi.brar@samsung.com>
Hi Yadwinder,
So, the PLL that I am interested in is the VPLL, which is a PLL36XX
model. I just tested it again, and I read the address 0x10020140
before the kernel starts, and apparently it comes zeroed from U-boot.
I have no idea why this happens.
But in any case, since set_rate always enters an infinite loop if the
bit is not set, wouldn't it be more reasonable to just enable this bet
every time the rate function is called? I think this is a much more
robust solution that to expect this bit to be set previously by the
boot loader. And in all implementations of the PLL's I've seen for the
different exynos SoCs, none of them use the PLL gate functionality, as
they rely on muxes and other gates that attached in front of these
clocks. For instance, in my case, there is the mout_vpll that can
select from either the VPLL output fout_vpll or its source
mout_vpllsrc.
If you do not like this solution, there is an alternative solution. We
could add the enable/disable functions to all the PLLs, and at the
beginning of set_rate, we check if the clock is enabled. If not,
return an error code such as EINVAL or EBUSY. I strongly object to
this alternative, since it adds complexity to code and will not be
necessarily useful.
Best,
Humberto
On Thu, Jul 31, 2014 at 6:51 AM, Yadwinder Singh Brar
<yadi.brar01@gmail.com> wrote:
>
> Hi Humberto,
>
>
> > ------- Original Message -------
> > Sender : Humberto Naves<hsnaves@gmail.com>
> > Date : Jul 31, 2014 00:16 (GMT+09:00)
> > Title : Role of PLL_ENABLE_BIT
> >
> > Hi,
> >
> >
> > I am using an ODROID-XU board, and I was trying to change the rates of some PLL clocks for a while, but I could not. After a while, I realized that the cpu was trapped in an infinite loop waiting for the PLL35XX_LOCK_STAT bit to be set. Furthermore, I discovered that the reason was that the the PLL35XX_ENABLE_BIT was not set.
> >
> >
> > I wonder if this is really a driver problem, since in the set_rate functions, the ENABLE_BIT is not set. Can someone confirm if this is indeed the expected behavior of the driver?
> >
>
> hmm .. actually it doesn't clear also ENABLE_BIT, I wonder how its getting clear
> in your case since we don't have enable/disable() implemented yet.
>
> >
> >
> > By the way, In order to solve this issue, I changed the files according to the following diff
> >
> >
> > diff --git a/drivers/clk/samsung/clk-pll.c b/drivers/clk/samsung/clk-pll.c
> > index b07fad2..9300274 100644
> > --- a/drivers/clk/samsung/clk-pll.c
> > +++ b/drivers/clk/samsung/clk-pll.c
> > @@ -131,14 +131,15 @@ static const struct clk_ops samsung_pll3000_clk_ops = {
> > /* Maximum lock time can be 270 * PDIV cycles */
> > #define PLL35XX_LOCK_FACTOR (270)
> >
> > -#define PLL35XX_MDIV_MASK (0x3FF)
> > -#define PLL35XX_PDIV_MASK (0x3F)
> > -#define PLL35XX_SDIV_MASK (0x7)
> > +#define PLL35XX_MDIV_MASK (0x3FF)
> > +#define PLL35XX_PDIV_MASK (0x3F)
> > +#define PLL35XX_SDIV_MASK (0x7)
> > #define PLL35XX_LOCK_STAT_MASK (0x1)
> > -#define PLL35XX_MDIV_SHIFT (16)
> > -#define PLL35XX_PDIV_SHIFT (8)
> > -#define PLL35XX_SDIV_SHIFT (0)
> > +#define PLL35XX_MDIV_SHIFT (16)
> > +#define PLL35XX_PDIV_SHIFT (8)
> > +#define PLL35XX_SDIV_SHIFT (0)
> > #define PLL35XX_LOCK_STAT_SHIFT (29)
> > +#define PLL35XX_ENABLE_SHIFT (31)
> >
> > static unsigned long samsung_pll35xx_recalc_rate(struct clk_hw *hw,
> > unsigned long parent_rate)
> > @@ -190,6 +191,7 @@ static int samsung_pll35xx_set_rate(struct clk_hw *hw, unsigned long drate,
> > /* If only s change, change just s value only*/
> > tmp &= ~(PLL35XX_SDIV_MASK << PLL35XX_SDIV_SHIFT);
> > tmp |= rate->sdiv << PLL35XX_SDIV_SHIFT;
> > + tmp |= (1 << PLL35XX_ENABLE_SHIFT);
> > __raw_writel(tmp, pll->con_reg);
> >
> > return 0;
> > @@ -206,6 +208,7 @@ static int samsung_pll35xx_set_rate(struct clk_hw *hw, unsigned long drate,
> > tmp |= (rate->mdiv << PLL35XX_MDIV_SHIFT) |
> > (rate->pdiv << PLL35XX_PDIV_SHIFT) |
> > (rate->sdiv << PLL35XX_SDIV_SHIFT);
> > + tmp |= (1 << PLL35XX_ENABLE_SHIFT);
>
> Ideally tmp should already have this bit set since we are not clearing it
> after doing tmp = __raw_readl(tmp);
>
> Can you please check value of tmp here ? and Is there anything else in
> your kernel clearing this bit ?
>
>
> Regards,
> Yadwinder
>
> > __raw_writel(tmp, pll->con_reg);
> >
> > /* wait_lock_time */
> > @@ -242,6 +245,7 @@ static const struct clk_ops samsung_pll35xx_clk_min_ops = {
> > #define PLL36XX_SDIV_SHIFT (0)
> > #define PLL36XX_KDIV_SHIFT (0)
> > #define PLL36XX_LOCK_STAT_SHIFT (29)
> > +#define PLL36XX_ENABLE_SHIFT (31)
> >
> > static unsigned long samsung_pll36xx_recalc_rate(struct clk_hw *hw,
> > unsigned long parent_rate)
> > @@ -299,6 +303,7 @@ static int samsung_pll36xx_set_rate(struct clk_hw *hw, unsigned long drate,
> > /* If only s change, change just s value only*/
> > pll_con0 &= ~(PLL36XX_SDIV_MASK << PLL36XX_SDIV_SHIFT);
> > pll_con0 |= (rate->sdiv << PLL36XX_SDIV_SHIFT);
> > + pll_con0 |= (1 << PLL36XX_ENABLE_SHIFT);
> > __raw_writel(pll_con0, pll->con_reg);
> >
> > return 0;
> > @@ -314,6 +319,7 @@ static int samsung_pll36xx_set_rate(struct clk_hw *hw, unsigned long drate,
> > pll_con0 |= (rate->mdiv << PLL36XX_MDIV_SHIFT) |
> > (rate->pdiv << PLL36XX_PDIV_SHIFT) |
> > (rate->sdiv << PLL36XX_SDIV_SHIFT);
> > + pll_con0 |= (1 << PLL36XX_ENABLE_SHIFT);
> > __raw_writel(pll_con0, pll->con_reg);
> >
> > pll_con1 &= ~(PLL36XX_KDIV_MASK << PLL36XX_KDIV_SHIFT);
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: Role of PLL_ENABLE_BIT
2014-07-31 4:51 ` Role of PLL_ENABLE_BIT Yadwinder Singh Brar
[not found] ` <CAEe5pB_3PfgaWMBA2nDF018p6oGtP3BTBp_dxt2V+hh192+dVQ@mail.gmail.com>
@ 2014-07-31 10:07 ` Andreas Färber
2014-07-31 10:46 ` Humberto Naves
1 sibling, 1 reply; 5+ messages in thread
From: Andreas Färber @ 2014-07-31 10:07 UTC (permalink / raw)
To: linux-samsung-soc, hsnaves
Cc: Yadwinder Singh Brar, Mike Turquette, Tomasz Figa, Vikas Sajjan,
Yadwinder Singh
Hi Humberto,
Somehow the original message didn't arrive on linux-samsung-soc...
Am 31.07.2014 06:51, schrieb Yadwinder Singh Brar:
>> ------- Original Message -------
>> Sender : Humberto Naves<hsnaves@gmail.com>
>> Date : Jul 31, 2014 00:16 (GMT+09:00)
>> Title : Role of PLL_ENABLE_BIT
>>
>> Hi,
>>
>>
>> I am using an ODROID-XU board, and I was trying to change the rates of some PLL clocks for a while, but I could not. After a while, I realized that the cpu was trapped in an infinite loop waiting for the PLL35XX_LOCK_STAT bit to be set. Furthermore, I discovered that the reason was that the the PLL35XX_ENABLE_BIT was not set.
>>
>>
>> I wonder if this is really a driver problem, since in the set_rate functions, the ENABLE_BIT is not set. Can someone confirm if this is indeed the expected behavior of the driver?
>>
>
> hmm .. actually it doesn't clear also ENABLE_BIT, I wonder how its getting clear
> in your case since we don't have enable/disable() implemented yet.
>
>>
>>
>> By the way, In order to solve this issue, I changed the files according to the following diff
>>
>>
>> diff --git a/drivers/clk/samsung/clk-pll.c b/drivers/clk/samsung/clk-pll.c
>> index b07fad2..9300274 100644
>> --- a/drivers/clk/samsung/clk-pll.c
>> +++ b/drivers/clk/samsung/clk-pll.c
>> @@ -131,14 +131,15 @@ static const struct clk_ops samsung_pll3000_clk_ops = {
>> /* Maximum lock time can be 270 * PDIV cycles */
>> #define PLL35XX_LOCK_FACTOR (270)
>>
>> -#define PLL35XX_MDIV_MASK (0x3FF)
>> -#define PLL35XX_PDIV_MASK (0x3F)
>> -#define PLL35XX_SDIV_MASK (0x7)
>> +#define PLL35XX_MDIV_MASK (0x3FF)
>> +#define PLL35XX_PDIV_MASK (0x3F)
>> +#define PLL35XX_SDIV_MASK (0x7)
>> #define PLL35XX_LOCK_STAT_MASK (0x1)
>> -#define PLL35XX_MDIV_SHIFT (16)
>> -#define PLL35XX_PDIV_SHIFT (8)
>> -#define PLL35XX_SDIV_SHIFT (0)
>> +#define PLL35XX_MDIV_SHIFT (16)
>> +#define PLL35XX_PDIV_SHIFT (8)
>> +#define PLL35XX_SDIV_SHIFT (0)
>> #define PLL35XX_LOCK_STAT_SHIFT (29)
>> +#define PLL35XX_ENABLE_SHIFT (31)
>>
>> static unsigned long samsung_pll35xx_recalc_rate(struct clk_hw *hw,
>> unsigned long parent_rate)
>> @@ -190,6 +191,7 @@ static int samsung_pll35xx_set_rate(struct clk_hw *hw, unsigned long drate,
>> /* If only s change, change just s value only*/
>> tmp &= ~(PLL35XX_SDIV_MASK << PLL35XX_SDIV_SHIFT);
>> tmp |= rate->sdiv << PLL35XX_SDIV_SHIFT;
>> + tmp |= (1 << PLL35XX_ENABLE_SHIFT);
>> __raw_writel(tmp, pll->con_reg);
>>
>> return 0;
>> @@ -206,6 +208,7 @@ static int samsung_pll35xx_set_rate(struct clk_hw *hw, unsigned long drate,
>> tmp |= (rate->mdiv << PLL35XX_MDIV_SHIFT) |
>> (rate->pdiv << PLL35XX_PDIV_SHIFT) |
>> (rate->sdiv << PLL35XX_SDIV_SHIFT);
>> + tmp |= (1 << PLL35XX_ENABLE_SHIFT);
It appears tmp is a u32. Does that make 1 << 31 a safe expression wrt
signedness, or does it need to be 1u << PLL35XX_ENABLE_SHIFT?
Did you verify the result?
Regards,
Andreas
--
SUSE LINUX Products GmbH, Maxfeldstr. 5, 90409 Nürnberg, Germany
GF: Jeff Hawn, Jennifer Guild, Felix Imendörffer; HRB 16746 AG Nürnberg
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: Role of PLL_ENABLE_BIT
2014-07-31 10:07 ` Andreas Färber
@ 2014-07-31 10:46 ` Humberto Naves
2014-07-31 13:25 ` Tomasz Figa
0 siblings, 1 reply; 5+ messages in thread
From: Humberto Naves @ 2014-07-31 10:46 UTC (permalink / raw)
To: Andreas Färber
Cc: linux-samsung-soc, Yadwinder Singh Brar, Mike Turquette,
Tomasz Figa, Vikas Sajjan, Yadwinder Singh
Hi Andreas,
I guess the original message was not plain text, and majordomo refused
to deliver it :-(
The signedness is not an issue, if I just use what I sent in the
patch, the set_rate function works like a charm. But otherwise, the
whole system freezes and I have to reboot the machine.
Best,
Humberto
On Thu, Jul 31, 2014 at 12:07 PM, Andreas Färber <afaerber@suse.de> wrote:
> Hi Humberto,
>
> Somehow the original message didn't arrive on linux-samsung-soc...
>
> Am 31.07.2014 06:51, schrieb Yadwinder Singh Brar:
>>> ------- Original Message -------
>>> Sender : Humberto Naves<hsnaves@gmail.com>
>>> Date : Jul 31, 2014 00:16 (GMT+09:00)
>>> Title : Role of PLL_ENABLE_BIT
>>>
>>> Hi,
>>>
>>>
>>> I am using an ODROID-XU board, and I was trying to change the rates of some PLL clocks for a while, but I could not. After a while, I realized that the cpu was trapped in an infinite loop waiting for the PLL35XX_LOCK_STAT bit to be set. Furthermore, I discovered that the reason was that the the PLL35XX_ENABLE_BIT was not set.
>>>
>>>
>>> I wonder if this is really a driver problem, since in the set_rate functions, the ENABLE_BIT is not set. Can someone confirm if this is indeed the expected behavior of the driver?
>>>
>>
>> hmm .. actually it doesn't clear also ENABLE_BIT, I wonder how its getting clear
>> in your case since we don't have enable/disable() implemented yet.
>>
>>>
>>>
>>> By the way, In order to solve this issue, I changed the files according to the following diff
>>>
>>>
>>> diff --git a/drivers/clk/samsung/clk-pll.c b/drivers/clk/samsung/clk-pll.c
>>> index b07fad2..9300274 100644
>>> --- a/drivers/clk/samsung/clk-pll.c
>>> +++ b/drivers/clk/samsung/clk-pll.c
>>> @@ -131,14 +131,15 @@ static const struct clk_ops samsung_pll3000_clk_ops = {
>>> /* Maximum lock time can be 270 * PDIV cycles */
>>> #define PLL35XX_LOCK_FACTOR (270)
>>>
>>> -#define PLL35XX_MDIV_MASK (0x3FF)
>>> -#define PLL35XX_PDIV_MASK (0x3F)
>>> -#define PLL35XX_SDIV_MASK (0x7)
>>> +#define PLL35XX_MDIV_MASK (0x3FF)
>>> +#define PLL35XX_PDIV_MASK (0x3F)
>>> +#define PLL35XX_SDIV_MASK (0x7)
>>> #define PLL35XX_LOCK_STAT_MASK (0x1)
>>> -#define PLL35XX_MDIV_SHIFT (16)
>>> -#define PLL35XX_PDIV_SHIFT (8)
>>> -#define PLL35XX_SDIV_SHIFT (0)
>>> +#define PLL35XX_MDIV_SHIFT (16)
>>> +#define PLL35XX_PDIV_SHIFT (8)
>>> +#define PLL35XX_SDIV_SHIFT (0)
>>> #define PLL35XX_LOCK_STAT_SHIFT (29)
>>> +#define PLL35XX_ENABLE_SHIFT (31)
>>>
>>> static unsigned long samsung_pll35xx_recalc_rate(struct clk_hw *hw,
>>> unsigned long parent_rate)
>>> @@ -190,6 +191,7 @@ static int samsung_pll35xx_set_rate(struct clk_hw *hw, unsigned long drate,
>>> /* If only s change, change just s value only*/
>>> tmp &= ~(PLL35XX_SDIV_MASK << PLL35XX_SDIV_SHIFT);
>>> tmp |= rate->sdiv << PLL35XX_SDIV_SHIFT;
>>> + tmp |= (1 << PLL35XX_ENABLE_SHIFT);
>>> __raw_writel(tmp, pll->con_reg);
>>>
>>> return 0;
>>> @@ -206,6 +208,7 @@ static int samsung_pll35xx_set_rate(struct clk_hw *hw, unsigned long drate,
>>> tmp |= (rate->mdiv << PLL35XX_MDIV_SHIFT) |
>>> (rate->pdiv << PLL35XX_PDIV_SHIFT) |
>>> (rate->sdiv << PLL35XX_SDIV_SHIFT);
>>> + tmp |= (1 << PLL35XX_ENABLE_SHIFT);
>
> It appears tmp is a u32. Does that make 1 << 31 a safe expression wrt
> signedness, or does it need to be 1u << PLL35XX_ENABLE_SHIFT?
> Did you verify the result?
>
> Regards,
> Andreas
>
> --
> SUSE LINUX Products GmbH, Maxfeldstr. 5, 90409 Nürnberg, Germany
> GF: Jeff Hawn, Jennifer Guild, Felix Imendörffer; HRB 16746 AG Nürnberg
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: Role of PLL_ENABLE_BIT
2014-07-31 10:46 ` Humberto Naves
@ 2014-07-31 13:25 ` Tomasz Figa
0 siblings, 0 replies; 5+ messages in thread
From: Tomasz Figa @ 2014-07-31 13:25 UTC (permalink / raw)
To: Humberto Naves, Andreas Färber
Cc: linux-samsung-soc, Yadwinder Singh Brar, Mike Turquette,
Tomasz Figa, Vikas Sajjan, Yadwinder Singh
On 31.07.2014 12:46, Humberto Naves wrote:
> Hi Andreas,
>
> I guess the original message was not plain text, and majordomo refused
> to deliver it :-(
> The signedness is not an issue, if I just use what I sent in the
> patch, the set_rate function works like a charm. But otherwise, the
> whole system freezes and I have to reboot the machine.
It's possible that the bootloader simply doesn't enable the PLL. I had a
patch somewhere which added enable/disable control for the PLL, which
required a bit more work. It might be a good idea to revisit it then.
Best regards,
Tomasz
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2014-07-31 13:26 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
[not found] <2111968107.110151406781109677.JavaMail.weblogic@epmlwas02a>
2014-07-31 4:51 ` Role of PLL_ENABLE_BIT Yadwinder Singh Brar
[not found] ` <CAEe5pB_3PfgaWMBA2nDF018p6oGtP3BTBp_dxt2V+hh192+dVQ@mail.gmail.com>
2014-07-31 9:06 ` Fwd: " Humberto Naves
2014-07-31 10:07 ` Andreas Färber
2014-07-31 10:46 ` Humberto Naves
2014-07-31 13:25 ` Tomasz Figa
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.