public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* pci: dev->driver "runtime" acquisition?
@ 2001-12-03 17:29 Daniel Stodden
  2001-12-04  3:22 ` Greg KH
  0 siblings, 1 reply; 2+ messages in thread
From: Daniel Stodden @ 2001-12-03 17:29 UTC (permalink / raw)
  To: Linux Kernel

hi.

supposing i've got a "hotplug" style pci_driver,
but who's going to gain access to a device _not_ at initialization time,
i.e. not within pci_register_driver(), but rather somehere in a bottom
half. no pci_device_id* at pci_register_driver( ), since i don't
know the signature yet.

how do i request access here?
could anyone comment on the following please:

1. simple, but intrusive somehow:
	dev_probe_lock()
	if ( dev->driver == NULL )
		dev->driver = my_driver;
	dev_probe_unlock()
   is the locking correct?

2. rather use pci_announce_device()?
	my_driver->id_table =
       		somthing_i_just_built_on_the_fly_and_i_know_it_matches;
	pci_announce_device( my_driver, dev );
	/* probe() does the rest */

3. patch drivers/pci/pci.c?
	pci_acquire_device( struct pci *dev, struct pci_driver *drv )
	{
		/* fill in 1. */
	}

4. simply rely on the "compat", i.e. just taking over some resource?
   i think that's not why it's been called "compat"

any better ideas? something i'm missing?
besides: policy? -- do i _have_ to pci_register_driver() at during
initialization before considering to actually drive something?

any help appreciated.

regards,
dns
		

-- 
__________________________________________________________________
mailto: stodden@in.tum.de


^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2001-12-04  3:26 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2001-12-03 17:29 pci: dev->driver "runtime" acquisition? Daniel Stodden
2001-12-04  3:22 ` Greg KH

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox