dm: blk: Add a easier way to create a named block device
Add a function that automatically builds the device name given the parent and a supplied string. Most callers will want to do this, so putting this functionality in one place makes more sense. Signed-off-by: Simon Glass <sjg@chromium.org>
This commit is contained in:
parent
52138fd407
commit
9107c973d3
|
@ -200,7 +200,6 @@ static int usb_stor_probe_device(struct usb_device *udev)
|
||||||
|
|
||||||
#ifdef CONFIG_BLK
|
#ifdef CONFIG_BLK
|
||||||
struct us_data *data;
|
struct us_data *data;
|
||||||
char dev_name[30], *str;
|
|
||||||
int ret;
|
int ret;
|
||||||
#else
|
#else
|
||||||
int start;
|
int start;
|
||||||
|
@ -223,14 +222,12 @@ static int usb_stor_probe_device(struct usb_device *udev)
|
||||||
for (lun = 0; lun <= max_lun; lun++) {
|
for (lun = 0; lun <= max_lun; lun++) {
|
||||||
struct blk_desc *blkdev;
|
struct blk_desc *blkdev;
|
||||||
struct udevice *dev;
|
struct udevice *dev;
|
||||||
|
char str[10];
|
||||||
|
|
||||||
snprintf(dev_name, sizeof(dev_name), "%s.lun%d",
|
snprintf(str, sizeof(str), "lun%d", lun);
|
||||||
udev->dev->name, lun);
|
ret = blk_create_devicef(udev->dev, "usb_storage_blk", str,
|
||||||
str = strdup(dev_name);
|
IF_TYPE_USB, usb_max_devs, 512, 0,
|
||||||
if (!str)
|
&dev);
|
||||||
return -ENOMEM;
|
|
||||||
ret = blk_create_device(udev->dev, "usb_storage_blk", str,
|
|
||||||
IF_TYPE_USB, usb_max_devs, 512, 0, &dev);
|
|
||||||
if (ret) {
|
if (ret) {
|
||||||
debug("Cannot bind driver\n");
|
debug("Cannot bind driver\n");
|
||||||
return ret;
|
return ret;
|
||||||
|
|
|
@ -463,6 +463,21 @@ int blk_create_device(struct udevice *parent, const char *drv_name,
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
int blk_create_devicef(struct udevice *parent, const char *drv_name,
|
||||||
|
const char *name, int if_type, int devnum, int blksz,
|
||||||
|
lbaint_t size, struct udevice **devp)
|
||||||
|
{
|
||||||
|
char dev_name[30], *str;
|
||||||
|
|
||||||
|
snprintf(dev_name, sizeof(dev_name), "%s.%s", parent->name, name);
|
||||||
|
str = strdup(dev_name);
|
||||||
|
if (!str)
|
||||||
|
return -ENOMEM;
|
||||||
|
|
||||||
|
return blk_create_device(parent, drv_name, str, if_type, devnum,
|
||||||
|
blksz, size, devp);
|
||||||
|
}
|
||||||
|
|
||||||
int blk_unbind_all(int if_type)
|
int blk_unbind_all(int if_type)
|
||||||
{
|
{
|
||||||
struct uclass *uc;
|
struct uclass *uc;
|
||||||
|
|
|
@ -280,6 +280,23 @@ int blk_create_device(struct udevice *parent, const char *drv_name,
|
||||||
const char *name, int if_type, int devnum, int blksz,
|
const char *name, int if_type, int devnum, int blksz,
|
||||||
lbaint_t size, struct udevice **devp);
|
lbaint_t size, struct udevice **devp);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* blk_create_devicef() - Create a new named block device
|
||||||
|
*
|
||||||
|
* @parent: Parent of the new device
|
||||||
|
* @drv_name: Driver name to use for the block device
|
||||||
|
* @name: Name for the device (parent name is prepended)
|
||||||
|
* @if_type: Interface type (enum if_type_t)
|
||||||
|
* @devnum: Device number, specific to the interface type, or -1 to
|
||||||
|
* allocate the next available number
|
||||||
|
* @blksz: Block size of the device in bytes (typically 512)
|
||||||
|
* @size: Total size of the device in bytes
|
||||||
|
* @devp: the new device (which has not been probed)
|
||||||
|
*/
|
||||||
|
int blk_create_devicef(struct udevice *parent, const char *drv_name,
|
||||||
|
const char *name, int if_type, int devnum, int blksz,
|
||||||
|
lbaint_t size, struct udevice **devp);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* blk_prepare_device() - Prepare a block device for use
|
* blk_prepare_device() - Prepare a block device for use
|
||||||
*
|
*
|
||||||
|
|
Loading…
Reference in New Issue