public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
From: Tom Rini <trini@konsulko.com>
To: u-boot@lists.denx.de
Subject: [PATCH 091/149] global: Migrate CONFIG_MXC_USB_FLAGS et al to CFG
Date: Sun,  4 Dec 2022 10:04:56 -0500	[thread overview]
Message-ID: <20221204150554.4165941-91-trini@konsulko.com> (raw)
In-Reply-To: <20221204150554.4165941-1-trini@konsulko.com>

Perform simple renames of:
   CONFIG_MXC_USB_FLAGS to CFG_MXC_USB_FLAGS
   CONFIG_MXC_USB_PORT to CFG_MXC_USB_PORT
   CONFIG_MXC_USB_PORTSC to CFG_MXC_USB_PORTSC

Signed-off-by: Tom Rini <trini@konsulko.com>
---
 drivers/usb/host/ehci-mx5.c              | 4 ++--
 drivers/usb/host/ehci-mx6.c              | 8 ++++----
 include/configs/apalis_imx6.h            | 4 ++--
 include/configs/aristainetos2.h          | 4 ++--
 include/configs/brppt2.h                 | 2 +-
 include/configs/cl-som-imx7.h            | 4 ++--
 include/configs/cm_fx6.h                 | 4 ++--
 include/configs/colibri-imx6ull.h        | 4 ++--
 include/configs/colibri_imx6.h           | 4 ++--
 include/configs/colibri_imx7.h           | 4 ++--
 include/configs/dart_6ul.h               | 4 ++--
 include/configs/dh_imx6.h                | 4 ++--
 include/configs/display5.h               | 2 +-
 include/configs/embestmx6boards.h        | 4 ++--
 include/configs/ge_b1x5v2.h              | 4 ++--
 include/configs/gw_ventana.h             | 4 ++--
 include/configs/imx6_logic.h             | 4 ++--
 include/configs/imx6dl-mamoj.h           | 4 ++--
 include/configs/imx6q-bosch-acc.h        | 4 ++--
 include/configs/imx7-cm.h                | 2 +-
 include/configs/imx8mm-cl-iot-gate.h     | 2 +-
 include/configs/kontron-sl-mx6ul.h       | 4 ++--
 include/configs/kontron-sl-mx8mm.h       | 4 ++--
 include/configs/kp_imx53.h               | 4 ++--
 include/configs/kp_imx6q_tpc.h           | 4 ++--
 include/configs/liteboard.h              | 4 ++--
 include/configs/m53menlo.h               | 6 +++---
 include/configs/meerkat96.h              | 2 +-
 include/configs/mx51evk.h                | 6 +++---
 include/configs/mx53cx9020.h             | 6 +++---
 include/configs/mx53loco.h               | 6 +++---
 include/configs/mx53ppd.h                | 6 +++---
 include/configs/mx6cuboxi.h              | 2 +-
 include/configs/mx6memcal.h              | 2 +-
 include/configs/mx6sabreauto.h           | 4 ++--
 include/configs/mx6sabresd.h             | 4 ++--
 include/configs/mx6slevk.h               | 4 ++--
 include/configs/mx6sllevk.h              | 2 +-
 include/configs/mx6sxsabreauto.h         | 4 ++--
 include/configs/mx6sxsabresd.h           | 4 ++--
 include/configs/mx6ul_14x14_evk.h        | 4 ++--
 include/configs/mx7dsabresd.h            | 2 +-
 include/configs/mx7ulp_com.h             | 2 +-
 include/configs/mys_6ulx.h               | 4 ++--
 include/configs/nitrogen6x.h             | 4 ++--
 include/configs/novena.h                 | 4 ++--
 include/configs/npi_imx6ull.h            | 4 ++--
 include/configs/o4-imx6ull-nano.h        | 2 +-
 include/configs/opos6uldev.h             | 4 ++--
 include/configs/pcl063.h                 | 4 ++--
 include/configs/pcl063_ull.h             | 4 ++--
 include/configs/pico-imx6.h              | 4 ++--
 include/configs/pico-imx6ul.h            | 4 ++--
 include/configs/pico-imx7d.h             | 4 ++--
 include/configs/somlabs_visionsom_6ull.h | 4 ++--
 include/configs/tbs2910.h                | 2 +-
 include/configs/tqma6.h                  | 2 +-
 include/configs/usbarmory.h              | 6 +++---
 include/configs/verdin-imx8mm.h          | 2 +-
 include/configs/vining_2000.h            | 4 ++--
 include/configs/wandboard.h              | 4 ++--
 include/configs/warp7.h                  | 2 +-
 include/configs/xpress.h                 | 4 ++--
 63 files changed, 119 insertions(+), 119 deletions(-)

diff --git a/drivers/usb/host/ehci-mx5.c b/drivers/usb/host/ehci-mx5.c
index 964a53bb7c0e..c11279867c7c 100644
--- a/drivers/usb/host/ehci-mx5.c
+++ b/drivers/usb/host/ehci-mx5.c
@@ -299,10 +299,10 @@ static int ehci_usb_probe(struct udevice *dev)
 			HC_LENGTH(ehci_readl(&(hccr)->cr_capbase)));
 	setbits_le32(&ehci->usbmode, CM_HOST);
 
-	__raw_writel(CONFIG_MXC_USB_PORTSC, &ehci->portsc);
+	__raw_writel(CFG_MXC_USB_PORTSC, &ehci->portsc);
 	setbits_le32(&ehci->portsc, USB_EN);
 
-	mxc_set_usbcontrol(priv->portnr, CONFIG_MXC_USB_FLAGS);
+	mxc_set_usbcontrol(priv->portnr, CFG_MXC_USB_FLAGS);
 	mdelay(10);
 
 	return ehci_register(dev, hccr, hcor, &mx5_ehci_ops, 0,
diff --git a/drivers/usb/host/ehci-mx6.c b/drivers/usb/host/ehci-mx6.c
index fa2ca2a1d912..0a12db614ff4 100644
--- a/drivers/usb/host/ehci-mx6.c
+++ b/drivers/usb/host/ehci-mx6.c
@@ -70,8 +70,8 @@ DECLARE_GLOBAL_DATA_PTR;
 #define UCMD_RESET		(1 << 1) /* controller reset */
 
 /* If this is not defined, assume MX6/MX7/MX8M SoC default */
-#ifndef CONFIG_MXC_USB_PORTSC
-#define CONFIG_MXC_USB_PORTSC	(PORT_PTS_UTMI | PORT_PTS_PTW)
+#ifndef CFG_MXC_USB_PORTSC
+#define CFG_MXC_USB_PORTSC	(PORT_PTS_UTMI | PORT_PTS_PTW)
 #endif
 
 /* Base address for this IP block is 0x02184800 */
@@ -411,7 +411,7 @@ int ehci_hcd_init(int index, enum usb_init_type init,
 		return 0;
 
 	setbits_le32(&ehci->usbmode, CM_HOST);
-	writel(CONFIG_MXC_USB_PORTSC, &ehci->portsc);
+	writel(CFG_MXC_USB_PORTSC, &ehci->portsc);
 	setbits_le32(&ehci->portsc, USB_EN);
 
 	mdelay(10);
@@ -454,7 +454,7 @@ static u32 mx6_portsc(enum usb_phy_interface phy_type)
 	case USBPHY_INTERFACE_MODE_HSIC:
 		return PORT_PTS_HSIC;
 	default:
-		return CONFIG_MXC_USB_PORTSC;
+		return CFG_MXC_USB_PORTSC;
 	}
 }
 
diff --git a/include/configs/apalis_imx6.h b/include/configs/apalis_imx6.h
index 2fb4cfa5e9a1..8a9f3ef75a7d 100644
--- a/include/configs/apalis_imx6.h
+++ b/include/configs/apalis_imx6.h
@@ -26,8 +26,8 @@
 
 /* USB Configs */
 /* Host */
-#define CONFIG_MXC_USB_PORTSC		(PORT_PTS_UTMI | PORT_PTS_PTW)
-#define CONFIG_MXC_USB_FLAGS		0
+#define CFG_MXC_USB_PORTSC		(PORT_PTS_UTMI | PORT_PTS_PTW)
+#define CFG_MXC_USB_FLAGS		0
 
 /* Framebuffer and LCD */
 
diff --git a/include/configs/aristainetos2.h b/include/configs/aristainetos2.h
index be1478ea8b67..286435d6f84c 100644
--- a/include/configs/aristainetos2.h
+++ b/include/configs/aristainetos2.h
@@ -413,8 +413,8 @@
 /* DMA stuff, needed for GPMI/MXS NAND support */
 
 /* USB Configs */
-#define CONFIG_MXC_USB_PORTSC	(PORT_PTS_UTMI | PORT_PTS_PTW)
-#define CONFIG_MXC_USB_FLAGS	0
+#define CFG_MXC_USB_PORTSC	(PORT_PTS_UTMI | PORT_PTS_PTW)
+#define CFG_MXC_USB_FLAGS	0
 
 /* UBI support */
 
diff --git a/include/configs/brppt2.h b/include/configs/brppt2.h
index 32d9f503d9f0..38c98c5e21c4 100644
--- a/include/configs/brppt2.h
+++ b/include/configs/brppt2.h
@@ -79,6 +79,6 @@ BUR_COMMON_ENV \
 #define CFG_SYS_INIT_RAM_SIZE	IRAM_SIZE
 
 /* USB Configs */
-#define CONFIG_MXC_USB_PORTSC		(PORT_PTS_UTMI | PORT_PTS_PTW)
+#define CFG_MXC_USB_PORTSC		(PORT_PTS_UTMI | PORT_PTS_PTW)
 
 #endif	/* __CONFIG_BRPP2_IMX6_H */
diff --git a/include/configs/cl-som-imx7.h b/include/configs/cl-som-imx7.h
index b7920c7b3057..0a667c60b61b 100644
--- a/include/configs/cl-som-imx7.h
+++ b/include/configs/cl-som-imx7.h
@@ -96,7 +96,7 @@
 #endif
 
 /* USB Configs */
-#define CONFIG_MXC_USB_PORTSC  (PORT_PTS_UTMI | PORT_PTS_PTW)
-#define CONFIG_MXC_USB_FLAGS   0
+#define CFG_MXC_USB_PORTSC  (PORT_PTS_UTMI | PORT_PTS_PTW)
+#define CFG_MXC_USB_FLAGS   0
 
 #endif	/* __CONFIG_H */
diff --git a/include/configs/cm_fx6.h b/include/configs/cm_fx6.h
index 90ebec4a94ca..7d0f2b6dc13a 100644
--- a/include/configs/cm_fx6.h
+++ b/include/configs/cm_fx6.h
@@ -135,8 +135,8 @@
 #define CFG_FEC_MXC_PHYADDR		0
 
 /* USB */
-#define CONFIG_MXC_USB_PORTSC		(PORT_PTS_UTMI | PORT_PTS_PTW)
-#define CONFIG_MXC_USB_FLAGS		0
+#define CFG_MXC_USB_PORTSC		(PORT_PTS_UTMI | PORT_PTS_PTW)
+#define CFG_MXC_USB_FLAGS		0
 
 /* Boot */
 #define CFG_SYS_BOOTMAPSZ	        (8 << 20)
diff --git a/include/configs/colibri-imx6ull.h b/include/configs/colibri-imx6ull.h
index 5b802aa92a9c..ba45ee4efd37 100644
--- a/include/configs/colibri-imx6ull.h
+++ b/include/configs/colibri-imx6ull.h
@@ -123,8 +123,8 @@
 
 /* USB Configs */
 
-#define CONFIG_MXC_USB_PORTSC		(PORT_PTS_UTMI | PORT_PTS_PTW)
-#define CONFIG_MXC_USB_FLAGS		0
+#define CFG_MXC_USB_PORTSC		(PORT_PTS_UTMI | PORT_PTS_PTW)
+#define CFG_MXC_USB_FLAGS		0
 
 /* USB Device Firmware Update support */
 #define DFU_DEFAULT_POLL_TIMEOUT	300
diff --git a/include/configs/colibri_imx6.h b/include/configs/colibri_imx6.h
index 3c67aab04c1c..4b2841833b5a 100644
--- a/include/configs/colibri_imx6.h
+++ b/include/configs/colibri_imx6.h
@@ -23,8 +23,8 @@
 
 /* USB Configs */
 /* Host */
-#define CONFIG_MXC_USB_PORTSC		(PORT_PTS_UTMI | PORT_PTS_PTW)
-#define CONFIG_MXC_USB_FLAGS		0
+#define CFG_MXC_USB_PORTSC		(PORT_PTS_UTMI | PORT_PTS_PTW)
+#define CFG_MXC_USB_FLAGS		0
 
 /* Command definition */
 
diff --git a/include/configs/colibri_imx7.h b/include/configs/colibri_imx7.h
index 91f87ea283fe..c568643977ca 100644
--- a/include/configs/colibri_imx7.h
+++ b/include/configs/colibri_imx7.h
@@ -167,7 +167,7 @@
 
 /* USB Configs */
 
-#define CONFIG_MXC_USB_PORTSC		(PORT_PTS_UTMI | PORT_PTS_PTW)
-#define CONFIG_MXC_USB_FLAGS		0
+#define CFG_MXC_USB_PORTSC		(PORT_PTS_UTMI | PORT_PTS_PTW)
+#define CFG_MXC_USB_FLAGS		0
 
 #endif
diff --git a/include/configs/dart_6ul.h b/include/configs/dart_6ul.h
index fb619105a760..c5781670864b 100644
--- a/include/configs/dart_6ul.h
+++ b/include/configs/dart_6ul.h
@@ -47,8 +47,8 @@
 #define CFG_SYS_INIT_RAM_SIZE	IRAM_SIZE
 
 /* USB Configs */
-#define CONFIG_MXC_USB_PORTSC		(PORT_PTS_UTMI | PORT_PTS_PTW)
-#define CONFIG_MXC_USB_FLAGS		0
+#define CFG_MXC_USB_PORTSC		(PORT_PTS_UTMI | PORT_PTS_PTW)
+#define CFG_MXC_USB_FLAGS		0
 
 #define ENV_MMC \
 	"mmcdev=" __stringify(MMC_ROOTFS_DEV) "\0" \
diff --git a/include/configs/dh_imx6.h b/include/configs/dh_imx6.h
index 348be5a6ec64..5cf73274d5e1 100644
--- a/include/configs/dh_imx6.h
+++ b/include/configs/dh_imx6.h
@@ -32,8 +32,8 @@
 
 /* USB Configs */
 #ifdef CONFIG_CMD_USB
-#define CONFIG_MXC_USB_PORTSC		(PORT_PTS_UTMI | PORT_PTS_PTW)
-#define CONFIG_MXC_USB_FLAGS		0
+#define CFG_MXC_USB_PORTSC		(PORT_PTS_UTMI | PORT_PTS_PTW)
+#define CFG_MXC_USB_FLAGS		0
 
 /* USB Gadget (DFU, UMS) */
 #if defined(CONFIG_CMD_DFU) || defined(CONFIG_CMD_USB_MASS_STORAGE)
diff --git a/include/configs/display5.h b/include/configs/display5.h
index cd1544be039f..3b96fff7d6f8 100644
--- a/include/configs/display5.h
+++ b/include/configs/display5.h
@@ -288,5 +288,5 @@
 /* The 0x120000 value corresponds to above SPI-NOR memory MAP */
 #endif
 
-#define CONFIG_MXC_USB_PORTSC           (PORT_PTS_UTMI | PORT_PTS_PTW)
+#define CFG_MXC_USB_PORTSC           (PORT_PTS_UTMI | PORT_PTS_PTW)
 #endif /* __CONFIG_H */
