mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-10 23:24:38 +00:00
usb: musb-new: CONFIG_MUSB prefix replacement with CONFIG_USB_MUSB
USB-related options are usually prefixed with CONFIG_USB and platform-specific adaptation for the MUSB controller already have a CONFIG_USB_MUSB prefix, so this switches all MUSB-related options to a CONFIG_USB_MUSB prefix, for consistency. Signed-off-by: Paul Kocialkowski <contact@paulk.fr>
This commit is contained in:
parent
68f7c5db2d
commit
95de1e2f26
54 changed files with 167 additions and 167 deletions
|
@ -124,7 +124,7 @@ int cpu_mmc_init(bd_t *bis)
|
|||
#endif
|
||||
|
||||
/* AM33XX has two MUSB controllers which can be host or gadget */
|
||||
#if (defined(CONFIG_MUSB_GADGET) || defined(CONFIG_MUSB_HOST)) && \
|
||||
#if (defined(CONFIG_USB_MUSB_GADGET) || defined(CONFIG_USB_MUSB_HOST)) && \
|
||||
(defined(CONFIG_AM335X_USB0) || defined(CONFIG_AM335X_USB1))
|
||||
static struct ctrl_dev *cdev = (struct ctrl_dev *)CTRL_DEVICE_BASE;
|
||||
|
||||
|
|
|
@ -21,7 +21,7 @@ int sunxi_usb_phy_id_detect(int index);
|
|||
void sunxi_usb_phy_enable_squelch_detect(int index, int enable);
|
||||
|
||||
/* Not really phy related, but we have to declare this somewhere ... */
|
||||
#if defined(CONFIG_MUSB_HOST) || defined(CONFIG_MUSB_GADGET)
|
||||
#if defined(CONFIG_USB_MUSB_HOST) || defined(CONFIG_USB_MUSB_GADGET)
|
||||
void sunxi_musb_board_init(void);
|
||||
#else
|
||||
#define sunxi_musb_board_init()
|
||||
|
|
|
@ -363,7 +363,7 @@ static struct cpsw_platform_data cpsw_data = {
|
|||
#if ((defined(CONFIG_SPL_ETH_SUPPORT) || defined(CONFIG_SPL_USBETH_SUPPORT)) &&\
|
||||
defined(CONFIG_SPL_BUILD)) || \
|
||||
((defined(CONFIG_DRIVER_TI_CPSW) || \
|
||||
defined(CONFIG_USB_ETHER) && defined(CONFIG_MUSB_GADGET)) && \
|
||||
defined(CONFIG_USB_ETHER) && defined(CONFIG_USB_MUSB_GADGET)) && \
|
||||
!defined(CONFIG_SPL_BUILD))
|
||||
int board_eth_init(bd_t *bis)
|
||||
{
|
||||
|
|
|
@ -50,12 +50,12 @@ static struct omap_musb_board_data cm_t3517_musb_board_data = {
|
|||
};
|
||||
|
||||
static struct musb_hdrc_platform_data cm_t3517_musb_pdata = {
|
||||
#if defined(CONFIG_MUSB_HOST)
|
||||
#if defined(CONFIG_USB_MUSB_HOST)
|
||||
.mode = MUSB_HOST,
|
||||
#elif defined(CONFIG_MUSB_GADGET)
|
||||
#elif defined(CONFIG_USB_MUSB_GADGET)
|
||||
.mode = MUSB_PERIPHERAL,
|
||||
#else
|
||||
#error "Please define either CONFIG_MUSB_HOST or CONFIG_MUSB_GADGET"
|
||||
#error "Please define either CONFIG_USB_MUSB_HOST or CONFIG_USB_MUSB_GADGET"
|
||||
#endif
|
||||
.config = &cm_t3517_musb_config,
|
||||
.power = 250,
|
||||
|
|
|
@ -65,12 +65,12 @@ static struct omap_musb_board_data musb_board_data = {
|
|||
};
|
||||
|
||||
static struct musb_hdrc_platform_data musb_plat = {
|
||||
#if defined(CONFIG_MUSB_HOST)
|
||||
#if defined(CONFIG_USB_MUSB_HOST)
|
||||
.mode = MUSB_HOST,
|
||||
#elif defined(CONFIG_MUSB_GADGET)
|
||||
#elif defined(CONFIG_USB_MUSB_GADGET)
|
||||
.mode = MUSB_PERIPHERAL,
|
||||
#else
|
||||
#error "Please define either CONFIG_MUSB_HOST or CONFIG_MUSB_GADGET"
|
||||
#error "Please define either CONFIG_USB_MUSB_HOST or CONFIG_USB_MUSB_GADGET"
|
||||
#endif
|
||||
.config = &musb_config,
|
||||
.power = 250,
|
||||
|
@ -159,7 +159,7 @@ int board_mmc_init(bd_t *bis)
|
|||
}
|
||||
#endif
|
||||
|
||||
#if defined(CONFIG_USB_ETHER) && defined(CONFIG_MUSB_GADGET)
|
||||
#if defined(CONFIG_USB_ETHER) && defined(CONFIG_USB_MUSB_GADGET)
|
||||
int board_eth_init(bd_t *bis)
|
||||
{
|
||||
int rv, n = 0;
|
||||
|
|
|
@ -208,7 +208,7 @@ static struct cpsw_platform_data cpsw_data = {
|
|||
#endif
|
||||
|
||||
#if defined(CONFIG_DRIVER_TI_CPSW) || \
|
||||
(defined(CONFIG_USB_ETHER) && defined(CONFIG_MUSB_GADGET))
|
||||
(defined(CONFIG_USB_ETHER) && defined(CONFIG_USB_MUSB_GADGET))
|
||||
int board_eth_init(bd_t *bis)
|
||||
{
|
||||
int rv, n = 0;
|
||||
|
|
|
@ -267,7 +267,7 @@ static struct cpsw_platform_data cpsw_data = {
|
|||
};
|
||||
|
||||
#if defined(CONFIG_DRIVER_TI_CPSW) || \
|
||||
(defined(CONFIG_USB_ETHER) && defined(CONFIG_MUSB_GADGET))
|
||||
(defined(CONFIG_USB_ETHER) && defined(CONFIG_USB_MUSB_GADGET))
|
||||
int board_eth_init(bd_t *bis)
|
||||
{
|
||||
struct ctrl_dev *cdev = (struct ctrl_dev *)CTRL_DEVICE_BASE;
|
||||
|
|
|
@ -213,7 +213,7 @@ static struct cpsw_platform_data cpsw_data = {
|
|||
#endif /* #if (defined(CONFIG_DRIVER_TI_CPSW) && !defined(CONFIG_SPL_BUILD)) */
|
||||
|
||||
#if defined(CONFIG_DRIVER_TI_CPSW) || \
|
||||
(defined(CONFIG_USB_ETHER) && defined(CONFIG_MUSB_GADGET))
|
||||
(defined(CONFIG_USB_ETHER) && defined(CONFIG_USB_MUSB_GADGET))
|
||||
int board_eth_init(bd_t *bis)
|
||||
{
|
||||
int n = 0;
|
||||
|
|
|
@ -174,7 +174,7 @@ static struct cpsw_platform_data cpsw_data = {
|
|||
};
|
||||
|
||||
#if defined(CONFIG_DRIVER_TI_CPSW) || \
|
||||
(defined(CONFIG_USB_ETHER) && defined(CONFIG_MUSB_GADGET))
|
||||
(defined(CONFIG_USB_ETHER) && defined(CONFIG_USB_MUSB_GADGET))
|
||||
int board_eth_init(bd_t *bis)
|
||||
{
|
||||
struct ctrl_dev *cdev = (struct ctrl_dev *)CTRL_DEVICE_BASE;
|
||||
|
|
|
@ -569,7 +569,7 @@ static struct cpsw_platform_data cpsw_data = {
|
|||
#if ((defined(CONFIG_SPL_ETH_SUPPORT) || defined(CONFIG_SPL_USBETH_SUPPORT)) \
|
||||
&& defined(CONFIG_SPL_BUILD)) || \
|
||||
((defined(CONFIG_DRIVER_TI_CPSW) || \
|
||||
defined(CONFIG_USB_ETHER) && defined(CONFIG_MUSB_GADGET)) && \
|
||||
defined(CONFIG_USB_ETHER) && defined(CONFIG_USB_MUSB_GADGET)) && \
|
||||
!defined(CONFIG_SPL_BUILD))
|
||||
int board_eth_init(bd_t *bis)
|
||||
{
|
||||
|
|
|
@ -306,12 +306,12 @@ static struct omap_musb_board_data musb_board_data = {
|
|||
};
|
||||
|
||||
static struct musb_hdrc_platform_data musb_plat = {
|
||||
#if defined(CONFIG_MUSB_HOST)
|
||||
#if defined(CONFIG_USB_MUSB_HOST)
|
||||
.mode = MUSB_HOST,
|
||||
#elif defined(CONFIG_MUSB_GADGET)
|
||||
#elif defined(CONFIG_USB_MUSB_GADGET)
|
||||
.mode = MUSB_PERIPHERAL,
|
||||
#else
|
||||
#error "Please define either CONFIG_MUSB_HOST or CONFIG_MUSB_GADGET"
|
||||
#error "Please define either CONFIG_USB_MUSB_HOST or CONFIG_USB_MUSB_GADGET"
|
||||
#endif
|
||||
.config = &musb_config,
|
||||
.power = 100,
|
||||
|
@ -568,7 +568,7 @@ int ehci_hcd_stop(int index)
|
|||
|
||||
#endif /* CONFIG_USB_EHCI */
|
||||
|
||||
#if defined(CONFIG_USB_ETHER) && defined(CONFIG_MUSB_GADGET)
|
||||
#if defined(CONFIG_USB_ETHER) && defined(CONFIG_USB_MUSB_GADGET)
|
||||
int board_eth_init(bd_t *bis)
|
||||
{
|
||||
return usb_eth_initialize(bis);
|
||||
|
|
|
@ -407,7 +407,7 @@ static struct cpsw_platform_data cpsw_data = {
|
|||
#if ((defined(CONFIG_SPL_ETH_SUPPORT) || defined(CONFIG_SPL_USBETH_SUPPORT)) \
|
||||
&& defined(CONFIG_SPL_BUILD)) || \
|
||||
((defined(CONFIG_DRIVER_TI_CPSW) || \
|
||||
defined(CONFIG_USB_ETHER) && defined(CONFIG_MUSB_GADGET)) && \
|
||||
defined(CONFIG_USB_ETHER) && defined(CONFIG_USB_MUSB_GADGET)) && \
|
||||
!defined(CONFIG_SPL_BUILD))
|
||||
int board_eth_init(bd_t *bis)
|
||||
{
|
||||
|
|
|
@ -125,7 +125,7 @@
|
|||
#endif
|
||||
|
||||
/* Mentor high speed "dual role" controller, in peripheral role */
|
||||
#ifdef CONFIG_MUSB_GADGET
|
||||
#ifdef CONFIG_USB_MUSB_GADGET
|
||||
#define gadget_is_musbhdrc(g) (!strcmp("musb-hdrc", (g)->name))
|
||||
#else
|
||||
#define gadget_is_musbhdrc(g) 0
|
||||
|
|
|
@ -2,9 +2,9 @@
|
|||
# for USB OTG silicon based on Mentor Graphics INVENTRA designs
|
||||
#
|
||||
|
||||
obj-$(CONFIG_MUSB_GADGET) += musb_gadget.o musb_gadget_ep0.o musb_core.o
|
||||
obj-$(CONFIG_MUSB_GADGET) += musb_uboot.o
|
||||
obj-$(CONFIG_MUSB_HOST) += musb_host.o musb_core.o musb_uboot.o
|
||||
obj-$(CONFIG_USB_MUSB_GADGET) += musb_gadget.o musb_gadget_ep0.o musb_core.o
|
||||
obj-$(CONFIG_USB_MUSB_GADGET) += musb_uboot.o
|
||||
obj-$(CONFIG_USB_MUSB_HOST) += musb_host.o musb_core.o musb_uboot.o
|
||||
obj-$(CONFIG_USB_MUSB_DSPS) += musb_dsps.o
|
||||
obj-$(CONFIG_USB_MUSB_AM35X) += am35x.o
|
||||
obj-$(CONFIG_USB_MUSB_OMAP2PLUS) += omap2430.o
|
||||
|
|
|
@ -1437,7 +1437,7 @@ static int __devinit musb_core_init(u16 musb_type, struct musb *musb)
|
|||
strcat(aInfo, ", dyn FIFOs");
|
||||
musb->dyn_fifo = true;
|
||||
}
|
||||
#ifndef CONFIG_MUSB_DISABLE_BULK_COMBINE_SPLIT
|
||||
#ifndef CONFIG_USB_MUSB_DISABLE_BULK_COMBINE_SPLIT
|
||||
if (reg & MUSB_CONFIGDATA_MPRXE) {
|
||||
strcat(aInfo, ", bulk combine");
|
||||
musb->bulk_combine = true;
|
||||
|
@ -1662,7 +1662,7 @@ irqreturn_t musb_interrupt(struct musb *musb)
|
|||
}
|
||||
EXPORT_SYMBOL_GPL(musb_interrupt);
|
||||
|
||||
#ifndef CONFIG_MUSB_PIO_ONLY
|
||||
#ifndef CONFIG_USB_MUSB_PIO_ONLY
|
||||
static bool __devinitdata use_dma = 1;
|
||||
|
||||
/* "modprobe ... use_dma=0" etc */
|
||||
|
@ -2011,7 +2011,7 @@ musb_init_controller(struct musb_hdrc_platform_data *plat, struct device *dev,
|
|||
|
||||
pm_runtime_get_sync(musb->controller);
|
||||
|
||||
#ifndef CONFIG_MUSB_PIO_ONLY
|
||||
#ifndef CONFIG_USB_MUSB_PIO_ONLY
|
||||
if (use_dma && dev->dma_mask) {
|
||||
struct dma_controller *c;
|
||||
|
||||
|
@ -2194,7 +2194,7 @@ fail0:
|
|||
* bridge to a platform device; this driver then suffices.
|
||||
*/
|
||||
|
||||
#ifndef CONFIG_MUSB_PIO_ONLY
|
||||
#ifndef CONFIG_USB_MUSB_PIO_ONLY
|
||||
static u64 *orig_dma_mask;
|
||||
#endif
|
||||
|
||||
|
@ -2217,7 +2217,7 @@ static int __devinit musb_probe(struct platform_device *pdev)
|
|||
return -ENOMEM;
|
||||
}
|
||||
|
||||
#ifndef CONFIG_MUSB_PIO_ONLY
|
||||
#ifndef CONFIG_USB_MUSB_PIO_ONLY
|
||||
/* clobbered by use_dma=n */
|
||||
orig_dma_mask = dev->dma_mask;
|
||||
#endif
|
||||
|
@ -2244,7 +2244,7 @@ static int __devexit musb_remove(struct platform_device *pdev)
|
|||
musb_free(musb);
|
||||
iounmap(ctrl_base);
|
||||
device_init_wakeup(&pdev->dev, 0);
|
||||
#ifndef CONFIG_MUSB_PIO_ONLY
|
||||
#ifndef CONFIG_USB_MUSB_PIO_ONLY
|
||||
pdev->dev.dma_mask = orig_dma_mask;
|
||||
#endif
|
||||
return 0;
|
||||
|
|
|
@ -97,7 +97,7 @@ struct musb_ep;
|
|||
#ifndef __UBOOT__
|
||||
#define is_peripheral_capable() (1)
|
||||
#else
|
||||
#ifdef CONFIG_MUSB_GADGET
|
||||
#ifdef CONFIG_USB_MUSB_GADGET
|
||||
#define is_peripheral_capable() (1)
|
||||
#else
|
||||
#define is_peripheral_capable() (0)
|
||||
|
@ -118,7 +118,7 @@ extern void musb_g_disconnect(struct musb *);
|
|||
#ifndef __UBOOT__
|
||||
#define is_host_capable() (1)
|
||||
#else
|
||||
#ifdef CONFIG_MUSB_HOST
|
||||
#ifdef CONFIG_USB_MUSB_HOST
|
||||
#define is_host_capable() (1)
|
||||
#else
|
||||
#define is_host_capable() (0)
|
||||
|
|
|
@ -62,7 +62,7 @@ struct musb_hw_ep;
|
|||
|
||||
#define DMA_ADDR_INVALID (~(dma_addr_t)0)
|
||||
|
||||
#ifndef CONFIG_MUSB_PIO_ONLY
|
||||
#ifndef CONFIG_USB_MUSB_PIO_ONLY
|
||||
#define is_dma_capable() (1)
|
||||
#else
|
||||
#define is_dma_capable() (0)
|
||||
|
|
|
@ -99,7 +99,7 @@
|
|||
#define is_buffer_mapped(req) (is_dma_capable() && \
|
||||
(req->map_state != UN_MAPPED))
|
||||
|
||||
#ifndef CONFIG_MUSB_PIO_ONLY
|
||||
#ifndef CONFIG_USB_MUSB_PIO_ONLY
|
||||
/* Maps the buffer to dma */
|
||||
|
||||
static inline void map_dma_buffer(struct musb_request *request,
|
||||
|
@ -382,7 +382,7 @@ static void txstate(struct musb *musb, struct musb_request *req)
|
|||
epnum, musb_ep->packet_sz, fifo_count,
|
||||
csr);
|
||||
|
||||
#ifndef CONFIG_MUSB_PIO_ONLY
|
||||
#ifndef CONFIG_USB_MUSB_PIO_ONLY
|
||||
if (is_buffer_mapped(req)) {
|
||||
struct dma_controller *c = musb->dma_controller;
|
||||
size_t request_size;
|
||||
|
|
|
@ -15,7 +15,7 @@
|
|||
#include "musb_gadget.h"
|
||||
#include "musb_uboot.h"
|
||||
|
||||
#ifdef CONFIG_MUSB_HOST
|
||||
#ifdef CONFIG_USB_MUSB_HOST
|
||||
struct int_queue {
|
||||
struct usb_host_endpoint hep;
|
||||
struct urb urb;
|
||||
|
@ -368,9 +368,9 @@ struct dm_usb_ops musb_usb_ops = {
|
|||
.reset_root_port = musb_reset_root_port,
|
||||
};
|
||||
#endif /* CONFIG_DM_USB */
|
||||
#endif /* CONFIG_MUSB_HOST */
|
||||
#endif /* CONFIG_USB_MUSB_HOST */
|
||||
|
||||
#ifdef CONFIG_MUSB_GADGET
|
||||
#ifdef CONFIG_USB_MUSB_GADGET
|
||||
static struct musb *gadget;
|
||||
|
||||
int usb_gadget_handle_interrupts(int index)
|
||||
|
@ -420,7 +420,7 @@ int usb_gadget_unregister_driver(struct usb_gadget_driver *driver)
|
|||
driver->unbind(&gadget->g);
|
||||
return 0;
|
||||
}
|
||||
#endif /* CONFIG_MUSB_GADGET */
|
||||
#endif /* CONFIG_USB_MUSB_GADGET */
|
||||
|
||||
int musb_register(struct musb_hdrc_platform_data *plat, void *bdata,
|
||||
void *ctl_regs)
|
||||
|
@ -428,12 +428,12 @@ int musb_register(struct musb_hdrc_platform_data *plat, void *bdata,
|
|||
struct musb **musbp;
|
||||
|
||||
switch (plat->mode) {
|
||||
#if defined(CONFIG_MUSB_HOST) && !defined(CONFIG_DM_USB)
|
||||
#if defined(CONFIG_USB_MUSB_HOST) && !defined(CONFIG_DM_USB)
|
||||
case MUSB_HOST:
|
||||
musbp = &musb_host.host;
|
||||
break;
|
||||
#endif
|
||||
#ifdef CONFIG_MUSB_GADGET
|
||||
#ifdef CONFIG_USB_MUSB_GADGET
|
||||
case MUSB_PERIPHERAL:
|
||||
musbp = &gadget;
|
||||
break;
|
||||
|
|
|
@ -286,7 +286,7 @@ static struct musb_hdrc_config musb_config = {
|
|||
};
|
||||
|
||||
static struct musb_hdrc_platform_data musb_plat = {
|
||||
#if defined(CONFIG_MUSB_HOST)
|
||||
#if defined(CONFIG_USB_MUSB_HOST)
|
||||
.mode = MUSB_HOST,
|
||||
#else
|
||||
.mode = MUSB_PERIPHERAL,
|
||||
|
@ -296,7 +296,7 @@ static struct musb_hdrc_platform_data musb_plat = {
|
|||
.platform_ops = &sunxi_musb_ops,
|
||||
};
|
||||
|
||||
#ifdef CONFIG_MUSB_HOST
|
||||
#ifdef CONFIG_USB_MUSB_HOST
|
||||
int musb_usb_probe(struct udevice *dev)
|
||||
{
|
||||
struct musb_host_data *host = dev_get_priv(dev);
|
||||
|
@ -341,7 +341,7 @@ U_BOOT_DRIVER(usb_musb) = {
|
|||
|
||||
void sunxi_musb_board_init(void)
|
||||
{
|
||||
#ifdef CONFIG_MUSB_HOST
|
||||
#ifdef CONFIG_USB_MUSB_HOST
|
||||
struct udevice *dev;
|
||||
|
||||
/*
|
||||
|
|
|
@ -5,8 +5,8 @@
|
|||
# SPDX-License-Identifier: GPL-2.0+
|
||||
#
|
||||
|
||||
obj-$(CONFIG_MUSB_HCD) += musb_hcd.o musb_core.o
|
||||
obj-$(CONFIG_MUSB_UDC) += musb_udc.o musb_core.o
|
||||
obj-$(CONFIG_USB_MUSB_HCD) += musb_hcd.o musb_core.o
|
||||
obj-$(CONFIG_USB_MUSB_UDC) += musb_udc.o musb_core.o
|
||||
obj-$(CONFIG_USB_BLACKFIN) += blackfin_usb.o
|
||||
obj-$(CONFIG_USB_DAVINCI) += davinci.o
|
||||
obj-$(CONFIG_USB_OMAP3) += omap3.o
|
||||
|
|
|
@ -19,7 +19,7 @@ struct musb_regs *musbr;
|
|||
*/
|
||||
void musb_start(void)
|
||||
{
|
||||
#if defined(CONFIG_MUSB_HCD)
|
||||
#if defined(CONFIG_USB_MUSB_HCD)
|
||||
u8 devctl;
|
||||
u8 busctl;
|
||||
#endif
|
||||
|
@ -32,7 +32,7 @@ void musb_start(void)
|
|||
|
||||
/* put into basic highspeed mode and start session */
|
||||
writeb(MUSB_POWER_HSENAB, &musbr->power);
|
||||
#if defined(CONFIG_MUSB_HCD)
|
||||
#if defined(CONFIG_USB_MUSB_HCD)
|
||||
/* Program PHY to use EXT VBUS if required */
|
||||
if (musb_cfg.extvbus == 1) {
|
||||
busctl = musb_read_ulpi_buscontrol(musbr);
|
||||
|
@ -81,7 +81,7 @@ void musb_configure_ep(const struct musb_epinfo *epinfo, u8 cnt)
|
|||
config_fifo(tx, idx, fifoaddr);
|
||||
|
||||
csr = readw(&musbr->txcsr);
|
||||
#if defined(CONFIG_MUSB_HCD)
|
||||
#if defined(CONFIG_USB_MUSB_HCD)
|
||||
/* clear the data toggle bit */
|
||||
writew(csr | MUSB_TXCSR_CLRDATATOG, &musbr->txcsr);
|
||||
#endif
|
||||
|
@ -94,7 +94,7 @@ void musb_configure_ep(const struct musb_epinfo *epinfo, u8 cnt)
|
|||
config_fifo(rx, idx, fifoaddr);
|
||||
|
||||
csr = readw(&musbr->rxcsr);
|
||||
#if defined(CONFIG_MUSB_HCD)
|
||||
#if defined(CONFIG_USB_MUSB_HCD)
|
||||
/* clear the data toggle bit */
|
||||
writew(csr | MUSB_RXCSR_CLRDATATOG, &musbr->rxcsr);
|
||||
#endif
|
||||
|
|
|
@ -117,7 +117,7 @@ static int wait_until_ep0_ready(struct usb_device *dev, u32 bit_mask)
|
|||
{
|
||||
u16 csr;
|
||||
int result = 1;
|
||||
int timeout = CONFIG_MUSB_TIMEOUT;
|
||||
int timeout = CONFIG_USB_MUSB_TIMEOUT;
|
||||
|
||||
while (result > 0) {
|
||||
csr = readw(&musbr->txcsr);
|
||||
|
@ -179,7 +179,7 @@ static int wait_until_ep0_ready(struct usb_device *dev, u32 bit_mask)
|
|||
static int wait_until_txep_ready(struct usb_device *dev, u8 ep)
|
||||
{
|
||||
u16 csr;
|
||||
int timeout = CONFIG_MUSB_TIMEOUT;
|
||||
int timeout = CONFIG_USB_MUSB_TIMEOUT;
|
||||
|
||||
do {
|
||||
if (check_stall(ep, 1)) {
|
||||
|
@ -211,7 +211,7 @@ static int wait_until_txep_ready(struct usb_device *dev, u8 ep)
|
|||
static int wait_until_rxep_ready(struct usb_device *dev, u8 ep)
|
||||
{
|
||||
u16 csr;
|
||||
int timeout = CONFIG_MUSB_TIMEOUT;
|
||||
int timeout = CONFIG_USB_MUSB_TIMEOUT;
|
||||
|
||||
do {
|
||||
if (check_stall(ep, 0)) {
|
||||
|
|
|
@ -17,8 +17,8 @@
|
|||
extern unsigned char new[];
|
||||
#endif
|
||||
|
||||
#ifndef CONFIG_MUSB_TIMEOUT
|
||||
# define CONFIG_MUSB_TIMEOUT 100000
|
||||
#ifndef CONFIG_USB_MUSB_TIMEOUT
|
||||
# define CONFIG_USB_MUSB_TIMEOUT 100000
|
||||
#endif
|
||||
|
||||
/* This defines the endpoint number used for control transfers */
|
||||
|
|
|
@ -283,14 +283,14 @@
|
|||
*/
|
||||
#define CONFIG_USB_MUSB_DSPS
|
||||
#define CONFIG_ARCH_MISC_INIT
|
||||
#define CONFIG_MUSB_GADGET
|
||||
#define CONFIG_MUSB_PIO_ONLY
|
||||
#define CONFIG_MUSB_DISABLE_BULK_COMBINE_SPLIT
|
||||
#define CONFIG_USB_MUSB_GADGET
|
||||
#define CONFIG_USB_MUSB_PIO_ONLY
|
||||
#define CONFIG_USB_MUSB_DISABLE_BULK_COMBINE_SPLIT
|
||||
#define CONFIG_USB_GADGET
|
||||
#define CONFIG_USB_GADGET_DOWNLOAD
|
||||
#define CONFIG_USB_GADGET_DUALSPEED
|
||||
#define CONFIG_USB_GADGET_VBUS_DRAW 2
|
||||
#define CONFIG_MUSB_HOST
|
||||
#define CONFIG_USB_MUSB_HOST
|
||||
#define CONFIG_AM335X_USB0
|
||||
#define CONFIG_AM335X_USB0_MODE MUSB_PERIPHERAL
|
||||
#define CONFIG_AM335X_USB1
|
||||
|
@ -309,12 +309,12 @@
|
|||
#define CONFIG_FASTBOOT_FLASH_MMC_DEV 1
|
||||
#endif
|
||||
|
||||
#ifdef CONFIG_MUSB_HOST
|
||||
#ifdef CONFIG_USB_MUSB_HOST
|
||||
#define CONFIG_CMD_USB
|
||||
#define CONFIG_USB_STORAGE
|
||||
#endif
|
||||
|
||||
#ifdef CONFIG_MUSB_GADGET
|
||||
#ifdef CONFIG_USB_MUSB_GADGET
|
||||
#define CONFIG_USB_ETHER
|
||||
#define CONFIG_USB_ETH_RNDIS
|
||||
#define CONFIG_USBNET_HOST_ADDR "de:ad:be:af:00:00"
|
||||
|
@ -323,7 +323,7 @@
|
|||
#define CONFIG_G_DNL_VENDOR_NUM 0x0451
|
||||
#define CONFIG_G_DNL_PRODUCT_NUM 0xD022
|
||||
#define CONFIG_G_DNL_MANUFACTURER "Texas Instruments"
|
||||
#endif /* CONFIG_MUSB_GADGET */
|
||||
#endif /* CONFIG_USB_MUSB_GADGET */
|
||||
|
||||
#if defined(CONFIG_SPL_BUILD) && defined(CONFIG_SPL_USBETH_SUPPORT)
|
||||
/* Remove other SPL modes. */
|
||||
|
@ -333,7 +333,7 @@
|
|||
#define CONFIG_ENV_IS_NOWHERE
|
||||
#undef CONFIG_ENV_IS_IN_NAND
|
||||
/* disable host part of MUSB in SPL */
|
||||
#undef CONFIG_MUSB_HOST
|
||||
#undef CONFIG_USB_MUSB_HOST
|
||||
/* disable EFI partitions and partition UUID support */
|
||||
#undef CONFIG_PARTITION_UUIDS
|
||||
#undef CONFIG_EFI_PARTITION
|
||||
|
|
|
@ -91,15 +91,15 @@
|
|||
|
||||
/*
|
||||
* USB configuration
|
||||
* Enable CONFIG_MUSB_HCD for Host functionalities MSC, keyboard
|
||||
* Enable CONFIG_MUSB_UDC for Device functionalities.
|
||||
* Enable CONFIG_USB_MUSB_HCD for Host functionalities MSC, keyboard
|
||||
* Enable CONFIG_USB_MUSB_UDC for Device functionalities.
|
||||
*/
|
||||
#define CONFIG_USB_AM35X 1
|
||||
#define CONFIG_MUSB_HCD 1
|
||||
#define CONFIG_USB_MUSB_HCD 1
|
||||
|
||||
#ifdef CONFIG_USB_AM35X
|
||||
|
||||
#ifdef CONFIG_MUSB_HCD
|
||||
#ifdef CONFIG_USB_MUSB_HCD
|
||||
#define CONFIG_CMD_USB
|
||||
|
||||
#define CONFIG_USB_STORAGE
|
||||
|
@ -111,9 +111,9 @@
|
|||
#define CONFIG_PREBOOT "usb start"
|
||||
#endif /* CONFIG_USB_KEYBOARD */
|
||||
|
||||
#endif /* CONFIG_MUSB_HCD */
|
||||
#endif /* CONFIG_USB_MUSB_HCD */
|
||||
|
||||
#ifdef CONFIG_MUSB_UDC
|
||||
#ifdef CONFIG_USB_MUSB_UDC
|
||||
/* USB device configuration */
|
||||
#define CONFIG_USB_DEVICE 1
|
||||
#define CONFIG_USB_TTY 1
|
||||
|
@ -123,7 +123,7 @@
|
|||
#define CONFIG_USBD_PRODUCTID 0x5678
|
||||
#define CONFIG_USBD_MANUFACTURER "Texas Instruments"
|
||||
#define CONFIG_USBD_PRODUCT_NAME "AM3517CRANE"
|
||||
#endif /* CONFIG_MUSB_UDC */
|
||||
#endif /* CONFIG_USB_MUSB_UDC */
|
||||
|
||||
#endif /* CONFIG_USB_AM35X */
|
||||
|
||||
|
|
|
@ -97,16 +97,16 @@
|
|||
|
||||
/*
|
||||
* USB configuration
|
||||
* Enable CONFIG_MUSB_HOST for Host functionalities MSC, keyboard
|
||||
* Enable CONFIG_MUSB_GADGET for Device functionalities.
|
||||
* Enable CONFIG_USB_MUSB_HOST for Host functionalities MSC, keyboard
|
||||
* Enable CONFIG_USB_MUSB_GADGET for Device functionalities.
|
||||
*/
|
||||
#define CONFIG_USB_MUSB_AM35X
|
||||
#define CONFIG_MUSB_HOST
|
||||
#define CONFIG_MUSB_PIO_ONLY
|
||||
#define CONFIG_USB_MUSB_HOST
|
||||
#define CONFIG_USB_MUSB_PIO_ONLY
|
||||
|
||||
#ifdef CONFIG_USB_MUSB_AM35X
|
||||
|
||||
#ifdef CONFIG_MUSB_HOST
|
||||
#ifdef CONFIG_USB_MUSB_HOST
|
||||
#define CONFIG_CMD_USB
|
||||
|
||||
#define CONFIG_USB_STORAGE
|
||||
|
@ -118,13 +118,13 @@
|
|||
#define CONFIG_PREBOOT "usb start"
|
||||
#endif /* CONFIG_USB_KEYBOARD */
|
||||
|
||||
#endif /* CONFIG_MUSB_HOST */
|
||||
#endif /* CONFIG_USB_MUSB_HOST */
|
||||
|
||||
#ifdef CONFIG_MUSB_GADGET
|
||||
#ifdef CONFIG_USB_MUSB_GADGET
|
||||
#define CONFIG_USB_GADGET_DUALSPEED
|
||||
#define CONFIG_USB_ETHER
|
||||
#define CONFIG_USB_ETH_RNDIS
|
||||
#endif /* CONFIG_MUSB_GADGET */
|
||||
#endif /* CONFIG_USB_MUSB_GADGET */
|
||||
|
||||
#endif /* CONFIG_USB_MUSB_AM35X */
|
||||
|
||||
|
|
|
@ -273,25 +273,25 @@
|
|||
*/
|
||||
#define CONFIG_USB_MUSB_DSPS
|
||||
#define CONFIG_ARCH_MISC_INIT
|
||||
#define CONFIG_MUSB_GADGET
|
||||
#define CONFIG_MUSB_PIO_ONLY
|
||||
#define CONFIG_MUSB_DISABLE_BULK_COMBINE_SPLIT
|
||||
#define CONFIG_USB_MUSB_GADGET
|
||||
#define CONFIG_USB_MUSB_PIO_ONLY
|
||||
#define CONFIG_USB_MUSB_DISABLE_BULK_COMBINE_SPLIT
|
||||
#define CONFIG_USB_GADGET
|
||||
#define CONFIG_USBDOWNLOAD_GADGET
|
||||
#define CONFIG_USB_GADGET_DUALSPEED
|
||||
#define CONFIG_USB_GADGET_VBUS_DRAW 2
|
||||
#define CONFIG_MUSB_HOST
|
||||
#define CONFIG_USB_MUSB_HOST
|
||||
#define CONFIG_AM335X_USB0
|
||||
#define CONFIG_AM335X_USB0_MODE MUSB_HOST
|
||||
#define CONFIG_AM335X_USB1
|
||||
#define CONFIG_AM335X_USB1_MODE MUSB_OTG
|
||||
|
||||
#ifdef CONFIG_MUSB_HOST
|
||||
#ifdef CONFIG_USB_MUSB_HOST
|
||||
#define CONFIG_CMD_USB
|
||||
#define CONFIG_USB_STORAGE
|
||||
#endif
|
||||
|
||||
#ifdef CONFIG_MUSB_GADGET
|
||||
#ifdef CONFIG_USB_MUSB_GADGET
|
||||
#define CONFIG_USB_ETHER
|
||||
#define CONFIG_USB_ETH_RNDIS
|
||||
#define CONFIG_USBNET_HOST_ADDR "de:ad:be:af:00:00"
|
||||
|
@ -300,11 +300,11 @@
|
|||
#define CONFIG_G_DNL_VENDOR_NUM 0x0403
|
||||
#define CONFIG_G_DNL_PRODUCT_NUM 0xBD00
|
||||
#define CONFIG_G_DNL_MANUFACTURER "Texas Instruments"
|
||||
#endif /* CONFIG_MUSB_GADGET */
|
||||
#endif /* CONFIG_USB_MUSB_GADGET */
|
||||
|
||||
#if defined(CONFIG_SPL_BUILD) && defined(CONFIG_SPL_USBETH_SUPPORT)
|
||||
/* disable host part of MUSB in SPL */
|
||||
#undef CONFIG_MUSB_HOST
|
||||
#undef CONFIG_USB_MUSB_HOST
|
||||
/* disable EFI partitions and partition UUID support */
|
||||
#undef CONFIG_PARTITION_UUIDS
|
||||
#undef CONFIG_EFI_PARTITION
|
||||
|
|
|
@ -440,14 +440,14 @@ DEFAULT_LINUX_BOOT_ENV \
|
|||
*/
|
||||
#define CONFIG_USB_MUSB_DSPS
|
||||
#define CONFIG_ARCH_MISC_INIT
|
||||
#define CONFIG_MUSB_GADGET
|
||||
#define CONFIG_MUSB_PIO_ONLY
|
||||
#define CONFIG_MUSB_DISABLE_BULK_COMBINE_SPLIT
|
||||
#define CONFIG_USB_MUSB_GADGET
|
||||
#define CONFIG_USB_MUSB_PIO_ONLY
|
||||
#define CONFIG_USB_MUSB_DISABLE_BULK_COMBINE_SPLIT
|
||||
#define CONFIG_USB_GADGET
|
||||
#define CONFIG_USB_GADGET_DOWNLOAD
|
||||
#define CONFIG_USB_GADGET_DUALSPEED
|
||||
#define CONFIG_USB_GADGET_VBUS_DRAW 2
|
||||
#define CONFIG_MUSB_HOST
|
||||
#define CONFIG_USB_MUSB_HOST
|
||||
#define CONFIG_AM335X_USB0
|
||||
#define CONFIG_AM335X_USB0_MODE MUSB_PERIPHERAL
|
||||
#define CONFIG_AM335X_USB1
|
||||
|
@ -466,12 +466,12 @@ DEFAULT_LINUX_BOOT_ENV \
|
|||
#define CONFIG_FASTBOOT_FLASH_MMC_DEV 1
|
||||
#endif
|
||||
|
||||
#ifdef CONFIG_MUSB_HOST
|
||||
#ifdef CONFIG_USB_MUSB_HOST
|
||||
#define CONFIG_CMD_USB
|
||||
#define CONFIG_USB_STORAGE
|
||||
#endif
|
||||
|
||||
#ifdef CONFIG_MUSB_GADGET
|
||||
#ifdef CONFIG_USB_MUSB_GADGET
|
||||
#define CONFIG_CMD_USB_MASS_STORAGE
|
||||
#define CONFIG_USB_FUNCTION_MASS_STORAGE
|
||||
|
||||
|
@ -479,11 +479,11 @@ DEFAULT_LINUX_BOOT_ENV \
|
|||
#define CONFIG_G_DNL_VENDOR_NUM 0x0451
|
||||
#define CONFIG_G_DNL_PRODUCT_NUM 0xD022
|
||||
#define CONFIG_G_DNL_MANUFACTURER "Texas Instruments"
|
||||
#endif /* CONFIG_MUSB_GADGET */
|
||||
#endif /* CONFIG_USB_MUSB_GADGET */
|
||||
|
||||
#if defined(CONFIG_SPL_BUILD) && defined(CONFIG_SPL_USBETH_SUPPORT)
|
||||
/* disable host part of MUSB in SPL */
|
||||
#undef CONFIG_MUSB_HOST
|
||||
#undef CONFIG_USB_MUSB_HOST
|
||||
/* disable EFI partitions and partition UUID support */
|
||||
#undef CONFIG_PARTITION_UUIDS
|
||||
#undef CONFIG_EFI_PARTITION
|
||||
|
|
|
@ -136,10 +136,10 @@
|
|||
*/
|
||||
#if !defined(__ADSPBF522__) && !defined(__ADSPBF523__)
|
||||
#define CONFIG_USB
|
||||
#define CONFIG_MUSB_HCD
|
||||
#define CONFIG_USB_MUSB_HCD
|
||||
#define CONFIG_USB_BLACKFIN
|
||||
#define CONFIG_USB_STORAGE
|
||||
#define CONFIG_MUSB_TIMEOUT 100000
|
||||
#define CONFIG_USB_MUSB_TIMEOUT 100000
|
||||
#endif
|
||||
|
||||
|
||||
|
|
|
@ -139,10 +139,10 @@
|
|||
*/
|
||||
#if !defined(__ADSPBF522__) && !defined(__ADSPBF523__)
|
||||
#define CONFIG_USB
|
||||
#define CONFIG_MUSB_HCD
|
||||
#define CONFIG_USB_MUSB_HCD
|
||||
#define CONFIG_USB_BLACKFIN
|
||||
#define CONFIG_USB_STORAGE
|
||||
#define CONFIG_MUSB_TIMEOUT 100000
|
||||
#define CONFIG_USB_MUSB_TIMEOUT 100000
|
||||
#endif
|
||||
|
||||
/* Don't waste time transferring a logo over the UART */
|
||||
|
|
|
@ -163,10 +163,10 @@
|
|||
*/
|
||||
#if !defined(__ADSPBF544__)
|
||||
#define CONFIG_USB
|
||||
#define CONFIG_MUSB_HCD
|
||||
#define CONFIG_USB_MUSB_HCD
|
||||
#define CONFIG_USB_BLACKFIN
|
||||
#define CONFIG_USB_STORAGE
|
||||
#define CONFIG_MUSB_TIMEOUT 100000
|
||||
#define CONFIG_USB_MUSB_TIMEOUT 100000
|
||||
#endif
|
||||
|
||||
|
||||
|
|
|
@ -488,7 +488,7 @@
|
|||
|
||||
/* USB Configuration */
|
||||
#define CONFIG_USB_DAVINCI
|
||||
#define CONFIG_MUSB_HCD
|
||||
#define CONFIG_USB_MUSB_HCD
|
||||
#define CONFIG_DV_USBPHY_CTL (USBPHY_SESNDEN | USBPHY_VBDTCTEN | \
|
||||
USBPHY_PHY24MHZ)
|
||||
|
||||
|
|
|
@ -100,7 +100,7 @@
|
|||
#define CONFIG_USB_EHCI
|
||||
#define CONFIG_USB_EHCI_OMAP
|
||||
#define CONFIG_USB_STORAGE
|
||||
#define CONFIG_MUSB_UDC
|
||||
#define CONFIG_USB_MUSB_UDC
|
||||
#define CONFIG_TWL4030_USB
|
||||
#define CONFIG_CMD_USB
|
||||
|
||||
|
|
|
@ -112,8 +112,8 @@
|
|||
#define CONFIG_OMAP_EHCI_PHY1_RESET_GPIO 146
|
||||
#define CONFIG_OMAP_EHCI_PHY2_RESET_GPIO 147
|
||||
#else /* !CONFIG_USB_MUSB_AM35X */
|
||||
#define CONFIG_MUSB_HOST
|
||||
#define CONFIG_MUSB_PIO_ONLY
|
||||
#define CONFIG_USB_MUSB_HOST
|
||||
#define CONFIG_USB_MUSB_PIO_ONLY
|
||||
#endif /* CONFIG_USB_MUSB_AM35X */
|
||||
|
||||
#define CONFIG_USB_STORAGE
|
||||
|
|
|
@ -135,7 +135,7 @@
|
|||
* USB configuration
|
||||
*/
|
||||
#define CONFIG_USB_DA8XX /* Platform hookup to MUSB controller */
|
||||
#define CONFIG_MUSB_HCD
|
||||
#define CONFIG_USB_MUSB_HCD
|
||||
|
||||
/*
|
||||
* U-Boot general configuration
|
||||
|
@ -233,7 +233,7 @@
|
|||
|
||||
#ifdef CONFIG_USB_DA8XX
|
||||
|
||||
#ifdef CONFIG_MUSB_HCD /* include support for usb host */
|
||||
#ifdef CONFIG_USB_MUSB_HCD /* include support for usb host */
|
||||
#define CONFIG_CMD_USB /* include support for usb cmd */
|
||||
|
||||
#define CONFIG_USB_STORAGE /* MSC class support */
|
||||
|
@ -244,9 +244,9 @@
|
|||
#define CONFIG_PREBOOT "usb start"
|
||||
#endif /* CONFIG_USB_KEYBOARD */
|
||||
|
||||
#endif /* CONFIG_MUSB_HCD */
|
||||
#endif /* CONFIG_USB_MUSB_HCD */
|
||||
|
||||
#ifdef CONFIG_MUSB_UDC
|
||||
#ifdef CONFIG_USB_MUSB_UDC
|
||||
/* USB device configuration */
|
||||
#define CONFIG_USB_DEVICE 1
|
||||
#define CONFIG_USB_TTY 1
|
||||
|
@ -256,7 +256,7 @@
|
|||
#define CONFIG_USBD_PRODUCTID 0x5678
|
||||
#define CONFIG_USBD_MANUFACTURER "Texas Instruments"
|
||||
#define CONFIG_USBD_PRODUCT_NAME "DA830EVM"
|
||||
#endif /* CONFIG_MUSB_UDC */
|
||||
#endif /* CONFIG_USB_MUSB_UDC */
|
||||
|
||||
#endif /* CONFIG_USB_DA8XX */
|
||||
|
||||
|
|
|
@ -96,11 +96,11 @@
|
|||
#endif
|
||||
|
||||
#ifdef CONFIG_USB_DAVINCI
|
||||
#define CONFIG_MUSB_HCD
|
||||
#define CONFIG_USB_MUSB_HCD
|
||||
#define CONFIG_CMD_USB
|
||||
#define CONFIG_USB_STORAGE
|
||||
#else
|
||||
#undef CONFIG_MUSB_HCD
|
||||
#undef CONFIG_USB_MUSB_HCD
|
||||
#undef CONFIG_CMD_USB
|
||||
#undef CONFIG_USB_STORAGE
|
||||
#endif
|
||||
|
|
|
@ -78,7 +78,7 @@
|
|||
|
||||
/* USB Configuration */
|
||||
#define CONFIG_USB_DAVINCI
|
||||
#define CONFIG_MUSB_HCD
|
||||
#define CONFIG_USB_MUSB_HCD
|
||||
|
||||
#ifdef CONFIG_USB_DAVINCI
|
||||
#define CONFIG_CMD_USB /* include support for usb */
|
||||
|
@ -87,7 +87,7 @@
|
|||
#define CONFIG_DOS_PARTITION /* include support for FAT/storage*/
|
||||
#endif
|
||||
|
||||
#ifdef CONFIG_MUSB_HCD /* include support for usb host */
|
||||
#ifdef CONFIG_USB_MUSB_HCD /* include support for usb host */
|
||||
#define CONFIG_CMD_USB /* include support for usb cmd */
|
||||
#define CONFIG_USB_STORAGE /* MSC class support */
|
||||
#define CONFIG_CMD_STORAGE /* inclue support for usb-storage cmd */
|
||||
|
@ -99,9 +99,9 @@
|
|||
|
||||
#define CONFIG_PREBOOT "usb start"
|
||||
#endif /* CONFIG_USB_KEYBOARD */
|
||||
#endif /* CONFIG_MUSB_HCD */
|
||||
#endif /* CONFIG_USB_MUSB_HCD */
|
||||
|
||||
#ifdef CONFIG_MUSB_UDC
|
||||
#ifdef CONFIG_USB_MUSB_UDC
|
||||
#define CONFIG_USB_DEVICE 1
|
||||
#define CONFIG_USB_TTY 1
|
||||
#define CONFIG_SYS_CONSOLE_IS_IN_ENV 1
|
||||
|
@ -109,7 +109,7 @@
|
|||
#define CONFIG_USBD_PRODUCTID 0x5678
|
||||
#define CONFIG_USBD_MANUFACTURER "Texas Instruments"
|
||||
#define CONFIG_USBD_PRODUCT_NAME "DM365VM"
|
||||
#endif /* CONFIG_MUSB_UDC */
|
||||
#endif /* CONFIG_USB_MUSB_UDC */
|
||||
|
||||
/* U-Boot command configuration */
|
||||
#define CONFIG_CMD_ASKENV
|
||||
|
|
|
@ -156,7 +156,7 @@
|
|||
#define CONFIG_SYS_LONGHELP
|
||||
#define CONFIG_CRC32_VERIFY
|
||||
#define CONFIG_MX_CYCLIC
|
||||
#define CONFIG_MUSB_HCD
|
||||
#define CONFIG_USB_MUSB_HCD
|
||||
#define CONFIG_USB_DAVINCI
|
||||
/*===================*/
|
||||
/* Linux Information */
|
||||
|
@ -194,7 +194,7 @@
|
|||
/*==========================*/
|
||||
#ifdef CONFIG_USB_DAVINCI
|
||||
#define CONFIG_CMD_USB
|
||||
#ifdef CONFIG_MUSB_HCD
|
||||
#ifdef CONFIG_USB_MUSB_HCD
|
||||
#define CONFIG_USB_STORAGE
|
||||
#define CONFIG_CMD_STORAGE
|
||||
#define CONFIG_CMD_FAT
|
||||
|
|
|
@ -116,20 +116,20 @@ BUR_COMMON_ENV \
|
|||
/* USB configuration */
|
||||
#define CONFIG_USB_MUSB_DSPS
|
||||
#define CONFIG_ARCH_MISC_INIT
|
||||
#define CONFIG_MUSB_PIO_ONLY
|
||||
#define CONFIG_MUSB_DISABLE_BULK_COMBINE_SPLIT
|
||||
#define CONFIG_USB_MUSB_PIO_ONLY
|
||||
#define CONFIG_USB_MUSB_DISABLE_BULK_COMBINE_SPLIT
|
||||
/* attention! not only for gadget, enables also highspeed in hostmode */
|
||||
#define CONFIG_USB_GADGET_DUALSPEED
|
||||
#define CONFIG_MUSB_HOST
|
||||
#define CONFIG_USB_MUSB_HOST
|
||||
#define CONFIG_AM335X_USB0
|
||||
#define CONFIG_AM335X_USB0_MODE MUSB_HOST
|
||||
#define CONFIG_AM335X_USB1
|
||||
#define CONFIG_AM335X_USB1_MODE MUSB_HOST
|
||||
|
||||
#ifdef CONFIG_MUSB_HOST
|
||||
#ifdef CONFIG_USB_MUSB_HOST
|
||||
#define CONFIG_CMD_USB
|
||||
#define CONFIG_USB_STORAGE
|
||||
#endif /* CONFIG_MUSB_HOST */
|
||||
#endif /* CONFIG_USB_MUSB_HOST */
|
||||
|
||||
#undef CONFIG_ENV_IS_NOWHERE
|
||||
#define CONFIG_ENV_IS_IN_MMC
|
||||
|
|
|
@ -108,8 +108,8 @@
|
|||
#define CONFIG_DOS_PARTITION
|
||||
|
||||
/* USB */
|
||||
#define CONFIG_MUSB_UDC
|
||||
#define CONFIG_MUSB_HCD
|
||||
#define CONFIG_USB_MUSB_UDC
|
||||
#define CONFIG_USB_MUSB_HCD
|
||||
#define CONFIG_USB_OMAP3
|
||||
#define CONFIG_TWL4030_USB
|
||||
|
||||
|
|
|
@ -59,9 +59,9 @@
|
|||
#define CONFIG_SYS_I2C_NOPROBES {{0x0, 0x0}}
|
||||
|
||||
/* USB */
|
||||
#define CONFIG_MUSB_GADGET
|
||||
#define CONFIG_USB_MUSB_GADGET
|
||||
#define CONFIG_USB_MUSB_OMAP2PLUS
|
||||
#define CONFIG_MUSB_PIO_ONLY
|
||||
#define CONFIG_USB_MUSB_PIO_ONLY
|
||||
#define CONFIG_USB_GADGET_DUALSPEED
|
||||
#define CONFIG_TWL4030_USB 1
|
||||
#define CONFIG_USB_ETHER
|
||||
|
|
|
@ -77,12 +77,12 @@
|
|||
|
||||
/* USB
|
||||
*
|
||||
* Enable CONFIG_MUSB_HCD for Host functionalities MSC, keyboard
|
||||
* Enable CONFIG_MUSB_UDD for Device functionalities.
|
||||
* Enable CONFIG_USB_MUSB_HCD for Host functionalities MSC, keyboard
|
||||
* Enable CONFIG_USB_MUSB_UDD for Device functionalities.
|
||||
*/
|
||||
#define CONFIG_USB_OMAP3
|
||||
#define CONFIG_MUSB_HCD
|
||||
/* #define CONFIG_MUSB_UDC */
|
||||
#define CONFIG_USB_MUSB_HCD
|
||||
/* #define CONFIG_USB_MUSB_UDC */
|
||||
|
||||
/* NAND SPL */
|
||||
#define CONFIG_SPL_NAND_SIMPLE
|
||||
|
|
|
@ -146,7 +146,7 @@
|
|||
*/
|
||||
#ifdef CONFIG_USB_OMAP3
|
||||
|
||||
#ifdef CONFIG_MUSB_HCD
|
||||
#ifdef CONFIG_USB_MUSB_HCD
|
||||
#define CONFIG_CMD_USB
|
||||
|
||||
#define CONFIG_USB_STORAGE
|
||||
|
@ -158,9 +158,9 @@
|
|||
#define CONFIG_PREBOOT "usb start"
|
||||
#endif /* CONFIG_USB_KEYBOARD */
|
||||
|
||||
#endif /* CONFIG_MUSB_HCD */
|
||||
#endif /* CONFIG_USB_MUSB_HCD */
|
||||
|
||||
#ifdef CONFIG_MUSB_UDC
|
||||
#ifdef CONFIG_USB_MUSB_UDC
|
||||
/* USB device configuration */
|
||||
#define CONFIG_USB_DEVICE
|
||||
#define CONFIG_USB_TTY
|
||||
|
@ -171,7 +171,7 @@
|
|||
#define CONFIG_USBD_PRODUCTID 0x5678
|
||||
#define CONFIG_USBD_MANUFACTURER "Texas Instruments"
|
||||
#define CONFIG_USBD_PRODUCT_NAME "EVM"
|
||||
#endif /* CONFIG_MUSB_UDC */
|
||||
#endif /* CONFIG_USB_MUSB_UDC */
|
||||
|
||||
#endif /* CONFIG_USB_OMAP3 */
|
||||
|
||||
|
|
|
@ -54,7 +54,7 @@
|
|||
#define CONFIG_OMAP3_GPIO_6 /* GPIO160..191 is in GPIO bank 6 */
|
||||
|
||||
/* USB */
|
||||
#define CONFIG_MUSB_UDC 1
|
||||
#define CONFIG_USB_MUSB_UDC 1
|
||||
#define CONFIG_USB_OMAP3 1
|
||||
#define CONFIG_TWL4030_USB 1
|
||||
|
||||
|
|
|
@ -94,7 +94,7 @@
|
|||
#define CONFIG_SILENT_CONSOLE 1
|
||||
|
||||
/* USB */
|
||||
#define CONFIG_MUSB_UDC 1
|
||||
#define CONFIG_USB_MUSB_UDC 1
|
||||
#define CONFIG_USB_OMAP3 1
|
||||
#define CONFIG_TWL4030_USB 1
|
||||
|
||||
|
|
|
@ -49,7 +49,7 @@
|
|||
*/
|
||||
|
||||
/* USB */
|
||||
#define CONFIG_MUSB_UDC 1
|
||||
#define CONFIG_USB_MUSB_UDC 1
|
||||
#define CONFIG_USB_OMAP3 1
|
||||
#define CONFIG_TWL4030_USB 1
|
||||
|
||||
|
|
|
@ -143,24 +143,24 @@
|
|||
*/
|
||||
#define CONFIG_USB_MUSB_DSPS
|
||||
#define CONFIG_ARCH_MISC_INIT
|
||||
#define CONFIG_MUSB_GADGET
|
||||
#define CONFIG_MUSB_PIO_ONLY
|
||||
#define CONFIG_USB_MUSB_GADGET
|
||||
#define CONFIG_USB_MUSB_PIO_ONLY
|
||||
#define CONFIG_USB_GADGET_DUALSPEED
|
||||
#define CONFIG_MUSB_HOST
|
||||
#define CONFIG_USB_MUSB_HOST
|
||||
#define CONFIG_AM335X_USB0
|
||||
#define CONFIG_AM335X_USB0_MODE MUSB_PERIPHERAL
|
||||
#define CONFIG_AM335X_USB1
|
||||
#define CONFIG_AM335X_USB1_MODE MUSB_HOST
|
||||
|
||||
#ifdef CONFIG_MUSB_HOST
|
||||
#ifdef CONFIG_USB_MUSB_HOST
|
||||
#define CONFIG_CMD_USB
|
||||
#define CONFIG_USB_STORAGE
|
||||
#endif
|
||||
|
||||
#ifdef CONFIG_MUSB_GADGET
|
||||
#ifdef CONFIG_USB_MUSB_GADGET
|
||||
#define CONFIG_USB_ETHER
|
||||
#define CONFIG_USB_ETH_RNDIS
|
||||
#endif /* CONFIG_MUSB_GADGET */
|
||||
#endif /* CONFIG_USB_MUSB_GADGET */
|
||||
|
||||
#define CONFIG_PHY_GIGE
|
||||
#define CONFIG_PHYLIB
|
||||
|
|
|
@ -174,26 +174,26 @@
|
|||
*/
|
||||
#define CONFIG_USB_MUSB_DSPS
|
||||
#define CONFIG_ARCH_MISC_INIT
|
||||
#define CONFIG_MUSB_GADGET
|
||||
#define CONFIG_MUSB_PIO_ONLY
|
||||
#define CONFIG_MUSB_DISABLE_BULK_COMBINE_SPLIT
|
||||
#define CONFIG_USB_MUSB_GADGET
|
||||
#define CONFIG_USB_MUSB_PIO_ONLY
|
||||
#define CONFIG_USB_MUSB_DISABLE_BULK_COMBINE_SPLIT
|
||||
#define CONFIG_USB_GADGET
|
||||
#define CONFIG_USB_GADGET_DUALSPEED
|
||||
#define CONFIG_USB_GADGET_VBUS_DRAW 2
|
||||
#define CONFIG_MUSB_HOST
|
||||
#define CONFIG_USB_MUSB_HOST
|
||||
#define CONFIG_AM335X_USB0
|
||||
#define CONFIG_AM335X_USB0_MODE MUSB_PERIPHERAL
|
||||
#define CONFIG_AM335X_USB1
|
||||
#define CONFIG_AM335X_USB1_MODE MUSB_HOST
|
||||
|
||||
#if defined(CONFIG_MUSB_HOST)
|
||||
#if defined(CONFIG_USB_MUSB_HOST)
|
||||
#define CONFIG_CMD_USB
|
||||
#define CONFIG_USB_STORAGE
|
||||
#endif
|
||||
|
||||
#if defined(CONFIG_SPL_BUILD)
|
||||
/* disable host part of MUSB in SPL */
|
||||
#undef CONFIG_MUSB_HOST
|
||||
#undef CONFIG_USB_MUSB_HOST
|
||||
/* Disable CPSW SPL support so we fit within the 101KiB limit. */
|
||||
#undef CONFIG_SPL_ETH_SUPPORT
|
||||
#endif
|
||||
|
|
|
@ -226,27 +226,27 @@
|
|||
*/
|
||||
#define CONFIG_USB_MUSB_DSPS
|
||||
#define CONFIG_ARCH_MISC_INIT
|
||||
#define CONFIG_MUSB_GADGET
|
||||
#define CONFIG_MUSB_PIO_ONLY
|
||||
#define CONFIG_MUSB_DISABLE_BULK_COMBINE_SPLIT
|
||||
#define CONFIG_USB_MUSB_GADGET
|
||||
#define CONFIG_USB_MUSB_PIO_ONLY
|
||||
#define CONFIG_USB_MUSB_DISABLE_BULK_COMBINE_SPLIT
|
||||
#undef CONFIG_USB_GADGET_DUALSPEED
|
||||
#define CONFIG_USB_GADGET_VBUS_DRAW 2
|
||||
#define CONFIG_MUSB_HOST
|
||||
#define CONFIG_USB_MUSB_HOST
|
||||
|
||||
#define CONFIG_AM335X_USB0
|
||||
#define CONFIG_AM335X_USB0_MODE MUSB_PERIPHERAL
|
||||
#define CONFIG_AM335X_USB1
|
||||
#define CONFIG_AM335X_USB1_MODE MUSB_HOST
|
||||
#ifdef CONFIG_MUSB_HOST
|
||||
#ifdef CONFIG_USB_MUSB_HOST
|
||||
#define CONFIG_CMD_USB
|
||||
#define CONFIG_USB_STORAGE
|
||||
#endif
|
||||
|
||||
#ifdef CONFIG_MUSB_GADGET
|
||||
#ifdef CONFIG_USB_MUSB_GADGET
|
||||
#define CONFIG_USB_ETHER
|
||||
#define CONFIG_USB_ETH_RNDIS
|
||||
#define CONFIG_USBNET_HOST_ADDR "de:ad:be:af:00:00"
|
||||
#endif /* CONFIG_MUSB_GADGET */
|
||||
#endif /* CONFIG_USB_MUSB_GADGET */
|
||||
|
||||
#define CONFIG_USB_GADGET
|
||||
#define CONFIG_USB_GADGET_DOWNLOAD
|
||||
|
|
|
@ -326,8 +326,8 @@ extern int soft_i2c_gpio_scl;
|
|||
#endif
|
||||
|
||||
#ifdef CONFIG_USB_MUSB_SUNXI
|
||||
#define CONFIG_MUSB_HOST
|
||||
#define CONFIG_MUSB_PIO_ONLY
|
||||
#define CONFIG_USB_MUSB_HOST
|
||||
#define CONFIG_USB_MUSB_PIO_ONLY
|
||||
#endif
|
||||
|
||||
#ifdef CONFIG_USB_KEYBOARD
|
||||
|
|
|
@ -70,7 +70,7 @@
|
|||
#endif
|
||||
|
||||
/* USB */
|
||||
#define CONFIG_MUSB_UDC 1
|
||||
#define CONFIG_USB_MUSB_UDC 1
|
||||
#define CONFIG_USB_OMAP3 1
|
||||
|
||||
/* USB device configuration */
|
||||
|
|
|
@ -245,20 +245,20 @@ MMCARGS
|
|||
/* USB configuration */
|
||||
#define CONFIG_USB_MUSB_DSPS
|
||||
#define CONFIG_ARCH_MISC_INIT
|
||||
#define CONFIG_MUSB_PIO_ONLY
|
||||
#define CONFIG_MUSB_DISABLE_BULK_COMBINE_SPLIT
|
||||
#define CONFIG_USB_MUSB_PIO_ONLY
|
||||
#define CONFIG_USB_MUSB_DISABLE_BULK_COMBINE_SPLIT
|
||||
/* attention! not only for gadget, enables also highspeed in hostmode */
|
||||
#define CONFIG_USB_GADGET_DUALSPEED
|
||||
#define CONFIG_MUSB_HOST
|
||||
#define CONFIG_USB_MUSB_HOST
|
||||
#define CONFIG_AM335X_USB0
|
||||
#define CONFIG_AM335X_USB0_MODE MUSB_HOST
|
||||
#define CONFIG_AM335X_USB1
|
||||
#define CONFIG_AM335X_USB1_MODE MUSB_HOST
|
||||
|
||||
#ifdef CONFIG_MUSB_HOST
|
||||
#ifdef CONFIG_USB_MUSB_HOST
|
||||
#define CONFIG_CMD_USB
|
||||
#define CONFIG_USB_STORAGE
|
||||
#endif /* CONFIG_MUSB_HOST */
|
||||
#endif /* CONFIG_USB_MUSB_HOST */
|
||||
|
||||
#if defined(CONFIG_SPI_BOOT)
|
||||
/* McSPI IP block */
|
||||
|
|
|
@ -174,7 +174,7 @@ enum usb_init_type {
|
|||
int usb_lowlevel_init(int index, enum usb_init_type init, void **controller);
|
||||
int usb_lowlevel_stop(int index);
|
||||
|
||||
#if defined(CONFIG_MUSB_HOST) || defined(CONFIG_DM_USB)
|
||||
#if defined(CONFIG_USB_MUSB_HOST) || defined(CONFIG_DM_USB)
|
||||
int usb_reset_root_port(struct usb_device *dev);
|
||||
#else
|
||||
#define usb_reset_root_port(dev)
|
||||
|
@ -187,7 +187,7 @@ int submit_control_msg(struct usb_device *dev, unsigned long pipe, void *buffer,
|
|||
int submit_int_msg(struct usb_device *dev, unsigned long pipe, void *buffer,
|
||||
int transfer_len, int interval);
|
||||
|
||||
#if defined CONFIG_USB_EHCI || defined CONFIG_MUSB_HOST || defined(CONFIG_DM_USB)
|
||||
#if defined CONFIG_USB_EHCI || defined CONFIG_USB_MUSB_HOST || defined(CONFIG_DM_USB)
|
||||
struct int_queue *create_int_queue(struct usb_device *dev, unsigned long pipe,
|
||||
int queuesize, int elementsize, void *buffer, int interval);
|
||||
int destroy_int_queue(struct usb_device *dev, struct int_queue *queue);
|
||||
|
|
Loading…
Reference in a new issue