[U-Boot] [PATCH v2] usb: host: xhci-omap: Remove redundant board_usb_init and board_usb_cleanup functions

Uri Mashiach uri.mashiach at compulab.co.il
Thu Feb 15 17:34:58 UTC 2018



On 02/15/2018 01:42 PM, Faiz Abbas wrote:
> board_usb_init()/_cleanup() should be in board files and don't have
> a place in the xhci-omap driver. Weak versions for
> board_usb_init()/_cleanup() already exist in common/usb.c
> (for host mode) and drivers/usb/gadget/g_dnl.c (for gadget mode).
> 
> Therefore, remove init and cleanup functions from xhci-omap and
> implement them in the board files.
> 
> Signed-off-by: Faiz Abbas <faiz_abbas at ti.com>
> Reviewed-by: Marek Vasut <marex at denx.de>
> Reviewed-by: Bin Meng <bmeng.cn at gmail.com>

Tested-by: Uri Mashiach <uri.mashiach at compulab.co.il>

> ---
> v2: Added init and cleanup implementations for boards which
> were relying on the weak implementation.
> 
> Uri please test the compulab boards.
> 
>   board/compulab/cl-som-am57x/cl-som-am57x.c | 13 +++++++++++++
>   board/compulab/cm_t43/cm_t43.c             | 14 ++++++++++++++
>   board/ti/am43xx/board.c                    |  4 ++--
>   board/ti/am57xx/board.c                    |  4 ++--
>   board/ti/dra7xx/evm.c                      |  4 ++--
>   drivers/usb/host/xhci-omap.c               | 22 ----------------------
>   6 files changed, 33 insertions(+), 28 deletions(-)
> 
> diff --git a/board/compulab/cl-som-am57x/cl-som-am57x.c b/board/compulab/cl-som-am57x/cl-som-am57x.c
> index 389eebb..d7dc8a4 100644
> --- a/board/compulab/cl-som-am57x/cl-som-am57x.c
> +++ b/board/compulab/cl-som-am57x/cl-som-am57x.c
> @@ -16,6 +16,7 @@
>   #include <asm/arch/sys_proto.h>
>   #include "../common/common.h"
>   #include "../common/eeprom.h"
> +#include <asm/omap_common.h>
>   
>   DECLARE_GLOBAL_DATA_PTR;
>   
> @@ -64,3 +65,15 @@ u32 get_board_rev(void)
>   {
>   	return cl_eeprom_get_board_rev(CONFIG_SYS_I2C_EEPROM_BUS);
>   }
> +
> +int board_usb_init(int index, enum usb_init_type init)
> +{
> +	enable_usb_clocks(index);
> +	return 0;
> +}
> +
> +int board_usb_cleanup(int index, enum usb_init_type init)
> +{
> +	disable_usb_clocks(index);
> +	return 0;
> +}
> diff --git a/board/compulab/cm_t43/cm_t43.c b/board/compulab/cm_t43/cm_t43.c
> index 0d5da6f..bdbea4f 100644
> --- a/board/compulab/cm_t43/cm_t43.c
> +++ b/board/compulab/cm_t43/cm_t43.c
> @@ -14,6 +14,8 @@
>   #include <power/pmic.h>
>   #include <power/tps65218.h>
>   #include "board.h"
> +#include <usb.h>
> +#include <asm/omap_common.h>
>   
>   DECLARE_GLOBAL_DATA_PTR;
>   
> @@ -50,6 +52,18 @@ int board_init(void)
>   	return 0;
>   }
>   
> +int board_usb_init(int index, enum usb_init_type init)
> +{
> +	enable_usb_clocks(index);
> +	return 0;
> +}
> +
> +int board_usb_cleanup(int index, enum usb_init_type init)
> +{
> +	disable_usb_clocks(index);
> +	return 0;
> +}
> +
>   #ifdef CONFIG_DRIVER_TI_CPSW
>   
>   static void cpsw_control(int enabled)
> diff --git a/board/ti/am43xx/board.c b/board/ti/am43xx/board.c
> index 16150ad..715960a 100644
> --- a/board/ti/am43xx/board.c
> +++ b/board/ti/am43xx/board.c
> @@ -687,7 +687,7 @@ int usb_gadget_handle_interrupts(int index)
>   #endif /* CONFIG_USB_DWC3 */
>   
>   #if defined(CONFIG_USB_DWC3) || defined(CONFIG_USB_XHCI_OMAP)
> -int omap_xhci_board_usb_init(int index, enum usb_init_type init)
> +int board_usb_init(int index, enum usb_init_type init)
>   {
>   	enable_usb_clocks(index);
>   #ifdef CONFIG_USB_DWC3
> @@ -718,7 +718,7 @@ int omap_xhci_board_usb_init(int index, enum usb_init_type init)
>   	return 0;
>   }
>   
> -int omap_xhci_board_usb_cleanup(int index, enum usb_init_type init)
> +int board_usb_cleanup(int index, enum usb_init_type init)
>   {
>   #ifdef CONFIG_USB_DWC3
>   	switch (index) {
> diff --git a/board/ti/am57xx/board.c b/board/ti/am57xx/board.c
> index 1128784..c3f60f6 100644
> --- a/board/ti/am57xx/board.c
> +++ b/board/ti/am57xx/board.c
> @@ -867,7 +867,7 @@ int usb_gadget_handle_interrupts(int index)
>   #endif /* CONFIG_USB_DWC3 */
>   
>   #if defined(CONFIG_USB_DWC3) || defined(CONFIG_USB_XHCI_OMAP)
> -int omap_xhci_board_usb_init(int index, enum usb_init_type init)
> +int board_usb_init(int index, enum usb_init_type init)
>   {
>   	enable_usb_clocks(index);
>   	switch (index) {
> @@ -901,7 +901,7 @@ int omap_xhci_board_usb_init(int index, enum usb_init_type init)
>   	return 0;
>   }
>   
> -int omap_xhci_board_usb_cleanup(int index, enum usb_init_type init)
> +int board_usb_cleanup(int index, enum usb_init_type init)
>   {
>   #ifdef CONFIG_USB_DWC3
>   	switch (index) {
> diff --git a/board/ti/dra7xx/evm.c b/board/ti/dra7xx/evm.c
> index 6ecf971..519475e 100644
> --- a/board/ti/dra7xx/evm.c
> +++ b/board/ti/dra7xx/evm.c
> @@ -907,7 +907,7 @@ static struct ti_usb_phy_device usb_phy2_device = {
>   	.index = 1,
>   };
>   
> -int omap_xhci_board_usb_init(int index, enum usb_init_type init)
> +int board_usb_init(int index, enum usb_init_type init)
>   {
>   	enable_usb_clocks(index);
>   	switch (index) {
> @@ -944,7 +944,7 @@ int omap_xhci_board_usb_init(int index, enum usb_init_type init)
>   	return 0;
>   }
>   
> -int omap_xhci_board_usb_cleanup(int index, enum usb_init_type init)
> +int board_usb_cleanup(int index, enum usb_init_type init)
>   {
>   	switch (index) {
>   	case 0:
> diff --git a/drivers/usb/host/xhci-omap.c b/drivers/usb/host/xhci-omap.c
> index d6c5744..b814500 100644
> --- a/drivers/usb/host/xhci-omap.c
> +++ b/drivers/usb/host/xhci-omap.c
> @@ -27,28 +27,6 @@ DECLARE_GLOBAL_DATA_PTR;
>   
>   static struct omap_xhci omap;
>   
> -__weak int omap_xhci_board_usb_init(int index, enum usb_init_type init)
> -{
> -	enable_usb_clocks(index);
> -	return 0;
> -}
> -
> -int board_usb_init(int index, enum usb_init_type init)
> -{
> -	return omap_xhci_board_usb_init(index, init);
> -}
> -
> -__weak int omap_xhci_board_usb_cleanup(int index, enum usb_init_type init)
> -{
> -	disable_usb_clocks(index);
> -	return 0;
> -}
> -
> -int board_usb_cleanup(int index, enum usb_init_type init)
> -{
> -	return omap_xhci_board_usb_cleanup(index, init);
> -}
> -
>   static int omap_xhci_core_init(struct omap_xhci *omap)
>   {
>   	int ret = 0;
> 

-- 
Regards,
Uri


More information about the U-Boot mailing list