All of lore.kernel.org
 help / color / mirror / Atom feed
* [U-Boot] [PATCH 1/3] ARM: uniphier: remove unneeded CONFIG_USB_MAX_CONTROLLER_COUNT defines
@ 2016-10-13 15:39 Masahiro Yamada
  2016-10-13 15:40 ` [U-Boot] [PATCH 2/3] ARM: zynq(mp): " Masahiro Yamada
                   ` (3 more replies)
  0 siblings, 4 replies; 9+ messages in thread
From: Masahiro Yamada @ 2016-10-13 15:39 UTC (permalink / raw)
  To: u-boot

ARCH_UNIPHIER selects DM_USB, where CONFIG_USB_MAX_CONTROLLER_COUNT
is not used.

Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
---

 include/configs/uniphier.h | 1 -
 1 file changed, 1 deletion(-)

diff --git a/include/configs/uniphier.h b/include/configs/uniphier.h
index 7331d13..5be46e5 100644
--- a/include/configs/uniphier.h
+++ b/include/configs/uniphier.h
@@ -126,7 +126,6 @@
 #define CONFIG_SYS_NAND_BAD_BLOCK_POS			0
 
 /* USB */
-#define CONFIG_USB_MAX_CONTROLLER_COUNT		2
 #define CONFIG_SYS_USB_XHCI_MAX_ROOT_PORTS	4
 #define CONFIG_FAT_WRITE
 #define CONFIG_DOS_PARTITION
-- 
1.9.1

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

* [U-Boot] [PATCH 2/3] ARM: zynq(mp): remove unneeded CONFIG_USB_MAX_CONTROLLER_COUNT defines
  2016-10-13 15:39 [U-Boot] [PATCH 1/3] ARM: uniphier: remove unneeded CONFIG_USB_MAX_CONTROLLER_COUNT defines Masahiro Yamada
@ 2016-10-13 15:40 ` Masahiro Yamada
  2016-10-14  7:29   ` Michal Simek
  2016-10-13 15:40 ` [U-Boot] [PATCH 3/3] ARM: sunxi: " Masahiro Yamada
                   ` (2 subsequent siblings)
  3 siblings, 1 reply; 9+ messages in thread
From: Masahiro Yamada @ 2016-10-13 15:40 UTC (permalink / raw)
  To: u-boot

ARCH_ZYNQ(MP) selects DM_USB, where CONFIG_USB_MAX_CONTROLLER_COUNT
is not used.

Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
---

 include/configs/xilinx_zynqmp.h | 1 -
 include/configs/zynq-common.h   | 1 -
 2 files changed, 2 deletions(-)

diff --git a/include/configs/xilinx_zynqmp.h b/include/configs/xilinx_zynqmp.h
index adc42cf..c8e1ffa 100644
--- a/include/configs/xilinx_zynqmp.h
+++ b/include/configs/xilinx_zynqmp.h
@@ -110,7 +110,6 @@
 #define CONFIG_SYS_LOAD_ADDR		0x8000000
 
 #if defined(CONFIG_ZYNQMP_USB)
-#define CONFIG_USB_MAX_CONTROLLER_COUNT         2
 #define CONFIG_SYS_USB_XHCI_MAX_ROOT_PORTS      2
 #define CONFIG_USB_XHCI_ZYNQMP
 
diff --git a/include/configs/zynq-common.h b/include/configs/zynq-common.h
index 0118fd2..7cca83f 100644
--- a/include/configs/zynq-common.h
+++ b/include/configs/zynq-common.h
@@ -86,7 +86,6 @@
 
 #ifdef CONFIG_USB_EHCI_ZYNQ
 # define CONFIG_EHCI_IS_TDI
-# define CONFIG_USB_MAX_CONTROLLER_COUNT	2
 
 # define CONFIG_SYS_DFU_DATA_BUF_SIZE	0x600000
 # define DFU_DEFAULT_POLL_TIMEOUT	300
-- 
1.9.1

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

* [U-Boot] [PATCH 3/3] ARM: sunxi: remove unneeded CONFIG_USB_MAX_CONTROLLER_COUNT defines
  2016-10-13 15:39 [U-Boot] [PATCH 1/3] ARM: uniphier: remove unneeded CONFIG_USB_MAX_CONTROLLER_COUNT defines Masahiro Yamada
  2016-10-13 15:40 ` [U-Boot] [PATCH 2/3] ARM: zynq(mp): " Masahiro Yamada
@ 2016-10-13 15:40 ` Masahiro Yamada
  2016-10-14 14:00   ` Jagan Teki
  2016-10-29 12:28   ` Hans de Goede
  2016-10-13 22:52 ` [U-Boot] [PATCH 1/3] ARM: uniphier: " Simon Glass
  2016-10-16 13:31 ` Masahiro Yamada
  3 siblings, 2 replies; 9+ messages in thread
