]> www.pilppa.org Git - linux-2.6-omap-h63xx.git/commitdiff
Rid of product specific SDTI pin multiplexing.
authorRoman Tereshonkov <roman.tereshonkov@nokia.com>
Tue, 5 Aug 2008 08:43:59 +0000 (11:43 +0300)
committerTony Lindgren <tony@atomide.com>
Tue, 5 Aug 2008 10:53:12 +0000 (13:53 +0300)
Signed-off-by: Roman Tereshonkov <roman.tereshonkov@nokia.com>
Signed-off-by: Tony Lindgren <tony@atomide.com>
drivers/misc/sti/sdti.c

index adfbcbc7e7ad27ea2d0a38b4bcfa43ce11904fff..e12fb120bbac4867c17756fd82fe64c6fe927661 100644 (file)
 #define CPU1_TRACE_EN          0x01
 #define CPU2_TRACE_EN          0x02
 
-#define EPM_BASE               0x5401D000
-#define EPM_CONTROL_0          0x50
-#define EPM_CONTROL_1          0x54
-#define EPM_CONTROL_2          0x58
-
 static struct clk *sdti_ck;
-unsigned long sti_base, sti_channel_base, epm_base;
+unsigned long sti_base, sti_channel_base;
 static DEFINE_SPINLOCK(sdti_lock);
 
 void omap_sti_channel_write_trace(int len, int id, void *data,
@@ -69,20 +64,6 @@ static void omap_sdti_reset(void)
                printk(KERN_WARNING "XTI: no real reset\n");
 }
 
-void init_epm(void)
-{
-       epm_base = (unsigned long)ioremap(EPM_BASE, 256);
-       if (unlikely(!epm_base)) {
-               printk(KERN_ERR "EPM cannot be ioremapped\n");
-               return;
-       }
-
-       __raw_writel(1<<30, epm_base + EPM_CONTROL_2);
-       __raw_writel(0x78, epm_base + EPM_CONTROL_0);
-       __raw_writel(0x80000000, epm_base + EPM_CONTROL_1);
-       __raw_writel(1<<31 | 0x00007770, epm_base + EPM_CONTROL_2);
-}
-
 static int __init omap_sdti_init(void)
 {
        char buf[64];
@@ -95,9 +76,6 @@ static int __init omap_sdti_init(void)
        }
        clk_enable(sdti_ck);
 
-       /* Init emulation pin manager */
-       init_epm();
-
        omap_sdti_reset();
        sti_writel(0xC5ACCE55, SDTI_LOCK_ACCESS);
 
@@ -110,7 +88,7 @@ static int __init omap_sdti_init(void)
        /* 4 bits dual, fclk/3 */
        sti_writel(0x43, SDTI_SCONFIG);
 
-       /* CPU1 trace enable */
+       /* CPU2 trace enable */
        sti_writel(i | CPU2_TRACE_EN, SDTI_WINCTRL);
        i = sti_readl(SDTI_WINCTRL);
 
@@ -177,7 +155,6 @@ static int __devexit omap_sdti_remove(struct platform_device *pdev)
 {
        iounmap((void *)sti_channel_base);
        iounmap((void *)sti_base);
-       iounmap((void *)epm_base);
        omap_sdti_exit();
 
        return 0;