public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
* [U-Boot] [PATCH 01/11] arm: omap5: don't enable misc_init_r by default
@ 2014-11-06 14:28 Felipe Balbi
  2014-11-06 14:28 ` [U-Boot] [PATCH 02/11] arm: omap5: tps659038: rename regulator defines Felipe Balbi
                   ` (11 more replies)
  0 siblings, 12 replies; 40+ messages in thread
From: Felipe Balbi @ 2014-11-06 14:28 UTC (permalink / raw)
  To: u-boot

Out of all OMAP5-like boards, only one of them
needs CONFIG_MISC_INIT_R, so it's best to enable
that for that particular board only, instead of
enabling for all boards unconditionally.

Signed-off-by: Felipe Balbi <balbi@ti.com>
---
 board/ti/dra7xx/evm.c             | 12 ------------
 include/configs/cm_t54.h          |  1 -
 include/configs/omap5_uevm.h      |  1 +
 include/configs/ti_omap5_common.h |  1 -
 4 files changed, 1 insertion(+), 14 deletions(-)

diff --git a/board/ti/dra7xx/evm.c b/board/ti/dra7xx/evm.c
index 37df7b2..6522241 100644
--- a/board/ti/dra7xx/evm.c
+++ b/board/ti/dra7xx/evm.c
@@ -96,18 +96,6 @@ int board_late_init(void)
 	return 0;
 }
 
-/**
- * @brief misc_init_r - Configure EVM board specific configurations
- * such as power configurations, ethernet initialization as phase2 of
- * boot sequence
- *
- * @return 0
- */
-int misc_init_r(void)
-{
-	return 0;
-}
-
 static void do_set_mux32(u32 base,
 			 struct pad_conf_entry const *array, int size)
 {
diff --git a/include/configs/cm_t54.h b/include/configs/cm_t54.h
index 641ab48..92ce1e1 100644
--- a/include/configs/cm_t54.h
+++ b/include/configs/cm_t54.h
@@ -16,7 +16,6 @@
 
 #include <configs/ti_omap5_common.h>
 
-#undef CONFIG_MISC_INIT_R
 #undef CONFIG_SPL_OS_BOOT
 
 /* Enable Generic board */
diff --git a/include/configs/omap5_uevm.h b/include/configs/omap5_uevm.h
index e8dc462..e07795f 100644
--- a/include/configs/omap5_uevm.h
+++ b/include/configs/omap5_uevm.h
@@ -23,6 +23,7 @@
 #define CONFIG_SYS_NS16550_COM3		UART3_BASE
 #define CONFIG_BAUDRATE			115200
 
+#define CONFIG_MISC_INIT_R
 /* MMC ENV related defines */
 #define CONFIG_ENV_IS_IN_MMC
 #define CONFIG_SYS_MMC_ENV_DEV		1	/* SLOT2: eMMC(1) */
diff --git a/include/configs/ti_omap5_common.h b/include/configs/ti_omap5_common.h
index 3166392..5b03fb1 100644
--- a/include/configs/ti_omap5_common.h
+++ b/include/configs/ti_omap5_common.h
@@ -19,7 +19,6 @@
 
 #define CONFIG_DISPLAY_CPUINFO
 #define CONFIG_DISPLAY_BOARDINFO
-#define CONFIG_MISC_INIT_R
 #define CONFIG_ARCH_CPU_INIT
 
 #define CONFIG_SYS_CACHELINE_SIZE	64
-- 
2.1.0.GIT

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

end of thread, other threads:[~2014-12-05 14:53 UTC | newest]

Thread overview: 40+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-11-06 14:28 [U-Boot] [PATCH 01/11] arm: omap5: don't enable misc_init_r by default Felipe Balbi
2014-11-06 14:28 ` [U-Boot] [PATCH 02/11] arm: omap5: tps659038: rename regulator defines Felipe Balbi
2014-11-10 18:47   ` Tom Rini
2014-12-05 14:52   ` [U-Boot] [U-Boot, " Tom Rini
2014-11-06 14:28 ` [U-Boot] [PATCH 03/11] arm: dra7xx: prcm: add missing registers Felipe Balbi
2014-11-10 18:47   ` Tom Rini
2014-12-05 14:52   ` [U-Boot] [U-Boot, " Tom Rini
2014-11-06 14:28 ` [U-Boot] [PATCH 04/11] usb: phy: omap_usb_phy: fix build breakage Felipe Balbi
2014-11-10 18:47   ` Tom Rini
2014-12-05 14:52   ` [U-Boot] [U-Boot, " Tom Rini
2014-11-06 14:28 ` [U-Boot] [PATCH 05/11] arm: omap-common: emif: allow to map memory without interleaving Felipe Balbi
2014-11-10 18:47   ` Tom Rini
2014-12-05 14:52   ` [U-Boot] [U-Boot, " Tom Rini
2014-11-06 14:28 ` [U-Boot] [PATCH 06/11] configs: omap5_common : Boot rootfs from sd card by default Felipe Balbi
2014-11-10 18:47   ` Tom Rini
2014-12-05 14:52   ` [U-Boot] [U-Boot, " Tom Rini
2014-11-06 14:28 ` [U-Boot] [PATCH 07/11] arm: omap5: make hw_init_data weak Felipe Balbi
2014-11-10 18:47   ` Tom Rini
2014-12-05 14:52   ` [U-Boot] [U-Boot,07/11] " Tom Rini
2014-11-06 14:28 ` [U-Boot] [PATCH 08/11] arm: omap5: sdram: mark emif_get_ext_phy_ctrl_const_regs __weak Felipe Balbi
2014-11-10 18:47   ` Tom Rini
2014-12-05 14:52   ` [U-Boot] [U-Boot, " Tom Rini
2014-11-06 14:28 ` [U-Boot] [PATCH 09/11] arm: omap_common: expose tps659038 and dra7xx_dplls Felipe Balbi
2014-11-10 18:47   ` Tom Rini
2014-12-05 14:52   ` [U-Boot] [U-Boot, " Tom Rini
2014-11-06 14:28 ` [U-Boot] [PATCH 10/11] arm: omap: add support for am57xx devices Felipe Balbi
2014-11-10 18:47   ` Tom Rini
2014-12-05 14:52   ` [U-Boot] [U-Boot, " Tom Rini
2014-11-06 14:28 ` [U-Boot] [PATCH 11/11] beagle_x15: add board support for Beagle x15 Felipe Balbi
2014-11-06 14:35   ` menon.nishanth at gmail.com
2014-11-06 14:43     ` Felipe Balbi
2014-11-06 14:44       ` [U-Boot] [PATCH v2 " Felipe Balbi
2014-11-06 14:46         ` menon.nishanth at gmail.com
2014-11-10 18:47         ` Tom Rini
2014-11-10 19:43           ` Felipe Balbi
2014-11-10 20:02             ` [U-Boot] [PATCH v3 " Felipe Balbi
2014-11-10 21:29               ` Tom Rini
2014-12-05 14:53               ` [U-Boot] [U-Boot, v3, " Tom Rini
2014-11-10 18:47 ` [U-Boot] [PATCH 01/11] arm: omap5: don't enable misc_init_r by default Tom Rini
2014-12-05 14:52 ` [U-Boot] [U-Boot, " Tom Rini

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