staging: tidspbridge: set2 remove hungarian from structs
authorRene Sapiens <rene.sapiens@ti.com>
Tue, 18 Jan 2011 03:19:04 +0000 (03:19 +0000)
committerOmar Ramirez Luna <omar.ramirez@ti.com>
Sat, 5 Feb 2011 02:12:09 +0000 (20:12 -0600)
hungarian notation will be removed from the elements inside
structures, the next varibles will be renamed:

Original:               Replacement:
dw_dsp_base_addr        dsp_base_addr
dw_dmmu_base            dmmu_base
dw_index                index
dw_int_addr             int_addr
dw_internal_size        internal_size
dw_last_output          last_output
dw_mem_base             mem_base
dw_mem_length           mem_length
dw_mem_phys             mem_phys
dw_mode                 mode
dw_num_chnls            num_chnls
dw_offset_for_monitor   offset_for_monitor
dw_output_mask          output_mask
dw_page_size            page_size
dw_pa                   pa
dw_per_base             per_base
dw_per_pm_base          per_pm_base
dw_public_rhea          public_rhea
dw_seg_base_pa          seg_base_pa

Signed-off-by: Rene Sapiens <rene.sapiens@ti.com>
Signed-off-by: Armando Uribe <x0095078@ti.com>
Signed-off-by: Omar Ramirez Luna <omar.ramirez@ti.com>
16 files changed:
drivers/staging/tidspbridge/core/_tiomap.h
drivers/staging/tidspbridge/core/chnl_sm.c
drivers/staging/tidspbridge/core/io_sm.c
drivers/staging/tidspbridge/core/tiomap3430.c
drivers/staging/tidspbridge/core/tiomap3430_pwr.c
drivers/staging/tidspbridge/core/tiomap_io.c
drivers/staging/tidspbridge/core/ue_deh.c
drivers/staging/tidspbridge/include/dspbridge/_chnl_sm.h
drivers/staging/tidspbridge/include/dspbridge/cfgdefs.h
drivers/staging/tidspbridge/include/dspbridge/chnlpriv.h
drivers/staging/tidspbridge/include/dspbridge/cmmdefs.h
drivers/staging/tidspbridge/pmgr/cmm.c
drivers/staging/tidspbridge/pmgr/dev.c
drivers/staging/tidspbridge/pmgr/dspapi.c
drivers/staging/tidspbridge/rmgr/drv.c
drivers/staging/tidspbridge/rmgr/node.c

index 80bc4755df104c161a11337f42242210618d397a..5a14e6f805099ffbe99704cd6a1c48f1588f9b57 100644 (file)
@@ -327,16 +327,16 @@ struct bridge_dev_context {
         */
        u32 dsp_ext_base_addr;  /* See the comment above */
        u32 api_reg_base;       /* API mem map'd registers */
-       void __iomem *dw_dsp_mmu_base;  /* DSP MMU Mapped registers */
+       void __iomem *dsp_mmu_base;     /* DSP MMU Mapped registers */
        u32 api_clk_base;       /* CLK Registers */
        u32 dsp_clk_m2_base;    /* DSP Clock Module m2 */
-       u32 dw_public_rhea;     /* Pub Rhea */
-       u32 dw_int_addr;        /* MB INTR reg */
+       u32 public_rhea;        /* Pub Rhea */
+       u32 int_addr;           /* MB INTR reg */
        u32 dw_tc_endianism;    /* TC Endianism register */
        u32 dw_test_base;       /* DSP MMU Mapped registers */
        u32 dw_self_loop;       /* Pointer to the selfloop */
        u32 dsp_start_add;      /* API Boot vector */
-       u32 dw_internal_size;   /* Internal memory size */
+       u32 internal_size;      /* Internal memory size */
 
        struct omap_mbox *mbox;         /* Mail box handle */
 
index a52262728755fe9c19bc856cc3b4c674cae69722..59b8d556939569af4d834eed4e171a10cf1ce39b 100644 (file)
@@ -272,7 +272,7 @@ int bridge_chnl_cancel_io(struct chnl_object *chnl_obj)
                } else {
                        /* Record that we no longer have output buffers
                         * available: */
-                       chnl_mgr_obj->dw_output_mask &= ~(1 << chnl_id);
+                       chnl_mgr_obj->output_mask &= ~(1 << chnl_id);
                }
        }
        /* Move all IOR's to IOC queue: */
