devicetree.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Sebastian Hesselbarth <sebastian.hesselbarth-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
To: Michal Bachraty
	<michal.bachraty-6oiIBCxl0MMjD8S081q9vkEOCMrvLtNR@public.gmane.org>
Cc: linux-doc-u79uwXL29TY76Z2rM5mHXA@public.gmane.org,
	Lars-Peter Clausen <lars-Qo5EllUWu/uELgA04lAiVw@public.gmane.org>,
	Stephen Warren <swarren-DDmLM1+adcrQT0dZR+AlfA@public.gmane.org>,
	Mike Turquette
	<mturquette-QSEj5FYQhm4dnm+yROfE0A@public.gmane.org>,
	Rabeeh Khoury <rabeeh-UBr1pzP51AyaMJb+Lgu22Q@public.gmane.org>,
	Guenter Roeck <linux-0h96xk9xTtrk1uMJSBkQmQ@public.gmane.org>,
	Pawel Moll <pawel.moll-5wv7dgnIgG8@public.gmane.org>,
	devicetree-discuss-uLR06cmDAlY/bJ5BZ2RsiQ@public.gmane.org,
	Rob Herring <rob.herring-bsGFqQB8/DxBDgjK7y7TUQ@public.gmane.org>,
	Dom Cobley <popcornmix-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>,
	Russell King - ARM Linux
	<linux-lFZ/pmaqli7XmaaqVzeoHQ@public.gmane.org>,
	linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r@public.gmane.org,
	Jean-Francois Moine <moinejf-GANU6spQydw@public.gmane.org>,
	Mark Brown
	<broonie-yzvPICuk2AATkU/dhu1WVueM+bqZidxxQQ4Iyu8u01E@public.gmane.org>,
	linux-kernel-u79uwXL29TY76Z2rM5mHXA@public.gmane.org,
	Andrew Morton
	<akpm-de/tnXTf+JLsfHDXvbKv3WD2FQJk+8+b@public.gmane.org>
Subject: Re: [PATCH v7] clk: add si5351 i2c common clock driver
Date: Wed, 10 Apr 2013 18:34:01 +0200	[thread overview]
Message-ID: <CABJ1b_TsrV_R4zdik_8wpfLkCVDLrY9eP1LTJcBfYmunw_5MFQ@mail.gmail.com> (raw)
In-Reply-To: <14854575.YAd2OMKOy9@ganymedes>


