linux-i2c.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Guenter Roeck <linux-0h96xk9xTtrk1uMJSBkQmQ@public.gmane.org>
To: andrey <andrey-MoRZu3FOBbXQT0dZR+AlfA@public.gmane.org>
Cc: Michael Turquette
	<mturquette-QSEj5FYQhm4dnm+yROfE0A@public.gmane.org>,
	linux-i2c-u79uwXL29TY76Z2rM5mHXA@public.gmane.org,
	linux-kernel-u79uwXL29TY76Z2rM5mHXA@public.gmane.org,
	lee.jones-QSEj5FYQhm4dnm+yROfE0A@public.gmane.org,
	sebastian.hesselbarth-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org,
	rabeeh-UBr1pzP51AyaMJb+Lgu22Q@public.gmane.org,
	York Sun <yorksun-KZfg59tc24xl57MIdRCFDg@public.gmane.org>
Subject: Re: clock driver
Date: Wed, 27 May 2015 17:10:06 -0700	[thread overview]
Message-ID: <55665CDE.7060601@roeck-us.net> (raw)
In-Reply-To: <14d97d05f05.c0c23a8c778110.9087956443203424916-MoRZu3FOBbXQT0dZR+AlfA@public.gmane.org>

On 05/27/2015 04:58 PM, andrey wrote:
>
>
> ---- On Wed, 27 May 2015 16:08:12 -0700 Guenter Roeck<linux-0h96xk9xTtrk1uMJSBkQmQ@public.gmane.org> wrote ----
>
>   > On 05/27/2015 12:44 PM, andrey wrote:
>   > > Hello all,
>   > > Let me add a comment on using sysfs to simplify user space access to the clock
>   > > features as opposed to controlling them from a driver that uses the clock chip driver.
>   > >
>   > > It is common to use such advanced clock chips with the FPGA devices (as me and
>   > > York do), and a lot of development (HDL code) is done before a fancy higher-level
>   > > driver is even started. And it is not just a temporary stage needed by a small minority
>   > > of developers - as HDL coding gets more to the the core of many new devices running
>   > > Linux kernel, it makes sense to create the chip drivers more developer-friendly, not
>   > > just for the final use in a higher level device driver - modification of the HDL code
>   > > (most modern FPGA are programmed at runtime) makes it a new device that may
>   > > need a new driver.
>   > > I'm sure that it is not just for me, when it starts with the chip driver that supports
>   > > low-level functionality exposing it to the user space, and then working on the HDL
>   > > code using Python scripts at that stage. And only later in the development designing
>   > > the higher level device drivers that may not need all of the chip functionality. And such
>   > > higher level driver will work for our systems, but other developers who work on their
>   > > embedded systems will again need access to low level chip functionality, and will have
>   > > to redo the same work all over again. This I believe is a rationale of exposing such
>   > > chip-specific hardware features (not all of them are probably easy to fit into a specific
>   > > standard model) to the user space scripts.
>   > >
>   > > I wrote the initial driver code for our system
>   > > ( https://github.com/Elphel/linux-elphel/blob/master/src/drivers/misc/si5338.c ) and
>   > > being very far from being a kernel developer myself (I'm more of a hardware guy)
>   > > I didn't even try to satisfy the required coding style and submit it, so I'm very thankful
>   > > to York who re-wrote the code and is trying to make it usable to others.
>   > >
>   >
>   > Line wraps at ~75 columns would make this a bet easier to read.
>
> Guenter, I'm sorry for using "rich text" email settings.
>
>   >
>   > A more generic solution to your problem might be to implement a driver
>   > similar to i2c-dev, which exports raw i2c device information to user space.
>   > In your case, you would export information about the clocks in the system,
>   > possibly through sysfs (i2c-dev uses ioctl which is a bit old-fashioned).
>
> I was trying to make it safer to use low-level functionality of the particular
> (and rather popular) clock chip and to avoid using SiLabs proprietary tools to
> generate required settings offline. Using just raw i2c would require to have
> large user space program to calculate valid settings for the device.
>
> I would consider this chip as both a generic clock device that can fit into
> a standard framework and simultaneously a unique device that offers specific
> functionality outside of the framework. I thought that sysfs (instead of
> "old-fashioned" ioctl I used in such cases before) can offer
> hardware developer-friendly solution as a supplement to in-framework
> basic functionality.
>
> Device driver for this chip makes it possible to avoid proprietary configuration
> software and calculate register settings at runtime, minimizing requirements to
> the user space software and so the time developers of the new embedded
> systems will need to (re-)implement these important chip-specific  features.
>

I think we are in violent agreement ;-). Only question was how to implement
sysfs (or user space access) support, where my preference would be a more
generic solution.

Thanks,
Guenter

> Andrey
>
>   >
>   > This would be a driver independent solution, and work for all clock drivers.
>   > It might still not be accepted by Mike and Stephen, due to the risk, but it
>   > might be worth a try. After all, using i2c-dev to access i2c devices directly
>   > is just as risky.
>   >
>   > In my opinion, it is always better to have a driver in the upstream kernel,
>   > if possible one that uses a standard framework. That makes it much easier
>   > to support going forward.
>   >
>   > Guenter
>   >
>   >
>
>
>
>

  parent reply	other threads:[~2015-05-28  0:10 UTC|newest]

Thread overview: 23+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-05-26 19:12 clock driver York Sun
     [not found] ` <5564C58B.9050400-KZfg59tc24xl57MIdRCFDg@public.gmane.org>
2015-05-26 22:38   ` Guenter Roeck
     [not found]     ` <20150526223829.GA26454-0h96xk9xTtrk1uMJSBkQmQ@public.gmane.org>
2015-05-27  0:20       ` York Sun
     [not found]         ` <55650DBA.5000304-KZfg59tc24xl57MIdRCFDg@public.gmane.org>
2015-05-27  0:32           ` York Sun
     [not found]             ` <5565108D.2020502-KZfg59tc24xl57MIdRCFDg@public.gmane.org>
2015-05-27  7:09               ` Sebastian Hesselbarth
2015-05-27 15:07                 ` York Sun
2015-05-27 16:42                   ` Sebastian Hesselbarth
     [not found]                     ` <5565F40E.70805-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
2015-05-27 16:46                       ` York Sun
     [not found]                         ` <5565F4CA.4080105-KZfg59tc24xl57MIdRCFDg@public.gmane.org>
2015-05-27 17:09                           ` Guenter Roeck
2015-05-27 17:10                             ` York Sun
2015-05-27 17:30               ` Michael Turquette
2015-05-27 17:45                 ` York Sun
     [not found]                   ` <556602BC.6040203-KZfg59tc24xl57MIdRCFDg@public.gmane.org>
2015-05-27 18:15                     ` Guenter Roeck
     [not found]                       ` <20150527181521.GA19448-0h96xk9xTtrk1uMJSBkQmQ@public.gmane.org>
2015-05-27 18:24                         ` York Sun
2015-05-27 18:54                           ` Guenter Roeck
2015-05-27 18:58                             ` York Sun
     [not found]                               ` <14d96cd6d64.f62a1a09739217.9114963256886461171@elphel.com>
     [not found]                                 ` <14d96cd6d64.f62a1a09739217.9114963256886461171-MoRZu3FOBbXQT0dZR+AlfA@public.gmane.org>
2015-05-27 23:08                                   ` Guenter Roeck
2015-05-27 23:58                                     ` andrey
     [not found]                                       ` <14d97d05f05.c0c23a8c778110.9087956443203424916-MoRZu3FOBbXQT0dZR+AlfA@public.gmane.org>
2015-05-28  0:10                                         ` Guenter Roeck [this message]
2015-05-28  0:29                                           ` andrey
     [not found]                                             ` <14d97ec12ae.121e65c4b780118.1307005790953163680-MoRZu3FOBbXQT0dZR+AlfA@public.gmane.org>
2015-05-28  6:11                                               ` Michael Turquette
2015-05-28 15:24                                                 ` York Sun
2015-06-10  0:40                 ` York Sun

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=55665CDE.7060601@roeck-us.net \
    --to=linux-0h96xk9xttrk1umjsbkqmq@public.gmane.org \
    --cc=andrey-MoRZu3FOBbXQT0dZR+AlfA@public.gmane.org \
    --cc=lee.jones-QSEj5FYQhm4dnm+yROfE0A@public.gmane.org \
    --cc=linux-i2c-u79uwXL29TY76Z2rM5mHXA@public.gmane.org \
    --cc=linux-kernel-u79uwXL29TY76Z2rM5mHXA@public.gmane.org \
    --cc=mturquette-QSEj5FYQhm4dnm+yROfE0A@public.gmane.org \
    --cc=rabeeh-UBr1pzP51AyaMJb+Lgu22Q@public.gmane.org \
    --cc=sebastian.hesselbarth-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org \
    --cc=yorksun-KZfg59tc24xl57MIdRCFDg@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).