mail archive of the barebox mailing list
 help / color / mirror / Atom feed
From: Sascha Hauer <s.hauer@pengutronix.de>
To: Robert Jarzmik <robert.jarzmik@free.fr>
Cc: barebox@lists.infradead.org
Subject: Re: [PATCH] drivers/pwm: add PXA pulse width modulator controller
Date: Thu, 9 Feb 2012 09:10:45 +0100	[thread overview]
Message-ID: <20120209081045.GU3852@pengutronix.de> (raw)
In-Reply-To: <87ehu54a8y.fsf@free.fr>

On Wed, Feb 08, 2012 at 04:26:21PM +0100, Robert Jarzmik wrote:
> Robert Jarzmik <robert.jarzmik@free.fr> writes:
> 
> > Sascha Hauer <s.hauer@pengutronix.de> writes:
> >
> >> Hi Robert,
> >>
> >> Why not implement it as a regular driver? If we ever want to implement
> >> a commandline control of the pwms via pwm0.dutyns=xx we'll need
> >> a struct device.
> >
> > This is because in my own case, I need pwm to be registered before other devices
> > are probed. The trouble (in my case) is that for drivers/video/pxa.c, I have the
> > following call path :
> >  - pxafb_probe()
> >    -> pxafb_enable_controller()
> >      -> pxafb_backlight_power()
> >        -> mioa701_lcd_backlight()
> >           => 	struct pwm_device *pwm0 = pwm_request("pxa_pwm0");
> > 		pwm_enable(pwm0);
> > 		pwm_config(pwm0, 2000 * 1024, 4000 * 1024);
> >
> > I'm a bit afraid that the pxafb driver will be probed first, before pwm_pxa, and
> > therefore the backlight setting won't work. I haven't found a clean way to
> > specify this dependency.
> 
> Sascha, ping ?
> 
> Do you have a way to specify the dependency, and do you want me to adapt the
> driver ?

Sorry, I wanted to think about this issue and appearently forgot about
it.
So the moment has come we have the same problems as in the kernel: we
can't express the dependencies between devices. For your case I think
we can get around the problem once more.

Experience shows that the framebuffer shouldn't be enabled on
initialization time. If it does you end up with a framebuffer showing
a blank screen in the best case. Instead the framebuffer should be
enabled explicitely once there is an image on the screen which looks
much nicer to the user. That said the following should be removed from
the pxafb driver:

	if (pdata->enable_on_load)
		info->fbops->fb_enable(info);

Are you ok with that?

Sascha

-- 
Pengutronix e.K.                           |                             |
Industrial Linux Solutions                 | http://www.pengutronix.de/  |
Peiner Str. 6-8, 31137 Hildesheim, Germany | Phone: +49-5121-206917-0    |
Amtsgericht Hildesheim, HRA 2686           | Fax:   +49-5121-206917-5555 |

_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox

  reply	other threads:[~2012-02-09  8:10 UTC|newest]

Thread overview: 19+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2012-01-31  9:36 [PATCH] Add pwm core support Sascha Hauer
2012-02-01  8:20 ` Robert Jarzmik
2012-02-01 22:42 ` [PATCH] drivers/pwm: add PXA pulse width modulator controller Robert Jarzmik
2012-02-03  9:52   ` Sascha Hauer
2012-02-03 15:39     ` Robert Jarzmik
2012-02-08 15:26       ` Robert Jarzmik
2012-02-09  8:10         ` Sascha Hauer [this message]
2012-02-09 11:50           ` Robert Jarzmik
2012-02-09 13:44             ` Sascha Hauer
2012-02-09 14:30               ` Robert Jarzmik
2012-02-14 12:58             ` [PATCH V2 1/2] " Robert Jarzmik
2012-02-14 12:58               ` [PATCH V2 2/2] drivers/video: remove pxafb enable on load Robert Jarzmik
2012-02-15  8:32               ` [PATCH V2 1/2] drivers/pwm: add PXA pulse width modulator controller Sascha Hauer
2012-02-15 11:22                 ` Robert Jarzmik
2012-02-15 15:21                 ` Robert Jarzmik
2012-02-16  7:40                   ` Sascha Hauer
2012-02-16 18:23                     ` [PATCH V3 1/3] drivers/pwm: add duty_ns and period_ns to core pwm chip Robert Jarzmik
2012-02-16 18:23                       ` [PATCH V3 2/3] drivers/pwm: add PXA pulse width modulator controller Robert Jarzmik
2012-02-16 18:23                       ` [PATCH V3 3/3] drivers/video: remove pxafb enable on load Robert Jarzmik

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=20120209081045.GU3852@pengutronix.de \
    --to=s.hauer@pengutronix.de \
    --cc=barebox@lists.infradead.org \
    --cc=robert.jarzmik@free.fr \
    /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