From: Masahiro Yamada @ 2016-10-13 15:40 UTC (permalink / raw)
  To: u-boot

ARCH_SUNXI selects DM_USB, where CONFIG_USB_MAX_CONTROLLER_COUNT
is not used.

Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
---

 include/configs/sun4i.h | 1 -
 include/configs/sun5i.h | 1 -
 include/configs/sun6i.h | 1 -
 include/configs/sun7i.h | 1 -
 include/configs/sun8i.h | 1 -
 5 files changed, 5 deletions(-)

diff --git a/include/configs/sun4i.h b/include/configs/sun4i.h
index ea079eb..3dfd95a 100644
--- a/include/configs/sun4i.h
+++ b/include/configs/sun4i.h
@@ -14,7 +14,6 @@
 
 #ifdef CONFIG_USB_EHCI
 #define CONFIG_USB_EHCI_SUNXI
-#define CONFIG_USB_MAX_CONTROLLER_COUNT	2
 #endif
 
 #define CONFIG_SUNXI_USB_PHYS	3
diff --git a/include/configs/sun5i.h b/include/configs/sun5i.h
index d257659..ec8f319 100644
--- a/include/configs/sun5i.h
+++ b/include/configs/sun5i.h
@@ -14,7 +14,6 @@
 
 #ifdef CONFIG_USB_EHCI
 #define CONFIG_USB_EHCI_SUNXI
-#define CONFIG_USB_MAX_CONTROLLER_COUNT	1
 #endif
 
 #define CONFIG_SUNXI_USB_PHYS	2
diff --git a/include/configs/sun6i.h b/include/configs/sun6i.h
index 67a26c2..6c1eca4 100644
--- a/include/configs/sun6i.h
+++ b/include/configs/sun6i.h
@@ -17,7 +17,6 @@
 
 #ifdef CONFIG_USB_EHCI
 #define CONFIG_USB_EHCI_SUNXI
-#define CONFIG_USB_MAX_CONTROLLER_COUNT	2
 #endif
 
 #define CONFIG_SUNXI_USB_PHYS	3
diff --git a/include/configs/sun7i.h b/include/configs/sun7i.h
index d8e6e20..5455901 100644
--- a/include/configs/sun7i.h
+++ b/include/configs/sun7i.h
@@ -15,7 +15,6 @@
 
 #ifdef CONFIG_USB_EHCI
 #define CONFIG_USB_EHCI_SUNXI
-#define CONFIG_USB_MAX_CONTROLLER_COUNT	2
 #endif
 
 #define CONFIG_SUNXI_USB_PHYS	3
diff --git a/include/configs/sun8i.h b/include/configs/sun8i.h
index 011d70f..a4c3fb6 100644
--- a/include/configs/sun8i.h
+++ b/include/configs/sun8i.h
@@ -15,7 +15,6 @@
 
 #ifdef CONFIG_USB_EHCI
 #define CONFIG_USB_EHCI_SUNXI
-#define CONFIG_USB_MAX_CONTROLLER_COUNT	1
 #endif
 
 #ifdef CONFIG_MACH_SUN8I_H3
-- 
1.9.1

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

* [U-Boot] [PATCH 1/3] ARM: uniphier: remove unneeded CONFIG_USB_MAX_CONTROLLER_COUNT defines
  2016-10-13 15:39 [U-Boot] [PATCH 1/3] ARM: uniphier: remove unneeded CONFIG_USB_MAX_CONTROLLER_COUNT defines Masahiro Yamada
  2016-10-13 15:40 ` [U-Boot] [PATCH 2/3] ARM: zynq(mp): " Masahiro Yamada
  2016-10-13 15:40 ` [U-Boot] [PATCH 3/3] ARM: sunxi: " Masahiro Yamada
@ 2016-10-13 22:52 ` Simon Glass
  2016-10-16 13:31 ` Masahiro Yamada
  3 siblings, 0 replies; 9+ messages in thread
From: Simon Glass @ 2016-10-13 22:52 UTC (permalink / raw)
  To: u-boot

