]> pilppa.org Git - linux-2.6-omap-h63xx.git/blobdiff - arch/arm/plat-omap/dsp/dsp_common.h
Merge omap-upstream
[linux-2.6-omap-h63xx.git] / arch / arm / plat-omap / dsp / dsp_common.h
index cf13c7ec4af42370584a19d374871c82252caf16..2ef1e58bb07824b246dad7b7dea55aef9b336239 100644 (file)
 #define DRIVER_DSP_COMMON_H
 
 #include <linux/clk.h>
+#include <asm/arch/mmu.h>
 #include "hardware_dsp.h"
 
+#ifdef CONFIG_ARCH_OMAP2
+#include "../../mach-omap2/prm.h"
+#include "../../mach-omap2/prm_regbits_24xx.h"
+#include "../../mach-omap2/cm.h"
+#include "../../mach-omap2/cm_regbits_24xx.h"
+#endif
+
 #define DSPSPACE_SIZE  0x1000000
 
 #define omap_set_bit_regw(b,r) \
 #ifdef CONFIG_ARCH_OMAP2
 /*
  * PRCM / IPI control logic
+ *
+ * REVISIT: these macros should probably be static inline functions
  */
-#define RSTCTRL_RST1_DSP       0x00000001
-#define RSTCTRL_RST2_DSP       0x00000002
 #define __dsp_core_enable() \
-       do { RM_RSTCTRL_DSP &= ~RSTCTRL_RST1_DSP; } while (0)
+       do { prm_write_mod_reg(prm_read_mod_reg(OMAP24XX_DSP_MOD, RM_RSTCTRL) \
+            & ~OMAP24XX_RST1_DSP, OMAP24XX_DSP_MOD, RM_RSTCTRL); } while (0)
 #define __dsp_core_disable() \
-       do { RM_RSTCTRL_DSP |= RSTCTRL_RST1_DSP; } while (0)
+       do { prm_write_mod_reg(prm_read_mod_reg(OMAP24XX_DSP_MOD, RM_RSTCTRL) \
+            | OMAP24XX_RST1_DSP, OMAP24XX_DSP_MOD, RM_RSTCTRL); } while (0)
 #define __dsp_per_enable() \
-       do { RM_RSTCTRL_DSP &= ~RSTCTRL_RST2_DSP; } while (0)
+       do { prm_write_mod_reg(prm_read_mod_reg(OMAP24XX_DSP_MOD, RM_RSTCTRL) \
+            & ~OMAP24XX_RST2_DSP, OMAP24XX_DSP_MOD, RM_RSTCTRL); } while (0)
 #define __dsp_per_disable() \
-       do { RM_RSTCTRL_DSP |= RSTCTRL_RST2_DSP; } while (0)
+       do { prm_write_mod_reg(prm_read_mod_reg(OMAP24XX_DSP_MOD, RM_RSTCTRL) \
+            | OMAP24XX_RST2_DSP, OMAP24XX_DSP_MOD, RM_RSTCTRL); } while (0)
 #endif /* CONFIG_ARCH_OMAP2 */
 
 typedef u32 dsp_long_t;        /* must have ability to carry TADD_ABORTADR */
@@ -134,10 +146,8 @@ enum cpustat_e {
 
 int dsp_set_rstvect(dsp_long_t adr);
 dsp_long_t dsp_get_rstvect(void);
-#ifdef CONFIG_ARCH_OMAP1
 void dsp_set_idle_boot_base(dsp_long_t adr, size_t size);
 void dsp_reset_idle_boot_base(void);
-#endif
 void dsp_cpustat_request(enum cpustat_e req);
 enum cpustat_e dsp_cpustat_get_stat(void);
 u16 dsp_cpustat_get_icrmask(void);
@@ -151,10 +161,19 @@ static inline void dsp_clk_disable(void) {}
 #elif defined(CONFIG_ARCH_OMAP2)
 static inline void dsp_clk_enable(void)
 {
+       u32 r;
+
        /*XXX should be handled in mach-omap[1,2] XXX*/
-       PM_PWSTCTRL_DSP = (1 << 18) | (1 << 0);
-       CM_AUTOIDLE_DSP |= (1 << 1);
-       CM_CLKSTCTRL_DSP |= (1 << 0);
+       prm_write_mod_reg(OMAP24XX_FORCESTATE | (1 << OMAP_POWERSTATE_SHIFT),
+                         OMAP24XX_DSP_MOD, PM_PWSTCTRL);
+
+       r = cm_read_mod_reg(OMAP24XX_DSP_MOD, CM_AUTOIDLE);
+       r |= OMAP2420_AUTO_DSP_IPI;
+       cm_write_mod_reg(r, OMAP24XX_DSP_MOD, CM_AUTOIDLE);
+
+       r = cm_read_mod_reg(OMAP24XX_DSP_MOD, CM_CLKSTCTRL);
+       r |= OMAP24XX_AUTOSTATE_DSP;
+       cm_write_mod_reg(r, OMAP24XX_DSP_MOD, CM_CLKSTCTRL);
 
        clk_enable(dsp_fck_handle);
        clk_enable(dsp_ick_handle);
@@ -166,7 +185,8 @@ static inline void dsp_clk_disable(void)
        clk_disable(dsp_ick_handle);
        clk_disable(dsp_fck_handle);
 
-       PM_PWSTCTRL_DSP = (1 << 18) | (3 << 0);
+       prm_write_mod_reg(OMAP24XX_FORCESTATE | (3 << OMAP_POWERSTATE_SHIFT),
+                         OMAP24XX_DSP_MOD, PM_PWSTCTRL);
 }
 #endif
 
@@ -197,7 +217,7 @@ struct dsp_platform_data {
 struct omap_dsp {
        struct mutex            lock;
        int                     enabled;        /* stored peripheral status */
-       int                     mmu_irq;
+       struct omap_mmu         *mmu;
        struct omap_mbox        *mbox;
        struct device           *dev;
        struct list_head        *kdev_list;