mail archive of the barebox mailing list
 help / color / mirror / Atom feed
From: Sascha Hauer <sha@pengutronix.de>
To: Ahmad Fatoum <a.fatoum@pengutronix.de>
Cc: barebox@lists.infradead.org
Subject: Re: [PATCH v2 00/19] state: allow lookup of barebox state partition by Type GUID
Date: Thu, 8 Jun 2023 08:53:02 +0200	[thread overview]
Message-ID: <20230608065302.GJ18491@pengutronix.de> (raw)
In-Reply-To: <20230607120714.3083182-1-a.fatoum@pengutronix.de>

On Wed, Jun 07, 2023 at 02:06:55PM +0200, Ahmad Fatoum wrote:
> So far, we had basically three ways to reference barebox,state on block
> devices:
> 
>   - On platforms with device tree, we point at a fixed partition
>     described in the DT
> 
>   - On platforms without device tree, we have a custom binding that
>     does a global lookup by partuuid (or a more obscure one by diskuuid).
> 
> Both are less than optimal. The first clashes with the need to use
> a GPT partition for the state and the second doesn't allow relating the
> UUID with an actual device for the case where e.g. both an SD-Card and
> an eMMC are flashed with the same image.
> 
> This series fixes that by:
> 
>   - Supporting definition of fixed partitions that are identical to
>     GPT/MBR partitions.
> 
>   - Alternatively, support pointing barebox-state backend at a
>     GPT-partitioned device and the partition with the barebox-state
>     Type GUID will be taken.

Applied, thanks

Sascha

> 
> Changelog written in each patch
> 
> Ahmad Fatoum (19):
>   common: partitions: decouple from EFI GUID definition
>   efi: define efi_guid_t as 32-bit aligned guid_t
>   cdev: fix for_each_cdev macro
>   of: partition: support of_partition_ensure_probed on parent device
>   state: fix deep probe handling
>   of: of_path: always call of_partition_ensure_probed before resolving
>   driver: add new cdev_is_partition helper
>   commands: stat: remove code duplication for type info
>   cdev: use more descriptive struct cdev::diskuuid/partuuid
>   cdev: record whether partition is parsed from OF
>   cdev: have devfs_add_partition return existing identical partition,
>     not NULL
>   block: parse partition table on block device registration
>   common: partitions: record whether disk is GPT or MBR partitioned
>   block: add cdev_is_block_(device|partition|disk) helpers
>   of: export new of_cdev_find helper
>   state: factor device path lookup into helper function
>   cdev: use cdev::dos_partition_type only if cdev_is_mbr_partitioned
>   common: partitions: efi: record type UUID in cdev
>   state: allow lookup of barebox state partition by Type GUID
> 
>  arch/sandbox/board/hostfile.c  |  4 --
>  common/block.c                 |  4 ++
>  common/blspec.c                |  2 +-
>  common/bootm.c                 |  2 +-
>  common/partitions.c            |  4 +-
>  common/partitions/dos.c        |  4 +-
>  common/partitions/efi.c        | 11 ++++--
>  common/partitions/parser.h     |  6 ++-
>  common/state/state.c           | 50 ++++++++++++++++++------
>  drivers/ata/disk_ata_drive.c   |  5 ---
>  drivers/base/driver.c          |  2 +-
>  drivers/block/efi-block-io.c   |  9 +----
>  drivers/block/virtio_blk.c     |  8 +---
>  drivers/mci/mci-core.c         |  6 ---
>  drivers/misc/storage-by-uuid.c |  4 +-
>  drivers/nvme/host/core.c       |  5 ---
>  drivers/of/of_path.c           | 69 ++++++++++++++++++++++++----------
>  drivers/of/partition.c         | 46 ++++++++++++++++++++---
>  drivers/of/platform.c          |  2 +-
>  drivers/usb/storage/usb.c      |  5 ---
>  fs/devfs-core.c                | 67 +++++++++++++++++++++++++--------
>  fs/fs.c                        | 33 +++++++++++-----
>  include/block.h                | 15 ++++++++
>  include/driver.h               | 60 ++++++++++++++++++++++++++---
>  include/efi.h                  | 19 ++++++++--
>  include/efi/partition.h        | 27 ++++++-------
>  include/of.h                   |  1 +
>  include/state.h                |  4 ++
>  lib/Makefile                   |  1 +
>  lib/uuid.c                     | 15 ++++++++
>  30 files changed, 351 insertions(+), 139 deletions(-)
>  create mode 100644 lib/uuid.c
> 
> -- 
> 2.39.2
> 
> 
> 

-- 
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 |



      parent reply	other threads:[~2023-06-08  6:54 UTC|newest]

Thread overview: 21+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-06-07 12:06 Ahmad Fatoum
2023-06-07 12:06 ` [PATCH v2 01/19] common: partitions: decouple from EFI GUID definition Ahmad Fatoum
2023-06-07 12:06 ` [PATCH v2 02/19] efi: define efi_guid_t as 32-bit aligned guid_t Ahmad Fatoum
2023-06-07 12:06 ` [PATCH v2 03/19] cdev: fix for_each_cdev macro Ahmad Fatoum
2023-06-07 12:06 ` [PATCH v2 04/19] of: partition: support of_partition_ensure_probed on parent device Ahmad Fatoum
2023-06-07 12:07 ` [PATCH v2 05/19] state: fix deep probe handling Ahmad Fatoum
2023-06-07 12:07 ` [PATCH v2 06/19] of: of_path: always call of_partition_ensure_probed before resolving Ahmad Fatoum
2023-06-07 12:07 ` [PATCH v2 07/19] driver: add new cdev_is_partition helper Ahmad Fatoum
2023-06-07 12:07 ` [PATCH v2 08/19] commands: stat: remove code duplication for type info Ahmad Fatoum
2023-06-07 12:07 ` [PATCH v2 09/19] cdev: use more descriptive struct cdev::diskuuid/partuuid Ahmad Fatoum
2023-06-07 12:07 ` [PATCH v2 10/19] cdev: record whether partition is parsed from OF Ahmad Fatoum
2023-06-07 12:07 ` [PATCH v2 11/19] cdev: have devfs_add_partition return existing identical partition, not NULL Ahmad Fatoum
2023-06-07 12:07 ` [PATCH v2 12/19] block: parse partition table on block device registration Ahmad Fatoum
2023-06-07 12:07 ` [PATCH v2 13/19] common: partitions: record whether disk is GPT or MBR partitioned Ahmad Fatoum
2023-06-07 12:07 ` [PATCH v2 14/19] block: add cdev_is_block_(device|partition|disk) helpers Ahmad Fatoum
2023-06-07 12:07 ` [PATCH v2 15/19] of: export new of_cdev_find helper Ahmad Fatoum
2023-06-07 12:07 ` [PATCH v2 16/19] state: factor device path lookup into helper function Ahmad Fatoum
2023-06-07 12:07 ` [PATCH v2 17/19] cdev: use cdev::dos_partition_type only if cdev_is_mbr_partitioned Ahmad Fatoum
2023-06-07 12:07 ` [PATCH v2 18/19] common: partitions: efi: record type UUID in cdev Ahmad Fatoum
2023-06-07 12:07 ` [PATCH v2 19/19] state: allow lookup of barebox state partition by Type GUID Ahmad Fatoum
2023-06-08  6:53 ` Sascha Hauer [this message]

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=20230608065302.GJ18491@pengutronix.de \
    --to=sha@pengutronix.de \
    --cc=a.fatoum@pengutronix.de \
    --cc=barebox@lists.infradead.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