diff mbox

[U-Boot,2/2] tegra: convert gpio_config_uart to weak symbol

Message ID 1344302320-17238-2-git-send-email-dev@lynxeye.de
State Superseded
Delegated to: Tom Warren
Headers show

Commit Message

Lucas Stach Aug. 7, 2012, 1:18 a.m. UTC
Most boards don't need this fixup hook. To avoid a lot of empty
implementations in board files convert it to a weak symbol.

Signed-off-by: Lucas Stach <dev@lynxeye.de>
CC: Stephen Warren <swarren@wwwdotorg.org>
CC: Tom Warren <TWarren@nvidia.com>
---
 board/avionic-design/common/tamonten.c | 7 -------
 board/compal/paz00/paz00.c             | 7 -------
 board/compulab/trimslice/trimslice.c   | 7 -------
 board/nvidia/common/board.c            | 5 +++++
 board/nvidia/harmony/harmony.c         | 7 -------
 board/nvidia/whistler/whistler.c       | 7 -------
 6 Dateien geändert, 5 Zeilen hinzugefügt(+), 35 Zeilen entfernt(-)

Comments

Stephen Warren Aug. 7, 2012, 5:09 p.m. UTC | #1
On 08/06/2012 07:18 PM, Lucas Stach wrote:
> Most boards don't need this fixup hook. To avoid a lot of empty
> implementations in board files convert it to a weak symbol.

This seems OK on the surface, but I think there may be more opportunity
for cleanup here.

In board/nvidia/common/board.c, I see both of the following:

board_init:

#ifdef CONFIG_SPI_UART_SWITCH
        gpio_config_uart();
#endif


board_early_init_f:

        /* Initialize periph GPIOs */
        gpio_early_init();
#ifdef CONFIG_SPI_UART_SWITCH
        gpio_early_init_uart();
#else
        gpio_config_uart();
#endif

and in arch/arm/cpu/arm720t/tegra20/spl.c:

board_init_f:

#ifdef CONFIG_SPI_UART_SWITCH
        gpio_early_init_uart();
#else
        gpio_config_uart();
#endif

It sure seems like we don't need to call those two init function all
those times. Perhaps we can clarify which of the functions are actually
needed at all, and when they should be called.
Lucas Stach Aug. 19, 2012, 4:56 p.m. UTC | #2
Hi Stephen,

Am Dienstag, den 07.08.2012, 11:09 -0600 schrieb Stephen Warren:
> On 08/06/2012 07:18 PM, Lucas Stach wrote:
> > Most boards don't need this fixup hook. To avoid a lot of empty
> > implementations in board files convert it to a weak symbol.
> 
> This seems OK on the surface, but I think there may be more opportunity
> for cleanup here.
> 
I looked a bit deeper into this and it seems that in fact the logic of
all those calls are correct and none them could be removed.

To clarify what's going on:
if we are building without CONFIG_SPI_UART_SWITCH the board file has to
provide a function gpio_config_uart() to ensure correct GPIO setting and
it's correct to call this in early_init.

Now, if we build with CONFIG_SPI_UART_SWITCH set, the board file stops
providing the gpio_config_uart() and the UART switch provides a
gpio_early_init_uart() function which does essentially the same, so we
call this instead in early init.

The confusing part is that the UART switch now provides a function also
named gpio_config_uart(), which redoes the GPIO setting after relocation
and does some internal state setting.

Now while explaining all this in this email I see how we should make
this more clear with some reasonable renaming, but we won't get around
the weak symbol if we want to keep the possibility for boards to build
without CONFIG_SPI_UART_SWITCH. I'll spin a new patch to untangle this
mess a bit.

Thanks,
Lucas