On 13 October 2016 at 09:39, Masahiro Yamada
<yamada.masahiro@socionext.com> wrote:
> ARCH_UNIPHIER selects DM_USB, where CONFIG_USB_MAX_CONTROLLER_COUNT
> is not used.
>
> Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
> ---
>
>  include/configs/uniphier.h | 1 -
>  1 file changed, 1 deletion(-)

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

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

* [U-Boot] [PATCH 2/3] ARM: zynq(mp): remove unneeded CONFIG_USB_MAX_CONTROLLER_COUNT defines
  2016-10-13 15:40 ` [U-Boot] [PATCH 2/3] ARM: zynq(mp): " Masahiro Yamada
@ 2016-10-14  7:29   ` Michal Simek
  2016-10-14  8:19     ` Moritz Fischer
  0 siblings, 1 reply; 9+ messages in thread
From: Michal Simek @ 2016-10-14  7:29 UTC (permalink / raw)
  To: u-boot

On 13.10.2016 17:40, Masahiro Yamada wrote:
> ARCH_ZYNQ(MP) selects DM_USB, where CONFIG_USB_MAX_CONTROLLER_COUNT
> is not used.
> 
> Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
> ---
> 
>  include/configs/xilinx_zynqmp.h | 1 -
>  include/configs/zynq-common.h   | 1 -
>  2 files changed, 2 deletions(-)
> 
> diff --git a/include/configs/xilinx_zynqmp.h b/include/configs/xilinx_zynqmp.h
> index adc42cf..c8e1ffa 100644
> --- a/include/configs/xilinx_zynqmp.h
> +++ b/include/configs/xilinx_zynqmp.h
> @@ -110,7 +110,6 @@
>  #define CONFIG_SYS_LOAD_ADDR		0x8000000
>  
>  #if defined(CONFIG_ZYNQMP_USB)
> -#define CONFIG_USB_MAX_CONTROLLER_COUNT         2
>  #define CONFIG_SYS_USB_XHCI_MAX_ROOT_PORTS      2
>  #define CONFIG_USB_XHCI_ZYNQMP
>  
> diff --git a/include/configs/zynq-common.h b/include/configs/zynq-common.h
> index 0118fd2..7cca83f 100644
> --- a/include/configs/zynq-common.h
> +++ b/include/configs/zynq-common.h
> @@ -86,7 +86,6 @@
>  
>  #ifdef CONFIG_USB_EHCI_ZYNQ
>  # define CONFIG_EHCI_IS_TDI
> -# define CONFIG_USB_MAX_CONTROLLER_COUNT	2
>  
>  # define CONFIG_SYS_DFU_DATA_BUF_SIZE	0x600000
>  # define DFU_DEFAULT_POLL_TIMEOUT	300
> 

Acked-by: Michal Simek <michal.simek@xilinx.com>

Thanks,
Michal

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

* [U-Boot] [PATCH 2/3] ARM: zynq(mp): remove unneeded CONFIG_USB_MAX_CONTROLLER_COUNT defines
  2016-10-14  7:29   ` Michal Simek
