public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
* DM_MMC, BLK
@ 2021-02-24 21:28 Heinrich Schuchardt
  2021-02-24 21:32 ` Tom Rini
  0 siblings, 1 reply; 6+ messages in thread
From: Heinrich Schuchardt @ 2021-02-24 21:28 UTC (permalink / raw)
  To: u-boot

Hello Tom,

migrating to CONFIG_DM_MMC was scheduled for release v2019.04. But some
board maintainers simply don't care.

We have quite a lot of boards like cm_t335, draco, etamin, rastaban,
thuban, pxm2, vinco which compile when setting CONFIG_DM_MMC and CONFIG_BLK.

Shall we switch all boards that compile with these settings?

Best regards

Heinrich

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

* DM_MMC, BLK
  2021-02-24 21:28 DM_MMC, BLK Heinrich Schuchardt
@ 2021-02-24 21:32 ` Tom Rini
  2021-02-24 22:15   ` Heinrich Schuchardt
  2021-02-25 17:47   ` Heinrich Schuchardt
  0 siblings, 2 replies; 6+ messages in thread
From: Tom Rini @ 2021-02-24 21:32 UTC (permalink / raw)
  To: u-boot

On Wed, Feb 24, 2021 at 10:28:31PM +0100, Heinrich Schuchardt wrote:

> Hello Tom,
> 
> migrating to CONFIG_DM_MMC was scheduled for release v2019.04. But some
> board maintainers simply don't care.
> 
> We have quite a lot of boards like cm_t335, draco, etamin, rastaban,
> thuban, pxm2, vinco which compile when setting CONFIG_DM_MMC and CONFIG_BLK.
> 
> Shall we switch all boards that compile with these settings?

Please see
https://patchwork.ozlabs.org/project/uboot/list/?series=230325

And there's a follow-up for MVSATA/IDE stuff.  I've started but haven't
finished yet one for DM_PCI, but did post more removals on top of that.

-- 
Tom
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 659 bytes
Desc: not available
URL: <https://lists.denx.de/pipermail/u-boot/attachments/20210224/71175296/attachment.sig>

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

* DM_MMC, BLK
  2021-02-24 21:32 ` Tom Rini
@ 2021-02-24 22:15   ` Heinrich Schuchardt
  2021-02-24 23:10     ` Simon Glass
  2021-02-25 17:47   ` Heinrich Schuchardt
  1 sibling, 1 reply; 6+ messages in thread
From: Heinrich Schuchardt @ 2021-02-24 22:15 UTC (permalink / raw)
  To: u-boot

On 24.02.21 22:32, Tom Rini wrote:
> On Wed, Feb 24, 2021 at 10:28:31PM +0100, Heinrich Schuchardt wrote:
>
>> Hello Tom,
>>
>> migrating to CONFIG_DM_MMC was scheduled for release v2019.04. But some
>> board maintainers simply don't care.
>>
>> We have quite a lot of boards like cm_t335, draco, etamin, rastaban,
>> thuban, pxm2, vinco which compile when setting CONFIG_DM_MMC and CONFIG_BLK.
>>
>> Shall we switch all boards that compile with these settings?
>
> Please see
> https://patchwork.ozlabs.org/project/uboot/list/?series=230325

Thank you for the link.

I tend to let EFI_LOADER depend on BLK. This will allow to remove legacy
code in the UEFI sub-system.

Best regards

Heinrich

>
> And there's a follow-up for MVSATA/IDE stuff.  I've started but haven't
> finished yet one for DM_PCI, but did post more removals on top of that.
>

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

* DM_MMC, BLK
  2021-02-24 22:15   ` Heinrich Schuchardt
@ 2021-02-24 23:10     ` Simon Glass
  0 siblings, 0 replies; 6+ messages in thread
From: Simon Glass @ 2021-02-24 23:10 UTC (permalink / raw)
  To: u-boot

Hi Heinrich,

