linux-hotplug.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Maxim Levitsky <maximlevitsky@gmail.com>
To: linux-hotplug@vger.kernel.org
Subject: Re: New rule for xD FTL driver
Date: Tue, 15 Jun 2010 19:29:48 +0000	[thread overview]
Message-ID: <1276630188.30731.23.camel@maxim-laptop> (raw)
In-Reply-To: <1276347244.4481.15.camel@maxim-laptop>

On Tue, 2010-06-15 at 21:02 +0200, Kay Sievers wrote: 
> On Tue, Jun 15, 2010 at 19:46, Maxim Levitsky <maximlevitsky@gmail.com> wrote:
> > On Tue, 2010-06-15 at 09:05 -0700, Greg KH wrote:
> >> On Tue, Jun 15, 2010 at 06:45:48PM +0300, Maxim Levitsky wrote:
> >> > Can udev helper tell udev to load modules by setting some variable?
> >>
> >> Not really, except for the modalias stuff.  Use that if you can.
> >>
> >> But I think you've pointed out the real solution already.  You need to
> >> look at the signature on the device and then know what to load, just
> >> like we do for filesystems.
> 
> > It seems to work just fine.
> > mtdchar I see it loaded automatically anyway due to char device alias.
> 
> What triggers char device aliases? You mean a static /dev with device
> nodes without a current kernel device?
> 
> > So this rules does the trick:
> >
> > ACTION!="add", GOTO="mtd_probe_end"
> > KERNEL="mtd*ro", IMPORT{program}="mtd_probe --export $tempnode"
> > LABEL="mtd_probe_end"
> >
> > And all I have to do is to write the mtd_probe
> >
> > My current stub mtd-probe is:
> >
> > #!/bin/sh
> > # $1 = device node
> > echo "MODALIAS=sm_ftl"
> 
> Modaliases are not supposed to be defined by imported variables. They
> are specified by the kernel, and should also be visible in sysfs, if
> they are used.
> 
> Also modaliases have prefixes like: <subsystem>:<some id>, and should
> never be plain module names, to allow module-init-tools to overwrite
> things in a sane way. You might want to add MODULE_ALIAS("mtd:sm_ftl")
> to the module itself, or whatever fits.
But what will I do with this?



Let me explain again:
I have low level driver that exposes mtd interface.
And I have high level driver (sm_ftl) that using already existing code
scans for new mtd devices, and binds to these that have 'magic'
signature in first non-bad block.

The low level driver is loaded by PCI core.
The high level driver isn't loaded by anyone.


So I had following options:

1. always load the sm_ftl as soon as mtd device appears. This wasn't
accepted, and I more or less agree on that.

2. As soon as mtd device appeared, spawn userspace helper that will look
for 'magic' signature on its own, and then load the sm_ftl (or other
FTLs).


I partially implemented (2) by binding an udev rule to mtdchar device
creating, which will be opened by my mtd_probe, and scanned for
signature. If signature matches, I will export 'MODALIAS=<ftl driver>'

If you want I can add MODULE_ALIAS("mtd:sm_ftl") to sm_ftl.ko, but I
still need the userspace helper to export

MODALIAS=mtd:sm_ftl

How else can userspace helper tell udev to load a module?
(Sure I can spawn modprobe from it, or do something like that?

ACTION!="add", GOTO="mtd_probe_end"

KERNEL="mtd*ro", IMPORT{program}="mtd_probe --export $tempnode"
KERNEL="mtd*ro", ENV{MTD_MODULE}="?*", RUN+="modprobe $MTD_MODULE"

LABEL="mtd_probe_end"


mtd_probe.sh (placeholder, will be replaced with 'C' program)

#!/bin/sh
# $1 = device node

# now we open and read the mtd mode

if [ $FOUND_SM_FTL_MAGIC = 1 ] ; then
	echo "MTD_MODULE=sm_ftl"
fi



But why?


Best regards,
Maxim Levitsky


  parent reply	other threads:[~2010-06-15 19:29 UTC|newest]

Thread overview: 18+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2010-06-12 12:54 New rule for xD FTL driver Maxim Levitsky
2010-06-14 16:46 ` Greg KH
2010-06-14 23:55 ` Maxim Levitsky
2010-06-15  3:19 ` Greg KH
2010-06-15 10:07 ` Maxim Levitsky
2010-06-15 10:28 ` David Woodhouse
2010-06-15 13:22 ` Maxim Levitsky
2010-06-15 14:55 ` Greg KH
2010-06-15 15:27 ` Maxim Levitsky
2010-06-15 15:45 ` Maxim Levitsky
2010-06-15 15:47 ` Greg KH
2010-06-15 16:05 ` Greg KH
2010-06-15 17:01 ` David Woodhouse
2010-06-15 17:19 ` Greg KH
2010-06-15 17:46 ` Maxim Levitsky
2010-06-15 19:02 ` Kay Sievers
2010-06-15 19:29 ` Maxim Levitsky [this message]
2010-06-17  9:38 ` Maxim Levitsky

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=1276630188.30731.23.camel@maxim-laptop \
    --to=maximlevitsky@gmail.com \
    --cc=linux-hotplug@vger.kernel.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).