diff --git a/include/configs/embestmx6boards.h b/include/configs/embestmx6boards.h
index 81a92c9bb971..31c7e104f6b8 100644
--- a/include/configs/embestmx6boards.h
+++ b/include/configs/embestmx6boards.h
@@ -18,8 +18,8 @@
 #define PHYS_SDRAM_SIZE		(1u * 1024 * 1024 * 1024)
 
 /* USB Configs */
-#define CONFIG_MXC_USB_PORTSC	(PORT_PTS_UTMI | PORT_PTS_PTW)
-#define CONFIG_MXC_USB_FLAGS	0
+#define CFG_MXC_USB_PORTSC	(PORT_PTS_UTMI | PORT_PTS_PTW)
+#define CFG_MXC_USB_FLAGS	0
 
 /* MMC Configs */
 #define CFG_SYS_FSL_ESDHC_ADDR      0
diff --git a/include/configs/ge_b1x5v2.h b/include/configs/ge_b1x5v2.h
index 529b8fc53e57..49b058cb10d4 100644
--- a/include/configs/ge_b1x5v2.h
+++ b/include/configs/ge_b1x5v2.h
@@ -24,8 +24,8 @@
 #endif
 
 /* USB */
-#define CONFIG_MXC_USB_PORTSC		(PORT_PTS_UTMI | PORT_PTS_PTW)
-#define CONFIG_MXC_USB_FLAGS		0
+#define CFG_MXC_USB_PORTSC		(PORT_PTS_UTMI | PORT_PTS_PTW)
+#define CFG_MXC_USB_FLAGS		0
 
 /* Memory */
 #define PHYS_SDRAM		       MMDC0_ARB_BASE_ADDR
diff --git a/include/configs/gw_ventana.h b/include/configs/gw_ventana.h
index c6ace9d65eb3..0a9dfe736f7d 100644
--- a/include/configs/gw_ventana.h
+++ b/include/configs/gw_ventana.h
@@ -36,8 +36,8 @@
 /* Various command support */
 
 /* USB Configs */
-#define CONFIG_MXC_USB_PORTSC     (PORT_PTS_UTMI | PORT_PTS_PTW)
-#define CONFIG_MXC_USB_FLAGS      0
+#define CFG_MXC_USB_PORTSC     (PORT_PTS_UTMI | PORT_PTS_PTW)
+#define CFG_MXC_USB_FLAGS      0
 
 /* Miscellaneous configurable options */
 
diff --git a/include/configs/imx6_logic.h b/include/configs/imx6_logic.h
index f9544cd430ca..85c054451f35 100644
--- a/include/configs/imx6_logic.h
+++ b/include/configs/imx6_logic.h
@@ -117,8 +117,8 @@
 
 /* USB Configs */
 #ifdef CONFIG_CMD_USB
-#define CONFIG_MXC_USB_PORTSC		(PORT_PTS_UTMI | PORT_PTS_PTW)
-#define CONFIG_MXC_USB_FLAGS		0
+#define CFG_MXC_USB_PORTSC		(PORT_PTS_UTMI | PORT_PTS_PTW)
+#define CFG_MXC_USB_FLAGS		0
 #endif
 
 /* Falcon Mode */
diff --git a/include/configs/imx6dl-mamoj.h b/include/configs/imx6dl-mamoj.h
index db08e43f0d86..6c61b3f44801 100644
--- a/include/configs/imx6dl-mamoj.h
+++ b/include/configs/imx6dl-mamoj.h
@@ -43,8 +43,8 @@
 #define CFG_FEC_MXC_PHYADDR		1
 
 /* USB */
-#define CONFIG_MXC_USB_PORTSC			(PORT_PTS_UTMI | PORT_PTS_PTW)
-#define CONFIG_MXC_USB_FLAGS			0
+#define CFG_MXC_USB_PORTSC			(PORT_PTS_UTMI | PORT_PTS_PTW)
+#define CFG_MXC_USB_FLAGS			0
 
 /* Falcon */
 
diff --git a/include/configs/imx6q-bosch-acc.h b/include/configs/imx6q-bosch-acc.h
index e28185f24dd3..2c998cdcfc72 100644
--- a/include/configs/imx6q-bosch-acc.h
+++ b/include/configs/imx6q-bosch-acc.h
@@ -110,7 +110,7 @@
 #endif
 #endif
 
-#define CONFIG_MXC_USB_PORTSC            (PORT_PTS_UTMI | PORT_PTS_PTW)
-#define CONFIG_MXC_USB_FLAGS             0
+#define CFG_MXC_USB_PORTSC            (PORT_PTS_UTMI | PORT_PTS_PTW)
+#define CFG_MXC_USB_FLAGS             0
 
 #endif /* __IMX6Q_ACC_H */
diff --git a/include/configs/imx7-cm.h b/include/configs/imx7-cm.h
index 84fb1bfb7598..106fbdb9053c 100644
--- a/include/configs/imx7-cm.h
+++ b/include/configs/imx7-cm.h
@@ -79,6 +79,6 @@
 
 
 /* USB Configs */
-#define CONFIG_MXC_USB_PORTSC  (PORT_PTS_UTMI | PORT_PTS_PTW)
+#define CFG_MXC_USB_PORTSC  (PORT_PTS_UTMI | PORT_PTS_PTW)
 
 #endif	/* __CONFIG_H */
diff --git a/include/configs/imx8mm-cl-iot-gate.h b/include/configs/imx8mm-cl-iot-gate.h
index 64cdc401d039..2641d7bc960b 100644
--- a/include/configs/imx8mm-cl-iot-gate.h
+++ b/include/configs/imx8mm-cl-iot-gate.h
@@ -139,6 +139,6 @@
 #define CFG_FEC_MXC_PHYADDR		0
 
 /* USB Configs */
-#define CONFIG_MXC_USB_PORTSC	(PORT_PTS_UTMI | PORT_PTS_PTW)
+#define CFG_MXC_USB_PORTSC	(PORT_PTS_UTMI | PORT_PTS_PTW)
 
 #endif /*__IMX8MM_CL_IOT_GATE_H*/
diff --git a/include/configs/kontron-sl-mx6ul.h b/include/configs/kontron-sl-mx6ul.h
index 4354f3945e83..1c92cd787677 100644
--- a/include/configs/kontron-sl-mx6ul.h
+++ b/include/configs/kontron-sl-mx6ul.h
@@ -25,8 +25,8 @@
 #define CFG_MXC_UART_BASE		UART4_BASE
 
 #ifdef CONFIG_USB_EHCI_HCD
-#define CONFIG_MXC_USB_PORTSC		(PORT_PTS_UTMI | PORT_PTS_PTW)
-#define CONFIG_MXC_USB_FLAGS		0
+#define CFG_MXC_USB_PORTSC		(PORT_PTS_UTMI | PORT_PTS_PTW)
+#define CFG_MXC_USB_FLAGS		0
 #endif
 
 /* Boot order for distro boot */
diff --git a/include/configs/kontron-sl-mx8mm.h b/include/configs/kontron-sl-mx8mm.h
index d80238bd02f2..eee3d2ddb037 100644
--- a/include/configs/kontron-sl-mx8mm.h
+++ b/include/configs/kontron-sl-mx8mm.h
@@ -25,8 +25,8 @@
 /* Board and environment settings */
 
 #ifdef CONFIG_USB_EHCI_HCD
-#define CONFIG_MXC_USB_PORTSC		(PORT_PTS_UTMI | PORT_PTS_PTW)
-#define CONFIG_MXC_USB_FLAGS		0
+#define CFG_MXC_USB_PORTSC		(PORT_PTS_UTMI | PORT_PTS_PTW)
+#define CFG_MXC_USB_FLAGS		0
 #endif
 
 /* GUID for capsule updatable firmware image */
diff --git a/include/configs/kp_imx53.h b/include/configs/kp_imx53.h
index da8a67b4ab63..6e383cbe75f7 100644
--- a/include/configs/kp_imx53.h
+++ b/include/configs/kp_imx53.h
@@ -11,8 +11,8 @@
 #include <linux/sizes.h>
 
 /* USB Configs */
-#define CONFIG_MXC_USB_PORTSC	(PORT_PTS_UTMI | PORT_PTS_PTW)
-#define CONFIG_MXC_USB_FLAGS	0
+#define CFG_MXC_USB_PORTSC	(PORT_PTS_UTMI | PORT_PTS_PTW)
+#define CFG_MXC_USB_FLAGS	0
 
 /* Command definition */
 
diff --git a/include/configs/kp_imx6q_tpc.h b/include/configs/kp_imx6q_tpc.h
index 99321b320f5f..1aa4b8ab5987 100644
--- a/include/configs/kp_imx6q_tpc.h
+++ b/include/configs/kp_imx6q_tpc.h
@@ -18,8 +18,8 @@
 
 /* USB Configs */
 #ifdef CONFIG_CMD_USB
-#define CONFIG_MXC_USB_PORTSC		(PORT_PTS_UTMI | PORT_PTS_PTW)
-#define CONFIG_MXC_USB_FLAGS		0
+#define CFG_MXC_USB_PORTSC		(PORT_PTS_UTMI | PORT_PTS_PTW)
+#define CFG_MXC_USB_FLAGS		0
 #endif
 
 #define CFG_EXTRA_ENV_SETTINGS	\
diff --git a/include/configs/liteboard.h b/include/configs/liteboard.h
index 63e5dbfab775..5811059c8e2b 100644
--- a/include/configs/liteboard.h
+++ b/include/configs/liteboard.h
@@ -95,8 +95,8 @@
 
 /* USB Configs */
 #ifdef CONFIG_CMD_USB
-#define CONFIG_MXC_USB_PORTSC  (PORT_PTS_UTMI | PORT_PTS_PTW)
-#define CONFIG_MXC_USB_FLAGS   0
+#define CFG_MXC_USB_PORTSC  (PORT_PTS_UTMI | PORT_PTS_PTW)
+#define CFG_MXC_USB_FLAGS   0
 #endif
 
 #ifdef CONFIG_CMD_NET
diff --git a/include/configs/m53menlo.h b/include/configs/m53menlo.h
index 9aac5677fb75..1ecbba1b58ff 100644
--- a/include/configs/m53menlo.h
+++ b/include/configs/m53menlo.h
@@ -70,9 +70,9 @@
  * USB
  */
 #ifdef CONFIG_CMD_USB
-#define CONFIG_MXC_USB_PORT		1
-#define CONFIG_MXC_USB_PORTSC		(PORT_PTS_UTMI | PORT_PTS_PTW)
-#define CONFIG_MXC_USB_FLAGS		0
+#define CFG_MXC_USB_PORT		1
+#define CFG_MXC_USB_PORTSC		(PORT_PTS_UTMI | PORT_PTS_PTW)
+#define CFG_MXC_USB_FLAGS		0
 #endif
 
 /* LVDS display */
diff --git a/include/configs/meerkat96.h b/include/configs/meerkat96.h
index 9e480fe0558e..6ffc1282411a 100644
--- a/include/configs/meerkat96.h
+++ b/include/configs/meerkat96.h
@@ -24,6 +24,6 @@
 /* Environment configs */
 
 /* USB configs */
-#define CONFIG_MXC_USB_PORTSC		(PORT_PTS_UTMI | PORT_PTS_PTW)
+#define CFG_MXC_USB_PORTSC		(PORT_PTS_UTMI | PORT_PTS_PTW)
 
 #endif
diff --git a/include/configs/mx51evk.h b/include/configs/mx51evk.h
index 123b7a533b17..dff54d04a678 100644
--- a/include/configs/mx51evk.h
+++ b/include/configs/mx51evk.h
@@ -33,9 +33,9 @@
 #define CFG_SYS_FSL_ESDHC_ADDR	MMC_SDHC1_BASE_ADDR
 
 /* USB Configs */
-#define CONFIG_MXC_USB_PORT	1
-#define CONFIG_MXC_USB_PORTSC	PORT_PTS_ULPI
-#define CONFIG_MXC_USB_FLAGS	MXC_EHCI_POWER_PINS_ENABLED
+#define CFG_MXC_USB_PORT	1
+#define CFG_MXC_USB_PORTSC	PORT_PTS_ULPI
+#define CFG_MXC_USB_FLAGS	MXC_EHCI_POWER_PINS_ENABLED
 
 /* Framebuffer and LCD */
 
diff --git a/include/configs/mx53cx9020.h b/include/configs/mx53cx9020.h
index 1a3ec6e0cdb8..e995776d30d5 100644
--- a/include/configs/mx53cx9020.h
+++ b/include/configs/mx53cx9020.h
@@ -23,9 +23,9 @@
 
 
 /* USB Configs */
-#define CONFIG_MXC_USB_PORT	1
-#define CONFIG_MXC_USB_PORTSC	(PORT_PTS_UTMI | PORT_PTS_PTW)
-#define CONFIG_MXC_USB_FLAGS	0
+#define CFG_MXC_USB_PORT	1
+#define CFG_MXC_USB_PORTSC	(PORT_PTS_UTMI | PORT_PTS_PTW)
+#define CFG_MXC_USB_FLAGS	0
 
 /* Command definition */
 
diff --git a/include/configs/mx53loco.h b/include/configs/mx53loco.h
index d87f9e942c51..7398804e6b54 100644
--- a/include/configs/mx53loco.h
+++ b/include/configs/mx53loco.h
@@ -17,9 +17,9 @@
 #define CFG_SYS_FSL_ESDHC_ADDR	0
 
 /* USB Configs */
-#define CONFIG_MXC_USB_PORT	1
-#define CONFIG_MXC_USB_PORTSC	(PORT_PTS_UTMI | PORT_PTS_PTW)
-#define CONFIG_MXC_USB_FLAGS	0
+#define CFG_MXC_USB_PORT	1
+#define CFG_MXC_USB_PORTSC	(PORT_PTS_UTMI | PORT_PTS_PTW)
+#define CFG_MXC_USB_FLAGS	0
 
 /* PMIC Controller */
 #define CFG_SYS_DIALOG_PMIC_I2C_ADDR	0x48
diff --git a/include/configs/mx53ppd.h b/include/configs/mx53ppd.h
index 94d2191af91d..df65dbeea41c 100644
--- a/include/configs/mx53ppd.h
+++ b/include/configs/mx53ppd.h
@@ -12,9 +12,9 @@
 #include <asm/arch/imx-regs.h>
 
 /* USB Configs */
-#define CONFIG_MXC_USB_PORT	1
-#define CONFIG_MXC_USB_PORTSC	(PORT_PTS_UTMI | PORT_PTS_PTW)
-#define CONFIG_MXC_USB_FLAGS	0
+#define CFG_MXC_USB_PORT	1
+#define CFG_MXC_USB_PORTSC	(PORT_PTS_UTMI | PORT_PTS_PTW)
+#define CFG_MXC_USB_FLAGS	0
 
 /* Command definition */
 
diff --git a/include/configs/mx6cuboxi.h b/include/configs/mx6cuboxi.h
index 871d52c343f5..f0d6405d3012 100644
--- a/include/configs/mx6cuboxi.h
+++ b/include/configs/mx6cuboxi.h
@@ -15,7 +15,7 @@
 #define CFG_SYS_FSL_ESDHC_ADDR	USDHC2_BASE_ADDR
 
 /* USB */
-#define CONFIG_MXC_USB_PORTSC		(PORT_PTS_UTMI | PORT_PTS_PTW)
+#define CFG_MXC_USB_PORTSC		(PORT_PTS_UTMI | PORT_PTS_PTW)
 
 /* Command definition */
 
diff --git a/include/configs/mx6memcal.h b/include/configs/mx6memcal.h
index b664962a26a5..f2edd13eb881 100644
--- a/include/configs/mx6memcal.h
+++ b/include/configs/mx6memcal.h
@@ -31,6 +31,6 @@
 #define CFG_SYS_INIT_RAM_ADDR       IRAM_BASE_ADDR
 #define CFG_SYS_INIT_RAM_SIZE       IRAM_SIZE
 
-#define CONFIG_MXC_USB_PORTSC	PORT_PTS_UTMI
+#define CFG_MXC_USB_PORTSC	PORT_PTS_UTMI
 
 #endif	       /* __CONFIG_H */
diff --git a/include/configs/mx6sabreauto.h b/include/configs/mx6sabreauto.h
index 274c14bbd383..da98139d7d77 100644
--- a/include/configs/mx6sabreauto.h
+++ b/include/configs/mx6sabreauto.h
@@ -12,8 +12,8 @@
 #define CONSOLE_DEV		"ttymxc3"
 
 /* USB Configs */
-#define CONFIG_MXC_USB_PORTSC	(PORT_PTS_UTMI | PORT_PTS_PTW)
-#define CONFIG_MXC_USB_FLAGS	0
+#define CFG_MXC_USB_PORTSC	(PORT_PTS_UTMI | PORT_PTS_PTW)
+#define CFG_MXC_USB_FLAGS	0
 
 #define CFG_SYS_I2C_PCA953X_WIDTH	{ {0x30, 8}, {0x32, 8}, {0x34, 8} }
 
diff --git a/include/configs/mx6sabresd.h b/include/configs/mx6sabresd.h
index af9978e02c89..2b028e3aa2b1 100644
--- a/include/configs/mx6sabresd.h
+++ b/include/configs/mx6sabresd.h
@@ -29,8 +29,8 @@
 
 /* USB Configs */
 #ifdef CONFIG_CMD_USB
-#define CONFIG_MXC_USB_PORTSC		(PORT_PTS_UTMI | PORT_PTS_PTW)
-#define CONFIG_MXC_USB_FLAGS		0
+#define CFG_MXC_USB_PORTSC		(PORT_PTS_UTMI | PORT_PTS_PTW)
+#define CFG_MXC_USB_FLAGS		0
 #endif
 
 #endif                         /* __MX6SABRESD_CONFIG_H */
diff --git a/include/configs/mx6slevk.h b/include/configs/mx6slevk.h
index f6d9ac20821f..39c8ef060c7f 100644
--- a/include/configs/mx6slevk.h
+++ b/include/configs/mx6slevk.h
@@ -90,8 +90,8 @@
 
 /* USB Configs */
 #ifdef CONFIG_CMD_USB
-#define CONFIG_MXC_USB_PORTSC		(PORT_PTS_UTMI | PORT_PTS_PTW)
-#define CONFIG_MXC_USB_FLAGS		0
+#define CFG_MXC_USB_PORTSC		(PORT_PTS_UTMI | PORT_PTS_PTW)
+#define CFG_MXC_USB_FLAGS		0
 #endif
 
 #define CFG_SYS_FSL_USDHC_NUM	3
diff --git a/include/configs/mx6sllevk.h b/include/configs/mx6sllevk.h
index aec3e51bff87..290996b51bc7 100644
--- a/include/configs/mx6sllevk.h
+++ b/include/configs/mx6sllevk.h
@@ -94,7 +94,7 @@
 
 /* USB Configs */
 #ifdef CONFIG_CMD_USB
-#define CONFIG_MXC_USB_PORTSC		(PORT_PTS_UTMI | PORT_PTS_PTW)
+#define CFG_MXC_USB_PORTSC		(PORT_PTS_UTMI | PORT_PTS_PTW)
 #endif
 
 #include <linux/stringify.h>
diff --git a/include/configs/mx6sxsabreauto.h b/include/configs/mx6sxsabreauto.h
index 3d0f6e452d65..1c14a6beb0ac 100644
--- a/include/configs/mx6sxsabreauto.h
+++ b/include/configs/mx6sxsabreauto.h
@@ -96,8 +96,8 @@
 #define CFG_FEC_MXC_PHYADDR          0x0
 
 #ifdef CONFIG_CMD_USB
-#define CONFIG_MXC_USB_PORTSC  (PORT_PTS_UTMI | PORT_PTS_PTW)
-#define CONFIG_MXC_USB_FLAGS   0
+#define CFG_MXC_USB_PORTSC  (PORT_PTS_UTMI | PORT_PTS_PTW)
+#define CFG_MXC_USB_FLAGS   0
 #endif
 
 #define CFG_SYS_FSL_USDHC_NUM	2
diff --git a/include/configs/mx6sxsabresd.h b/include/configs/mx6sxsabresd.h
index 8c39e6d6cf4d..8b02c3b63101 100644
--- a/include/configs/mx6sxsabresd.h
+++ b/include/configs/mx6sxsabresd.h
@@ -118,8 +118,8 @@
 #define CFG_FEC_MXC_PHYADDR          0x1
 
 #ifdef CONFIG_CMD_USB
-#define CONFIG_MXC_USB_PORTSC  (PORT_PTS_UTMI | PORT_PTS_PTW)
-#define CONFIG_MXC_USB_FLAGS   0
+#define CFG_MXC_USB_PORTSC  (PORT_PTS_UTMI | PORT_PTS_PTW)
+#define CFG_MXC_USB_FLAGS   0
 #endif
 
 #ifdef CONFIG_CMD_PCI
diff --git a/include/configs/mx6ul_14x14_evk.h b/include/configs/mx6ul_14x14_evk.h
index 3f8a90b626d1..635ae78abcb5 100644
--- a/include/configs/mx6ul_14x14_evk.h
+++ b/include/configs/mx6ul_14x14_evk.h
@@ -116,8 +116,8 @@
 
 /* USB Configs */
 #ifdef CONFIG_CMD_USB
-#define CONFIG_MXC_USB_PORTSC  (PORT_PTS_UTMI | PORT_PTS_PTW)
-#define CONFIG_MXC_USB_FLAGS   0
+#define CFG_MXC_USB_PORTSC  (PORT_PTS_UTMI | PORT_PTS_PTW)
+#define CFG_MXC_USB_FLAGS   0
 #endif
 
 #ifdef CONFIG_CMD_NET
diff --git a/include/configs/mx7dsabresd.h b/include/configs/mx7dsabresd.h
index 9c938f04e93c..94bee75fdea5 100644
--- a/include/configs/mx7dsabresd.h
+++ b/include/configs/mx7dsabresd.h
@@ -99,6 +99,6 @@
 #endif
 
 /* USB Configs */
-#define CONFIG_MXC_USB_PORTSC  (PORT_PTS_UTMI | PORT_PTS_PTW)
+#define CFG_MXC_USB_PORTSC  (PORT_PTS_UTMI | PORT_PTS_PTW)
 
 #endif	/* __CONFIG_H */
diff --git a/include/configs/mx7ulp_com.h b/include/configs/mx7ulp_com.h
index 5ee5129801d2..a310c64e7948 100644
--- a/include/configs/mx7ulp_com.h
+++ b/include/configs/mx7ulp_com.h
@@ -51,5 +51,5 @@
 #define CFG_SYS_INIT_RAM_ADDR	IRAM_BASE_ADDR
 #define CFG_SYS_INIT_RAM_SIZE	SZ_256K
 
-#define CONFIG_MXC_USB_PORTSC		(PORT_PTS_UTMI | PORT_PTS_PTW)
+#define CFG_MXC_USB_PORTSC		(PORT_PTS_UTMI | PORT_PTS_PTW)
 #endif	/* __CONFIG_H */
diff --git a/include/configs/mys_6ulx.h b/include/configs/mys_6ulx.h
index 0c0235b42984..2571098d06c6 100644
--- a/include/configs/mys_6ulx.h
+++ b/include/configs/mys_6ulx.h
@@ -30,8 +30,8 @@
 #define CFG_SYS_NAND_BASE		0x40000000
 
 /* USB Configs */
-#define CONFIG_MXC_USB_PORTSC		(PORT_PTS_UTMI | PORT_PTS_PTW)
-#define CONFIG_MXC_USB_FLAGS		0
+#define CFG_MXC_USB_PORTSC		(PORT_PTS_UTMI | PORT_PTS_PTW)
+#define CFG_MXC_USB_FLAGS		0
 
 #define CFG_EXTRA_ENV_SETTINGS \
 	"console=ttymxc0,115200n8\0" \
diff --git a/include/configs/nitrogen6x.h b/include/configs/nitrogen6x.h
index 5625771bad14..c9c599d07621 100644
--- a/include/configs/nitrogen6x.h
+++ b/include/configs/nitrogen6x.h
@@ -21,8 +21,8 @@
 #define CFG_FEC_MXC_PHYADDR		6
 
 /* USB Configs */
-#define CONFIG_MXC_USB_PORTSC	(PORT_PTS_UTMI | PORT_PTS_PTW)
-#define CONFIG_MXC_USB_FLAGS	0
+#define CFG_MXC_USB_PORTSC	(PORT_PTS_UTMI | PORT_PTS_PTW)
+#define CFG_MXC_USB_FLAGS	0
 
 #ifdef CONFIG_CMD_MMC
 #define DISTRO_BOOT_DEV_MMC(func) func(MMC, mmc, 0) func(MMC, mmc, 1)
diff --git a/include/configs/novena.h b/include/configs/novena.h
index 7243549b68d8..dc5b04312905 100644
--- a/include/configs/novena.h
+++ b/include/configs/novena.h
@@ -53,8 +53,8 @@
 
 /* USB Configs */
 #ifdef CONFIG_CMD_USB
-#define CONFIG_MXC_USB_PORTSC		(PORT_PTS_UTMI | PORT_PTS_PTW)
-#define CONFIG_MXC_USB_FLAGS		0
+#define CFG_MXC_USB_PORTSC		(PORT_PTS_UTMI | PORT_PTS_PTW)
+#define CFG_MXC_USB_FLAGS		0
 #endif
 
 /* Extra U-Boot environment. */
diff --git a/include/configs/npi_imx6ull.h b/include/configs/npi_imx6ull.h
index 24d7b0c26e86..5f933391cc01 100644
--- a/include/configs/npi_imx6ull.h
+++ b/include/configs/npi_imx6ull.h
@@ -29,8 +29,8 @@
 #define CFG_SYS_NAND_BASE		0x40000000
 
 /* USB Configs */
-#define CONFIG_MXC_USB_PORTSC		(PORT_PTS_UTMI | PORT_PTS_PTW)
-#define CONFIG_MXC_USB_FLAGS		0
+#define CFG_MXC_USB_PORTSC		(PORT_PTS_UTMI | PORT_PTS_PTW)
+#define CFG_MXC_USB_FLAGS		0
 
 #ifdef CONFIG_CMD_NET
 #define CFG_FEC_MXC_PHYADDR		0x1
diff --git a/include/configs/o4-imx6ull-nano.h b/include/configs/o4-imx6ull-nano.h
index 0e1083a2130c..9050da8738b1 100644
--- a/include/configs/o4-imx6ull-nano.h
+++ b/include/configs/o4-imx6ull-nano.h
@@ -12,7 +12,7 @@
 #define CFG_SYS_INIT_RAM_SIZE	IRAM_SIZE
 
 #if IS_ENABLED(CONFIG_CMD_USB)
-#	define CONFIG_MXC_USB_PORTSC		(PORT_PTS_UTMI | PORT_PTS_PTW)
+#	define CFG_MXC_USB_PORTSC		(PORT_PTS_UTMI | PORT_PTS_PTW)
 #endif /* CONFIG_CMD_USB */
 
 #define CFG_EXTRA_ENV_SETTINGS \
diff --git a/include/configs/opos6uldev.h b/include/configs/opos6uldev.h
index 459134b93f83..1edb1826c4e8 100644
--- a/include/configs/opos6uldev.h
+++ b/include/configs/opos6uldev.h
@@ -19,8 +19,8 @@
 
 /* USB */
 #ifdef CONFIG_USB_EHCI_MX6
-#define CONFIG_MXC_USB_PORTSC		(PORT_PTS_UTMI | PORT_PTS_PTW)
-#define CONFIG_MXC_USB_FLAGS		0
+#define CFG_MXC_USB_PORTSC		(PORT_PTS_UTMI | PORT_PTS_PTW)
+#define CFG_MXC_USB_FLAGS		0
 #endif
 
 /* LCD */
diff --git a/include/configs/pcl063.h b/include/configs/pcl063.h
index e8c48cf83652..38dcee053596 100644
--- a/include/configs/pcl063.h
+++ b/include/configs/pcl063.h
@@ -42,8 +42,8 @@
 #define CFG_SYS_NAND_BASE		0x40000000
 
 /* USB Configs */
-#define CONFIG_MXC_USB_PORTSC		(PORT_PTS_UTMI | PORT_PTS_PTW)
-#define CONFIG_MXC_USB_FLAGS		0
+#define CFG_MXC_USB_PORTSC		(PORT_PTS_UTMI | PORT_PTS_PTW)
+#define CFG_MXC_USB_FLAGS		0
 
 #define CFG_EXTRA_ENV_SETTINGS \
 	"console=ttymxc0,115200n8\0" \
diff --git a/include/configs/pcl063_ull.h b/include/configs/pcl063_ull.h
index bd04268a3ef3..d742201ce43b 100644
--- a/include/configs/pcl063_ull.h
+++ b/include/configs/pcl063_ull.h
@@ -44,8 +44,8 @@
 #define CFG_SYS_NAND_BASE		0x40000000
 
 /* USB Configs */
-#define CONFIG_MXC_USB_PORTSC		(PORT_PTS_UTMI | PORT_PTS_PTW)
-#define CONFIG_MXC_USB_FLAGS		0
+#define CFG_MXC_USB_PORTSC		(PORT_PTS_UTMI | PORT_PTS_PTW)
+#define CFG_MXC_USB_FLAGS		0
 
 #define ENV_MMC \
 	"mmcdev=" __stringify(MMC_ROOTFS_DEV) "\0" \
diff --git a/include/configs/pico-imx6.h b/include/configs/pico-imx6.h
index a1d0dd93c526..d806d7d9c57d 100644
--- a/include/configs/pico-imx6.h
+++ b/include/configs/pico-imx6.h
@@ -16,8 +16,8 @@
 #define CFG_SYS_FSL_ESDHC_ADDR	USDHC3_BASE_ADDR
 
 /* USB Configs */
-#define CONFIG_MXC_USB_PORTSC		(PORT_PTS_UTMI | PORT_PTS_PTW)
-#define CONFIG_MXC_USB_FLAGS		0
+#define CFG_MXC_USB_PORTSC		(PORT_PTS_UTMI | PORT_PTS_PTW)
+#define CFG_MXC_USB_FLAGS		0
 
 #define DFU_DEFAULT_POLL_TIMEOUT 300
 
diff --git a/include/configs/pico-imx6ul.h b/include/configs/pico-imx6ul.h
index 64e0a5564810..4caa82337583 100644
--- a/include/configs/pico-imx6ul.h
+++ b/include/configs/pico-imx6ul.h
@@ -23,8 +23,8 @@
 #define CFG_SYS_FSL_ESDHC_ADDR	USDHC1_BASE_ADDR
 
 /* USB Configs */
