Skip to content
Snippets Groups Projects
Commit 909a1ab2 authored by Nikhil Badola's avatar Nikhil Badola Committed by Marek Vasut
Browse files

include: usb: Move USB controller base address mapping


Move USB controller Base address mapping from ls102xa immap
to fsl xhci header. This is required to remove any warnings when
controller base addresses are mapped for multiple platforms
in their respective files.

Signed-off-by: default avatarNikhil Badola <nikhil.badola@freescale.com>
parent 667f4dd9
No related branches found
No related tags found
No related merge requests found
......@@ -397,13 +397,4 @@ struct ccsr_cci400 {
u8 res_e004[0x10000 - 0xe004];
};
/* USB-XHCI */
#define FSL_XHCI_BASE 0x3100000
#define FSL_OCP1_SCP_BASE 0x4a084c00
#define FSL_OTG_WRAPPER_BASE 0x4A020000
#define CONFIG_SYS_FSL_XHCI_USB1_ADDR CONFIG_SYS_LS102XA_XHCI_USB1_ADDR
#define CONFIG_SYS_FSL_XHCI_USB2_ADDR 0
#define FSL_USB_XHCI_ADDR {CONFIG_SYS_FSL_XHCI_USB1_ADDR, \
CONFIG_SYS_FSL_XHCI_USB2_ADDR}
#endif /* __ASM_ARCH_LS102XA_IMMAP_H_ */
......@@ -51,4 +51,11 @@ struct fsl_xhci {
struct dwc3 *dwc3_reg;
};
#if defined(CONFIG_LS102XA)
#define CONFIG_SYS_FSL_XHCI_USB1_ADDR CONFIG_SYS_LS102XA_XHCI_USB1_ADDR
#define CONFIG_SYS_FSL_XHCI_USB2_ADDR 0
#endif
#define FSL_USB_XHCI_ADDR {CONFIG_SYS_FSL_XHCI_USB1_ADDR, \
CONFIG_SYS_FSL_XHCI_USB2_ADDR}
#endif /* _ASM_ARCH_XHCI_FSL_H_ */
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment