All of lore.kernel.org
 help / color / mirror / Atom feed
* [U-Boot] [PATCH v3 1/2] dm: pci: MIGRATION: Add migration plan for PCI
@ 2018-12-28 21:03 Simon Glass
  2018-12-28 21:03 ` [U-Boot] [PATCH v3 2/2] dm: video: lcd: MIGRATION: Add migration plan for video Simon Glass
  2019-01-10  2:31 ` [U-Boot] [U-Boot, v3, 1/2] dm: pci: MIGRATION: Add migration plan for PCI Tom Rini
  0 siblings, 2 replies; 4+ messages in thread
From: Simon Glass @ 2018-12-28 21:03 UTC (permalink / raw)
  To: u-boot

Add a migration plan for PCI which is an important subsystem in U-Boot.

Signed-off-by: Simon Glass <sjg@chromium.org>
---

Changes in v3:
- Fix the rerelease typo

Changes in v2: None

 Makefile                       | 10 ++++++++++
 doc/driver-model/MIGRATION.txt | 10 ++++++++++
 2 files changed, 20 insertions(+)

diff --git a/Makefile b/Makefile
index a8461dd611d..af086fa30d4 100644
--- a/Makefile
+++ b/Makefile
@@ -946,6 +946,16 @@ ifeq ($(CONFIG_LIBATA)$(CONFIG_DM_SCSI)$(CONFIG_MVSATA_IDE),y)
 	@echo >&2 "See doc/driver-model/MIGRATION.txt for more info."
 	@echo >&2 "===================================================="
 endif
+ifeq ($(CONFIG_PCI),y)
+ifneq ($(CONFIG_DM_PCI),y)
+	@echo >&2 "===================== WARNING ======================"
+	@echo >&2 "This board does not use CONFIG_DM_PCI Please update"
+	@echo >&2 "the board to use CONFIG_DM_PCI before the v2019.07 release."
+	@echo >&2 "Failure to update by the deadline may result in board removal."
+	@echo >&2 "See doc/driver-model/MIGRATION.txt for more info."
+	@echo >&2 "===================================================="
+endif
+endif
 ifeq ($(CONFIG_OF_EMBED),y)
 	@echo >&2 "===================== WARNING ======================"
 	@echo >&2 "CONFIG_OF_EMBED is enabled. This option should only"
diff --git a/doc/driver-model/MIGRATION.txt b/doc/driver-model/MIGRATION.txt
index dce4aa3e1dc..5c91bd1df69 100644
--- a/doc/driver-model/MIGRATION.txt
+++ b/doc/driver-model/MIGRATION.txt
@@ -82,3 +82,13 @@ Partially converted:
 --
 Jagan Teki <jagan@openedev.com>
 03/14/2018
+
+
+CONFIG_DM_PCI
+-------------
+Deadline: 2019.07
+
+The PCI subsystem has supported driver model since mid 2015. Maintainers should
+submit patches switching over to using CONFIG_DM_PCI and other base driver
+model options in time for inclusion in the 2019.07 release.
+
-- 
2.20.1.415.g653613c723-goog

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

* [U-Boot] [PATCH v3 2/2] dm: video: lcd: MIGRATION: Add migration plan for video
  2018-12-28 21:03 [U-Boot] [PATCH v3 1/2] dm: pci: MIGRATION: Add migration plan for PCI Simon Glass
@ 2018-12-28 21:03 ` Simon Glass
  2019-01-10  2:31   ` [U-Boot] [U-Boot, v3, " Tom Rini
  2019-01-10  2:31 ` [U-Boot] [U-Boot, v3, 1/2] dm: pci: MIGRATION: Add migration plan for PCI Tom Rini
  1 sibling, 1 reply; 4+ messages in thread
From: Simon Glass @ 2018-12-28 21:03 UTC (permalink / raw)
  To: u-boot

Add a migration plan for video which is an important subsystem in U-Boot.

Signed-off-by: Simon Glass <sjg@chromium.org>
---

Changes in v3:
- Really change 'PCI' to 'video' (typo)

Changes in v2:
- Change 'PCI' to 'video' (typo)

 Makefile                       | 10 ++++++++++
 doc/driver-model/MIGRATION.txt |  8 ++++++++
 2 files changed, 18 insertions(+)

diff --git a/Makefile b/Makefile
index af086fa30d4..01fe6114d2a 100644
--- a/Makefile
+++ b/Makefile
@@ -956,6 +956,16 @@ ifneq ($(CONFIG_DM_PCI),y)
 	@echo >&2 "===================================================="
 endif
 endif
+ifneq ($(CONFIG_LCD)$(CONFIG_VIDEO),)
+ifneq ($(CONFIG_DM_VIDEO),y)
+	@echo >&2 "===================== WARNING ======================"
+	@echo >&2 "This board does not use CONFIG_DM_VIDEO Please update"
+	@echo >&2 "the board to use CONFIG_DM_VIDEO before the v2019.07 release."
+	@echo >&2 "Failure to update by the deadline may result in board removal."
+	@echo >&2 "See doc/driver-model/MIGRATION.txt for more info."
+	@echo >&2 "===================================================="
+endif
+endif
 ifeq ($(CONFIG_OF_EMBED),y)
 	@echo >&2 "===================== WARNING ======================"
 	@echo >&2 "CONFIG_OF_EMBED is enabled. This option should only"
diff --git a/doc/driver-model/MIGRATION.txt b/doc/driver-model/MIGRATION.txt
index 5c91bd1df69..a204b9bb28a 100644
--- a/doc/driver-model/MIGRATION.txt
+++ b/doc/driver-model/MIGRATION.txt
@@ -92,3 +92,11 @@ The PCI subsystem has supported driver model since mid 2015. Maintainers should
 submit patches switching over to using CONFIG_DM_PCI and other base driver
 model options in time for inclusion in the 2019.07 release.
 
+
+CONFIG_DM_VIDEO
+---------------
+Deadline: 2019.07
+
+The video subsystem has supported driver model since early 2016. Maintainers
+should submit patches switching over to using CONFIG_DM_VIDEO and other base
+driver model options in time for inclusion in the 2019.07 release.
-- 
2.20.1.415.g653613c723-goog

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

* [U-Boot] [U-Boot, v3, 1/2] dm: pci: MIGRATION: Add migration plan for PCI
  2018-12-28 21:03 [U-Boot] [PATCH v3 1/2] dm: pci: MIGRATION: Add migration plan for PCI Simon Glass
  2018-12-28 21:03 ` [U-Boot] [PATCH v3 2/2] dm: video: lcd: MIGRATION: Add migration plan for video Simon Glass
@ 2019-01-10  2:31 ` Tom Rini
  1 sibling, 0 replies; 4+ messages in thread
From: Tom Rini @ 2019-01-10  2:31 UTC (permalink / raw)
  To: u-boot

On Fri, Dec 28, 2018 at 02:03:07PM -0700, Simon Glass wrote:

> Add a migration plan for PCI which is an important subsystem in U-Boot.
> 
> Signed-off-by: Simon Glass <sjg@chromium.org>

Applied to u-boot/master, thanks!

-- 
Tom
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 819 bytes
Desc: not available
URL: <http://lists.denx.de/pipermail/u-boot/attachments/20190109/4b805dca/attachment.sig>

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

* [U-Boot] [U-Boot, v3, 2/2] dm: video: lcd: MIGRATION: Add migration plan for video
  2018-12-28 21:03 ` [U-Boot] [PATCH v3 2/2] dm: video: lcd: MIGRATION: Add migration plan for video Simon Glass
@ 2019-01-10  2:31   ` Tom Rini
  0 siblings, 0 replies; 4+ messages in thread
From: Tom Rini @ 2019-01-10  2:31 UTC (permalink / raw)
  To: u-boot

On Fri, Dec 28, 2018 at 02:03:08PM -0700, Simon Glass wrote:

> Add a migration plan for video which is an important subsystem in U-Boot.
> 
> Signed-off-by: Simon Glass <sjg@chromium.org>

Applied to u-boot/master, thanks!

-- 
Tom
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 819 bytes
Desc: not available
URL: <http://lists.denx.de/pipermail/u-boot/attachments/20190109/90d1b272/attachment.sig>

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

end of thread, other threads:[~2019-01-10  2:31 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-12-28 21:03 [U-Boot] [PATCH v3 1/2] dm: pci: MIGRATION: Add migration plan for PCI Simon Glass
2018-12-28 21:03 ` [U-Boot] [PATCH v3 2/2] dm: video: lcd: MIGRATION: Add migration plan for video Simon Glass
2019-01-10  2:31   ` [U-Boot] [U-Boot, v3, " Tom Rini
2019-01-10  2:31 ` [U-Boot] [U-Boot, v3, 1/2] dm: pci: MIGRATION: Add migration plan for PCI Tom Rini

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.