-#define CONFIG_MXC_USB_PORTSC		(PORT_PTS_UTMI | PORT_PTS_PTW)
-#define CONFIG_MXC_USB_FLAGS		0
+#define CFG_MXC_USB_PORTSC		(PORT_PTS_UTMI | PORT_PTS_PTW)
+#define CFG_MXC_USB_FLAGS		0
 
 #define DFU_DEFAULT_POLL_TIMEOUT 300
 
diff --git a/include/configs/pico-imx7d.h b/include/configs/pico-imx7d.h
index dbeaeea77f7d..fd8962e9f751 100644
--- a/include/configs/pico-imx7d.h
+++ b/include/configs/pico-imx7d.h
@@ -107,7 +107,7 @@
 #define CFG_SYS_FSL_USDHC_NUM		2
 
 /* USB Configs */
-#define CONFIG_MXC_USB_PORTSC			(PORT_PTS_UTMI | PORT_PTS_PTW)
-#define CONFIG_MXC_USB_FLAGS			0
+#define CFG_MXC_USB_PORTSC			(PORT_PTS_UTMI | PORT_PTS_PTW)
+#define CFG_MXC_USB_FLAGS			0
 
 #endif
diff --git a/include/configs/somlabs_visionsom_6ull.h b/include/configs/somlabs_visionsom_6ull.h
index 3418d4e2b559..041a83b057d4 100644
--- a/include/configs/somlabs_visionsom_6ull.h
+++ b/include/configs/somlabs_visionsom_6ull.h
@@ -61,8 +61,8 @@
 
 /* USB Configs */
 #ifdef CONFIG_CMD_USB
-#define CONFIG_MXC_USB_PORTSC  (PORT_PTS_UTMI | PORT_PTS_PTW)
-#define CONFIG_MXC_USB_FLAGS   0
+#define CFG_MXC_USB_PORTSC  (PORT_PTS_UTMI | PORT_PTS_PTW)
+#define CFG_MXC_USB_FLAGS   0
 #endif
 
 #ifdef CONFIG_CMD_NET
diff --git a/include/configs/tbs2910.h b/include/configs/tbs2910.h
index 9b396e6e73b0..535859792d3b 100644
--- a/include/configs/tbs2910.h
+++ b/include/configs/tbs2910.h
@@ -27,7 +27,7 @@
 
 /* USB */
 #ifdef CONFIG_CMD_USB
-#define CONFIG_MXC_USB_PORTSC		(PORT_PTS_UTMI | PORT_PTS_PTW)
+#define CFG_MXC_USB_PORTSC		(PORT_PTS_UTMI | PORT_PTS_PTW)
 #endif /* CONFIG_CMD_USB      */
 
 #define CFG_EXTRA_ENV_SETTINGS \
diff --git a/include/configs/tqma6.h b/include/configs/tqma6.h
index cb5f7fc25af9..af5a474cf31e 100644
--- a/include/configs/tqma6.h
+++ b/include/configs/tqma6.h
@@ -39,7 +39,7 @@
 #define CFG_SYS_FSL_ESDHC_ADDR	0
 
 /* USB Configs */
-#define CONFIG_MXC_USB_PORTSC	(PORT_PTS_UTMI | PORT_PTS_PTW)
+#define CFG_MXC_USB_PORTSC	(PORT_PTS_UTMI | PORT_PTS_PTW)
 
 #if defined(CONFIG_TQMA6X_MMC_BOOT)
 
diff --git a/include/configs/usbarmory.h b/include/configs/usbarmory.h
index 00b45cc3d2ad..27e61f5b8f46 100644
--- a/include/configs/usbarmory.h
+++ b/include/configs/usbarmory.h
@@ -23,9 +23,9 @@
 #define CFG_SYS_FSL_ESDHC_ADDR	0
 
 /* USB */
-#define CONFIG_MXC_USB_PORT	1
-#define CONFIG_MXC_USB_PORTSC	(PORT_PTS_UTMI | PORT_PTS_PTW)
-#define CONFIG_MXC_USB_FLAGS	0
+#define CFG_MXC_USB_PORT	1
+#define CFG_MXC_USB_PORTSC	(PORT_PTS_UTMI | PORT_PTS_PTW)
+#define CFG_MXC_USB_FLAGS	0
 
 /* Linux boot */
 
diff --git a/include/configs/verdin-imx8mm.h b/include/configs/verdin-imx8mm.h
index 27d7efb883de..8cb1f1aff353 100644
--- a/include/configs/verdin-imx8mm.h
+++ b/include/configs/verdin-imx8mm.h
@@ -67,6 +67,6 @@
 #define PHYS_SDRAM_SIZE			SZ_2G /* 2GB DDR */
 
 /* USB Configs */
-#define CONFIG_MXC_USB_PORTSC	(PORT_PTS_UTMI | PORT_PTS_PTW)
+#define CFG_MXC_USB_PORTSC	(PORT_PTS_UTMI | PORT_PTS_PTW)
 
 #endif /* __VERDIN_IMX8MM_H */
diff --git a/include/configs/vining_2000.h b/include/configs/vining_2000.h
index 7954ed9910c7..6db68c1e7001 100644
--- a/include/configs/vining_2000.h
+++ b/include/configs/vining_2000.h
@@ -36,8 +36,8 @@
 /* Network */
 #define CFG_FEC_MXC_PHYADDR          0x0
 
-#define CONFIG_MXC_USB_PORTSC  (PORT_PTS_UTMI | PORT_PTS_PTW)
-#define CONFIG_MXC_USB_FLAGS   0
+#define CFG_MXC_USB_PORTSC  (PORT_PTS_UTMI | PORT_PTS_PTW)
+#define CFG_MXC_USB_FLAGS   0
 
 #ifdef CONFIG_CMD_PCI
 #define CONFIG_PCIE_IMX_PERST_GPIO	IMX_GPIO_NR(4, 6)
diff --git a/include/configs/wandboard.h b/include/configs/wandboard.h
index 8853bcd7be28..7b8c5cbe7a8f 100644
--- a/include/configs/wandboard.h
+++ b/include/configs/wandboard.h
@@ -17,8 +17,8 @@
 #define CFG_SYS_FSL_ESDHC_ADDR	0
 
 /* USB Configs */
-#define CONFIG_MXC_USB_PORTSC		(PORT_PTS_UTMI | PORT_PTS_PTW)
-#define CONFIG_MXC_USB_FLAGS		0
+#define CFG_MXC_USB_PORTSC		(PORT_PTS_UTMI | PORT_PTS_PTW)
+#define CFG_MXC_USB_FLAGS		0
 
 #define CFG_EXTRA_ENV_SETTINGS \
 	"console=ttymxc0\0" \
diff --git a/include/configs/warp7.h b/include/configs/warp7.h
index 0826e0bbe025..5d2956a5963c 100644
--- a/include/configs/warp7.h
+++ b/include/configs/warp7.h
@@ -93,7 +93,7 @@
 #define CFG_SYS_FSL_USDHC_NUM	1
 
 
-#define CONFIG_MXC_USB_PORTSC		(PORT_PTS_UTMI | PORT_PTS_PTW)
+#define CFG_MXC_USB_PORTSC		(PORT_PTS_UTMI | PORT_PTS_PTW)
 
 /* USB Device Firmware Update support */
 #define DFU_DEFAULT_POLL_TIMEOUT	300
diff --git a/include/configs/xpress.h b/include/configs/xpress.h
index c8ae047e62c3..a2aa31008ec9 100644
--- a/include/configs/xpress.h
+++ b/include/configs/xpress.h
@@ -28,8 +28,8 @@
 /* Environment is in stored in the eMMC boot partition */
 
 /* USB Configs */
-#define CONFIG_MXC_USB_PORTSC		(PORT_PTS_UTMI | PORT_PTS_PTW)
-#define CONFIG_MXC_USB_FLAGS		0
+#define CFG_MXC_USB_PORTSC		(PORT_PTS_UTMI | PORT_PTS_PTW)
+#define CFG_MXC_USB_FLAGS		0
 
 #define CFG_FEC_ENET_DEV		0
 #define CFG_FEC_MXC_PHYADDR          0x0
-- 
2.25.1


  parent reply	other threads:[~2022-12-04 15:23 UTC|newest]