@ 2016-10-14  8:19     ` Moritz Fischer
  0 siblings, 0 replies; 9+ messages in thread
From: Moritz Fischer @ 2016-10-14  8:19 UTC (permalink / raw)
  To: u-boot

On Fri, Oct 14, 2016 at 9:29 AM, Michal Simek <michal.simek@xilinx.com> wrote:
> On 13.10.2016 17:40, Masahiro Yamada wrote:
>> ARCH_ZYNQ(MP) selects DM_USB, where CONFIG_USB_MAX_CONTROLLER_COUNT
>> is not used.
>>
>> Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
>> ---
>>
>>  include/configs/xilinx_zynqmp.h | 1 -
>>  include/configs/zynq-common.h   | 1 -
>>  2 files changed, 2 deletions(-)
>>
>> diff --git a/include/configs/xilinx_zynqmp.h b/include/configs/xilinx_zynqmp.h
>> index adc42cf..c8e1ffa 100644
>> --- a/include/configs/xilinx_zynqmp.h
>> +++ b/include/configs/xilinx_zynqmp.h
>> @@ -110,7 +110,6 @@
>>  #define CONFIG_SYS_LOAD_ADDR         0x8000000
>>
>>  #if defined(CONFIG_ZYNQMP_USB)
>> -#define CONFIG_USB_MAX_CONTROLLER_COUNT         2
>>  #define CONFIG_SYS_USB_XHCI_MAX_ROOT_PORTS      2
>>  #define CONFIG_USB_XHCI_ZYNQMP
>>
>> diff --git a/include/configs/zynq-common.h b/include/configs/zynq-common.h
>> index 0118fd2..7cca83f 100644
>> --- a/include/configs/zynq-common.h
>> +++ b/include/configs/zynq-common.h
>> @@ -86,7 +86,6 @@
>>
>>  #ifdef CONFIG_USB_EHCI_ZYNQ
>>  # define CONFIG_EHCI_IS_TDI
>> -# define CONFIG_USB_MAX_CONTROLLER_COUNT     2
>>
>>  # define CONFIG_SYS_DFU_DATA_BUF_SIZE        0x600000
>>  # define DFU_DEFAULT_POLL_TIMEOUT    300
>>
>
> Acked-by: Michal Simek <michal.simek@xilinx.com>
Acked-by: Moritz Fischer <moritz.fischer@ettus.com>

Cheers,

Moritz

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

* [U-Boot] [PATCH 3/3] ARM: sunxi: remove unneeded CONFIG_USB_MAX_CONTROLLER_COUNT defines
  2016-10-13 15:40 ` [U-Boot] [PATCH 3/3] ARM: sunxi: " Masahiro Yamada
@ 2016-10-14 14:00   ` Jagan Teki
  2016-10-29 12:28   ` Hans de Goede
  1 sibling, 0 replies; 9+ messages in thread
From: Jagan Teki @ 2016-10-14 14:00 UTC (permalink / raw)
  To: u-boot

On Thu, Oct 13, 2016 at 9:10 PM, Masahiro Yamada
<yamada.masahiro@socionext.com> wrote:
> ARCH_SUNXI selects DM_USB, where CONFIG_USB_MAX_CONTROLLER_COUNT
> is not used.
>
> Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
> ---

Reviewed-by: Jagan Teki <jteki@openedev.com>

thanks!
-- 
Jagan Teki
Free Software Engineer | www.openedev.com
U-Boot, Linux | Upstream Maintainer
Hyderabad, India.

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

* [U-Boot] [PATCH 1/3] ARM: uniphier: remove unneeded CONFIG_USB_MAX_CONTROLLER_COUNT defines
  2016-10-13 15:39 [U-Boot] [PATCH 1/3] ARM: uniphier: remove unneeded CONFIG_USB_MAX_CONTROLLER_COUNT defines Masahiro Yamada
                   ` (2 preceding siblings ...)
  2016-10-13 22:52 ` [U-Boot] [PATCH 1/3] ARM: uniphier: " Simon Glass
@ 2016-10-16 13:31 ` Masahiro Yamada
  3 siblings, 0 replies; 9+ messages in thread
From: Masahiro Yamada @ 2016-10-16 13:31 UTC (permalink / raw)
  To: u-boot

2016-10-14 0:39 GMT+09:00 Masahiro Yamada <yamada.masahiro@socionext.com>:
> ARCH_UNIPHIER selects DM_USB, where CONFIG_USB_MAX_CONTROLLER_COUNT
> is not used.
>
> Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
> ---
>
>  include/configs/uniphier.h | 1 -
>  1 file changed, 1 deletion(-)
>
> diff --git a/include/configs/uniphier.h b/include/configs/uniphier.h
> index 7331d13..5be46e5 100644
> --- a/include/configs/uniphier.h
> +++ b/include/configs/uniphier.h
> @@ -126,7 +126,6 @@
>  #define CONFIG_SYS_NAND_BAD_BLOCK_POS                  0
>
>  /* USB */
> -#define CONFIG_USB_MAX_CONTROLLER_COUNT                2
>  #define CONFIG_SYS_USB_XHCI_MAX_ROOT_PORTS     4
>  #define CONFIG_FAT_WRITE
>  #define CONFIG_DOS_PARTITION
> --
> 1.9.1

-- 
Best Regards
Masahiro Yamada



Applied to u-boot-uniphier.

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

* [U-Boot] [PATCH 3/3] ARM: sunxi: remove unneeded CONFIG_USB_MAX_CONTROLLER_COUNT defines
  2016-10-13 15:40 ` [U-Boot] [PATCH 3/3] ARM: sunxi: " Masahiro Yamada
  2016-10-14 14:00   ` Jagan Teki
@ 2016-10-29 12:28   ` Hans de Goede
  1 sibling, 0 replies; 9+ messages in thread
