* [PATCH] bmips: allow disabling usb support
@ 2020-04-04 14:01 Álvaro Fernández Rojas
2020-04-23 19:10 ` Daniel Schwierzeck
0 siblings, 1 reply; 2+ messages in thread
From: Álvaro Fernández Rojas @ 2020-04-04 14:01 UTC (permalink / raw)
To: u-boot
Currently, if usb is disabled the following error is produced:
CC drivers/usb/host/ohci-hcd.o
drivers/usb/host/ohci-hcd.c: In function ?usb_lowlevel_init?:
drivers/usb/host/ohci-hcd.c:2057:35: error: ?CONFIG_SYS_USB_OHCI_REGS_BASE? undeclared (first use in this function); did you mean ?CONFIG_SYS_MONITOR_BASE??
gohci.regs = (struct ohci_regs *)CONFIG_SYS_USB_OHCI_REGS_BASE;
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~
CONFIG_SYS_MONITOR_BASE
drivers/usb/host/ohci-hcd.c:2057:35: note: each undeclared identifier is reported only once for each function it appears in
drivers/usb/host/ohci-hcd.c:2061:20: error: ?CONFIG_SYS_USB_OHCI_SLOT_NAME? undeclared (first use in this function); did you mean ?CONFIG_SYS_USB_OHCI_MAX_ROOT_PORTS??
gohci.slot_name = CONFIG_SYS_USB_OHCI_SLOT_NAME;
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~
CONFIG_SYS_USB_OHCI_MAX_ROOT_PORTS
Signed-off-by: ?lvaro Fern?ndez Rojas <noltari@gmail.com>
---
include/configs/bmips_bcm6318.h | 2 ++
include/configs/bmips_bcm63268.h | 2 ++
include/configs/bmips_bcm6328.h | 2 ++
include/configs/bmips_bcm6348.h | 2 ++
include/configs/bmips_bcm6358.h | 2 ++
include/configs/bmips_bcm6362.h | 2 ++
include/configs/bmips_bcm6368.h | 2 ++
7 files changed, 14 insertions(+)
diff --git a/include/configs/bmips_bcm6318.h b/include/configs/bmips_bcm6318.h
index c7e7119aaf..45eb931c25 100644
--- a/include/configs/bmips_bcm6318.h
+++ b/include/configs/bmips_bcm6318.h
@@ -19,7 +19,9 @@
#define CONFIG_EHCI_MMIO_BIG_ENDIAN
#define CONFIG_SYS_OHCI_SWAP_REG_ACCESS
#define CONFIG_SYS_USB_OHCI_MAX_ROOT_PORTS 2
+#if defined(CONFIG_USB_OHCI_HCD)
#define CONFIG_USB_OHCI_NEW
+#endif /* CONFIG_USB_OHCI_HCD */
/* U-Boot */
#define CONFIG_SYS_LOAD_ADDR CONFIG_SYS_SDRAM_BASE + SZ_1M
diff --git a/include/configs/bmips_bcm63268.h b/include/configs/bmips_bcm63268.h
index 45f26bb309..eed321eb6f 100644
--- a/include/configs/bmips_bcm63268.h
+++ b/include/configs/bmips_bcm63268.h
@@ -19,7 +19,9 @@
#define CONFIG_EHCI_MMIO_BIG_ENDIAN
#define CONFIG_SYS_OHCI_SWAP_REG_ACCESS
#define CONFIG_SYS_USB_OHCI_MAX_ROOT_PORTS 2
+#if defined(CONFIG_USB_OHCI_HCD)
#define CONFIG_USB_OHCI_NEW
+#endif /* CONFIG_USB_OHCI_HCD */
/* U-Boot */
#define CONFIG_SYS_LOAD_ADDR CONFIG_SYS_SDRAM_BASE + SZ_1M
diff --git a/include/configs/bmips_bcm6328.h b/include/configs/bmips_bcm6328.h
index 8d59438785..c78099a49d 100644
--- a/include/configs/bmips_bcm6328.h
+++ b/include/configs/bmips_bcm6328.h
@@ -19,7 +19,9 @@
#define CONFIG_EHCI_MMIO_BIG_ENDIAN
#define CONFIG_SYS_OHCI_SWAP_REG_ACCESS
#define CONFIG_SYS_USB_OHCI_MAX_ROOT_PORTS 2
+#if defined(CONFIG_USB_OHCI_HCD)
#define CONFIG_USB_OHCI_NEW
+#endif /* CONFIG_USB_OHCI_HCD */
/* U-Boot */
#define CONFIG_SYS_LOAD_ADDR CONFIG_SYS_SDRAM_BASE + SZ_1M
diff --git a/include/configs/bmips_bcm6348.h b/include/configs/bmips_bcm6348.h
index 061d6b25b7..547cf857ce 100644
--- a/include/configs/bmips_bcm6348.h
+++ b/include/configs/bmips_bcm6348.h
@@ -17,7 +17,9 @@
/* USB */
#define CONFIG_SYS_OHCI_SWAP_REG_ACCESS
#define CONFIG_SYS_USB_OHCI_MAX_ROOT_PORTS 2
+#if defined(CONFIG_USB_OHCI_HCD)
#define CONFIG_USB_OHCI_NEW
+#endif /* CONFIG_USB_OHCI_HCD */
/* U-Boot */
#define CONFIG_SYS_LOAD_ADDR CONFIG_SYS_SDRAM_BASE + SZ_1M
diff --git a/include/configs/bmips_bcm6358.h b/include/configs/bmips_bcm6358.h
index 583217d262..116e9705b6 100644
--- a/include/configs/bmips_bcm6358.h
+++ b/include/configs/bmips_bcm6358.h
@@ -19,7 +19,9 @@
#define CONFIG_EHCI_MMIO_BIG_ENDIAN
#define CONFIG_SYS_OHCI_SWAP_REG_ACCESS
#define CONFIG_SYS_USB_OHCI_MAX_ROOT_PORTS 2
+#if defined(CONFIG_USB_OHCI_HCD)
#define CONFIG_USB_OHCI_NEW
+#endif /* CONFIG_USB_OHCI_HCD */
/* U-Boot */
#define CONFIG_SYS_LOAD_ADDR CONFIG_SYS_SDRAM_BASE + SZ_1M
diff --git a/include/configs/bmips_bcm6362.h b/include/configs/bmips_bcm6362.h
index 570bc3b33d..e5e8b15e18 100644
--- a/include/configs/bmips_bcm6362.h
+++ b/include/configs/bmips_bcm6362.h
@@ -19,7 +19,9 @@
#define CONFIG_EHCI_MMIO_BIG_ENDIAN
#define CONFIG_SYS_OHCI_SWAP_REG_ACCESS
#define CONFIG_SYS_USB_OHCI_MAX_ROOT_PORTS 2
+#if defined(CONFIG_USB_OHCI_HCD)
#define CONFIG_USB_OHCI_NEW
+#endif /* CONFIG_USB_OHCI_HCD */
/* U-Boot */
#define CONFIG_SYS_LOAD_ADDR CONFIG_SYS_SDRAM_BASE + SZ_1M
diff --git a/include/configs/bmips_bcm6368.h b/include/configs/bmips_bcm6368.h
index ab5bdac726..4d4403f8d2 100644
--- a/include/configs/bmips_bcm6368.h
+++ b/include/configs/bmips_bcm6368.h
@@ -19,7 +19,9 @@
#define CONFIG_EHCI_MMIO_BIG_ENDIAN
#define CONFIG_SYS_OHCI_SWAP_REG_ACCESS
#define CONFIG_SYS_USB_OHCI_MAX_ROOT_PORTS 2
+#if defined(CONFIG_USB_OHCI_HCD)
#define CONFIG_USB_OHCI_NEW
+#endif /* CONFIG_USB_OHCI_HCD */
/* U-Boot */
#define CONFIG_SYS_LOAD_ADDR CONFIG_SYS_SDRAM_BASE + SZ_1M
--
2.20.1
^ permalink raw reply related [flat|nested] 2+ messages in thread* [PATCH] bmips: allow disabling usb support
2020-04-04 14:01 [PATCH] bmips: allow disabling usb support Álvaro Fernández Rojas
@ 2020-04-23 19:10 ` Daniel Schwierzeck
0 siblings, 0 replies; 2+ messages in thread
From: Daniel Schwierzeck @ 2020-04-23 19:10 UTC (permalink / raw)
To: u-boot
Am 04.04.20 um 16:01 schrieb ?lvaro Fern?ndez Rojas:
> Currently, if usb is disabled the following error is produced:
> CC drivers/usb/host/ohci-hcd.o
> drivers/usb/host/ohci-hcd.c: In function ?usb_lowlevel_init?:
> drivers/usb/host/ohci-hcd.c:2057:35: error: ?CONFIG_SYS_USB_OHCI_REGS_BASE? undeclared (first use in this function); did you mean ?CONFIG_SYS_MONITOR_BASE??
> gohci.regs = (struct ohci_regs *)CONFIG_SYS_USB_OHCI_REGS_BASE;
> ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~
> CONFIG_SYS_MONITOR_BASE
> drivers/usb/host/ohci-hcd.c:2057:35: note: each undeclared identifier is reported only once for each function it appears in
> drivers/usb/host/ohci-hcd.c:2061:20: error: ?CONFIG_SYS_USB_OHCI_SLOT_NAME? undeclared (first use in this function); did you mean ?CONFIG_SYS_USB_OHCI_MAX_ROOT_PORTS??
> gohci.slot_name = CONFIG_SYS_USB_OHCI_SLOT_NAME;
> ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~
> CONFIG_SYS_USB_OHCI_MAX_ROOT_PORTS
>
> Signed-off-by: ?lvaro Fern?ndez Rojas <noltari@gmail.com>
> ---
> include/configs/bmips_bcm6318.h | 2 ++
> include/configs/bmips_bcm63268.h | 2 ++
> include/configs/bmips_bcm6328.h | 2 ++
> include/configs/bmips_bcm6348.h | 2 ++
> include/configs/bmips_bcm6358.h | 2 ++
> include/configs/bmips_bcm6362.h | 2 ++
> include/configs/bmips_bcm6368.h | 2 ++
> 7 files changed, 14 insertions(+)
>
applied to u-boot-mips, thanks.
--
- Daniel
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2020-04-23 19:10 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-04-04 14:01 [PATCH] bmips: allow disabling usb support Álvaro Fernández Rojas
2020-04-23 19:10 ` Daniel Schwierzeck
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox