Re: [PATCH v2 2/2] file-list: support special 'auto', 'block' specifiers

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



On 09.06.23 09:52, Ahmad Fatoum wrote:
> Best practice is for each board to populate $global.system.partitions
> or $global.fastboot.partitions with a string exporting its flashable
> devices in a descriptive manner, e.g. "/dev/mmc0(eMMC),/dev/mmc1(SD)".
> 
> This often goes into BSPs though, so upstream boards are left without
> default partitions, making use a bit cumbersome. Make this easier
> by providing three new magic specifiers:

Typo: s/three/two/

> 
>   - block: exports all registered block devices (e.g. eMMC and SD)
>   - auto:  currently equivalent to "block". May be extended
>            to EEPROMs, raw MTD and UBI in future
> 
> This makes it easy to export devices on any board:
> 
>   usbgadget -A auto -b
> 
> or
> 
>   usbgadget -S auto,/tmp/fitimage(fitimage)c
> 
> Signed-off-by: Ahmad Fatoum <a.fatoum@xxxxxxxxxxxxxx>
> ---
> v1 -> 2:
>   - dropped nvmem specifier (Sascha). Can add it back later
>     limited to only EEPROMs
>   - reordered code in file_list_handle_spec to make future extension
>     easier (Sascha)
> ---
>  Documentation/user/usb.rst | 16 ++++++++++++++++
>  common/block.c             | 16 ++++++++++++++++
>  common/file-list.c         | 24 ++++++++++++++++++++++--
>  include/block.h            |  6 ++++++
>  4 files changed, 60 insertions(+), 2 deletions(-)
> 
> diff --git a/Documentation/user/usb.rst b/Documentation/user/usb.rst
> index f2f57ead98d4..eaee342956f9 100644
> --- a/Documentation/user/usb.rst
> +++ b/Documentation/user/usb.rst
> @@ -73,6 +73,22 @@ Example:
>  
>    /dev/nand0.barebox.bb(barebox)sr,/kernel(kernel)rc
>  
> +Board code authors are encouraged to provide a default environment containing
> +partitions with descriptive names. For boards where this is not specified,
> +there exist a number of **partition** specifiers for automatically generating entries:
> +
> +* ``block`` exports all registered block devices (e.g. eMMC and SD)
> +* ``auto``  currently equivalent to ``block``. May be extended to other flashable
> +            devices, like EEPROMs, MTD or UBI volumes in future
> +
> +Example usage of exporting registered block devices, barebox update
> +handlers and a single file that is created on flashing:
> +
> +.. code-block:: sh
> +
> +     detect -a # optional. Detects everything, so auto can register it
> +     usbgadget -A auto,/tmp/fitimage(fitimage)c -b
> +
>  DFU
>  ^^^
>  
> diff --git a/common/block.c b/common/block.c
> index f6eeb7f9c85f..3a4a9fb73149 100644
> --- a/common/block.c
> +++ b/common/block.c
> @@ -11,6 +11,7 @@
>  #include <linux/err.h>
>  #include <linux/list.h>
>  #include <dma.h>
> +#include <file-list.h>
>  
>  #define BLOCKSIZE(blk)	(1 << blk->blockbits)
>  
> @@ -458,3 +459,18 @@ int block_write(struct block_device *blk, void *buf, sector_t block, blkcnt_t nu
>  
>  	return ret < 0 ? ret : 0;
>  }
> +
> +unsigned file_list_add_blockdevs(struct file_list *files)
> +{
> +	struct block_device *blk;
> +	unsigned count = 0;
> +	int err;
> +
> +	list_for_each_entry(blk, &block_device_list, list) {
> +		err = file_list_add_cdev_entry(files, &blk->cdev, 0);
> +		if (!err)
> +			count++;
> +	}
> +
> +	return count;
> +}
> diff --git a/common/file-list.c b/common/file-list.c
> index 5c7020111145..7ecc8d00bb9e 100644
> --- a/common/file-list.c
> +++ b/common/file-list.c
> @@ -9,6 +9,7 @@
>  #include <stringlist.h>
>  #include <linux/err.h>
>  #include <driver.h>
> +#include <block.h>
>  
>  #define PARSE_DEVICE	0
>  #define PARSE_NAME	1
> @@ -59,12 +60,28 @@ int file_list_add_cdev_entry(struct file_list *files, struct cdev *cdev,
>  				     xasprintf("/dev/%s", cdev->name), flags);
>  }
>  
> +static bool file_list_handle_spec(struct file_list *files, const char *spec)
> +{
> +	unsigned count = 0;
> +	bool autoadd;
> +
> +	autoadd = !strcmp(spec, "auto");
> +	if (autoadd || !strcmp(spec, "block"))
> +		count += file_list_add_blockdevs(files);
> +	else
> +		return false;
> +
> +	pr_debug("'%s' spcifier resulted in %u entries\n", spec, count);
> +	return true;
> +}
> +
>  static int file_list_parse_one(struct file_list *files, const char *partstr, const char **endstr)
>  {
>  	int i = 0, state = PARSE_DEVICE;
>  	char filename[PATH_MAX];
>  	char name[PATH_MAX];
>  	unsigned long flags = 0;
> +	bool special = false;
>  
>  	memset(filename, 0, sizeof(filename));
>  	memset(name, 0, sizeof(name));
> @@ -115,7 +132,10 @@ static int file_list_parse_one(struct file_list *files, const char *partstr, con
>  		partstr++;
>  	}
>  
> -	if (state != PARSE_FLAGS) {
> +	if (state == PARSE_DEVICE)
> +		special = file_list_handle_spec(files, filename);
> +
> +	if (!special && state != PARSE_FLAGS) {
>  		pr_err("Missing ')'\n");
>  		return -EINVAL;
>  	}
> @@ -124,7 +144,7 @@ static int file_list_parse_one(struct file_list *files, const char *partstr, con
>  		partstr++;
>  	*endstr = partstr;
>  
> -	return file_list_add_entry(files, name, filename, flags);
> +	return special ? 0 : file_list_add_entry(files, name, filename, flags);
>  }
>  
>  static const char *flags_to_str(int flags)
> diff --git a/include/block.h b/include/block.h
> index da258f509b41..44037bd74c61 100644
> --- a/include/block.h
> +++ b/include/block.h
> @@ -7,6 +7,7 @@
>  #include <linux/types.h>
>  
>  struct block_device;
> +struct file_list;
>  
>  struct block_device_ops {
>  	int (*read)(struct block_device *, void *buf, sector_t block, blkcnt_t num_blocks);
> @@ -51,11 +52,16 @@ static inline int block_flush(struct block_device *blk)
>  
>  #ifdef CONFIG_BLOCK
>  struct block_device *cdev_get_block_device(const struct cdev *cdev);
> +unsigned file_list_add_blockdevs(struct file_list *files);
>  #else
>  static inline struct block_device *cdev_get_block_device(const struct cdev *cdev)
>  {
>  	return NULL;
>  }
> +static inline unsigned file_list_add_blockdevs(struct file_list *files)
> +{
> +	return 0;
> +}
>  #endif
>  
>  static inline bool cdev_is_block_device(const struct cdev *cdev)

-- 
Pengutronix e.K.                           |                             |
Steuerwalder Str. 21                       | http://www.pengutronix.de/  |
31137 Hildesheim, Germany                  | Phone: +49-5121-206917-0    |
Amtsgericht Hildesheim, HRA 2686           | Fax:   +49-5121-206917-5555 |





[Index of Archives]     [Linux Embedded]     [Linux USB Devel]     [Linux Audio Users]     [Yosemite News]     [Linux Kernel]     [Linux SCSI]     [XFree86]

  Powered by Linux