From: Hans de Goede @ 2016-10-29 12:28 UTC (permalink / raw)
  To: u-boot

Hi,

On 13-10-16 17:40, Masahiro Yamada wrote:
> ARCH_SUNXI selects DM_USB, where CONFIG_USB_MAX_CONTROLLER_COUNT
> is not used.
>
> Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>

Thank you I've applied this to my tree and will
include it in my next pull-req.

Regards,

Hans


> ---
>
>  include/configs/sun4i.h | 1 -
>  include/configs/sun5i.h | 1 -
>  include/configs/sun6i.h | 1 -
>  include/configs/sun7i.h | 1 -
>  include/configs/sun8i.h | 1 -
>  5 files changed, 5 deletions(-)
>
> diff --git a/include/configs/sun4i.h b/include/configs/sun4i.h
> index ea079eb..3dfd95a 100644
> --- a/include/configs/sun4i.h
> +++ b/include/configs/sun4i.h
> @@ -14,7 +14,6 @@
>
>  #ifdef CONFIG_USB_EHCI
>  #define CONFIG_USB_EHCI_SUNXI
> -#define CONFIG_USB_MAX_CONTROLLER_COUNT	2
>  #endif
>
>  #define CONFIG_SUNXI_USB_PHYS	3
> diff --git a/include/configs/sun5i.h b/include/configs/sun5i.h
> index d257659..ec8f319 100644
> --- a/include/configs/sun5i.h
> +++ b/include/configs/sun5i.h
> @@ -14,7 +14,6 @@
>
>  #ifdef CONFIG_USB_EHCI
>  #define CONFIG_USB_EHCI_SUNXI
> -#define CONFIG_USB_MAX_CONTROLLER_COUNT	1
>  #endif
>
>  #define CONFIG_SUNXI_USB_PHYS	2
> diff --git a/include/configs/sun6i.h b/include/configs/sun6i.h
> index 67a26c2..6c1eca4 100644
> --- a/include/configs/sun6i.h
> +++ b/include/configs/sun6i.h
> @@ -17,7 +17,6 @@
>
>  #ifdef CONFIG_USB_EHCI
>  #define CONFIG_USB_EHCI_SUNXI
> -#define CONFIG_USB_MAX_CONTROLLER_COUNT	2
>  #endif
>
>  #define CONFIG_SUNXI_USB_PHYS	3
> diff --git a/include/configs/sun7i.h b/include/configs/sun7i.h
> index d8e6e20..5455901 100644
> --- a/include/configs/sun7i.h
> +++ b/include/configs/sun7i.h
> @@ -15,7 +15,6 @@
>
>  #ifdef CONFIG_USB_EHCI
>  #define CONFIG_USB_EHCI_SUNXI
> -#define CONFIG_USB_MAX_CONTROLLER_COUNT	2
>  #endif
>
>  #define CONFIG_SUNXI_USB_PHYS	3
> diff --git a/include/configs/sun8i.h b/include/configs/sun8i.h
> index 011d70f..a4c3fb6 100644
> --- a/include/configs/sun8i.h
> +++ b/include/configs/sun8i.h
> @@ -15,7 +15,6 @@
>
>  #ifdef CONFIG_USB_EHCI
>  #define CONFIG_USB_EHCI_SUNXI
> -#define CONFIG_USB_MAX_CONTROLLER_COUNT	1
>  #endif
>
>  #ifdef CONFIG_MACH_SUN8I_H3
>

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

end of thread, other threads:[~2016-10-29 12:28 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-10-13 15:39 [U-Boot] [PATCH 1/3] ARM: uniphier: remove unneeded CONFIG_USB_MAX_CONTROLLER_COUNT defines Masahiro Yamada
2016-10-13 15:40 ` [U-Boot] [PATCH 2/3] ARM: zynq(mp): " Masahiro Yamada
2016-10-14  7:29   ` Michal Simek
2016-10-14  8:19     ` Moritz Fischer
2016-10-13 15:40 ` [U-Boot] [PATCH 3/3] ARM: sunxi: " Masahiro Yamada
2016-10-14 14:00   ` Jagan Teki
2016-10-29 12:28   ` Hans de Goede
2016-10-13 22:52 ` [U-Boot] [PATCH 1/3] ARM: uniphier: " Simon Glass
2016-10-16 13:31 ` Masahiro Yamada

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