Thread overview: 537+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-11-19 23:45 [PATCH 01/38] power: pmic: Guard non-DM_PMIC drivers with a check for POWER_LEGACY Tom Rini
2022-11-19 23:45 ` [PATCH 02/38] Convert CONFIG_FSL_CADMUS to Kconfig Tom Rini
2022-11-19 23:45 ` [PATCH 03/38] Convert CONFIG_FSL_DEVICE_DISABLE " Tom Rini
2022-11-19 23:45 ` [PATCH 04/38] Convert CONFIG_FSL_IIM " Tom Rini
2022-11-19 23:45 ` [PATCH 05/38] Convert CONFIG_FSL_LBC " Tom Rini
2022-11-19 23:45 ` [PATCH 06/38] Convert CONFIG_FSL_SERDES " Tom Rini
2022-11-19 23:45 ` [PATCH 07/38] Convert CONFIG_HIKEY_GPIO et al " Tom Rini
2022-11-19 23:45 ` [PATCH 08/38] Convert CONFIG_POWER_LTC3676 " Tom Rini
2022-11-19 23:45 ` [PATCH 09/38] Convert CONFIG_HWCONFIG " Tom Rini
2022-11-19 23:45 ` [PATCH 10/38] arm920t: Remove unused imx code Tom Rini
2022-11-19 23:45 ` [PATCH 11/38] pwm: imx: Remove unused references to CONFIG_IMX6_PWM_PER_CLK Tom Rini
2022-11-19 23:45 ` [PATCH 12/38] Convert CONFIG_IMX_VIDEO_SKIP et al to Kconfig Tom Rini
2022-11-19 23:45 ` [PATCH 13/38] mpc8548cds: Migrate CONFIG_INTERRUPTS " Tom Rini
2022-11-19 23:45 ` [PATCH 14/38] Convert CONFIG_IODELAY_RECALIBRATION " Tom Rini
2022-11-19 23:45 ` [PATCH 15/38] Convert CONFIG_IOMUX_SHARE_CONF_REG et al " Tom Rini
2022-11-19 23:45 ` [PATCH 16/38] sandbox: Move CONFIG_IO_TRACE " Tom Rini
2022-11-21 22:51   ` Simon Glass
2022-11-19 23:45 ` [PATCH 17/38] arm: lpc32xx: Remove unused hsuart driver Tom Rini
2022-11-19 23:45 ` [PATCH 18/38] arm: ls102xa: Migrate LS102XA_STREAM_ID Tom Rini
2022-11-19 23:45 ` [PATCH 19/38] arm: samsung: Move CONFIG_MISC_COMMON to Kconfig Tom Rini
2022-11-21 22:51   ` Simon Glass
2022-11-25  6:59     ` Minkyu Kang
2022-11-19 23:45 ` [PATCH 20/38] arm: Remove unused mx27 code Tom Rini
2022-11-19 23:45 ` [PATCH 21/38] Convert CONFIG_MXS_OCOTP to Kconfig Tom Rini
2022-11-19 23:45 ` [PATCH 22/38] Convert CONFIG_NAND_KMETER1 et al " Tom Rini
2022-11-19 23:45 ` [PATCH 23/38] Convert CONFIG_PCA953X " Tom Rini
2022-11-19 23:45 ` [PATCH 24/38] Convert CONFIG_RTC_DS1337 et al " Tom Rini
2022-11-19 23:45 ` [PATCH 25/38] Convert CONFIG_SH_GPIO_PFC " Tom Rini
2022-11-19 23:45 ` [PATCH 26/38] Convert CONFIG_SMSC_LPC47M " Tom Rini
2022-11-19 23:45 ` [PATCH 27/38] Convert CONFIG_SPD_EEPROM " Tom Rini
2022-11-19 23:45 ` [PATCH 28/38] Convert CONFIG_TPS6586X_POWER et al " Tom Rini
2022-11-19 23:45 ` [PATCH 29/38] Convert CONFIG_TEGRA_CLOCK_SCALING " Tom Rini
2022-11-19 23:45 ` [PATCH 30/38] Nokia RX-51: Migrate legacy USB device options " Tom Rini
2022-11-19 23:45 ` [PATCH 31/38] Convert CONFIG_USB_GADGET_AT91 " Tom Rini
2022-11-19 23:45 ` [PATCH 32/38] Convert CONFIG_VSC7385_ENET et al " Tom Rini
2022-11-19 23:45 ` [PATCH 33/38] net: ftmac100: Remove non-DM_ETH code Tom Rini
2022-11-26 22:47   ` Ramon Fried
2022-11-19 23:45 ` [PATCH 34/38] configs: Resync with savedefconfig Tom Rini
2022-11-19 23:45 ` [PATCH 35/38] scripts/config_whitelist.txt: Remove more referenced symbols Tom Rini
2022-11-21 22:51   ` Simon Glass
2022-11-19 23:45 ` [PATCH 36/38] sandbox: Rework how SDL is enabled / disabled Tom Rini
2022-11-21 22:51   ` Simon Glass
2022-11-19 23:45 ` [PATCH 37/38] post: Migrate to Kconfig Tom Rini
2022-11-21 22:51   ` Simon Glass
2022-11-21 22:57     ` Tom Rini
2022-11-22  0:20       ` Simon Glass
2022-11-19 23:45 ` [PATCH 38/38] m68k: Rename CONFIG_WATCHDOG_TIMEOUT to CONFIG_WATCHDOG_TIMEOUT_MSECS Tom Rini
2022-11-20 13:29   ` [000/241] Finish migration to Kconfig or CFG namespace Tom Rini
2022-11-20 13:29     ` [PoC 001/241] global: Migrate CONFIG_ARM_GIC_BASE_ADDRESS to CFG Tom Rini
2022-11-20 13:29     ` [PoC 002/241] global: Migrate CONFIG_BOARDDIR " Tom Rini
2022-11-20 13:29     ` [PoC 003/241] global: Migrate CONFIG_DFU_ALT " Tom Rini
2022-11-20 13:29     ` [PoC 004/241] global: Migrate CONFIG_DFU_ENV_SETTINGS " Tom Rini
2022-11-20 13:29     ` [PoC 005/241] global: Migrate CONFIG_DM9000_BASE " Tom Rini
2022-11-20 13:29     ` [PoC 006/241] global: Migrate CONFIG_DM9000_BYTE_SWAPPED " Tom Rini
2022-11-20 13:29     ` [PoC 007/241] global: Migrate CONFIG_DM9000_NO_SROM " Tom Rini
2022-11-20 13:29     ` [PoC 008/241] global: Migrate CONFIG_DM9000_USE_16BIT " Tom Rini
2022-11-20 13:30     ` [PoC 009/241] global: Migrate CONFIG_DW_WDT_CLOCK_KHZ " Tom Rini
2022-11-20 13:30     ` [PoC 010/241] global: Migrate CONFIG_ENV_FLAGS_LIST_STATIC " Tom Rini
2022-11-20 13:30     ` [PoC 011/241] global: Migrate CONFIG_ENV_IS_EMBEDDED " Tom Rini
2022-11-20 13:30     ` [PoC 012/241] global: Migrate CONFIG_ENV_SETTINGS_BUTTONS_AND_LEDS " Tom Rini
2022-11-20 13:30     ` [PoC 013/241] global: Migrate CONFIG_ENV_SETTINGS_NAND_V1 " Tom Rini
2022-11-20 13:30     ` [PoC 014/241] global: Migrate CONFIG_ENV_SETTINGS_NAND_V2 " Tom Rini
2022-11-20 13:30     ` [PoC 015/241] global: Migrate CONFIG_ENV_SETTINGS_V1 " Tom Rini
2022-11-20 13:30     ` [PoC 016/241] global: Migrate CONFIG_ENV_SETTINGS_V2 " Tom Rini
2022-11-20 13:30     ` [PoC 017/241] global: Migrate CONFIG_ENV_SROM_BANK " Tom Rini
2022-11-20 13:30     ` [PoC 018/241] global: Migrate CONFIG_ENV_TOTAL_SIZE " Tom Rini
2022-11-20 13:30     ` [PoC 019/241] global: Migrate CONFIG_ET1100_BASE " Tom Rini
2022-11-20 13:30     ` [PoC 020/241] global: Migrate CONFIG_ETHBASE " Tom Rini
2022-11-20 13:30     ` [PoC 021/241] global: Migrate CONFIG_EXTRA_ENV_SETTINGS " Tom Rini
2022-11-20 13:30     ` [PoC 022/241] global: Migrate CONFIG_FB_ADDR " Tom Rini
2022-11-20 13:30     ` [PoC 023/241] global: Migrate CONFIG_FDTADDR " Tom Rini
2022-11-20 13:30     ` [PoC 024/241] global: Migrate CONFIG_FDTFILE " Tom Rini
2022-11-20 13:30     ` [PoC 025/241] global: Migrate CONFIG_FEC_ENET_DEV " Tom Rini
2022-11-20 13:30     ` [PoC 026/241] global: Migrate CONFIG_FEC_FIXED_SPEED " Tom Rini
2022-11-20 13:30     ` [PoC 027/241] global: Migrate CONFIG_FEC_MXC_PHYADDR " Tom Rini
2022-11-20 13:30     ` [PoC 028/241] global: Migrate CONFIG_FLASH_BR_PRELIM " Tom Rini
2022-11-20 13:30     ` [PoC 029/241] global: Migrate CONFIG_FLASH_OR_PRELIM " Tom Rini
2022-11-20 13:30     ` [PoC 030/241] global: Migrate CONFIG_FLASH_SECTOR_SIZE " Tom Rini
2022-11-20 13:30     ` [PoC 031/241] global: Migrate CONFIG_FLASH_SHOW_PROGRESS " Tom Rini
2022-11-20 13:30     ` [PoC 032/241] global: Migrate CONFIG_FLASH_SPANSION_S29WS_N " Tom Rini
2022-11-20 13:30     ` [PoC 033/241] global: Migrate CONFIG_FLASH_VERIFY " Tom Rini
2022-11-20 13:30     ` [PoC 034/241] global: Migrate CONFIG_FM_PLAT_CLK_DIV " Tom Rini
2022-11-20 13:30     ` [PoC 035/241] global: Migrate CONFIG_FSL_CPLD " Tom Rini
2022-11-20 13:30     ` [PoC 036/241] global: Migrate CONFIG_FSL_ESDHC_PIN_MUX " Tom Rini
2022-11-20 13:30     ` [PoC 037/241] global: Migrate CONFIG_FSL_FM_10GEC_REGULAR_NOTATION " Tom Rini
2022-11-20 13:30     ` [PoC 038/241] global: Migrate CONFIG_FSL_ISBC_KEY_EXT " Tom Rini
2022-11-20 13:30     ` [PoC 039/241] global: Migrate CONFIG_FSL_PMIC_BITLEN " Tom Rini
2022-11-20 13:30     ` [PoC 040/241] global: Migrate CONFIG_FSL_PMIC_BUS " Tom Rini
2022-11-20 13:30     ` [PoC 041/241] global: Migrate CONFIG_FSL_PMIC_CLK " Tom Rini
2022-11-20 13:30     ` [PoC 042/241] global: Migrate CONFIG_FSL_PMIC_CS " Tom Rini
2022-11-20 13:30     ` [PoC 043/241] global: Migrate CONFIG_FSL_PMIC_MODE " Tom Rini
2022-11-20 13:30     ` [PoC 044/241] global: Migrate CONFIG_FSL_SDHC_V2_3 " Tom Rini
2022-11-20 13:30     ` [PoC 045/241] global: Migrate CONFIG_FSL_SERDES1 " Tom Rini
2022-11-20 13:30     ` [PoC 046/241] global: Migrate CONFIG_FSL_SERDES2 " Tom Rini
2022-11-20 13:30     ` [PoC 047/241] global: Migrate CONFIG_GATEWAYIP " Tom Rini
2022-11-20 13:30     ` [PoC 048/241] global: Migrate CONFIG_GMII " Tom Rini
2022-11-20 13:30     ` [PoC 049/241] global: Migrate CONFIG_G_DNL_THOR_PRODUCT_NUM " Tom Rini
2022-11-20 13:30     ` [PoC 050/241] global: Migrate CONFIG_G_DNL_THOR_VENDOR_NUM " Tom Rini
2022-11-20 13:30     ` [PoC 051/241] global: Migrate CONFIG_G_DNL_UMS_PRODUCT_NUM " Tom Rini
2022-11-20 13:30     ` [PoC 052/241] global: Migrate CONFIG_G_DNL_UMS_VENDOR_NUM " Tom Rini
2022-11-20 13:30     ` [PoC 053/241] global: Migrate CONFIG_HDMI_ENCODER_I2C_ADDR " Tom Rini
2022-11-20 13:30     ` [PoC 054/241] global: Migrate CONFIG_HOSTNAME " Tom Rini
2022-11-20 13:30     ` [PoC 055/241] global: Migrate CONFIG_HSMMC2_8BIT " Tom Rini
2022-11-20 13:30     ` [PoC 056/241] global: Migrate CONFIG_HW_ENV_SETTINGS " Tom Rini
2022-11-20 13:30     ` [PoC 057/241] global: Migrate CONFIG_I2C_ENV_EEPROM_BUS " Tom Rini
2022-11-20 13:30     ` [PoC 058/241] global: Migrate CONFIG_I2C_MULTI_BUS " Tom Rini
2022-11-20 13:30     ` [PoC 059/241] global: Migrate CONFIG_I2C_MVTWSI " Tom Rini
2022-11-20 13:30     ` [PoC 060/241] global: Migrate CONFIG_I2C_RTC_ADDR " Tom Rini
2022-11-20 13:30     ` [PoC 061/241] global: Migrate CONFIG_ICS307_REFCLK_HZ " Tom Rini
2022-11-20 13:30     ` [PoC 062/241] global: Migrate CONFIG_IMX6_PWM_PER_CLK " Tom Rini
2022-11-20 13:30     ` [PoC 063/241] global: Migrate CONFIG_IPADDR " Tom Rini
2022-11-20 13:30     ` [PoC 064/241] global: Migrate CONFIG_IRAM_BASE " Tom Rini
2022-11-20 13:30     ` [PoC 065/241] global: Migrate CONFIG_IRAM_END " Tom Rini
2022-11-20 13:30     ` [PoC 066/241] global: Migrate CONFIG_IRAM_SIZE " Tom Rini
2022-11-20 13:30     ` [PoC 067/241] global: Migrate CONFIG_IRAM_TOP " Tom Rini
2022-11-20 13:30     ` [PoC 068/241] global: Migrate CONFIG_KM_DEF_ARCH " Tom Rini
2022-11-20 13:31     ` [PoC 069/241] global: Migrate CONFIG_KM_DEF_BOOT_ARGS_CPU " Tom Rini
2022-11-20 13:31     ` [PoC 070/241] global: Migrate CONFIG_KM_DEF_ENV " Tom Rini
2022-11-20 13:31     ` [PoC 071/241] global: Migrate CONFIG_KM_DEV_ENV_FLASH_BOOT_UBI " Tom Rini
2022-11-20 13:31     ` [PoC 072/241] global: Migrate CONFIG_KM_ECC_MODE " Tom Rini
2022-11-20 13:31     ` [PoC 073/241] global: Migrate CONFIG_KM_NEW_ENV " Tom Rini
2022-11-20 13:31     ` [PoC 074/241] global: Migrate CONFIG_KM_UBI_LINUX_MTD " Tom Rini
2022-11-20 13:31     ` [PoC 075/241] global: Migrate CONFIG_KM_UBI_PARTITION_NAME_APP " Tom Rini
2022-11-20 13:31     ` [PoC 077/241] global: Migrate CONFIG_KM_UBI_PART_BOOT_OPTS " Tom Rini
2022-11-20 13:31     ` [PoC 078/241] global: Migrate CONFIG_KM_UIMAGE_NAME " Tom Rini
2022-11-20 13:31     ` [PoC 079/241] global: Migrate CONFIG_KSNET_CPSW_NUM_PORTS " Tom Rini
2022-11-20 13:31     ` [PoC 080/241] global: Migrate CONFIG_KSNET_MAC_ID_BASE " Tom Rini
2022-11-20 13:31     ` [PoC 081/241] global: Migrate CONFIG_KSNET_MDIO_PHY_CONFIG_ENABLE " Tom Rini
2022-11-20 13:31     ` [PoC 082/241] global: Migrate CONFIG_KSNET_NETCP_BASE " Tom Rini
2022-11-20 13:31     ` [PoC 083/241] global: Migrate CONFIG_KSNET_NETCP_V1_0 " Tom Rini
2022-11-20 13:31     ` [PoC 084/241] global: Migrate CONFIG_KSNET_NETCP_V1_5 " Tom Rini
2022-11-20 13:31     ` [PoC 085/241] global: Migrate CONFIG_KSNET_SERDES_LANES_PER_SGMII " Tom Rini
2022-11-20 13:31     ` [PoC 086/241] global: Migrate CONFIG_KSNET_SERDES_SGMII2_BASE " Tom Rini
2022-11-20 13:31     ` [PoC 087/241] global: Migrate CONFIG_KSNET_SERDES_SGMII_BASE " Tom Rini
2022-11-20 13:31     ` [PoC 088/241] global: Migrate CONFIG_L1_INIT_RAM " Tom Rini
2022-11-20 13:31     ` [PoC 089/241] global: Migrate CONFIG_L2_CACHE " Tom Rini
2022-11-20 13:31     ` [PoC 090/241] global: Migrate CONFIG_LEGACY_BOOTCMD_ENV " Tom Rini
2022-11-20 13:31     ` [PoC 091/241] global: Migrate CONFIG_LOWPOWER_ADDR " Tom Rini
2022-11-20 13:31     ` [PoC 092/241] global: Migrate CONFIG_LOWPOWER_FLAG " Tom Rini
2022-11-20 13:31     ` [PoC 093/241] global: Migrate CONFIG_LPC32XX_NAND_MLC_BUSY_DELAY " Tom Rini
2022-11-20 13:31     ` [PoC 094/241] global: Migrate CONFIG_LPC32XX_NAND_MLC_NAND_TA " Tom Rini
2022-11-20 13:31     ` [PoC 095/241] global: Migrate CONFIG_LPC32XX_NAND_MLC_RD_HIGH " Tom Rini
2022-11-20 13:31     ` [PoC 096/241] global: Migrate CONFIG_LPC32XX_NAND_MLC_RD_LOW " Tom Rini
2022-11-20 13:31     ` [PoC 097/241] global: Migrate CONFIG_LPC32XX_NAND_MLC_TCEA_DELAY " Tom Rini
2022-11-20 13:31     ` [PoC 098/241] global: Migrate CONFIG_LPC32XX_NAND_MLC_WR_HIGH " Tom Rini
2022-11-20 13:31     ` [PoC 099/241] global: Migrate CONFIG_LPC32XX_NAND_MLC_WR_LOW " Tom Rini
2022-11-20 13:31     ` [PoC 100/241] global: Migrate CONFIG_LPC32XX_NAND_SLC_RDR_CLKS " Tom Rini
2022-11-20 13:31     ` [PoC 101/241] global: Migrate CONFIG_LPC32XX_NAND_SLC_RHOLD " Tom Rini
2022-11-20 13:31     ` [PoC 102/241] global: Migrate CONFIG_LPC32XX_NAND_SLC_RSETUP " Tom Rini
2022-11-20 13:31     ` [PoC 103/241] global: Migrate CONFIG_LPC32XX_NAND_SLC_RWIDTH " Tom Rini
2022-11-20 13:31     ` [PoC 104/241] global: Migrate CONFIG_LPC32XX_NAND_SLC_WDR_CLKS " Tom Rini
2022-11-20 13:31     ` [PoC 105/241] global: Migrate CONFIG_LPC32XX_NAND_SLC_WHOLD " Tom Rini
2022-11-20 13:31     ` [PoC 106/241] global: Migrate CONFIG_LPC32XX_NAND_SLC_WSETUP " Tom Rini
2022-11-20 13:55     ` Tom Rini
2022-11-20 13:55       ` [PoC 107/241] global: Migrate CONFIG_LPC32XX_NAND_SLC_WWIDTH " Tom Rini
2022-11-20 13:55       ` [PoC 108/241] global: Migrate CONFIG_MACB_SEARCH_PHY " Tom Rini
2022-11-20 13:55       ` [PoC 109/241] global: Migrate CONFIG_MALLOC_F_ADDR " Tom Rini
2022-11-20 14:07         ` [PoC 110/241] global: Migrate CONFIG_MALTA " Tom Rini
2022-11-20 14:07           ` [PoC 111/241] global: Migrate CONFIG_MAX_DSP_CPUS " Tom Rini
2022-11-20 14:07           ` [PoC 112/241] global: Migrate CONFIG_MAX_MEM_MAPPED " Tom Rini
2022-11-20 14:07           ` [PoC 113/241] global: Migrate CONFIG_MAX_RAM_BANK_SIZE " Tom Rini
2022-11-20 14:07           ` [PoC 114/241] global: Migrate CONFIG_MEMSIZE_IN_BYTES " Tom Rini
2022-11-20 14:07           ` [PoC 115/241] global: Migrate CONFIG_MEM_INIT_VALUE " Tom Rini
2022-11-20 14:07           ` [PoC 116/241] global: Migrate CONFIG_MFG_ENV_SETTINGS " Tom Rini
2022-11-20 14:07           ` [PoC 117/241] global: Migrate CONFIG_MII_DEFAULT_TSEC " Tom Rini
2022-11-20 14:07           ` [PoC 118/241] global: Migrate CONFIG_MIU_2BIT_21_7_INTERLEAVED " Tom Rini
2022-11-20 14:07           ` [PoC 119/241] global: Migrate CONFIG_MIU_2BIT_INTERLEAVED " Tom Rini
2022-11-20 14:07           ` [PoC 120/241] global: Migrate CONFIG_MMC_DEFAULT_DEV " Tom Rini
2022-11-20 14:07           ` [PoC 121/241] global: Migrate CONFIG_MMC_SUNXI_SLOT " Tom Rini
2022-11-20 14:07           ` [PoC 122/241] global: Migrate CONFIG_MONITOR_IS_IN_RAM " Tom Rini
2022-11-20 14:07           ` [PoC 123/241] global: Migrate CONFIG_MTD_NAND_VERIFY_WRITE " Tom Rini
2022-11-20 14:07           ` [PoC 124/241] global: Migrate CONFIG_MVGBE_PORTS " Tom Rini
2022-11-20 14:07           ` [PoC 125/241] global: Migrate CONFIG_MXC_GPT_HCLK " Tom Rini
2022-11-20 14:07           ` [PoC 126/241] global: Migrate CONFIG_MXC_NAND_HWECC " Tom Rini
2022-11-20 14:07           ` [PoC 127/241] global: Migrate CONFIG_MXC_NAND_IP_REGS_BASE " Tom Rini
2022-11-20 14:07           ` [PoC 128/241] global: Migrate CONFIG_MXC_NAND_REGS_BASE " Tom Rini
2022-11-20 14:07           ` [PoC 129/241] global: Migrate CONFIG_MXC_UART_BASE " Tom Rini
2022-11-20 14:07           ` [PoC 130/241] global: Migrate CONFIG_MXC_USB_FLAGS " Tom Rini
2022-11-20 14:07           ` [PoC 131/241] global: Migrate CONFIG_MXC_USB_PORT " Tom Rini
2022-11-20 14:07           ` [PoC 132/241] global: Migrate CONFIG_NAND_6BYTES_OOB_FREE_10BYTES_ECC " Tom Rini
2022-11-20 14:07           ` [PoC 133/241] global: Migrate CONFIG_NAND_CS_INIT " Tom Rini
2022-11-20 14:07           ` [PoC 134/241] global: Migrate CONFIG_NETDEV " Tom Rini
2022-11-20 14:07           ` [PoC 135/241] global: Migrate CONFIG_NETMASK " Tom Rini
2022-11-20 14:07           ` [PoC 136/241] global: Migrate CONFIG_NORBOOT " Tom Rini
2022-11-20 14:07           ` [PoC 137/241] global: Migrate CONFIG_NUM_DSP_CPUS " Tom Rini
2022-11-20 14:07           ` [PoC 138/241] global: Migrate CONFIG_ODROID_REV_AIN " Tom Rini
2022-11-20 14:07           ` [PoC 139/241] global: Migrate CONFIG_OTHBOOTARGS " Tom Rini
2022-11-20 14:07           ` [PoC 140/241] global: Migrate CONFIG_OVERWRITE_ETHADDR_ONCE " Tom Rini
2022-11-20 14:07           ` [PoC 141/241] global: Migrate CONFIG_PCIE_IMX_PERST_GPIO " Tom Rini
2022-11-20 14:07           ` [PoC 142/241] global: Migrate CONFIG_PCIE_IMX_POWER_GPIO " Tom Rini
2022-11-20 14:07           ` [PoC 143/241] global: Migrate CONFIG_PEN_ADDR_BIG_ENDIAN " Tom Rini
2022-11-20 14:07           ` [PoC 144/241] global: Migrate CONFIG_PHY_BASE_ADR " Tom Rini
2022-11-20 14:07           ` [PoC 145/241] global: Migrate CONFIG_PHY_ET1011C_TX_CLK_FIX " Tom Rini
2022-11-20 14:07           ` [PoC 146/241] global: Migrate CONFIG_PHY_ID " Tom Rini
2022-11-20 14:07           ` [PoC 147/241] global: Migrate CONFIG_PHY_INTERFACE_MODE " Tom Rini
2022-11-20 14:07           ` [PoC 148/241] global: Migrate CONFIG_PHY_IRAM_BASE " Tom Rini
2022-11-20 14:07           ` [PoC 149/241] global: Migrate CONFIG_PL011_CLOCK " Tom Rini
2022-11-20 14:07           ` [PoC 150/241] global: Migrate CONFIG_PL01x_PORTS " Tom Rini
2022-11-20 14:07           ` [PoC 151/241] global: Migrate CONFIG_PME_PLAT_CLK_DIV " Tom Rini
2022-11-20 14:07           ` [PoC 152/241] global: Migrate CONFIG_POSTBOOTMENU " Tom Rini
2022-11-20 14:07           ` [PoC 153/241] global: Migrate CONFIG_POWER_LTC3676_I2C_ADDR " Tom Rini
2022-11-20 14:07           ` [PoC 156/241] global: Migrate CONFIG_PPC_SPINTABLE_COMPATIBLE " Tom Rini
2022-11-20 14:07           ` [PoC 159/241] global: Migrate CONFIG_QBMAN_CLK_DIV " Tom Rini
2022-11-20 14:07           ` [PoC 160/241] global: Migrate CONFIG_RAMBOOT_SPIFLASH " Tom Rini
2022-11-20 14:07           ` [PoC 161/241] global: Migrate CONFIG_RAMBOOT_TEXT_BASE " Tom Rini
2022-11-20 14:07           ` [PoC 162/241] global: Migrate CONFIG_RAMDISK_ADDR " Tom Rini
2022-11-20 14:07           ` [PoC 163/241] global: Migrate CONFIG_RD_LVL " Tom Rini
2022-11-20 14:07           ` [PoC 164/241] global: Migrate CONFIG_RESET_VECTOR_ADDRESS " Tom Rini
2022-11-20 14:07           ` [PoC 167/241] global: Migrate CONFIG_SANDBOX_ARCH " Tom Rini
2022-11-20 14:07           ` [PoC 169/241] global: Migrate CONFIG_SANDBOX_SPI_MAX_CS " Tom Rini
2022-11-20 14:08           ` [PoC 170/241] global: Migrate CONFIG_SAR2_REG " Tom Rini
2022-11-20 14:08           ` [PoC 171/241] global: Migrate CONFIG_SAR_REG " Tom Rini
2022-11-20 14:08           ` [PoC 172/241] global: Migrate CONFIG_SCIF_A " Tom Rini
2022-11-20 14:08           ` [PoC 173/241] global: Migrate CONFIG_SCSI_DEV_LIST " Tom Rini
2022-11-20 14:08           ` [PoC 174/241] global: Migrate CONFIG_SC_TIMER_CLK " Tom Rini
2022-11-20 14:08           ` [PoC 175/241] global: Migrate CONFIG_SERIAL_BOOT " Tom Rini
2022-11-20 14:08           ` [PoC 176/241] global: Migrate CONFIG_SERVERIP " Tom Rini
2022-11-20 14:08           ` [PoC 177/241] global: Migrate CONFIG_SETUP_INITRD_TAG " Tom Rini
2022-11-20 14:08           ` [PoC 178/241] global: Migrate CONFIG_SET_DFU_ALT_BUF_LEN " Tom Rini
2022-11-20 14:08           ` [PoC 179/241] global: Migrate CONFIG_SH_ETHER_ALIGNE_SIZE " Tom Rini
2022-11-20 14:08           ` [PoC 180/241] global: Migrate CONFIG_SH_ETHER_CACHE_INVALIDATE " Tom Rini
2022-11-20 14:08           ` [PoC 181/241] global: Migrate CONFIG_SH_ETHER_CACHE_WRITEBACK " Tom Rini
2022-11-20 14:08           ` [PoC 182/241] global: Migrate CONFIG_SH_ETHER_PHY_ADDR " Tom Rini
2022-11-20 14:08           ` [PoC 183/241] global: Migrate CONFIG_SH_ETHER_PHY_MODE " Tom Rini
2022-11-20 14:08           ` [PoC 184/241] global: Migrate CONFIG_SH_ETHER_USE_PORT " Tom Rini
2022-11-20 14:08           ` [PoC 185/241] global: Migrate CONFIG_SH_QSPI_BASE " Tom Rini
2022-11-20 14:08           ` [PoC 186/241] global: Migrate CONFIG_SLIC " Tom Rini
2022-11-20 14:08           ` [PoC 187/241] global: Migrate CONFIG_SMDK5420 " Tom Rini
2022-11-20 14:08           ` [PoC 188/241] global: Migrate CONFIG_SMP_PEN_ADDR " Tom Rini
2022-11-20 14:08           ` [PoC 189/241] global: Migrate CONFIG_SOCRATES " Tom Rini
2022-11-20 14:08           ` [PoC 190/241] global: Migrate CONFIG_SPI_ADDR " Tom Rini
2022-11-20 14:08           ` [PoC 191/241] global: Migrate CONFIG_SPI_BOOTING " Tom Rini
2022-11-20 14:08           ` [PoC 192/241] global: Migrate CONFIG_SPI_FLASH_QUAD " Tom Rini
2022-11-20 14:08           ` [PoC 193/241] global: Migrate CONFIG_SPI_FLASH_SIZE " Tom Rini
2022-11-20 14:08           ` [PoC 194/241] global: Migrate CONFIG_SPI_HALF_DUPLEX " Tom Rini
2022-11-20 14:08           ` [PoC 195/241] global: Migrate CONFIG_SPI_N25Q256A_RESET " Tom Rini
2022-11-20 14:08           ` [PoC 196/241] global: Migrate CONFIG_STACKBASE " Tom Rini
2022-11-20 14:08           ` [PoC 197/241] global: Migrate CONFIG_STANDALONE_LOAD_ADDR " Tom Rini
2022-11-20 14:08           ` [PoC 198/241] global: Migrate CONFIG_STD_DEVICES_SETTINGS " Tom Rini
2022-11-20 14:08           ` [PoC 199/241] global: Migrate CONFIG_TEGRA_BOARD_STRING " Tom Rini
2022-11-20 14:17             ` [PoC 200/241] global: Migrate CONFIG_TEGRA_ENABLE_UARTA " Tom Rini
2022-11-20 14:17               ` [PoC 201/241] global: Migrate CONFIG_TEGRA_ENABLE_UARTD " Tom Rini
2022-11-20 14:17               ` [PoC 202/241] global: Migrate CONFIG_TEGRA_SLINK_CTRLS " Tom Rini
2022-11-20 14:17               ` [PoC 203/241] global: Migrate CONFIG_TEGRA_SPI " Tom Rini
2022-11-20 14:17               ` [PoC 204/241] global: Migrate CONFIG_TEGRA_UARTA_GPU " Tom Rini
2022-11-20 14:17               ` [PoC 205/241] global: Migrate CONFIG_TEGRA_UARTA_SDIO1 " Tom Rini
2022-11-20 14:17               ` [PoC 206/241] global: Migrate CONFIG_TEGRA_VDD_CORE_TPS62361B_SET3 " Tom Rini
2022-11-20 14:17               ` [PoC 207/241] global: Migrate CONFIG_TEGRA_VDD_CORE_TPS62366A_SET1 " Tom Rini
2022-11-20 14:17               ` [PoC 208/241] global: Migrate CONFIG_TESTPIN_MASK " Tom Rini
2022-11-20 14:17               ` [PoC 209/241] global: Migrate CONFIG_TESTPIN_REG " Tom Rini
2022-11-20 14:17               ` [PoC 210/241] global: Migrate CONFIG_THOR_RESET_OFF " Tom Rini
2022-11-20 14:17               ` [PoC 211/241] global: Migrate CONFIG_TPM_TIS_BASE_ADDRESS " Tom Rini
2022-11-20 14:17               ` [PoC 212/241] global: Migrate CONFIG_TSEC1 " Tom Rini
2022-11-20 14:17               ` [PoC 213/241] global: Migrate CONFIG_TSEC2 " Tom Rini
2022-11-20 14:17               ` [PoC 214/241] global: Migrate CONFIG_TSEC3 " Tom Rini
2022-11-20 14:17               ` [PoC 215/241] global: Migrate CONFIG_TSEC4 " Tom Rini
2022-11-20 14:17               ` [PoC 216/241] global: Migrate CONFIG_TSECV2 " Tom Rini
2022-11-20 14:17               ` [PoC 217/241] global: Migrate CONFIG_TSEC_TBICR_SETTINGS " Tom Rini
2022-11-20 14:17               ` [PoC 218/241] global: Migrate CONFIG_UBIFS_VOLUME " Tom Rini
2022-11-20 14:17               ` [PoC 219/241] global: Migrate CONFIG_UBI_PART " Tom Rini
2022-11-20 14:17               ` [PoC 220/241] global: Migrate CONFIG_UBOOTPATH " Tom Rini
2022-11-20 14:17               ` [PoC 221/241] global: Migrate CONFIG_UBOOT_SECTOR_COUNT " Tom Rini
2022-11-20 14:17               ` [PoC 222/241] global: Migrate CONFIG_UBOOT_SECTOR_START " Tom Rini
2022-11-20 14:17               ` [PoC 223/241] global: Migrate CONFIG_UEC_ETH " Tom Rini
2022-11-20 14:17               ` [PoC 224/241] global: Migrate CONFIG_USART_BASE " Tom Rini
2022-11-20 14:17               ` [PoC 225/241] global: Migrate CONFIG_USART_ID " Tom Rini
2022-11-20 14:17               ` [PoC 226/241] global: Migrate CONFIG_USBD_HS " Tom Rini
2022-11-20 14:17               ` [PoC 227/241] global: Migrate CONFIG_USB_BOOTING " Tom Rini
2022-11-20 14:17               ` [PoC 228/241] global: Migrate CONFIG_USB_EXT2_BOOT " Tom Rini
2022-11-20 14:17               ` [PoC 229/241] global: Migrate CONFIG_USB_FAT_BOOT " Tom Rini
2022-11-20 14:17               ` [PoC 230/241] global: Migrate CONFIG_USB_ISP1301_I2C_ADDR " Tom Rini
2022-11-20 14:17               ` [PoC 231/241] global: Migrate CONFIG_U_BOOT_HDR_SIZE " Tom Rini
2022-11-20 14:17               ` [PoC 232/241] global: Migrate CONFIG_VAR_SIZE_SPL " Tom Rini
2022-11-20 14:17               ` [PoC 233/241] global: Migrate CONFIG_VERY_BIG_RAM " Tom Rini
2022-11-20 14:17               ` [PoC 234/241] global: Migrate CONFIG_VSC7385_IMAGE " Tom Rini
2022-11-20 14:17               ` [PoC 235/241] global: Migrate CONFIG_WATCHDOG_PRESC " Tom Rini
2022-11-20 14:17               ` [PoC 236/241] global: Migrate CONFIG_WATCHDOG_RC " Tom Rini
2022-11-20 14:17               ` [PoC 237/241] global: Migrate CONFIG_X86EMU_RAW_IO " Tom Rini
2022-11-20 14:17               ` [PoC 238/241] global: Migrate CONFIG_X86_MRC_ADDR " Tom Rini
2022-11-20 14:17               ` [PoC 239/241] global: Migrate CONFIG_X86_REFCODE_ADDR " Tom Rini
2022-11-20 14:17               ` [PoC 240/241] global: Migrate CONFIG_X86_REFCODE_RUN_ADDR " Tom Rini
2022-11-20 14:17               ` [PoC 241/241] Empty config_whitelist.txt Tom Rini
2022-11-21 22:51     ` [000/241] Finish migration to Kconfig or CFG namespace Simon Glass
2022-11-21 22:56       ` Tom Rini
2022-11-27 15:24   ` [PATCH 01/41] xenguest_arm64: Disable networking support more fully Tom Rini
     [not found]     ` <1b153bce-a66a-45ee-a5c6-963ea6fb1c82.949ef384-8293-46b8-903f-40a477c056ae.3adfa0e8-f56a-49ca-bed0-da2a2da43e20@emailsignatures365.codetwo.com>
2022-11-27 15:24     ` [PATCH 02/41] LicheePi_Zero: " Tom Rini
2022-11-27 15:24     ` [PATCH 03/41] pinecube: " Tom Rini
2022-11-27 15:24     ` [PATCH 04/41] topic_miami*: " Tom Rini
2022-12-06 10:15       ` Mike Looijmans
2022-11-27 15:25     ` [PATCH 05/41] chromebook_samus_tpl: Disable SPL networking Tom Rini
2022-12-04 21:17       ` Simon Glass
2022-11-27 15:25     ` [PATCH 06/41] sunxi: Move MMC_SUNXI_SLOT to Kconfig Tom Rini
2022-11-27 20:39       ` Andre Przywara
2022-11-27 20:46         ` Tom Rini
2022-11-27 15:25     ` [PATCH 07/41] net: Remove extraneous dependencies Tom Rini
2022-11-27 15:25     ` [PATCH 08/41] global: Remove extraneous DM_ETH imply/select Tom Rini
2022-11-27 15:25     ` [PATCH 09/41] net: tsec: Remove non-DM_ETH support code Tom Rini
2022-11-27 15:25     ` [PATCH 10/41] net: fm: Remove non-DM_ETH code Tom Rini
2022-11-27 15:25     ` [PATCH 11/41] net: dc2114x: " Tom Rini
2022-11-27 15:25     ` [PATCH 12/41] net: designware: " Tom Rini
2022-11-27 15:25     ` [PATCH 13/41] net: dm9000x: " Tom Rini
2022-11-27 15:25     ` [PATCH 14/41] net: e1000: " Tom Rini
2022-11-27 15:25     ` [PATCH 15/41] net: eepro100: " Tom Rini
2022-11-27 15:25     ` [PATCH 16/41] net: ethoc: " Tom Rini
2022-11-27 15:25     ` [PATCH 17/41] net: fec_mxc: " Tom Rini
2022-11-27 15:25     ` [PATCH 18/41] net: fsl-mc: " Tom Rini
2022-11-27 15:25     ` [PATCH 19/41] net: ldpaa_eth: " Tom Rini
2022-11-27 15:25     ` [PATCH 20/41] net: macb: " Tom Rini
2022-11-27 15:25     ` [PATCH 21/41] net: mcfmii: " Tom Rini
2022-11-27 15:25     ` [PATCH 22/41] net: mvgbe: " Tom Rini
2022-11-27 15:25     ` [PATCH 23/41] net: netconsole: " Tom Rini
2022-11-27 15:25     ` [PATCH 24/41] net: pcnet: " Tom Rini
2022-11-27 15:25     ` [PATCH 25/41] net: phy: " Tom Rini
2022-11-27 15:25     ` [PATCH 26/41] net: rtl8139: " Tom Rini
2022-11-27 15:25     ` [PATCH 27/41] net: rtl8169: " Tom Rini
2022-11-27 15:25     ` [PATCH 28/41] net: sh_eth: " Tom Rini
2022-11-27 15:25     ` [PATCH 29/41] net: smc911x: " Tom Rini
2022-11-27 15:25     ` [PATCH 30/41] net: sunxi_emac: " Tom Rini
2022-11-27 15:25     ` [PATCH 31/41] net: cpsw: " Tom Rini
2022-11-27 15:25     ` [PATCH 32/41] net: keystone_net: " Tom Rini
2022-11-27 15:25     ` [PATCH 33/41] usb: eth: asix: " Tom Rini
2022-11-27 15:25     ` [PATCH 34/41] usb: eth: asix88179: " Tom Rini
2022-11-27 15:25     ` [PATCH 35/41] usb: eth: msc7830: " Tom Rini
2022-11-27 15:25     ` [PATCH 36/41] usb: eth: r8152: " Tom Rini
2022-11-27 15:25     ` [PATCH 37/41] usb: eth: smsc95xx: " Tom Rini
2022-11-27 15:25     ` [PATCH 38/41] usb: eth: " Tom Rini
2022-11-27 15:25     ` [PATCH 39/41] usb: gadget: " Tom Rini
2022-11-27 15:25     ` [PATCH 40/41] qe: " Tom Rini
2022-11-27 15:25     ` [PATCH 41/41] net: Remove eth_legacy.c Tom Rini
2022-12-02 21:42       ` [PATCH 01/41] usb: Update USB_STORAGE dependencies Tom Rini
2022-12-02 21:42         ` [PATCH 02/41] arm: exynos5: Migrate USB_BOOTING to Kconfig Tom Rini
2022-12-02 21:42         ` [PATCH 03/41] p1_p1_rdb: Remove unused environment sections Tom Rini
2022-12-02 21:42         ` [PATCH 04/41] x530: Remove unused symbols Tom Rini
2022-12-02 21:42         ` [PATCH 05/41] arm: trats2: Set mmcdev directly Tom Rini
2022-12-02 21:42         ` [PATCH 06/41] Convert CONFIG_HSMMC2_8BIT to Kconfig Tom Rini
2022-12-02 21:42         ` [PATCH 07/41] env: Rework ENV_IS_EMBEDDED and related logic slightly Tom Rini
2022-12-02 21:42         ` [PATCH 08/41] Convert CONFIG_DM9000_BYTE_SWAPPED et al to Kconfig Tom Rini
2022-12-02 21:42         ` [PATCH 09/41] fec_mxc: Remove CONFIG_FEC_FIXED_SPEED support Tom Rini
2022-12-02 21:42         ` [PATCH 10/41] Convert CONFIG_FLASH_SHOW_PROGRESS to Kconfig Tom Rini
2022-12-02 21:42         ` [PATCH 11/41] Convert CONFIG_FLASH_SPANSION_S29WS_N et al " Tom Rini
2022-12-02 21:42         ` [PATCH 12/41] Convert CONFIG_FSL_ESDHC_PIN_MUX " Tom Rini
2022-12-02 21:42         ` [PATCH 13/41] env: nvram: Drop CONFIG_SYS_NVRAM_ACCESS_ROUTINE Tom Rini
2022-12-02 21:42         ` [PATCH 14/41] CONFIG_SYS_MPC8xxx_GUTS_ADDR: Migrate to CFG_SYS Tom Rini
2022-12-02 21:42         ` [PATCH 15/41] meson64: Fix missing CFG_SYS_BAUDRATE_TABLE migration Tom Rini
2022-12-02 21:42         ` [PATCH 16/41] Convert CONFIG_POWER_PCA9450 to Kconfig Tom Rini
2022-12-02 21:42         ` [PATCH 17/41] Convert CONFIG_HOSTNAME et al " Tom Rini
2022-12-02 21:42         ` [PATCH 18/41] arm: samsung: Rename CONFIG_G_DNL_*_NUM variables Tom Rini
2022-12-02 21:42         ` [PATCH 19/41] env: eeprom: Remove CONFIG_I2C_ENV_EEPROM_BUS support Tom Rini
2022-12-02 21:42         ` [PATCH 20/41] i2c: Remove CONFIG_I2C_MULTI_BUS Tom Rini
2022-12-02 21:42         ` [PATCH 21/41] global: Remove unused CONFIG symbols Tom Rini
2022-12-02 21:42         ` [PATCH 22/41] Convert CONFIG_KSNET_NETCP_V1_0 et al to Kconfig Tom Rini
2022-12-02 21:42         ` [PATCH 23/41] Convert CONFIG_L2_CACHE " Tom Rini
2022-12-02 21:42         ` [PATCH 24/41] malta: Rename CONFIG_MALTA to CONFIG_TARGET_MALTA Tom Rini
2022-12-02 21:42         ` [PATCH 25/41] ddr: fsl: Remove CONFIG_MEM_INIT_VALUE Tom Rini
2022-12-02 21:42         ` [PATCH 26/41] Convert CONFIG_MONITOR_IS_IN_RAM to Kconfig Tom Rini
2022-12-02 21:42         ` [PATCH 27/41] Convert CONFIG_MXC_NAND_HWECC " Tom Rini
2022-12-02 21:42         ` [PATCH 28/41] etamin: Rework CONFIG_NAND_CS_INIT Tom Rini
2022-12-02 21:42         ` [PATCH 29/41] Convert CONFIG_OVERWRITE_ETHADDR_ONCE to Kconfig Tom Rini
2022-12-02 21:42         ` [PATCH 30/41] Convert CONFIG_PEN_ADDR_BIG_ENDIAN " Tom Rini
2022-12-02 21:42         ` [PATCH 31/41] arm: ti814x: Remove remaining support code Tom Rini
2022-12-02 21:42         ` [PATCH 32/41] powerpc: Migrate CONFIG_PPC_SPINTABLE_COMPATIBLE to Kconfig Tom Rini
2022-12-02 21:42         ` [PATCH 33/41] sandbox: Finish migration " Tom Rini
2022-12-04 21:16           ` Simon Glass
2022-12-02 21:42         ` [PATCH 34/41] Convert CONFIG_STANDALONE_LOAD_ADDR " Tom Rini
2022-12-02 21:42         ` [PATCH 35/41] Convert CONFIG_TEGRA_ENABLE_UARTA et al " Tom Rini
2022-12-02 21:42         ` [PATCH 36/41] Convert CONFIG_THOR_RESET_OFF " Tom Rini
2022-12-02 21:42         ` [PATCH 37/41] net: Remove more legacy functions Tom Rini
2022-12-02 21:42         ` [PATCH 38/41] net: vsc9953: Remove this driver Tom Rini
2022-12-02 21:42         ` [PATCH 39/41] usb: Remove CONFIG_USBD_HS Tom Rini
2022-12-02 21:42         ` [PATCH 40/41] nxp: Rename CONFIG_U_BOOT_HDR_SIZE to FSL_U_BOOT_HDR_SIZE Tom Rini
2022-12-02 21:42         ` [PATCH 41/41] T104xRDB: Remove non-TARGET_T1042D4RDB variants Tom Rini
2022-12-04 15:03           ` [PATCH 001/149] exynos: Rework legacy PWM usage Tom Rini
2022-12-04 15:03             ` [PATCH 002/149] rk32xx: Use standard TPL linker script Tom Rini
2022-12-04 21:17               ` Simon Glass
2022-12-04 15:03             ` [PATCH 003/149] Convert CONFIG_NEVER_ASSERT_ODT_TO_CPU to Kconfig Tom Rini
2022-12-04 15:03             ` [PATCH 004/149] Convert CONFIG_SYS_FPGA_CHECK_BUSY " Tom Rini
2022-12-04 15:03             ` [PATCH 005/149] mtd: ubi: Finish moving configuration " Tom Rini
2022-12-04 15:03             ` [PATCH 006/149] atmel_nand: Remove undef during SPL_BUILD Tom Rini
2022-12-04 15:03             ` [PATCH 007/149] valgrind: Rework test for unsupported platforms Tom Rini
2022-12-04 15:03             ` [PATCH 008/149] log: Remove some places where we redefine LOGLEVEL Tom Rini
2022-12-04 15:03             ` [PATCH 009/149] global: Remove undef CONFIG_... for unused values Tom Rini
2022-12-04 15:03             ` [PATCH 010/149] rsa-verify: Rework host check for CONFIG_RSA_VERIFY_WITH_PKEY Tom Rini
2022-12-04 21:17               ` Simon Glass
2022-12-04 22:37               ` [PATCHv2 " Tom Rini
2022-12-05 16:11                 ` Simon Glass
2022-12-06  2:59                 ` AKASHI Takahiro
2022-12-06 18:51                 ` [PATCHv3 " Tom Rini
2022-12-07  1:08                   ` Simon Glass
2022-12-04 15:03             ` [PATCH 011/149] global: Migrate CONFIG_ARM_GIC_BASE_ADDRESS to CFG Tom Rini
2022-12-04 15:03             ` [PATCH 012/149] global: Migrate CONFIG_BOARDDIR " Tom Rini
2022-12-04 15:03             ` [PATCH 013/149] global: Migrate CONFIG_DFU_ALT et al " Tom Rini
2022-12-04 15:03             ` [PATCH 014/149] global: Migrate CONFIG_DW_WDT_CLOCK_KHZ " Tom Rini
2022-12-04 15:03             ` [PATCH 015/149] global: Migrate CONFIG_ENV_FLAGS_LIST_STATIC " Tom Rini
2022-12-04 15:03             ` [PATCH 016/149] global: Migrate CONFIG_ENV_SETTINGS_BUTTONS_AND_LEDS " Tom Rini
2022-12-04 15:03             ` [PATCH 017/149] global: Migrate CONFIG_ENV_SETTINGS_NAND_V1 " Tom Rini
2022-12-04 15:03             ` [PATCH 018/149] global: Migrate CONFIG_ENV_SETTINGS_NAND_V2 " Tom Rini
2022-12-04 15:03             ` [PATCH 019/149] global: Migrate CONFIG_ENV_SETTINGS_V1 " Tom Rini
2022-12-04 15:03             ` [PATCH 020/149] global: Migrate CONFIG_ENV_SETTINGS_V2 " Tom Rini
2022-12-04 15:03             ` [PATCH 021/149] global: Migrate CONFIG_ENV_SROM_BANK " Tom Rini
2022-12-04 15:03             ` [PATCH 022/149] global: Migrate CONFIG_ENV_TOTAL_SIZE " Tom Rini
2022-12-04 15:03             ` [PATCH 023/149] global: Migrate CONFIG_ET1100_BASE " Tom Rini
2022-12-04 15:03             ` [PATCH 024/149] global: Migrate CONFIG_ETHBASE " Tom Rini
2022-12-04 15:03             ` [PATCH 025/149] global: Migrate CONFIG_EXTRA_ENV_SETTINGS " Tom Rini
2022-12-04 15:03             ` [PATCH 026/149] global: Migrate CONFIG_FB_ADDR " Tom Rini
2022-12-04 15:03             ` [PATCH 027/149] global: Migrate CONFIG_FEC_ENET_DEV " Tom Rini
2022-12-04 15:03             ` [PATCH 028/149] global: Migrate CONFIG_FEC_MXC_PHYADDR " Tom Rini
2022-12-04 15:03             ` [PATCH 029/149] global: Migrate CONFIG_FLASH_BR_PRELIM " Tom Rini
2022-12-04 15:03             ` [PATCH 030/149] global: Migrate CONFIG_FLASH_OR_PRELIM " Tom Rini
2022-12-04 15:03             ` [PATCH 031/149] global: Migrate CONFIG_FM_PLAT_CLK_DIV " Tom Rini
2022-12-04 15:03             ` [PATCH 032/149] global: Migrate CONFIG_FPGA_DELAY " Tom Rini
2022-12-04 15:03             ` [PATCH 033/149] global: Migrate CONFIG_FSL_PMIC_BITLEN " Tom Rini
2022-12-04 15:03             ` [PATCH 034/149] global: Migrate CONFIG_FSL_PMIC_BUS " Tom Rini
2022-12-04 15:04             ` [PATCH 035/149] global: Migrate CONFIG_FSL_PMIC_CLK " Tom Rini
2022-12-04 15:04             ` [PATCH 036/149] global: Migrate CONFIG_FSL_PMIC_CS " Tom Rini
2022-12-04 15:04             ` [PATCH 037/149] global: Migrate CONFIG_FSL_PMIC_MODE " Tom Rini
2022-12-04 15:04             ` [PATCH 038/149] global: Migrate CONFIG_FSL_SERDES1 " Tom Rini
2022-12-04 15:04             ` [PATCH 039/149] global: Migrate CONFIG_FSL_SERDES2 " Tom Rini
2022-12-04 15:04             ` [PATCH 040/149] global: Migrate CONFIG_FTRTC010_EXTCLK " Tom Rini
2022-12-04 15:04             ` [PATCH 041/149] global: Migrate CONFIG_FTRTC010_PCLK " Tom Rini
2022-12-04 15:04             ` [PATCH 042/149] global: Migrate CONFIG_HW_ENV_SETTINGS " Tom Rini
2022-12-04 15:04             ` [PATCH 043/149] global: Migrate CONFIG_I2C_MULTI_BUS " Tom Rini
2022-12-04 15:04             ` [PATCH 044/149] global: Migrate CONFIG_I2C_MVTWSI_BASE0 " Tom Rini
2022-12-04 15:04             ` [PATCH 045/149] global: Migrate CONFIG_I2C_MVTWSI_BASE1 " Tom Rini
2022-12-04 15:04             ` [PATCH 046/149] global: Migrate CONFIG_ICS307_REFCLK_HZ " Tom Rini
2022-12-04 15:04             ` [PATCH 047/149] global: Migrate CONFIG_IMX6_PWM_PER_CLK " Tom Rini
2022-12-04 15:04             ` [PATCH 048/149] global: Migrate CONFIG_IRAM_BASE " Tom Rini
2022-12-04 15:04             ` [PATCH 049/149] global: Migrate CONFIG_IRAM_TOP " Tom Rini
2022-12-04 15:04             ` [PATCH 050/149] global: Migrate CONFIG_KM_DEF_ARCH " Tom Rini
2022-12-04 15:04             ` [PATCH 051/149] global: Migrate CONFIG_KM_DEF_BOOT_ARGS_CPU " Tom Rini
2022-12-04 15:04             ` [PATCH 052/149] global: Migrate CONFIG_KM_DEF_ENV et al " Tom Rini
2022-12-04 15:04             ` [PATCH 053/149] global: Migrate CONFIG_KM_ECC_MODE " Tom Rini
2022-12-04 15:04             ` [PATCH 054/149] global: Migrate CONFIG_KM_NEW_ENV " Tom Rini
2022-12-04 15:04             ` [PATCH 055/149] global: Migrate CONFIG_KM_UBI_LINUX_MTD " Tom Rini
2022-12-04 15:04             ` [PATCH 056/149] global: Migrate CONFIG_KM_UBI_PARTITION_NAME_APP " Tom Rini
2022-12-04 15:04             ` [PATCH 057/149] global: Migrate CONFIG_KM_UBI_PARTITION_NAME_BOOT " Tom Rini
2022-12-04 15:04             ` [PATCH 058/149] global: Migrate CONFIG_KM_UBI_PART_BOOT_OPTS " Tom Rini
2022-12-04 15:04             ` [PATCH 059/149] global: Migrate CONFIG_KM_UIMAGE_NAME " Tom Rini
2022-12-04 15:04             ` [PATCH 060/149] global: Migrate CONFIG_KSNET_CPSW_NUM_PORTS " Tom Rini
2022-12-04 15:04             ` [PATCH 061/149] global: Migrate CONFIG_KSNET_MAC_ID_BASE " Tom Rini
2022-12-04 15:04             ` [PATCH 062/149] global: Migrate CONFIG_KSNET_NETCP_BASE " Tom Rini
2022-12-04 15:04             ` [PATCH 063/149] global: Migrate CONFIG_KSNET_SERDES_LANES_PER_SGMII " Tom Rini
2022-12-04 15:04             ` [PATCH 064/149] global: Migrate CONFIG_KSNET_SERDES_SGMII2_BASE " Tom Rini
2022-12-04 15:04             ` [PATCH 065/149] global: Migrate CONFIG_KSNET_SERDES_SGMII_BASE " Tom Rini
2022-12-04 15:04             ` [PATCH 066/149] global: Migrate CONFIG_LEGACY_BOOTCMD_ENV " Tom Rini
2022-12-04 15:04             ` [PATCH 067/149] global: Migrate CONFIG_LOWPOWER_ADDR " Tom Rini
2022-12-04 15:04             ` [PATCH 068/149] global: Migrate CONFIG_LOWPOWER_FLAG " Tom Rini
2022-12-04 15:04             ` [PATCH 069/149] global: Migrate CONFIG_LPC32XX_NAND_MLC_BUSY_DELAY " Tom Rini
2022-12-04 15:04             ` [PATCH 070/149] global: Migrate CONFIG_LPC32XX_NAND_MLC_NAND_TA " Tom Rini
2022-12-04 15:04             ` [PATCH 071/149] global: Migrate CONFIG_LPC32XX_NAND_MLC_RD_HIGH " Tom Rini
2022-12-04 15:04             ` [PATCH 072/149] global: Migrate CONFIG_LPC32XX_NAND_MLC_RD_LOW " Tom Rini
2022-12-04 15:04             ` [PATCH 073/149] global: Migrate CONFIG_LPC32XX_NAND_MLC_TCEA_DELAY " Tom Rini
2022-12-04 15:04             ` [PATCH 074/149] global: Migrate CONFIG_LPC32XX_NAND_MLC_WR_HIGH " Tom Rini
2022-12-04 15:04             ` [PATCH 075/149] global: Migrate CONFIG_LPC32XX_NAND_MLC_WR_LOW " Tom Rini
2022-12-04 15:04             ` [PATCH 076/149] global: Migrate CONFIG_LPC32XX_NAND_SLC_RDR_CLKS " Tom Rini
2022-12-04 15:04             ` [PATCH 077/149] global: Migrate CONFIG_LPC32XX_NAND_SLC_RHOLD " Tom Rini
2022-12-04 15:04             ` [PATCH 078/149] global: Migrate CONFIG_LPC32XX_NAND_SLC_RSETUP " Tom Rini
2022-12-04 15:04             ` [PATCH 079/149] global: Migrate CONFIG_LPC32XX_NAND_SLC_RWIDTH " Tom Rini
2022-12-04 15:04             ` [PATCH 080/149] global: Migrate CONFIG_LPC32XX_NAND_SLC_WDR_CLKS " Tom Rini
2022-12-04 15:04             ` [PATCH 081/149] global: Migrate CONFIG_LPC32XX_NAND_SLC_WHOLD " Tom Rini
2022-12-04 15:04             ` [PATCH 082/149] global: Migrate CONFIG_LPC32XX_NAND_SLC_WSETUP " Tom Rini
2022-12-04 15:04             ` [PATCH 083/149] global: Migrate CONFIG_LPC32XX_NAND_SLC_WWIDTH " Tom Rini
2022-12-04 15:04             ` [PATCH 084/149] global: Migrate CONFIG_MALLOC_F_ADDR " Tom Rini
2022-12-04 15:04             ` [PATCH 085/149] global: Migrate CONFIG_MAX_MEM_MAPPED " Tom Rini
2022-12-04 15:04             ` [PATCH 086/149] global: Migrate CONFIG_MAX_RAM_BANK_SIZE " Tom Rini
2022-12-04 15:04             ` [PATCH 087/149] global: Migrate CONFIG_MFG_ENV_SETTINGS " Tom Rini
2022-12-04 15:04             ` [PATCH 088/149] global: Migrate CONFIG_MXC_NAND_IP_REGS_BASE " Tom Rini
2022-12-04 15:04             ` [PATCH 089/149] global: Migrate CONFIG_MXC_NAND_REGS_BASE " Tom Rini
2022-12-04 15:04             ` [PATCH 090/149] global: Migrate CONFIG_MXC_UART_BASE " Tom Rini
2022-12-04 15:04             ` Tom Rini [this message]
2022-12-04 21:17             ` [PATCH 001/149] exynos: Rework legacy PWM usage Simon Glass
2022-12-24  3:21             ` Tom Rini
2022-12-04 15:13           ` [PATCH 091/149] global: Migrate CONFIG_MXC_USB_FLAGS et al to CFG Tom Rini
2022-12-04 15:13             ` [PATCH 092/149] global: Migrate CONFIG_ODROID_REV_AIN " Tom Rini
2022-12-04 15:13             ` [PATCH 093/149] global: Migrate CONFIG_OTHBOOTARGS " Tom Rini
2022-12-04 15:13             ` [PATCH 094/149] global: Migrate CONFIG_PCIE_IMX_PERST_GPIO " Tom Rini
2022-12-04 15:13             ` [PATCH 095/149] global: Migrate CONFIG_PCIE_IMX_POWER_GPIO " Tom Rini
2022-12-04 15:13             ` [PATCH 096/149] global: Migrate CONFIG_PHY_ET1011C_TX_CLK_FIX " Tom Rini
2022-12-04 15:13             ` [PATCH 097/149] global: Migrate CONFIG_PHY_ID " Tom Rini
2022-12-04 15:13             ` [PATCH 098/149] global: Migrate CONFIG_PHY_IRAM_BASE " Tom Rini
2022-12-04 15:13             ` [PATCH 099/149] global: Migrate CONFIG_PL011_CLOCK " Tom Rini
2022-12-04 15:13             ` [PATCH 100/149] global: Migrate CONFIG_PL01x_PORTS " Tom Rini
2022-12-04 15:13             ` [PATCH 101/149] global: Migrate CONFIG_PME_PLAT_CLK_DIV " Tom Rini
2022-12-04 15:13             ` [PATCH 102/149] global: Migrate CONFIG_POSTBOOTMENU " Tom Rini
2022-12-04 15:13             ` [PATCH 103/149] global: Migrate CONFIG_POWER_LTC3676_I2C_ADDR " Tom Rini
2022-12-04 15:13             ` [PATCH 104/149] global: Migrate CONFIG_POWER_PFUZE100_I2C_ADDR " Tom Rini
2022-12-04 15:13             ` [PATCH 105/149] global: Migrate CONFIG_POWER_PFUZE3000_I2C_ADDR " Tom Rini
2022-12-04 15:13             ` [PATCH 106/149] global: Migrate CONFIG_PRAM " Tom Rini
2022-12-04 15:13             ` [PATCH 107/149] global: Migrate CONFIG_QBMAN_CLK_DIV " Tom Rini
2022-12-04 15:13             ` [PATCH 108/149] global: Migrate CONFIG_RAMDISK_ADDR " Tom Rini
2022-12-04 15:13             ` [PATCH 109/149] global: Migrate CONFIG_RESET_VECTOR_ADDRESS " Tom Rini
2022-12-04 15:13             ` [PATCH 110/149] global: Migrate CONFIG_SAR2_REG " Tom Rini
2022-12-04 15:13             ` [PATCH 111/149] global: Migrate CONFIG_SAR_REG " Tom Rini
2022-12-04 15:13             ` [PATCH 112/149] global: Migrate CONFIG_SCIF_A " Tom Rini
2022-12-04 15:13             ` [PATCH 113/149] global: Migrate CONFIG_SCSI_DEV_LIST " Tom Rini
2022-12-04 15:13             ` [PATCH 114/149] global: Migrate CONFIG_SC_TIMER_CLK " Tom Rini
2022-12-04 15:13             ` [PATCH 115/149] global: Migrate CONFIG_SET_DFU_ALT_BUF_LEN " Tom Rini
2022-12-04 15:13             ` [PATCH 116/149] global: Migrate CONFIG_SH_ETHER_ALIGNE_SIZE " Tom Rini
2022-12-04 15:13             ` [PATCH 117/149] global: Migrate CONFIG_SH_ETHER_CACHE_INVALIDATE " Tom Rini
2022-12-04 15:13             ` [PATCH 118/149] global: Migrate CONFIG_SH_ETHER_CACHE_WRITEBACK " Tom Rini
2022-12-04 15:13             ` [PATCH 119/149] global: Migrate CONFIG_SH_ETHER_PHY_ADDR " Tom Rini
2022-12-04 15:13             ` [PATCH 120/149] global: Migrate CONFIG_SH_ETHER_PHY_MODE " Tom Rini
2022-12-04 15:13             ` [PATCH 121/149] global: Migrate CONFIG_SH_ETHER_USE_PORT " Tom Rini
2022-12-04 15:13             ` [PATCH 122/149] global: Migrate CONFIG_SLIC " Tom Rini
2022-12-04 15:13             ` [PATCH 123/149] global: Migrate CONFIG_SMP_PEN_ADDR " Tom Rini
2022-12-04 15:13             ` [PATCH 124/149] global: Migrate CONFIG_STACKBASE " Tom Rini
2022-12-04 15:13             ` [PATCH 125/149] global: Migrate CONFIG_STD_DEVICES_SETTINGS " Tom Rini
2022-12-04 15:13             ` [PATCH 126/149] global: Migrate CONFIG_SYS_I2C_DIRECT_BUS " Tom Rini
2022-12-04 15:13             ` [PATCH 127/149] global: Migrate CONFIG_TEGRA_BOARD_STRING " Tom Rini
2022-12-04 15:13             ` [PATCH 128/149] global: Migrate CONFIG_TESTPIN_MASK " Tom Rini
2022-12-04 15:14             ` [PATCH 129/149] global: Migrate CONFIG_TESTPIN_REG " Tom Rini
2022-12-04 15:14             ` [PATCH 130/149] global: Migrate CONFIG_TSEC_TBICR_SETTINGS " Tom Rini
2022-12-04 15:14             ` [PATCH 131/149] global: Migrate CONFIG_USART_BASE " Tom Rini
2022-12-04 15:14             ` [PATCH 132/149] global: Migrate CONFIG_USART_ID " Tom Rini
2022-12-04 15:14             ` [PATCH 133/149] global: Migrate CONFIG_USB_ISP1301_I2C_ADDR " Tom Rini
2022-12-04 15:14             ` [PATCH 134/149] global: Migrate CONFIG_VSC7385_IMAGE et al " Tom Rini
2022-12-04 15:14             ` [PATCH 135/149] global: Migrate CONFIG_WATCHDOG_PRESC " Tom Rini
2022-12-04 15:14             ` [PATCH 136/149] global: Migrate CONFIG_X86_MRC_ADDR " Tom Rini
2022-12-04 15:14             ` [PATCH 137/149] global: Migrate CONFIG_X86_REFCODE_ADDR " Tom Rini
2022-12-04 15:14             ` [PATCH 138/149] global: Migrate CONFIG_X86_REFCODE_RUN_ADDR " Tom Rini
2022-12-04 15:14             ` [PATCH 139/149] librem5: Rename CONFIG_POWER_BD71837 symbols Tom Rini
2022-12-04 15:14             ` [PATCH 140/149] configs: Remove unused or redundant CONFIG symbols Tom Rini
2022-12-04 15:14             ` [PATCH 141/149] bcmcygnus: Convert CONFIG_IPROC to Kconfig Tom Rini
2022-12-04 15:14             ` [PATCH 142/149] kbuild: Remove uncmd_spl logic Tom Rini
2022-12-04 15:14             ` [PATCH 143/149] checkpatch.pl: Update CONFIG logic in U-Boot section Tom Rini
2022-12-04 15:14             ` [PATCH 144/149] CI: Replace unmigrated symbol test with non-Kconfig introduction test Tom Rini
2022-12-04 17:09               ` Tom Rini
2022-12-04 15:14             ` [PATCH 145/149] kbuild: Remove checking for adhoc CONFIG symbols Tom Rini
2022-12-04 15:14             ` [PATCH 146/149] post: Move CONFIG_SYS_POST to CFG_SYS_POST Tom Rini
2022-12-04 15:14             ` [PATCH 147/149] pci-rcar-gen3: Rename CONFIG_SEND_ENABLE Tom Rini
2022-12-04 15:14             ` [PATCH 148/149] cf_spi.c: Rename CONFIG_SPI_IDLE_VAL to SPI_IDLE_VAL Tom Rini
2022-12-04 15:14             ` [PATCH 149/149] common/spl/spl_ram: Remove unused default Tom Rini
2022-12-04 17:16             ` [PATCH 091/149] global: Migrate CONFIG_MXC_USB_FLAGS et al to CFG Tom Rini
2022-12-04 21:16         ` [PATCH 01/41] usb: Update USB_STORAGE dependencies Simon Glass
2022-12-22 15:35         ` Tom Rini
2022-12-07 23:08     ` [PATCH 01/41] xenguest_arm64: Disable networking support more fully Tom Rini
2022-11-21 22:51 ` [PATCH 01/38] power: pmic: Guard non-DM_PMIC drivers with a check for POWER_LEGACY Simon Glass
2022-12-06  2:06 ` Tom Rini

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=20221204150554.4165941-91-trini@konsulko.com \
    --to=trini@konsulko.com \
    --cc=u-boot@lists.denx.de \
    /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