@@ -386,8 +386,8 @@ int bridge_chnl_create(struct chnl_mgr **channel_mgr,
                        /* Total # chnls supported */
                        chnl_mgr_obj->max_channels = max_channels;
                        chnl_mgr_obj->open_channels = 0;
-                       chnl_mgr_obj->dw_output_mask = 0;
-                       chnl_mgr_obj->dw_last_output = 0;
+                       chnl_mgr_obj->output_mask = 0;
+                       chnl_mgr_obj->last_output = 0;
                        chnl_mgr_obj->hdev_obj = hdev_obj;
                        spin_lock_init(&chnl_mgr_obj->chnl_mgr_lock);
                } else {
@@ -511,7 +511,7 @@ int bridge_chnl_get_info(struct chnl_object *chnl_obj,
                        channel_info->hchnl_mgr = pchnl->chnl_mgr_obj;
                        channel_info->event_obj = pchnl->user_event;
                        channel_info->cnhl_id = pchnl->chnl_id;
-                       channel_info->dw_mode = pchnl->chnl_mode;
+                       channel_info->mode = pchnl->chnl_mode;
                        channel_info->bytes_tx = pchnl->bytes_moved;
                        channel_info->process = pchnl->process;
                        channel_info->sync_event = pchnl->sync_event;
index 913c7681d804d1fa10a5641f2d0da71ef1ec51e4..e89052c8c0e25553fac1e1ebe0ce3e37f21af45c 100644 (file)
@@ -417,8 +417,8 @@ int bridge_io_on_loaded(struct io_mgr *hio_mgr)
 
                /* The first MMU TLB entry(TLB_0) in DCD is ShmBase. */
                ndx = 0;
-               ul_gpp_pa = host_res->dw_mem_phys[1];
-               ul_gpp_va = host_res->dw_mem_base[1];
+               ul_gpp_pa = host_res->mem_phys[1];
+               ul_gpp_va = host_res->mem_base[1];
                /* This is the virtual uncached ioremapped address!!! */
                /* Why can't we directly take the DSPVA from the symbols? */
                ul_dsp_va = hio_mgr->ext_proc_info.ty_tlb[0].ul_dsp_virt;
@@ -441,9 +441,9 @@ int bridge_io_on_loaded(struct io_mgr *hio_mgr)
                        ul_dyn_ext_base, ul_ext_end, ul_seg_size, ul_seg1_size);
 
                if ((ul_seg_size + ul_seg1_size + ul_pad_size) >
-                   host_res->dw_mem_length[1]) {
+                   host_res->mem_length[1]) {
                        pr_err("%s: shm Error, reserved 0x%x required 0x%x\n",
-                              __func__, host_res->dw_mem_length[1],
+                              __func__, host_res->mem_length[1],
                               ul_seg_size + ul_seg1_size + ul_pad_size);
                        status = -ENOMEM;
                }
@@ -993,7 +993,7 @@ void io_request_chnl(struct io_mgr *io_manager, struct chnl_object *pchnl,
                 * Record the fact that we have a buffer available for
                 * output.
                 */
-               chnl_mgr_obj->dw_output_mask |= (1 << pchnl->chnl_id);
+               chnl_mgr_obj->output_mask |= (1 << pchnl->chnl_id);
        } else {
                DBC_ASSERT(io_mode);    /* Shouldn't get here. */
        }
@@ -1036,7 +1036,7 @@ static u32 find_ready_output(struct chnl_mgr *chnl_mgr_obj,
        u32 shift;
 
        id = (pchnl !=
-             NULL ? pchnl->chnl_id : (chnl_mgr_obj->dw_last_output + 1));
+             NULL ? pchnl->chnl_id : (chnl_mgr_obj->last_output + 1));
        id = ((id == CHNL_MAXCHANNELS) ? 0 : id);
        if (id >= CHNL_MAXCHANNELS)
                goto func_end;
@@ -1047,7 +1047,7 @@ static u32 find_ready_output(struct chnl_mgr *chnl_mgr_obj,
                        if (mask & shift) {
                                ret = id;
                                if (pchnl == NULL)
-                                       chnl_mgr_obj->dw_last_output = id;
+                                       chnl_mgr_obj->last_output = id;
                                break;
                        }
                        id = id + 1;
@@ -1336,7 +1336,7 @@ static void output_chnl(struct io_mgr *pio_mgr, struct chnl_object *pchnl,
        dw_dsp_f_mask = sm->dsp_free_mask;
        chnl_id =
            find_ready_output(chnl_mgr_obj, pchnl,
-                             (chnl_mgr_obj->dw_output_mask & dw_dsp_f_mask));
+                             (chnl_mgr_obj->output_mask & dw_dsp_f_mask));
        if (chnl_id == OUTPUTNOTREADY)
                goto func_end;
 
@@ -1358,7 +1358,7 @@ static void output_chnl(struct io_mgr *pio_mgr, struct chnl_object *pchnl,
 
        /* Record fact that no more I/O buffers available */
        if (list_empty(&pchnl->pio_requests))
-               chnl_mgr_obj->dw_output_mask &= ~(1 << chnl_id);
+               chnl_mgr_obj->output_mask &= ~(1 << chnl_id);
 
        /* Transfer buffer to DSP side */
        chnl_packet_obj->byte_size = min(pio_mgr->usm_buf_size,
index ce0556d026c3cceb97308d638984bd26f30b9043..5964a13d0b8476b1dd72d8c7b498b592241eca44 100644 (file)
@@ -233,7 +233,7 @@ static inline void flush_all(struct bridge_dev_context *dev_context)
            dev_context->brd_state == BRD_HIBERNATION)
                wake_dsp(dev_context, NULL);
 
-       hw_mmu_tlb_flush_all(dev_context->dw_dsp_mmu_base);
+       hw_mmu_tlb_flush_all(dev_context->dsp_mmu_base);
 }
 
 static void bad_page_dump(u32 pa, struct page *pg)
@@ -331,7 +331,7 @@ static int bridge_brd_read(struct bridge_dev_context *dev_ctxt,
        }
        /* change here to account for the 3 bands of the DSP internal memory */
        if ((dsp_addr - dev_context->dsp_start_add) <
-           dev_context->dw_internal_size) {
+           dev_context->internal_size) {
                offset = dsp_addr - dev_context->dsp_start_add;
        } else {
                status = read_ext_dsp_data(dev_context, host_buff, dsp_addr,
@@ -452,9 +452,9 @@ static int bridge_brd_start(struct bridge_dev_context *dev_ctxt,
                udelay(100);
 
                /* Disbale the DSP MMU */
-               hw_mmu_disable(resources->dw_dmmu_base);
+               hw_mmu_disable(resources->dmmu_base);
                /* Disable TWL */
-               hw_mmu_twl_disable(resources->dw_dmmu_base);
+               hw_mmu_twl_disable(resources->dmmu_base);
 
                /* Only make TLB entry if both addresses are non-zero */
                for (entry_ndx = 0; entry_ndx < BRDIOCTL_NUMOFMMUTLB;
@@ -476,7 +476,7 @@ static int bridge_brd_start(struct bridge_dev_context *dev_ctxt,
                                        e->ul_dsp_va,
                                        e->ul_size);
 
-                       hw_mmu_tlb_add(dev_context->dw_dsp_mmu_base,
+                       hw_mmu_tlb_add(dev_context->dsp_mmu_base,
                                        e->ul_gpp_pa,
                                        e->ul_dsp_va,
                                        e->ul_size,
@@ -490,19 +490,19 @@ static int bridge_brd_start(struct bridge_dev_context *dev_ctxt,
        /* Lock the above TLB entries and get the BIOS and load monitor timer
         * information */
        if (!status) {
-               hw_mmu_num_locked_set(resources->dw_dmmu_base, itmp_entry_ndx);
-               hw_mmu_victim_num_set(resources->dw_dmmu_base, itmp_entry_ndx);
-               hw_mmu_ttb_set(resources->dw_dmmu_base,
+               hw_mmu_num_locked_set(resources->dmmu_base, itmp_entry_ndx);
+               hw_mmu_victim_num_set(resources->dmmu_base, itmp_entry_ndx);
+               hw_mmu_ttb_set(resources->dmmu_base,
                               dev_context->pt_attrs->l1_base_pa);
-               hw_mmu_twl_enable(resources->dw_dmmu_base);
+               hw_mmu_twl_enable(resources->dmmu_base);
                /* Enable the SmartIdle and AutoIdle bit for MMU_SYSCONFIG */
 
-               temp = __raw_readl((resources->dw_dmmu_base) + 0x10);
+               temp = __raw_readl((resources->dmmu_base) + 0x10);
                temp = (temp & 0xFFFFFFEF) | 0x11;
-               __raw_writel(temp, (resources->dw_dmmu_base) + 0x10);
+               __raw_writel(temp, (resources->dmmu_base) + 0x10);
 
                /* Let the DSP MMU run */
-               hw_mmu_enable(resources->dw_dmmu_base);
+               hw_mmu_enable(resources->dmmu_base);
 
                /* Enable the BIOS clock */
                (void)dev_get_symbol(dev_context->hdev_obj,
@@ -566,18 +566,18 @@ static int bridge_brd_start(struct bridge_dev_context *dev_ctxt,
        }
        if (!status) {
 /*PM_IVA2GRPSEL_PER = 0xC0;*/
-               temp = readl(resources->dw_per_pm_base + 0xA8);
+               temp = readl(resources->per_pm_base + 0xA8);
                temp = (temp & 0xFFFFFF30) | 0xC0;
-               writel(temp, resources->dw_per_pm_base + 0xA8);
+               writel(temp, resources->per_pm_base + 0xA8);
 
 /*PM_MPUGRPSEL_PER &= 0xFFFFFF3F; */
-               temp = readl(resources->dw_per_pm_base + 0xA4);
+               temp = readl(resources->per_pm_base + 0xA4);
                temp = (temp & 0xFFFFFF3F);
-               writel(temp, resources->dw_per_pm_base + 0xA4);
+               writel(temp, resources->per_pm_base + 0xA4);
 /*CM_SLEEPDEP_PER |= 0x04; */
-               temp = readl(resources->dw_per_base + 0x44);
+               temp = readl(resources->per_base + 0x44);
                temp = (temp & 0xFFFFFFFB) | 0x04;
-               writel(temp, resources->dw_per_base + 0x44);
+               writel(temp, resources->per_base + 0x44);
 
 /*CM_CLKSTCTRL_IVA2 = 0x00000003 -To Allow automatic transitions */
                (*pdata->dsp_cm_write)(OMAP34XX_CLKSTCTRL_ENABLE_AUTO,
@@ -586,7 +586,7 @@ static int bridge_brd_start(struct bridge_dev_context *dev_ctxt,
                /* Let DSP go */
                dev_dbg(bridge, "%s Unreset\n", __func__);
                /* Enable DSP MMU Interrupts */
-               hw_mmu_event_enable(resources->dw_dmmu_base,
+               hw_mmu_event_enable(resources->dmmu_base,
                                    HW_MMU_ALL_INTERRUPTS);
                /* release the RST1, DSP starts executing now .. */
                (*pdata->dsp_prm_rmw_bits)(OMAP3430_RST1_IVA2_MASK, 0,
@@ -726,7 +726,7 @@ static int bridge_brd_write(struct bridge_dev_context *dev_ctxt,
                return status;
        }
        if ((dsp_addr - dev_context->dsp_start_add) <
-           dev_context->dw_internal_size) {
+           dev_context->internal_size) {
                status = write_dsp_data(dev_ctxt, host_buff, dsp_addr,
                                        ul_num_bytes, mem_type);
        } else {
@@ -767,7 +767,7 @@ static int bridge_dev_create(struct bridge_dev_context
        dev_context->dsp_start_add = (u32) OMAP_GEM_BASE;
        dev_context->dw_self_loop = (u32) NULL;
        dev_context->dsp_per_clks = 0;
-       dev_context->dw_internal_size = OMAP_DSP_SIZE;
+       dev_context->internal_size = OMAP_DSP_SIZE;
        /*  Clear dev context MMU table entries.
         *  These get set on bridge_io_on_loaded() call after program loaded. */
        for (entry_ndx = 0; entry_ndx < BRDIOCTL_NUMOFMMUTLB; entry_ndx++) {
@@ -776,10 +776,10 @@ static int bridge_dev_create(struct bridge_dev_context
        }
        dev_context->dsp_base_addr = (u32) MEM_LINEAR_ADDRESS((void *)
                                                                 (config_param->
-                                                                 dw_mem_base
+                                                                 mem_base
                                                                  [3]),
                                                                 config_param->
-                                                                dw_mem_length
+                                                                mem_length
                                                                 [3]);
        if (!dev_context->dsp_base_addr)
                status = -EPERM;
@@ -869,7 +869,7 @@ static int bridge_dev_create(struct bridge_dev_context
                udelay(5);
                /* MMU address is obtained from the host
                 * resources struct */
-               dev_context->dw_dsp_mmu_base = resources->dw_dmmu_base;
+               dev_context->dsp_mmu_base = resources->dmmu_base;
        }
        if (!status) {
                dev_context->hdev_obj = hdev_obj;
@@ -1001,12 +1001,12 @@ static int bridge_dev_destroy(struct bridge_dev_context *dev_ctxt)
                host_res = dev_context->resources;
                shm_size = drv_datap->shm_size;
                if (shm_size >= 0x10000) {
-                       if ((host_res->dw_mem_base[1]) &&
-                           (host_res->dw_mem_phys[1])) {
+                       if ((host_res->mem_base[1]) &&
+                           (host_res->mem_phys[1])) {
                                mem_free_phys_mem((void *)
-                                                 host_res->dw_mem_base
+                                                 host_res->mem_base
                                                  [1],
-                                                 host_res->dw_mem_phys
+                                                 host_res->mem_phys
                                                  [1], shm_size);
                        }
                } else {
@@ -1015,31 +1015,31 @@ static int bridge_dev_destroy(struct bridge_dev_context *dev_ctxt)
                                "mem_free_phys_mem\n", __func__,
                                status);
                }
-               host_res->dw_mem_base[1] = 0;
-               host_res->dw_mem_phys[1] = 0;
-
-               if (host_res->dw_mem_base[0])
-                       iounmap((void *)host_res->dw_mem_base[0]);
-               if (host_res->dw_mem_base[2])
-                       iounmap((void *)host_res->dw_mem_base[2]);
-               if (host_res->dw_mem_base[3])
-                       iounmap((void *)host_res->dw_mem_base[3]);
-               if (host_res->dw_mem_base[4])
-                       iounmap((void *)host_res->dw_mem_base[4]);
-               if (host_res->dw_dmmu_base)
-                       iounmap(host_res->dw_dmmu_base);
-               if (host_res->dw_per_base)
-                       iounmap(host_res->dw_per_base);
-               if (host_res->dw_per_pm_base)
-                       iounmap((void *)host_res->dw_per_pm_base);
+               host_res->mem_base[1] = 0;
+               host_res->mem_phys[1] = 0;
+
+               if (host_res->mem_base[0])
+                       iounmap((void *)host_res->mem_base[0]);
+               if (host_res->mem_base[2])
+                       iounmap((void *)host_res->mem_base[2]);
+               if (host_res->mem_base[3])
+                       iounmap((void *)host_res->mem_base[3]);
+               if (host_res->mem_base[4])
+                       iounmap((void *)host_res->mem_base[4]);
+               if (host_res->dmmu_base)
+                       iounmap(host_res->dmmu_base);
+               if (host_res->per_base)
+                       iounmap(host_res->per_base);
+               if (host_res->per_pm_base)
+                       iounmap((void *)host_res->per_pm_base);
                if (host_res->core_pm_base)
                        iounmap((void *)host_res->core_pm_base);
 
-               host_res->dw_mem_base[0] = (u32) NULL;
-               host_res->dw_mem_base[2] = (u32) NULL;
-               host_res->dw_mem_base[3] = (u32) NULL;
-               host_res->dw_mem_base[4] = (u32) NULL;
-               host_res->dw_dmmu_base = NULL;
+               host_res->mem_base[0] = (u32) NULL;
+               host_res->mem_base[2] = (u32) NULL;
+               host_res->mem_base[3] = (u32) NULL;
+               host_res->mem_base[4] = (u32) NULL;
+               host_res->dmmu_base = NULL;
 
                kfree(host_res);
        }
@@ -1071,7 +1071,7 @@ static int bridge_brd_mem_copy(struct bridge_dev_context *dev_ctxt,
                                           copy_bytes, mem_type);
                if (!status) {
                        if (dest_addr < (dev_context->dsp_start_add +
-                                        dev_context->dw_internal_size)) {
+                                        dev_context->internal_size)) {
                                /* Write to Internal memory */
                                status = write_dsp_data(dev_ctxt, host_buf,
                                                        dest_addr, copy_bytes,
@@ -1105,7 +1105,7 @@ static int bridge_brd_mem_write(struct bridge_dev_context *dev_ctxt,
                ul_bytes =
                    ul_remain_bytes > BUFFERSIZE ? BUFFERSIZE : ul_remain_bytes;
                if (dsp_addr < (dev_context->dsp_start_add +
-                                dev_context->dw_internal_size)) {
+                                dev_context->internal_size)) {
                        status =
                            write_dsp_data(dev_ctxt, host_buff, dsp_addr,
                                           ul_bytes, mem_type);
index fff27d4392d9819f02e1f4f602899e94b292ad84..64ca2d246c2f863ea176b53d0a2552304e84b9e8 100644 (file)
@@ -434,8 +434,8 @@ void dsp_clk_wakeup_event_ctrl(u32 clock_id, bool enable)
 
        switch (clock_id) {
        case BPWR_GP_TIMER5:
-               iva2_grpsel = readl(resources->dw_per_pm_base + 0xA8);
-               mpu_grpsel = readl(resources->dw_per_pm_base + 0xA4);
+               iva2_grpsel = readl(resources->per_pm_base + 0xA8);
+               mpu_grpsel = readl(resources->per_pm_base + 0xA4);
                if (enable) {
                        iva2_grpsel |= OMAP3430_GRPSEL_GPT5_MASK;
                        mpu_grpsel &= ~OMAP3430_GRPSEL_GPT5_MASK;
@@ -443,12 +443,12 @@ void dsp_clk_wakeup_event_ctrl(u32 clock_id, bool enable)
                        mpu_grpsel |= OMAP3430_GRPSEL_GPT5_MASK;
                        iva2_grpsel &= ~OMAP3430_GRPSEL_GPT5_MASK;
                }
-               writel(iva2_grpsel, resources->dw_per_pm_base + 0xA8);
-               writel(mpu_grpsel, resources->dw_per_pm_base + 0xA4);
+               writel(iva2_grpsel, resources->per_pm_base + 0xA8);
+               writel(mpu_grpsel, resources->per_pm_base + 0xA4);
                break;
        case BPWR_GP_TIMER6:
-               iva2_grpsel = readl(resources->dw_per_pm_base + 0xA8);
-               mpu_grpsel = readl(resources->dw_per_pm_base + 0xA4);
+               iva2_grpsel = readl(resources->per_pm_base + 0xA8);
+               mpu_grpsel = readl(resources->per_pm_base + 0xA4);
                if (enable) {
                        iva2_grpsel |= OMAP3430_GRPSEL_GPT6_MASK;
                        mpu_grpsel &= ~OMAP3430_GRPSEL_GPT6_MASK;
@@ -456,12 +456,12 @@ void dsp_clk_wakeup_event_ctrl(u32 clock_id, bool enable)
                        mpu_grpsel |= OMAP3430_GRPSEL_GPT6_MASK;
                        iva2_grpsel &= ~OMAP3430_GRPSEL_GPT6_MASK;
                }
-               writel(iva2_grpsel, resources->dw_per_pm_base + 0xA8);
-               writel(mpu_grpsel, resources->dw_per_pm_base + 0xA4);
+               writel(iva2_grpsel, resources->per_pm_base + 0xA8);
+               writel(mpu_grpsel, resources->per_pm_base + 0xA4);
                break;
        case BPWR_GP_TIMER7:
-               iva2_grpsel = readl(resources->dw_per_pm_base + 0xA8);
-               mpu_grpsel = readl(resources->dw_per_pm_base + 0xA4);
+               iva2_grpsel = readl(resources->per_pm_base + 0xA8);
+               mpu_grpsel = readl(resources->per_pm_base + 0xA4);
                if (enable) {
                        iva2_grpsel |= OMAP3430_GRPSEL_GPT7_MASK;
                        mpu_grpsel &= ~OMAP3430_GRPSEL_GPT7_MASK;
@@ -469,12 +469,12 @@ void dsp_clk_wakeup_event_ctrl(u32 clock_id, bool enable)
                        mpu_grpsel |= OMAP3430_GRPSEL_GPT7_MASK;
                        iva2_grpsel &= ~OMAP3430_GRPSEL_GPT7_MASK;
                }
-               writel(iva2_grpsel, resources->dw_per_pm_base + 0xA8);
-               writel(mpu_grpsel, resources->dw_per_pm_base + 0xA4);
+               writel(iva2_grpsel, resources->per_pm_base + 0xA8);
+               writel(mpu_grpsel, resources->per_pm_base + 0xA4);
                break;
        case BPWR_GP_TIMER8:
-               iva2_grpsel = readl(resources->dw_per_pm_base + 0xA8);
-               mpu_grpsel = readl(resources->dw_per_pm_base + 0xA4);
+               iva2_grpsel = readl(resources->per_pm_base + 0xA8);
+               mpu_grpsel = readl(resources->per_pm_base + 0xA4);
                if (enable) {
                        iva2_grpsel |= OMAP3430_GRPSEL_GPT8_MASK;
                        mpu_grpsel &= ~OMAP3430_GRPSEL_GPT8_MASK;
@@ -482,8 +482,8 @@ void dsp_clk_wakeup_event_ctrl(u32 clock_id, bool enable)
                        mpu_grpsel |= OMAP3430_GRPSEL_GPT8_MASK;
                        iva2_grpsel &= ~OMAP3430_GRPSEL_GPT8_MASK;
                }
-               writel(iva2_grpsel, resources->dw_per_pm_base + 0xA8);
-               writel(mpu_grpsel, resources->dw_per_pm_base + 0xA4);
+               writel(iva2_grpsel, resources->per_pm_base + 0xA8);
+               writel(mpu_grpsel, resources->per_pm_base + 0xA4);
                break;
        case BPWR_MCBSP1:
                iva2_grpsel = readl(resources->core_pm_base + 0xA8);
@@ -499,8 +499,8 @@ void dsp_clk_wakeup_event_ctrl(u32 clock_id, bool enable)
                writel(mpu_grpsel, resources->core_pm_base + 0xA4);
                break;
        case BPWR_MCBSP2:
-               iva2_grpsel = readl(resources->dw_per_pm_base + 0xA8);
-               mpu_grpsel = readl(resources->dw_per_pm_base + 0xA4);
+               iva2_grpsel = readl(resources->per_pm_base + 0xA8);
+               mpu_grpsel = readl(resources->per_pm_base + 0xA4);
                if (enable) {
                        iva2_grpsel |= OMAP3430_GRPSEL_MCBSP2_MASK;
                        mpu_grpsel &= ~OMAP3430_GRPSEL_MCBSP2_MASK;
@@ -508,12 +508,12 @@ void dsp_clk_wakeup_event_ctrl(u32 clock_id, bool enable)
                        mpu_grpsel |= OMAP3430_GRPSEL_MCBSP2_MASK;
                        iva2_grpsel &= ~OMAP3430_GRPSEL_MCBSP2_MASK;
                }
-               writel(iva2_grpsel, resources->dw_per_pm_base + 0xA8);
-               writel(mpu_grpsel, resources->dw_per_pm_base + 0xA4);
+               writel(iva2_grpsel, resources->per_pm_base + 0xA8);
+               writel(mpu_grpsel, resources->per_pm_base + 0xA4);
                break;
        case BPWR_MCBSP3:
-               iva2_grpsel = readl(resources->dw_per_pm_base + 0xA8);
-               mpu_grpsel = readl(resources->dw_per_pm_base + 0xA4);
+               iva2_grpsel = readl(resources->per_pm_base + 0xA8);
+               mpu_grpsel = readl(resources->per_pm_base + 0xA4);
                if (enable) {
                        iva2_grpsel |= OMAP3430_GRPSEL_MCBSP3_MASK;
                        mpu_grpsel &= ~OMAP3430_GRPSEL_MCBSP3_MASK;
@@ -521,12 +521,12 @@ void dsp_clk_wakeup_event_ctrl(u32 clock_id, bool enable)
                        mpu_grpsel |= OMAP3430_GRPSEL_MCBSP3_MASK;
                        iva2_grpsel &= ~OMAP3430_GRPSEL_MCBSP3_MASK;
                }
-               writel(iva2_grpsel, resources->dw_per_pm_base + 0xA8);
-               writel(mpu_grpsel, resources->dw_per_pm_base + 0xA4);
+               writel(iva2_grpsel, resources->per_pm_base + 0xA8);
+               writel(mpu_grpsel, resources->per_pm_base + 0xA4);
                break;
        case BPWR_MCBSP4:
-               iva2_grpsel = readl(resources->dw_per_pm_base + 0xA8);
-               mpu_grpsel = readl(resources->dw_per_pm_base + 0xA4);
+               iva2_grpsel = readl(resources->per_pm_base + 0xA8);
+               mpu_grpsel = readl(resources->per_pm_base + 0xA4);
                if (enable) {
                        iva2_grpsel |= OMAP3430_GRPSEL_MCBSP4_MASK;
                        mpu_grpsel &= ~OMAP3430_GRPSEL_MCBSP4_MASK;
@@ -534,12 +534,12 @@ void dsp_clk_wakeup_event_ctrl(u32 clock_id, bool enable)
                        mpu_grpsel |= OMAP3430_GRPSEL_MCBSP4_MASK;
                        iva2_grpsel &= ~OMAP3430_GRPSEL_MCBSP4_MASK;
                }
-               writel(iva2_grpsel, resources->dw_per_pm_base + 0xA8);
-               writel(mpu_grpsel, resources->dw_per_pm_base + 0xA4);
+               writel(iva2_grpsel, resources->per_pm_base + 0xA8);
+               writel(mpu_grpsel, resources->per_pm_base + 0xA4);
                break;
        case BPWR_MCBSP5:
-               iva2_grpsel = readl(resources->dw_per_pm_base + 0xA8);
-               mpu_grpsel = readl(resources->dw_per_pm_base + 0xA4);
+               iva2_grpsel = readl(resources->per_pm_base + 0xA8);
+               mpu_grpsel = readl(resources->per_pm_base + 0xA4);
                if (enable) {
                        iva2_grpsel |= OMAP3430_GRPSEL_MCBSP5_MASK;
                        mpu_grpsel &= ~OMAP3430_GRPSEL_MCBSP5_MASK;
@@ -547,8 +547,8 @@ void dsp_clk_wakeup_event_ctrl(u32 clock_id, bool enable)
                        mpu_grpsel |= OMAP3430_GRPSEL_MCBSP5_MASK;
                        iva2_grpsel &= ~OMAP3430_GRPSEL_MCBSP5_MASK;
                }
-               writel(iva2_grpsel, resources->dw_per_pm_base + 0xA8);
-               writel(mpu_grpsel, resources->dw_per_pm_base + 0xA4);
+               writel(iva2_grpsel, resources->per_pm_base + 0xA8);
+               writel(mpu_grpsel, resources->per_pm_base + 0xA4);
                break;
        }
 }
index 09c9e873ce7c4f0af4b81c2458922380d63f4f99..574feade6efc12d9091e0ba8540271979bafc5d7 100644 (file)
@@ -197,16 +197,16 @@ int write_dsp_data(struct bridge_dev_context *dev_context,
 
        offset = dsp_addr - dev_context->dsp_start_add;
        if (offset < base1) {
-               dw_base_addr = MEM_LINEAR_ADDRESS(resources->dw_mem_base[2],
-                                                 resources->dw_mem_length[2]);
+               dw_base_addr = MEM_LINEAR_ADDRESS(resources->mem_base[2],
+                                                 resources->mem_length[2]);
        } else if (offset > base1 && offset < base2 + OMAP_DSP_MEM2_SIZE) {
-               dw_base_addr = MEM_LINEAR_ADDRESS(resources->dw_mem_base[3],
-                                                 resources->dw_mem_length[3]);
+               dw_base_addr = MEM_LINEAR_ADDRESS(resources->mem_base[3],
+                                                 resources->mem_length[3]);
                offset = offset - base2;
        } else if (offset >= base2 + OMAP_DSP_MEM2_SIZE &&
                   offset < base3 + OMAP_DSP_MEM3_SIZE) {
-               dw_base_addr = MEM_LINEAR_ADDRESS(resources->dw_mem_base[4],
-                                                 resources->dw_mem_length[4]);
+               dw_base_addr = MEM_LINEAR_ADDRESS(resources->mem_base[4],
+                                                 resources->mem_length[4]);
                offset = offset - base3;
        } else {
                return -EPERM;
@@ -339,7 +339,7 @@ int write_ext_dsp_data(struct bridge_dev_context *dev_context,
                                dw_ext_prog_virt_mem =
                                    dev_context->atlb_entry[0].ul_gpp_va;
                        } else {
-                               dw_ext_prog_virt_mem = host_res->dw_mem_base[1];
+                               dw_ext_prog_virt_mem = host_res->mem_base[1];
                                dw_ext_prog_virt_mem +=
                                    (ul_ext_base - ul_dyn_ext_base);
                        }
@@ -437,7 +437,7 @@ int sm_interrupt_dsp(struct bridge_dev_context *dev_context, u16 mb_val)
                omap_mbox_restore_ctx(dev_context->mbox);
 
                /* Access MMU SYS CONFIG register to generate a short wakeup */
-               temp = readl(resources->dw_dmmu_base + 0x10);
+               temp = readl(resources->dmmu_base + 0x10);
 
                dev_context->brd_state = BRD_RUNNING;
        } else if (dev_context->brd_state == BRD_RETENTION) {
index 875a65c7f6dec921bde0e143caa805f8ec885eaf..bc2feff662b473a06be02a03c04389400441dfa9 100644 (file)
@@ -59,9 +59,9 @@ static irqreturn_t mmu_fault_isr(int irq, void *data)
                return IRQ_HANDLED;
        }
 
-       hw_mmu_event_status(resources->dw_dmmu_base, &event);
+       hw_mmu_event_status(resources->dmmu_base, &event);
        if (event == HW_MMU_TRANSLATION_FAULT) {
-               hw_mmu_fault_addr_read(resources->dw_dmmu_base, &fault_addr);
+               hw_mmu_fault_addr_read(resources->dmmu_base, &fault_addr);
                dev_dbg(bridge, "%s: event=0x%x, fault_addr=0x%x\n", __func__,
                                event, fault_addr);
                /*
@@ -73,10 +73,10 @@ static irqreturn_t mmu_fault_isr(int irq, void *data)
 
                /* Disable the MMU events, else once we clear it will
                 * start to raise INTs again */
-               hw_mmu_event_disable(resources->dw_dmmu_base,
+               hw_mmu_event_disable(resources->dmmu_base,
                                HW_MMU_TRANSLATION_FAULT);
        } else {
-               hw_mmu_event_disable(resources->dw_dmmu_base,
+               hw_mmu_event_disable(resources->dmmu_base,
                                HW_MMU_ALL_INTERRUPTS);
        }
        return IRQ_HANDLED;
@@ -185,10 +185,10 @@ static void mmu_fault_print_stack(struct bridge_dev_context *dev_context)
         * access entry #0. Then add a new entry so that the DSP OS
         * can continue in order to dump the stack.
         */
-       hw_mmu_twl_disable(resources->dw_dmmu_base);
-       hw_mmu_tlb_flush_all(resources->dw_dmmu_base);
+       hw_mmu_twl_disable(resources->dmmu_base);
+       hw_mmu_tlb_flush_all(resources->dmmu_base);
 
-       hw_mmu_tlb_add(resources->dw_dmmu_base,
+       hw_mmu_tlb_add(resources->dmmu_base,
                        virt_to_phys(dummy_va_addr), fault_addr,
                        HW_PAGE_SIZE4KB, 1,
                        &map_attrs, HW_SET, HW_SET);
@@ -198,12 +198,12 @@ static void mmu_fault_print_stack(struct bridge_dev_context *dev_context)
        dsp_gpt_wait_overflow(DSP_CLK_GPT8, 0xfffffffe);
 
        /* Clear MMU interrupt */
-       hw_mmu_event_ack(resources->dw_dmmu_base,
+       hw_mmu_event_ack(resources->dmmu_base,
                        HW_MMU_TRANSLATION_FAULT);
        dump_dsp_stack(dev_context);
        dsp_clk_disable(DSP_CLK_GPT8);
 
-       hw_mmu_disable(resources->dw_dmmu_base);
+       hw_mmu_disable(resources->dmmu_base);
        free_page((unsigned long)dummy_va_addr);
 }
 #endif
index 14b0567e53141075c2778a69b7466771404a47f2..ea547380012b8f7604bbb09a264f1b53cf5b817f 100644 (file)
@@ -119,8 +119,8 @@ struct chnl_mgr {
        struct dev_object *hdev_obj;
 
        /* These fields initialized in bridge_chnl_create(): */
-       u32 dw_output_mask;     /* Host output channels w/ full buffers */
-       u32 dw_last_output;     /* Last output channel fired from DPC */
+       u32 output_mask;        /* Host output channels w/ full buffers */
+       u32 last_output;        /* Last output channel fired from DPC */
        /* Critical section object handle */
        spinlock_t chnl_mgr_lock;
        u32 word_size;          /* Size in bytes of DSP word */
index f7c105af3da908ab6c0596d14d57894bcfa7372d..60a278136bdf58f14718fb43913d292a51b01397 100644 (file)
@@ -34,28 +34,28 @@ struct cfg_devnode;
 struct cfg_hostres {
        u32 num_mem_windows;    /* Set to default */
        /* This is the base.memory */
-       u32 dw_mem_base[CFG_MAXMEMREGISTERS];   /* shm virtual address */
-       u32 dw_mem_length[CFG_MAXMEMREGISTERS]; /* Length of the Base */
-       u32 dw_mem_phys[CFG_MAXMEMREGISTERS];   /* shm Physical address */
+       u32 mem_base[CFG_MAXMEMREGISTERS];      /* shm virtual address */
+       u32 mem_length[CFG_MAXMEMREGISTERS];    /* Length of the Base */
+       u32 mem_phys[CFG_MAXMEMREGISTERS];      /* shm Physical address */
        u8 birq_registers;      /* IRQ Number */
        u8 birq_attrib;         /* IRQ Attribute */
-       u32 dw_offset_for_monitor;      /* The Shared memory starts from
-                                        * dw_mem_base + this offset */
+       u32 offset_for_monitor; /* The Shared memory starts from
+                                        * mem_base + this offset */
        /*
         *  Info needed by NODE for allocating channels to communicate with RMS:
         *      chnl_offset:       Offset of RMS channels. Lower channels are
         *                          reserved.
         *      chnl_buf_size:      Size of channel buffer to send to RMS
-        *      dw_num_chnls:           Total number of channels
+        *      num_chnls:              Total number of channels
         *                              (including reserved).
         */
        u32 chnl_offset;
        u32 chnl_buf_size;
-       u32 dw_num_chnls;
-       void __iomem *dw_per_base;
-       u32 dw_per_pm_base;
+       u32 num_chnls;
+       void __iomem *per_base;
+       u32 per_pm_base;
        u32 core_pm_base;
-       void __iomem *dw_dmmu_base;
+       void __iomem *dmmu_base;
 };
 
 #endif /* CFGDEFS_ */
index 1785c3e837197d3973729b44aa025954b59a5569..29e66dd525e8c5d809bd8853cdc48a511832deda 100644 (file)
@@ -58,7 +58,7 @@ struct chnl_info {
        void *event_obj;        /* Channel I/O completion event. */
        /*Abstraction of I/O completion event. */
        struct sync_object *sync_event;
-       s8 dw_mode;             /* Channel mode. */
+       s8 mode;                /* Channel mode. */
        u8 dw_state;            /* Current channel state. */
        u32 bytes_tx;           /* Total bytes transferred. */
        u32 cio_cs;             /* Number of IOCs in queue. */
index 943d91f809e3249ecfa813b987bd779b6a4b66d4..8cd1494ccc84e8368cb8e7974da16b7d3287c9c4 100644 (file)
@@ -51,7 +51,7 @@ struct cmm_attrs {
  */
 
 struct cmm_seginfo {
-       u32 dw_seg_base_pa;     /* Start Phys address of SM segment */
+       u32 seg_base_pa;        /* Start Phys address of SM segment */
        /* Total size in bytes of segment: DSP+GPP */
        u32 ul_total_seg_size;
        u32 gpp_base_pa;        /* Start Phys addr of Gpp SM seg */
index f7542a5b10d63bc17a029b3c4a6b61a562d8edda..d2fb6a4c0e3b06956a6b5b580925f74ddccbcd44 100644 (file)
@@ -49,7 +49,7 @@
 #include <dspbridge/cmm.h>
 
 /*  ----------------------------------- Defines, Data Structures, Typedefs */
-#define NEXT_PA(pnode)   (pnode->dw_pa + pnode->ul_size)
+#define NEXT_PA(pnode)   (pnode->pa + pnode->ul_size)
 
 /* Other bus/platform translations */
 #define DSPPA2GPPPA(base, x, y)  ((x)+(y))
@@ -99,7 +99,7 @@ struct cmm_object {
        struct mutex cmm_lock;  /* Lock to access cmm mgr */
        struct list_head node_free_list;        /* Free list of memory nodes */
        u32 ul_min_block_size;  /* Min SM block; default 16 bytes */
-       u32 dw_page_size;       /* Memory Page size (1k/4k) */
+       u32 page_size;  /* Memory Page size (1k/4k) */
        /* GPP SM segment ptrs */
        struct cmm_allocator *pa_gppsm_seg_tab[CMM_MAXGPPSEGS];
 };
@@ -128,7 +128,7 @@ static struct cmm_xlatorattrs cmm_dfltxlatorattrs = {
 /* SM node representing a block of memory. */
 struct cmm_mnode {
        struct list_head link;  /* must be 1st element */
-       u32 dw_pa;              /* Phys addr */
+       u32 pa;         /* Phys addr */
        u32 dw_va;              /* Virtual address in device process context */
        u32 ul_size;            /* SM block size in bytes */
        u32 client_proc;        /* Process that allocated this mem block */
@@ -199,7 +199,7 @@ void *cmm_calloc_buf(struct cmm_object *hcmm_mgr, u32 usize,
                                /* create a new block with the leftovers and
                                 * add to freelist */
                                new_node =
-                                   get_node(cmm_mgr_obj, pnode->dw_pa + usize,
+                                   get_node(cmm_mgr_obj, pnode->pa + usize,
                                             pnode->dw_va + usize,
                                             (u32) delta_size);
                                /* leftovers go free */
@@ -216,7 +216,7 @@ void *cmm_calloc_buf(struct cmm_object *hcmm_mgr, u32 usize,
 
                        /* put our node on InUse list */
                        list_add_tail(&pnode->link, &allocator->in_use_list);
-                       buf_pa = (void *)pnode->dw_pa;  /* physical address */
+                       buf_pa = (void *)pnode->pa;     /* physical address */
                        /* clear mem */
                        pbyte = (u8 *) pnode->dw_va;
                        for (cnt = 0; cnt < (s32) usize; cnt++, pbyte++)
@@ -260,7 +260,7 @@ int cmm_create(struct cmm_object **ph_cmm_mgr,
        DBC_ASSERT(mgr_attrts->ul_min_block_size >= 4);
        /* save away smallest block allocation for this cmm mgr */
        cmm_obj->ul_min_block_size = mgr_attrts->ul_min_block_size;
-       cmm_obj->dw_page_size = PAGE_SIZE;
+       cmm_obj->page_size = PAGE_SIZE;
 
        /* create node free list */
        INIT_LIST_HEAD(&cmm_obj->node_free_list);
@@ -369,7 +369,7 @@ int cmm_free_buf(struct cmm_object *hcmm_mgr, void *buf_pa, u32 ul_seg_id)
 
        mutex_lock(&cmm_mgr_obj->cmm_lock);
        list_for_each_entry_safe(curr, tmp, &allocator->in_use_list, link) {
-               if (curr->dw_pa == (u32) buf_pa) {
+               if (curr->pa == (u32) buf_pa) {
                        list_del(&curr->link);
                        add_to_free_list(allocator, curr);
                        status = 0;
@@ -438,7 +438,7 @@ int cmm_get_info(struct cmm_object *hcmm_mgr,
                if (!altr)
                        continue;
                cmm_info_obj->ul_num_gppsm_segs++;
-               cmm_info_obj->seg_info[ul_seg - 1].dw_seg_base_pa =
+               cmm_info_obj->seg_info[ul_seg - 1].seg_base_pa =
                        altr->shm_base - altr->ul_dsp_size;
                cmm_info_obj->seg_info[ul_seg - 1].ul_total_seg_size =
                        altr->ul_dsp_size + altr->ul_sm_size;
@@ -704,7 +704,7 @@ static struct cmm_mnode *get_node(struct cmm_object *cmm_mgr_obj, u32 dw_pa,
                list_del_init(&pnode->link);
        }
 
-       pnode->dw_pa = dw_pa;
+       pnode->pa = dw_pa;
        pnode->dw_va = dw_va;
        pnode->ul_size = ul_size;
 
@@ -763,13 +763,13 @@ static void add_to_free_list(struct cmm_allocator *allocator,
        }
 
        list_for_each_entry(curr, &allocator->free_list, link) {
-               if (NEXT_PA(curr) == node->dw_pa) {
+               if (NEXT_PA(curr) == node->pa) {
                        curr->ul_size += node->ul_size;
                        delete_node(allocator->hcmm_mgr, node);
                        return;
                }
-               if (curr->dw_pa == NEXT_PA(node)) {
-                       curr->dw_pa = node->dw_pa;
+               if (curr->pa == NEXT_PA(node)) {
+                       curr->pa = node->pa;
                        curr->dw_va = node->dw_va;
                        curr->ul_size += node->ul_size;
                        delete_node(allocator->hcmm_mgr, node);
index 0f10a50cf6f9b85bdb09098c74065fa82d1d0357..e328dc1e1690725a3e42da66495bb91512c71ed9 100644 (file)
@@ -213,11 +213,11 @@ int dev_create_device(struct dev_object **device_obj,
                num_windows = host_res->num_mem_windows;
                if (num_windows) {
                        /* Assume last memory window is for CHNL */
-                       io_mgr_attrs.shm_base = host_res->dw_mem_base[1] +
-                           host_res->dw_offset_for_monitor;
+                       io_mgr_attrs.shm_base = host_res->mem_base[1] +
+                           host_res->offset_for_monitor;
                        io_mgr_attrs.usm_length =
-                           host_res->dw_mem_length[1] -
-                           host_res->dw_offset_for_monitor;
+                           host_res->mem_length[1] -
+                           host_res->offset_for_monitor;
                } else {
                        io_mgr_attrs.shm_base = 0;
                        io_mgr_attrs.usm_length = 0;
index 3efe1d50a4cd741890cdb9b98bac4d2096039450..575243882d0b87646abb2be4051587f36535068e 100644 (file)
@@ -68,7 +68,7 @@
 /* Device IOCtl function pointer */
 struct api_cmd {
        u32(*fxn) (union trapped_args *args, void *pr_ctxt);
-       u32 dw_index;
+       u32 index;
 };
 
 /*  ----------------------------------- Globals */
index 2e7330272b18f31b3a3fa9cad979c66ef94e6f77..9aacbcb38eb6636eb0b4490c6ec31c8da90167aa 100644 (file)
@@ -687,9 +687,9 @@ static int request_bridge_resources(struct cfg_hostres *res)
        host_res->num_mem_windows = 2;
 
        /* First window is for DSP internal memory */
-       dev_dbg(bridge, "dw_mem_base[0] 0x%x\n", host_res->dw_mem_base[0]);
-       dev_dbg(bridge, "dw_mem_base[3] 0x%x\n", host_res->dw_mem_base[3]);
-       dev_dbg(bridge, "dw_dmmu_base %p\n", host_res->dw_dmmu_base);
+       dev_dbg(bridge, "mem_base[0] 0x%x\n", host_res->mem_base[0]);
+       dev_dbg(bridge, "mem_base[3] 0x%x\n", host_res->mem_base[3]);
+       dev_dbg(bridge, "dmmu_base %p\n", host_res->dmmu_base);
 
        /* for 24xx base port is not mapping the mamory for DSP
         * internal memory TODO Do a ioremap here */
@@ -698,10 +698,10 @@ static int request_bridge_resources(struct cfg_hostres *res)
        /* These are hard-coded values */
        host_res->birq_registers = 0;
        host_res->birq_attrib = 0;
-       host_res->dw_offset_for_monitor = 0;
+       host_res->offset_for_monitor = 0;
        host_res->chnl_offset = 0;
        /* CHNL_MAXCHANNELS */
-       host_res->dw_num_chnls = CHNL_MAXCHANNELS;
+       host_res->num_chnls = CHNL_MAXCHANNELS;
        host_res->chnl_buf_size = 0x400;
 
        return 0;
@@ -730,51 +730,51 @@ int drv_request_bridge_res_dsp(void **phost_resources)
                /* num_mem_windows must not be more than CFG_MAXMEMREGISTERS */
                host_res->num_mem_windows = 4;
 
-               host_res->dw_mem_base[0] = 0;
-               host_res->dw_mem_base[2] = (u32) ioremap(OMAP_DSP_MEM1_BASE,
+               host_res->mem_base[0] = 0;
+               host_res->mem_base[2] = (u32) ioremap(OMAP_DSP_MEM1_BASE,
                                                         OMAP_DSP_MEM1_SIZE);
-               host_res->dw_mem_base[3] = (u32) ioremap(OMAP_DSP_MEM2_BASE,
+               host_res->mem_base[3] = (u32) ioremap(OMAP_DSP_MEM2_BASE,
                                                         OMAP_DSP_MEM2_SIZE);
-               host_res->dw_mem_base[4] = (u32) ioremap(OMAP_DSP_MEM3_BASE,
+               host_res->mem_base[4] = (u32) ioremap(OMAP_DSP_MEM3_BASE,
                                                         OMAP_DSP_MEM3_SIZE);
-               host_res->dw_per_base = ioremap(OMAP_PER_CM_BASE,
+               host_res->per_base = ioremap(OMAP_PER_CM_BASE,
                                                OMAP_PER_CM_SIZE);
-               host_res->dw_per_pm_base = (u32) ioremap(OMAP_PER_PRM_BASE,
+               host_res->per_pm_base = (u32) ioremap(OMAP_PER_PRM_BASE,
                                                         OMAP_PER_PRM_SIZE);
                host_res->core_pm_base = (u32) ioremap(OMAP_CORE_PRM_BASE,
                                                          OMAP_CORE_PRM_SIZE);
-               host_res->dw_dmmu_base = ioremap(OMAP_DMMU_BASE,
+               host_res->dmmu_base = ioremap(OMAP_DMMU_BASE,
                                                 OMAP_DMMU_SIZE);
 
-               dev_dbg(bridge, "dw_mem_base[0] 0x%x\n",
-                       host_res->dw_mem_base[0]);
-               dev_dbg(bridge, "dw_mem_base[1] 0x%x\n",
-                       host_res->dw_mem_base[1]);
-               dev_dbg(bridge, "dw_mem_base[2] 0x%x\n",
-                       host_res->dw_mem_base[2]);
-               dev_dbg(bridge, "dw_mem_base[3] 0x%x\n",
-                       host_res->dw_mem_base[3]);
-               dev_dbg(bridge, "dw_mem_base[4] 0x%x\n",
-                       host_res->dw_mem_base[4]);
-               dev_dbg(bridge, "dw_dmmu_base %p\n", host_res->dw_dmmu_base);
+               dev_dbg(bridge, "mem_base[0] 0x%x\n",
+                       host_res->mem_base[0]);
+               dev_dbg(bridge, "mem_base[1] 0x%x\n",
+                       host_res->mem_base[1]);
+               dev_dbg(bridge, "mem_base[2] 0x%x\n",
+                       host_res->mem_base[2]);
+               dev_dbg(bridge, "mem_base[3] 0x%x\n",
+                       host_res->mem_base[3]);
+               dev_dbg(bridge, "mem_base[4] 0x%x\n",
+                       host_res->mem_base[4]);
+               dev_dbg(bridge, "dmmu_base %p\n", host_res->dmmu_base);
 
                shm_size = drv_datap->shm_size;
                if (shm_size >= 0x10000) {
                        /* Allocate Physically contiguous,
                         * non-cacheable  memory */
-                       host_res->dw_mem_base[1] =
+                       host_res->mem_base[1] =
                            (u32) mem_alloc_phys_mem(shm_size, 0x100000,
                                                     &dma_addr);
-                       if (host_res->dw_mem_base[1] == 0) {
+                       if (host_res->mem_base[1] == 0) {
                                status = -ENOMEM;
                                pr_err("shm reservation Failed\n");
                        } else {
-                               host_res->dw_mem_length[1] = shm_size;
-                               host_res->dw_mem_phys[1] = dma_addr;
+                               host_res->mem_length[1] = shm_size;
+                               host_res->mem_phys[1] = dma_addr;
 
                                dev_dbg(bridge, "%s: Bridge shm address 0x%x "
                                        "dma_addr %x size %x\n", __func__,
-                                       host_res->dw_mem_base[1],
+                                       host_res->mem_base[1],
                                        dma_addr, shm_size);
                        }
                }
@@ -782,10 +782,10 @@ int drv_request_bridge_res_dsp(void **phost_resources)
                        /* These are hard-coded values */
                        host_res->birq_registers = 0;
                        host_res->birq_attrib = 0;
-                       host_res->dw_offset_for_monitor = 0;
+                       host_res->offset_for_monitor = 0;
                        host_res->chnl_offset = 0;
                        /* CHNL_MAXCHANNELS */
-                       host_res->dw_num_chnls = CHNL_MAXCHANNELS;
+                       host_res->num_chnls = CHNL_MAXCHANNELS;
                        host_res->chnl_buf_size = 0x400;
                        dw_buff_size = sizeof(struct cfg_hostres);
                }
index 5a045c75c56b7a4ea029aec0d6c4f2809fa1b87f..454fcc82584bee19a770645f66ee2ccb1e3bdf57 100644 (file)
@@ -621,7 +621,7 @@ func_cont:
                                goto func_end;
                        }
 
-                       ul_gpp_mem_base = (u32) host_res->dw_mem_base[1];
+                       ul_gpp_mem_base = (u32) host_res->mem_base[1];
                        off_set = pul_value - dynext_base;
                        ul_stack_seg_addr = ul_gpp_mem_base + off_set;
                        ul_stack_seg_val = readl(ul_stack_seg_addr);
@@ -2904,7 +2904,7 @@ static int get_proc_props(struct node_mgr *hnode_mgr,
                        return -EPERM;
                hnode_mgr->ul_chnl_offset = host_res->chnl_offset;
                hnode_mgr->ul_chnl_buf_size = host_res->chnl_buf_size;
-               hnode_mgr->ul_num_chnls = host_res->dw_num_chnls;
+               hnode_mgr->ul_num_chnls = host_res->num_chnls;
 
                /*
                 *  PROC will add an API to get dsp_processorinfo.
This page took 0.047588 seconds and 5 git commands to generate.