On Wed, 24 Feb 2021 at 17:15, Heinrich Schuchardt <xypron.glpk@gmx.de> wrote:
>
> On 24.02.21 22:32, Tom Rini wrote:
> > On Wed, Feb 24, 2021 at 10:28:31PM +0100, Heinrich Schuchardt wrote:
> >
> >> Hello Tom,
> >>
> >> migrating to CONFIG_DM_MMC was scheduled for release v2019.04. But some
> >> board maintainers simply don't care.
> >>
> >> We have quite a lot of boards like cm_t335, draco, etamin, rastaban,
> >> thuban, pxm2, vinco which compile when setting CONFIG_DM_MMC and CONFIG_BLK.
> >>
> >> Shall we switch all boards that compile with these settings?
> >
> > Please see
> > https://patchwork.ozlabs.org/project/uboot/list/?series=230325
>
> Thank you for the link.
>
> I tend to let EFI_LOADER depend on BLK. This will allow to remove legacy
> code in the UEFI sub-system.

As mentioned on the contributor call, I did push for that at the time.
I strongly support doing it now.

Regards,
Simon

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

* DM_MMC, BLK
  2021-02-24 21:32 ` Tom Rini
  2021-02-24 22:15   ` Heinrich Schuchardt
@ 2021-02-25 17:47   ` Heinrich Schuchardt
  2021-02-25 18:42     ` Tom Rini
  1 sibling, 1 reply; 6+ messages in thread
From: Heinrich Schuchardt @ 2021-02-25 17:47 UTC (permalink / raw)
  To: u-boot

On 2/24/21 10:32 PM, Tom Rini wrote:
> On Wed, Feb 24, 2021 at 10:28:31PM +0100, Heinrich Schuchardt wrote:
>
>> Hello Tom,
>>
>> migrating to CONFIG_DM_MMC was scheduled for release v2019.04. But some
>> board maintainers simply don't care.
>>
>> We have quite a lot of boards like cm_t335, draco, etamin, rastaban,
>> thuban, pxm2, vinco which compile when setting CONFIG_DM_MMC and CONFIG_BLK.
>>
>> Shall we switch all boards that compile with these settings?
>
> Please see
> https://patchwork.ozlabs.org/project/uboot/list/?series=230325

There are other parts concerning block devices needing clean up. E.g the
usage of HAVE_BLOCK_DEVICE in disk/.

Having all these changes collected in a next branch would be helpful.

Best regards

Heinrich

>
> And there's a follow-up for MVSATA/IDE stuff.  I've started but haven't
> finished yet one for DM_PCI, but did post more removals on top of that.
>

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

* DM_MMC, BLK
  2021-02-25 17:47   ` Heinrich Schuchardt
@ 2021-02-25 18:42     ` Tom Rini
  0 siblings, 0 replies; 6+ messages in thread
From: Tom Rini @ 2021-02-25 18:42 UTC (permalink / raw)
  To: u-boot

On Thu, Feb 25, 2021 at 06:47:55PM +0100, Heinrich Schuchardt wrote:
> On 2/24/21 10:32 PM, Tom Rini wrote:
> > On Wed, Feb 24, 2021 at 10:28:31PM +0100, Heinrich Schuchardt wrote:
> > 
> > > Hello Tom,
> > > 
> > > migrating to CONFIG_DM_MMC was scheduled for release v2019.04. But some
> > > board maintainers simply don't care.
> > > 
> > > We have quite a lot of boards like cm_t335, draco, etamin, rastaban,
> > > thuban, pxm2, vinco which compile when setting CONFIG_DM_MMC and CONFIG_BLK.
> > > 
> > > Shall we switch all boards that compile with these settings?
> > 
> > Please see
> > https://patchwork.ozlabs.org/project/uboot/list/?series=230325
> 
> There are other parts concerning block devices needing clean up. E.g the
> usage of HAVE_BLOCK_DEVICE in disk/.
> 
> Having all these changes collected in a next branch would be helpful.

I've got various rebasing branches up with these removals (and some
temporary merges) currently under WIP/make-DM_xxx-fatal.  I will be
opening next fairly soon.

-- 
Tom
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 659 bytes
Desc: not available
URL: <https://lists.denx.de/pipermail/u-boot/attachments/20210225/089e64fd/attachment.sig>

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

end of thread, other threads:[~2021-02-25 18:42 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-02-24 21:28 DM_MMC, BLK Heinrich Schuchardt
2021-02-24 21:32 ` Tom Rini
2021-02-24 22:15   ` Heinrich Schuchardt
2021-02-24 23:10     ` Simon Glass
2021-02-25 17:47   ` Heinrich Schuchardt
2021-02-25 18:42     ` Tom Rini

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