> In board/nvidia/common/board.c, I see both of the following:
> 
> board_init:
> 
> #ifdef CONFIG_SPI_UART_SWITCH
>         gpio_config_uart();
> #endif
> 
> 
> board_early_init_f:
> 
>         /* Initialize periph GPIOs */
>         gpio_early_init();
> #ifdef CONFIG_SPI_UART_SWITCH
>         gpio_early_init_uart();
> #else
>         gpio_config_uart();
> #endif
> 
> and in arch/arm/cpu/arm720t/tegra20/spl.c:
> 
> board_init_f:
> 
> #ifdef CONFIG_SPI_UART_SWITCH
>         gpio_early_init_uart();
> #else
>         gpio_config_uart();
> #endif
> 
> It sure seems like we don't need to call those two init function all
> those times. Perhaps we can clarify which of the functions are actually
> needed at all, and when they should be called.
>
diff mbox

Patch

diff --git a/board/avionic-design/common/tamonten.c b/board/avionic-design/common/tamonten.c
index a0a4d1d..f5e6f6d 100644
--- a/board/avionic-design/common/tamonten.c
+++ b/board/avionic-design/common/tamonten.c
@@ -41,13 +41,6 @@ 
 #include <mmc.h>
 #endif
 
-/*
- * Routine: gpio_config_uart
- * Description: Does nothing on Tamonten - no conflict w/SPI.
- */
-void gpio_config_uart(void)
-{
-}
 
 #ifdef CONFIG_BOARD_EARLY_INIT_F
 void gpio_early_init(void)
diff --git a/board/compal/paz00/paz00.c b/board/compal/paz00/paz00.c
index cd684f2..59cf41b 100644
--- a/board/compal/paz00/paz00.c
+++ b/board/compal/paz00/paz00.c
@@ -24,13 +24,6 @@ 
 #include <mmc.h>
 #endif
 
-/*
- * Routine: gpio_config_uart
- * Description: Does nothing on Paz00 - no conflict w/SPI.
- */
-void gpio_config_uart(void)
-{
-}
 
 #ifdef CONFIG_TEGRA_MMC
 /*
diff --git a/board/compulab/trimslice/trimslice.c b/board/compulab/trimslice/trimslice.c
index 5dae15b..f6de19e 100644
--- a/board/compulab/trimslice/trimslice.c
+++ b/board/compulab/trimslice/trimslice.c
@@ -34,13 +34,6 @@ 
 #include <mmc.h>
 #endif
 
-/*
- * Routine: gpio_config_uart
- * Description: Does nothing on TrimSlice - no UART-related GPIOs.
- */
-void gpio_config_uart(void)
-{
-}
 
 void pin_mux_spi(void)
 {
diff --git a/board/nvidia/common/board.c b/board/nvidia/common/board.c
index 3bd4ff1..c4304ac 100644
--- a/board/nvidia/common/board.c
+++ b/board/nvidia/common/board.c
@@ -72,6 +72,11 @@  void __pin_mux_spi(void)
 
 void pin_mux_spi(void) __attribute__((weak, alias("__pin_mux_spi")));
 
+void __gpio_config_uart(void)
+{
+}
+
+void gpio_config_uart(void) __attribute__((weak, alias("__gpio_config_uart")));
 /*
  * Routine: power_det_init
  * Description: turn off power detects
diff --git a/board/nvidia/harmony/harmony.c b/board/nvidia/harmony/harmony.c
index 44977c7..5b75230 100644
--- a/board/nvidia/harmony/harmony.c
+++ b/board/nvidia/harmony/harmony.c
@@ -33,13 +33,6 @@ 
 #include <mmc.h>
 #endif
 
-/*
- * Routine: gpio_config_uart
- * Description: Does nothing on Harmony - no conflict w/SPI.
- */
-void gpio_config_uart(void)
-{
-}
 
 #ifdef CONFIG_TEGRA_MMC
 /*
diff --git a/board/nvidia/whistler/whistler.c b/board/nvidia/whistler/whistler.c
index c0a114d..cad7c48 100644
--- a/board/nvidia/whistler/whistler.c
+++ b/board/nvidia/whistler/whistler.c
@@ -34,13 +34,6 @@ 
 #include <mmc.h>
 #endif
 
-/*
- * Routine: gpio_config_uart
- * Description: Does nothing on Whistler - no UART-related GPIOs.
- */
-void gpio_config_uart(void)
-{
-}
 
 /*
  * Routine: pin_mux_mmc