From: Jamey Hicks <jamey.hicks@hp.com>
To: Ian Molton <spyro@f2s.com>
Cc: Kernel Mailing List <linux-kernel@vger.kernel.org>
Subject: Re: Initialisation sequencing.
Date: Wed, 02 Mar 2005 21:43:00 -0500 [thread overview]
Message-ID: <422679B4.8080401@hp.com> (raw)
In-Reply-To: <42264D23.6010206@f2s.com>
Ian Molton wrote:
> Hi.
>
> I have a problem. It affects both modular and non modular builds, and
> I dont see an obviously correct solution.
>
> The problem is that I have a video chip which supports some GPIOs and
> an LCD display.
>
> some LCD functions are controlled via the GPIOs, like backlighting.
>
> so the driver is split into a video driver which exports three GPIO
> related functions, and a backlight driver which requires them to work.
> Both are on the platform bus.
>
> the problem occurs when the backlight driver gets probed before the
> video driver. it tries to access the GPIO functions, which try to
> write to random locations as the memory hasnt been ioremap()ed by the
> as yet unprobed video driver, and it all predictably falls over in a
> gibbering heap.
>
> I cant spin at this point without deadlocking the video driver and
> ending up never being able to call the gpio functions, for obvious
> reasons.
>
> I've tried making the backlight driver a child of the video driver,
> hoping the probe functions are called in 'bus order', ie. parents
> first. This failed.
>
> I could make the backlight driver initialise late, but that seems like
> a hack. scheduling work risks deadlock.
>
I think initialising the backlight driver after the core of the driver
that implements the GPIO is the right thing. The backlight_device
framework includes a notifier chain so that the video driver can take
the right action when the backlight driver is registered. Using soc to
split the chip driver into a core, backlight and video might be another
option that lets you bring up the backlight driver before the video driver.
Jamey
prev parent reply other threads:[~2005-03-03 2:47 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2005-03-02 23:32 Initialisation sequencing Ian Molton
2005-03-03 2:43 ` Jamey Hicks [this message]
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=422679B4.8080401@hp.com \
--to=jamey.hicks@hp.com \
--cc=linux-kernel@vger.kernel.org \
--cc=spyro@f2s.com \
/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