[U-Boot] [PATCH 01/11] DM: add block device core

Pavel Herrmann morpheus.ibis at gmail.com
Sat Sep 22 11:39:51 CEST 2012


On Saturday 22 of September 2012 02:09:15 Marek Vasut wrote:
> Dear Pavel Herrmann,
> 
> [...]
> 
> > > > one or none - requests on USB flashes should not pass through
> > > > block_controller_driver.
> > > 
> > > Uh, what do they pass into then ?
> > 
> > their parent (an USB hub)
> 
> block_device instance (aka. partition/disk) directly connected to USB hub
> instance does not seem right.

why?

> > > > every child of block_controller should be a block_device (not
> > > > necessarily the other way around
> > > 
> > > I doubt it's even possible to be the other way around.
> > > 
> > > > ), so there is no way you pass more instances
> > > > block_controller on your way up.
> > > 
> > > Ok, let me explain again. Let's look at the USB case to make it more
> > > real-world- ish. Imagine you have a thumb drive with 2 partitions. Thus
> > > you have two instances of struct block_device [denote BDp] for the
> > > partitions and one more for the whole disc [denote BDd]. When you read
> > > from partition, you end up poking BDp, which pushes the request up into
> > > BDd. This in turn calls USB-flashdisc- block_controller_driver [call it
> > > UFc]. For flash disc to read data, it needs to do some USB transfers.
> > > These are provided by USB host controller [UHC]. Thus you need some glue
> > > between UHC and UFc ... this is what I'm talking about.
> > 
> > there should be no "UFc", your "BDd" driver should talk directly to your
> > "UHC"
> 
> So my generic partition implementation (BDd) would have to implement USB
> flashdisc stuff, correct? This makes no sense.

no. your generic USB flash would have to implement USB flashdisc stuff, your 
generic partition implements block_device operations on top of other 
block_device (aka diosk, memory card, USB flash)

please read the letters you came up with right. (maybe after getting some 
sleep by the looks of it)

the point you are not getting is that there should be more block_device 
drivers than there is now - one for partitions, one for disk, one for USB 
flash, one for SD and so on, each one using a different parent API

> > (a driver that has blockdev API on one end, USB on the other)
> 
> Ok, so how would this work, every partition implementation implements
> upcalls for all USB, SCSI, SATA, IDE, SD, ... and gazilion other types of
> drive it can sit on?

no, partition only implements call onto another block device

> > > Ok, I see the issue at hand. In case of a "regular drive", this
> > > implements the IO directly. In case of SD, this is a proxy object which
> > > interfaces with some SD-library and prepares the SD commands and then
> > > pushes that up into the controller to do the job? Same thing for USB
> > > flashes ?
> > 
> > not every block device will have a block controller as a parent (or
> > parent-of- parent in case of a partition). there would be a blockdev-usb
> > that has a USB hub as a parent, and a blockdev-mmc, that has a mmc/sdio
> > controller as a parent.
> 
> So you would have a specific partition implementation for SD, SATA, IDE,
> SCSI, USB ... ? This is flawed.

no, read above

> The partition should be a generic "thing" which knows nothing about where
> it's sitting at. So is the whole drive, same thing, it just has partitions
> hooked under it.
> 
> I'd expect a "block_controller" to be the proxy object under which the
> block_device representing the disc is connected. And this "block_controller"
> to be proxifying the requests to the respective drivers (be it SD, SATA,
> whatever).

your idea is wrong - you expect there will always be only one block_device 
representig a "disk", and all the proxy would be done by the block_controller 
above it. this is not true


Pavel Herrmann


More information about the U-Boot mailing list