[-- Attachment #1.1: Type: text/plain, Size: 3444 bytes --]

On Wed, Apr 10, 2013 at 4:48 PM, Michal Bachraty <
michal.bachraty-6oiIBCxl0MMjD8S081q9vkEOCMrvLtNR@public.gmane.org> wrote:

> Hi Sebastian,
> This driver doesn't work for me. In my case, u-boot initializes si-5351 and
> power down unused clocks while booting kernel.  there is need for power up
> clocks as was in previous versions of your driver.
> See patch, whre the problem is fixed:
>
> @@ -992,6 +992,10 @@ static long si5351_clkout_round_rate(struct clk_hw
> *hw,
> unsigned long rate,
>                 } while (1);
>         }
>         rate = *parent_rate >> rdiv;
> +
> +       /* powerup clkout */
> +       si5351_set_bits(hwdata->drvdata, SI5351_CLK0_CTRL + hwdata->num,
> +                       SI5351_CLK_POWERDOWN, 0);
>
>         dev_dbg(&hwdata->drvdata->client->dev,
>                 "%s - %s: rdiv = %u, parent_rate = %lu, rate = %lu\n",
>
> With this lines, driver works well.
>

Hmm, is there any driver using the clock output? Does it
clk_prepare_enable() the clock?
I tend not to mess with anything the bootloader or eeprom config left
disabled. It works
for me, but here the driver will prepare/enable the clock prior use.


> Also,
>
> > > +==Example==
> > > +
> > > +/* 25MHz reference crystal */
> > > +ref25: ref25M {
> > > +   compatible = "fixed-clock";
> > > +   #clock-cells = <0>;
> > > +   clock-frequency = <25000000>;
> > > +};
> > > +
> > > +i2c-master-node {
> > > +
> > > +   /* Si5351a msop10 i2c clock generator */
> > > +   si5351a: clock-generator@60 {
> > > +           compatible = "silabs,si5351a-msop";
> > > +           reg = <0x60>;
> > > +           #address-cells = <1>;
> > > +           #size-cells = <0>;
> > > +           #clock-cells = <1>;
> > > +
> > > +           /* connect xtal input to 25MHz reference */
> > > +           clocks = <&ref25>;
> > > +
> > > +           /* connect xtal input as source of pll0 and pll1 */
> > > +           silabs,pll-source = <0 0>, <1 0>;
> > > +
> > > +           /*
> > > +            * overwrite clkout0 configuration with:
> > > +            * - 8mA output drive strength
> > > +            * - pll0 as clock source of multisynth0
> > > +            * - multisynth0 as clock source of output divider
> > > +            * - multisynth0 can change pll0
> > > +            * - set initial clock frequency of 74.25MHz
> > > +            */
> > > +           clkout0 {
> > > +                   reg = <0>;
> > > +                   silabs,drive-strength = <8>;
> > > +                   silabs,multisynth-source = <0>;
> > > +                   silabs,clock-source = <0>;
> > > +                   silabs,pll-master;
> > > +                   clock-frequency = <74250000>;
> > > +           };
> > > +
> > > +           /*
> > > +            * overwrite clkout1 configuration with:
> > > +            * - 4mA output drive strength
> > > +            * - pll1 as clock source of multisynth1
> > > +            * - multisynth1 as clock source of output divider
> > > +            * - multisynth1 can change pll1
> > > +            */
> > > +           clkout1 {
> > > +                   reg = <1>;
> > > +                   silabs,drive-strength = <4>;
> > > +                   silabs,multisynth-source = <1>;
> > > +                   silabs,clock-source = <0>;
> > > +                   pll-master;
> > > +           };
> > > +
>  Is definition of pll-master in clkout1 correct? should not be silabs,pll-
> master ?
>

Good catch.

Sebastian

[-- Attachment #1.2: Type: text/html, Size: 4849 bytes --]

[-- Attachment #2: Type: text/plain, Size: 192 bytes --]

_______________________________________________
devicetree-discuss mailing list
devicetree-discuss-uLR06cmDAlY/bJ5BZ2RsiQ@public.gmane.org
https://lists.ozlabs.org/listinfo/devicetree-discuss

  reply	other threads:[~2013-04-10 16:34 UTC|newest]

Thread overview: 42+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2013-02-09 12:59 [PATCH] clk: add si5351 i2c common clock driver Sebastian Hesselbarth
2013-02-11  5:46 ` Mike Turquette
2013-02-11  9:52   ` Sebastian Hesselbarth
2013-02-18 10:19 ` Daniel Mack
     [not found] ` <1360414772-12232-1-git-send-email-sebastian.hesselbarth-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
2013-02-19 19:15   ` Daniel Mack
2013-02-27 10:01     ` Sebastian Hesselbarth
2013-03-01 15:01       ` Daniel Mack
2013-03-16 13:10 ` [PATCH v2] " Sebastian Hesselbarth
2013-03-16 15:10   ` Daniel Mack
2013-03-18 10:43 ` [PATCH v3] " Sebastian Hesselbarth
2013-03-18 11:37   ` Daniel Mack
2013-03-20  0:26   ` Mike Turquette
2013-03-20  8:20     ` Sebastian Hesselbarth
2013-03-21 18:09   ` Lars-Peter Clausen
2013-03-21 21:32     ` Sebastian Hesselbarth
2013-03-23 10:07       ` Lars-Peter Clausen
     [not found]   ` <1363603397-2762-1-git-send-email-sebastian.hesselbarth-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
2013-03-23 14:46     ` [PATCH v4] " Sebastian Hesselbarth
2013-04-02 23:46       ` Mike Turquette
2013-04-03 11:10         ` Sebastian Hesselbarth
2013-04-05  5:23       ` [PATCH v5] " Sebastian Hesselbarth
2013-04-07 22:50         ` [v5] " Guenter Roeck
2013-04-07 23:49           ` Sebastian Hesselbarth
2013-04-08  0:17             ` Guenter Roeck
2013-04-08  6:11               ` Sebastian Hesselbarth
     [not found]                 ` <51625F9A.1050308-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
2013-04-08 14:54                   ` Guenter Roeck
     [not found]                     ` <20130408145407.GA12243-0h96xk9xTtrk1uMJSBkQmQ@public.gmane.org>
2013-04-08 15:38                       ` Sebastian Hesselbarth
2013-04-08 17:36                         ` Mike Turquette
2013-04-08 18:32                           ` Sebastian Hesselbarth
2013-04-08 16:46         ` [PATCH v6] " Sebastian Hesselbarth
2013-04-08 17:46           ` Guenter Roeck
2013-04-08 18:24             ` Sebastian Hesselbarth
2013-04-10  9:40           ` [PATCH v7] " Sebastian Hesselbarth
2013-04-10 10:17             ` Daniel Mack
2013-04-10 14:48               ` Michal Bachraty
2013-04-10 16:34                 ` Sebastian Hesselbarth [this message]
2013-04-10 17:27                 ` Sebastian Hesselbarth
2013-04-11  7:44                   ` Michal Bachraty
2013-04-11  8:22                     ` Sebastian Hesselbarth
2013-04-10 19:34             ` Guenter Roeck
2013-04-11 19:42             ` [PATCH v8] " Sebastian Hesselbarth
     [not found]               ` <1365709350-8344-1-git-send-email-sebastian.hesselbarth-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
2013-04-12 11:43                 ` Michal Bachraty
2013-04-12 18:19               ` Mike Turquette

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=CABJ1b_TsrV_R4zdik_8wpfLkCVDLrY9eP1LTJcBfYmunw_5MFQ@mail.gmail.com \
    --to=sebastian.hesselbarth-re5jqeeqqe8avxtiumwx3w@public.gmane.org \
    --cc=akpm-de/tnXTf+JLsfHDXvbKv3WD2FQJk+8+b@public.gmane.org \
    --cc=broonie-yzvPICuk2AATkU/dhu1WVueM+bqZidxxQQ4Iyu8u01E@public.gmane.org \
    --cc=devicetree-discuss-uLR06cmDAlY/bJ5BZ2RsiQ@public.gmane.org \
    --cc=lars-Qo5EllUWu/uELgA04lAiVw@public.gmane.org \
    --cc=linux-0h96xk9xTtrk1uMJSBkQmQ@public.gmane.org \
    --cc=linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r@public.gmane.org \
    --cc=linux-doc-u79uwXL29TY76Z2rM5mHXA@public.gmane.org \
    --cc=linux-kernel-u79uwXL29TY76Z2rM5mHXA@public.gmane.org \
    --cc=linux-lFZ/pmaqli7XmaaqVzeoHQ@public.gmane.org \
    --cc=michal.bachraty-6oiIBCxl0MMjD8S081q9vkEOCMrvLtNR@public.gmane.org \
    --cc=moinejf-GANU6spQydw@public.gmane.org \
    --cc=mturquette-QSEj5FYQhm4dnm+yROfE0A@public.gmane.org \
    --cc=pawel.moll-5wv7dgnIgG8@public.gmane.org \
    --cc=popcornmix-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org \
    --cc=rabeeh-UBr1pzP51AyaMJb+Lgu22Q@public.gmane.org \
    --cc=rob.herring-bsGFqQB8/DxBDgjK7y7TUQ@public.gmane.org \
    --cc=swarren-DDmLM1+adcrQT0dZR+AlfA@public.gmane.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).