]> pilppa.com Git - linux-2.6-omap-h63xx.git/commitdiff
musb: Search and replace USB_INVENTRA_FIFO with MUSB_PIO_ONLY
authorTony Lindgren <tony@atomide.com>
Mon, 20 Aug 2007 06:31:44 +0000 (23:31 -0700)
committerTony Lindgren <tony@atomide.com>
Tue, 21 Aug 2007 06:59:13 +0000 (23:59 -0700)
Search and replace USB_INVENTRA_FIFO with MUSB_PIO_ONLY

Signed-off-by: Tony Lindgren <tony@atomide.com>
drivers/usb/musb/Kconfig
drivers/usb/musb/Makefile
drivers/usb/musb/dma.h
drivers/usb/musb/musb_gadget.c
drivers/usb/musb/musb_procfs.c
drivers/usb/musb/plat_uds.c

index a9bcd7e27f97b03cdf48ea280460ffc054a21399..7de373ff654c86cb51cc4e304d1d8fa7a8a778b1 100644 (file)
@@ -129,7 +129,7 @@ config USB_MUSB_HDRC_HCD
        default y
 
 
-config USB_INVENTRA_FIFO
+config MUSB_PIO_ONLY
        bool 'Disable DMA (always use PIO)'
        depends on USB_MUSB_HDRC
        default y if USB_TUSB6010
@@ -144,21 +144,21 @@ config USB_INVENTRA_FIFO
 
 config USB_INVENTRA_DMA
        bool
-       depends on USB_MUSB_HDRC && !USB_INVENTRA_FIFO
+       depends on USB_MUSB_HDRC && !MUSB_PIO_ONLY
        default ARCH_OMAP2430 || ARCH_OMAP343X
        help
          Enable DMA transfers using Mentor's engine.
 
 config USB_TI_CPPI_DMA
        bool
-       depends on USB_MUSB_HDRC && !USB_INVENTRA_FIFO
+       depends on USB_MUSB_HDRC && !MUSB_PIO_ONLY
        default ARCH_DAVINCI
        help
          Enable DMA transfers when TI CPPI DMA is available.
 
 config USB_TUSB_OMAP_DMA
        bool
-       depends on USB_MUSB_HDRC && !USB_INVENTRA_FIFO
+       depends on USB_MUSB_HDRC && !MUSB_PIO_ONLY
        depends on USB_TUSB6010
        depends on ARCH_OMAP
        default y
index 535ba40f773b58f94704d4aac529d0c17e0690da..14408b5e067ea5c9038ca93bdb043eaa22dd5f47 100644 (file)
@@ -28,10 +28,10 @@ endif
 
 # the kconfig must guarantee that only one of the
 # possible I/O schemes will be enabled at a time ...
-# PIO (INVENTRA_FIFO), or DMA (several potential schemes).
+# PIO only, or DMA (several potential schemes).
 # though PIO is always there to back up DMA, and for ep0
 
-ifneq ($(CONFIG_USB_INVENTRA_FIFO),y)
+ifneq ($(CONFIG_MUSB_PIO_ONLY),y)
 
   ifeq ($(CONFIG_USB_INVENTRA_DMA),y)
     musb_hdrc-objs             += musbhsdma.o
index 701d312f910a65fcb054e24bcb683d48b32d9dae..74e38ec69314fbd5201728f9386f3606873f9707 100644 (file)
@@ -62,7 +62,7 @@ struct musb_hw_ep;
 
 #define        DMA_ADDR_INVALID        (~(dma_addr_t)0)
 
-#ifndef CONFIG_USB_INVENTRA_FIFO
+#ifndef CONFIG_MUSB_PIO_ONLY
 #define        is_dma_capable()        (1)
 #else
 #define        is_dma_capable()        (0)
index 88757ce7855591750153309d431f25ee34eebcf5..dd122b4c148d256a05e681d3cd5131600db35a8f 100644 (file)
@@ -291,7 +291,7 @@ static void txstate(struct musb *musb, struct musb_request *req)
                        epnum, musb_ep->packet_sz, fifo_count,
                        csr);
 
-#ifndef        CONFIG_USB_INVENTRA_FIFO
+#ifndef        CONFIG_MUSB_PIO_ONLY
        if (is_dma_capable() && musb_ep->dma) {
                struct dma_controller   *c = musb->dma_controller;
 
index 1bc5c79fe52cf93e6a9e9fb0f21a48ee03006191..9b5aa7fca716dcd5b160514067b69c3fd34e1a28 100644 (file)
@@ -508,7 +508,7 @@ static int dump_header_stats(struct musb *musb, char *buffer)
 
        code = sprintf(buffer,
                        "Options: "
-#ifdef CONFIG_USB_INVENTRA_FIFO
+#ifdef CONFIG_MUSB_PIO_ONLY
                        "pio"
 #elif defined(CONFIG_USB_TI_CPPI_DMA)
                        "cppi-dma"
index 3984ce5d8334e646bdde3ae1ce745a3f3440321d..e27da3cef669d008d06b1ce42600deb85d680163 100644 (file)
@@ -1531,7 +1531,7 @@ irqreturn_t musb_interrupt(struct musb *musb)
 }
 
 
-#ifndef CONFIG_USB_INVENTRA_FIFO
+#ifndef CONFIG_MUSB_PIO_ONLY
 static int __initdata use_dma = 1;
 
 /* "modprobe ... use_dma=0" etc */
@@ -1921,7 +1921,7 @@ musb_init_controller(struct device *dev, int nIrq, void __iomem *ctrl)
                goto fail2;
        }
 
-#ifndef CONFIG_USB_INVENTRA_FIFO
+#ifndef CONFIG_MUSB_PIO_ONLY
        if (use_dma && dev->dma_mask) {
                struct dma_controller   *c;
 
@@ -2050,7 +2050,7 @@ fail2:
  * bridge to a platform device; this driver then suffices.
  */
 
-#ifndef CONFIG_USB_INVENTRA_FIFO
+#ifndef CONFIG_MUSB_PIO_ONLY
 static u64     *orig_dma_mask;
 #endif
 
@@ -2071,7 +2071,7 @@ static int __init musb_probe(struct platform_device *pdev)
                return -ENOMEM;
        }
 
-#ifndef CONFIG_USB_INVENTRA_FIFO
+#ifndef CONFIG_MUSB_PIO_ONLY
        /* clobbered by use_dma=n */
        orig_dma_mask = dev->dma_mask;
 #endif
@@ -2097,7 +2097,7 @@ static int __devexit musb_remove(struct platform_device *pdev)
        musb_free(musb);
        iounmap(ctrl_base);
        device_init_wakeup(&pdev->dev, 0);
-#ifndef CONFIG_USB_INVENTRA_FIFO
+#ifndef CONFIG_MUSB_PIO_ONLY
        pdev->dev.dma_mask = orig_dma_mask;
 #endif
        return 0;
@@ -2183,7 +2183,7 @@ static int __init musb_init(void)
 #endif
 
        pr_info("%s: version " MUSB_VERSION ", "
-#ifdef CONFIG_USB_INVENTRA_FIFO
+#ifdef CONFIG_MUSB_PIO_ONLY
                "pio"
 #elif defined(CONFIG_USB_TI_CPPI_DMA)
                "cppi-dma"