]> git.kernelconcepts.de Git - karo-tx-linux.git/blob - drivers/staging/tidspbridge/core/tiomap3430.c
Merge 3.16-rc4 into staging-next
[karo-tx-linux.git] / drivers / staging / tidspbridge / core / tiomap3430.c
1 /*
2  * tiomap.c
3  *
4  * DSP-BIOS Bridge driver support functions for TI OMAP processors.
5  *
6  * Processor Manager Driver for TI OMAP3430 EVM.
7  *
8  * Copyright (C) 2005-2006 Texas Instruments, Inc.
9  *
10  * This package is free software; you can redistribute it and/or modify
11  * it under the terms of the GNU General Public License version 2 as
12  * published by the Free Software Foundation.
13  *
14  * THIS PACKAGE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR
15  * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
16  * WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
17  */
18
19 #include <linux/platform_data/dsp-omap.h>
20
21 #include <linux/types.h>
22 /*  ----------------------------------- Host OS */
23 #include <dspbridge/host_os.h>
24 #include <linux/mm.h>
25 #include <linux/mmzone.h>
26
27 /*  ----------------------------------- DSP/BIOS Bridge */
28 #include <dspbridge/dbdefs.h>
29
30 /*  ----------------------------------- OS Adaptation Layer */
31 #include <dspbridge/drv.h>
32 #include <dspbridge/sync.h>
33
34 /* ------------------------------------ Hardware Abstraction Layer */
35 #include <hw_defs.h>
36 #include <hw_mmu.h>
37
38 /*  ----------------------------------- Link Driver */
39 #include <dspbridge/dspdefs.h>
40 #include <dspbridge/dspchnl.h>
41 #include <dspbridge/dspdeh.h>
42 #include <dspbridge/dspio.h>
43 #include <dspbridge/dspmsg.h>
44 #include <dspbridge/pwr.h>
45 #include <dspbridge/io_sm.h>
46
47 /*  ----------------------------------- Platform Manager */
48 #include <dspbridge/dev.h>
49 #include <dspbridge/dspapi.h>
50 #include <dspbridge/dmm.h>
51 #include <dspbridge/wdt.h>
52
53 /*  ----------------------------------- Local */
54 #include "_tiomap.h"
55 #include "_tiomap_pwr.h"
56 #include "tiomap_io.h"
57
58 /* Offset in shared mem to write to in order to synchronize start with DSP */
59 #define SHMSYNCOFFSET 4         /* GPP byte offset */
60
61 #define BUFFERSIZE 1024
62
63 #define TIHELEN_ACKTIMEOUT  10000
64
65 #define MMU_SECTION_ADDR_MASK    0xFFF00000
66 #define MMU_SSECTION_ADDR_MASK   0xFF000000
67 #define MMU_LARGE_PAGE_MASK      0xFFFF0000
68 #define MMU_SMALL_PAGE_MASK      0xFFFFF000
69 #define OMAP3_IVA2_BOOTADDR_MASK 0xFFFFFC00
70 #define PAGES_II_LVL_TABLE   512
71 #define PHYS_TO_PAGE(phys)      pfn_to_page((phys) >> PAGE_SHIFT)
72
73 /* IVA Boot modes */
74 #define DIRECT          0
75 #define IDLE            1
76
77 /* Forward Declarations: */
78 static int bridge_brd_monitor(struct bridge_dev_context *dev_ctxt);
79 static int bridge_brd_read(struct bridge_dev_context *dev_ctxt,
80                                   u8 *host_buff,
81                                   u32 dsp_addr, u32 ul_num_bytes,
82                                   u32 mem_type);
83 static int bridge_brd_start(struct bridge_dev_context *dev_ctxt,
84                                    u32 dsp_addr);
85 static int bridge_brd_status(struct bridge_dev_context *dev_ctxt,
86                                     int *board_state);
87 static int bridge_brd_stop(struct bridge_dev_context *dev_ctxt);
88 static int bridge_brd_write(struct bridge_dev_context *dev_ctxt,
89                                    u8 *host_buff,
90                                    u32 dsp_addr, u32 ul_num_bytes,
91                                    u32 mem_type);
92 static int bridge_brd_set_state(struct bridge_dev_context *dev_ctxt,
93                                     u32 brd_state);
94 static int bridge_brd_mem_copy(struct bridge_dev_context *dev_ctxt,
95                                    u32 dsp_dest_addr, u32 dsp_src_addr,
96                                    u32 ul_num_bytes, u32 mem_type);
97 static int bridge_brd_mem_write(struct bridge_dev_context *dev_ctxt,
98                                     u8 *host_buff, u32 dsp_addr,
99                                     u32 ul_num_bytes, u32 mem_type);
100 static int bridge_brd_mem_map(struct bridge_dev_context *dev_ctxt,
101                                   u32 ul_mpu_addr, u32 virt_addr,
102                                   u32 ul_num_bytes, u32 ul_map_attr,
103                                   struct page **mapped_pages);
104 static int bridge_brd_mem_un_map(struct bridge_dev_context *dev_ctxt,
105                                      u32 virt_addr, u32 ul_num_bytes);
106 static int bridge_dev_create(struct bridge_dev_context
107                                         **dev_cntxt,
108                                         struct dev_object *hdev_obj,
109                                         struct cfg_hostres *config_param);
110 static int bridge_dev_ctrl(struct bridge_dev_context *dev_context,
111                                   u32 dw_cmd, void *pargs);
112 static int bridge_dev_destroy(struct bridge_dev_context *dev_ctxt);
113 static u32 user_va2_pa(struct mm_struct *mm, u32 address);
114 static int pte_update(struct bridge_dev_context *dev_ctxt, u32 pa,
115                              u32 va, u32 size,
116                              struct hw_mmu_map_attrs_t *map_attrs);
117 static int pte_set(struct pg_table_attrs *pt, u32 pa, u32 va,
118                           u32 size, struct hw_mmu_map_attrs_t *attrs);
119 static int mem_map_vmalloc(struct bridge_dev_context *dev_context,
120                                   u32 ul_mpu_addr, u32 virt_addr,
121                                   u32 ul_num_bytes,
122                                   struct hw_mmu_map_attrs_t *hw_attrs);
123
124 bool wait_for_start(struct bridge_dev_context *dev_context,
125                         void __iomem *sync_addr);
126
127 /*  ----------------------------------- Globals */
128
129 /* Attributes of L2 page tables for DSP MMU */
130 struct page_info {
131         u32 num_entries;        /* Number of valid PTEs in the L2 PT */
132 };
133
134 /* Attributes used to manage the DSP MMU page tables */
135 struct pg_table_attrs {
136         spinlock_t pg_lock;     /* Critical section object handle */
137
138         u32 l1_base_pa;         /* Physical address of the L1 PT */
139         u32 l1_base_va;         /* Virtual  address of the L1 PT */
140         u32 l1_size;            /* Size of the L1 PT */
141         u32 l1_tbl_alloc_pa;
142         /* Physical address of Allocated mem for L1 table. May not be aligned */
143         u32 l1_tbl_alloc_va;
144         /* Virtual address of Allocated mem for L1 table. May not be aligned */
145         u32 l1_tbl_alloc_sz;
146         /* Size of consistent memory allocated for L1 table.
147          * May not be aligned */
148
149         u32 l2_base_pa;         /* Physical address of the L2 PT */
150         u32 l2_base_va;         /* Virtual  address of the L2 PT */
151         u32 l2_size;            /* Size of the L2 PT */
152         u32 l2_tbl_alloc_pa;
153         /* Physical address of Allocated mem for L2 table. May not be aligned */
154         u32 l2_tbl_alloc_va;
155         /* Virtual address of Allocated mem for L2 table. May not be aligned */
156         u32 l2_tbl_alloc_sz;
157         /* Size of consistent memory allocated for L2 table.
158          * May not be aligned */
159
160         u32 l2_num_pages;       /* Number of allocated L2 PT */
161         /* Array [l2_num_pages] of L2 PT info structs */
162         struct page_info *pg_info;
163 };
164
165 /*
166  *  This Bridge driver's function interface table.
167  */
168 static struct bridge_drv_interface drv_interface_fxns = {
169         /* Bridge API ver. for which this bridge driver is built. */
170         BRD_API_MAJOR_VERSION,
171         BRD_API_MINOR_VERSION,
172         bridge_dev_create,
173         bridge_dev_destroy,
174         bridge_dev_ctrl,
175         bridge_brd_monitor,
176         bridge_brd_start,
177         bridge_brd_stop,
178         bridge_brd_status,
179         bridge_brd_read,
180         bridge_brd_write,
181         bridge_brd_set_state,
182         bridge_brd_mem_copy,
183         bridge_brd_mem_write,
184         bridge_brd_mem_map,
185         bridge_brd_mem_un_map,
186         /* The following CHNL functions are provided by chnl_io.lib: */
187         bridge_chnl_create,
188         bridge_chnl_destroy,
189         bridge_chnl_open,
190         bridge_chnl_close,
191         bridge_chnl_add_io_req,
192         bridge_chnl_get_ioc,
193         bridge_chnl_cancel_io,
194         bridge_chnl_flush_io,
195         bridge_chnl_get_info,
196         bridge_chnl_get_mgr_info,
197         bridge_chnl_idle,
198         bridge_chnl_register_notify,
199         /* The following IO functions are provided by chnl_io.lib: */
200         bridge_io_create,
201         bridge_io_destroy,
202         bridge_io_on_loaded,
203         bridge_io_get_proc_load,
204         /* The following msg_ctrl functions are provided by chnl_io.lib: */
205         bridge_msg_create,
206         bridge_msg_create_queue,
207         bridge_msg_delete,
208         bridge_msg_delete_queue,
209         bridge_msg_get,
210         bridge_msg_put,
211         bridge_msg_register_notify,
212         bridge_msg_set_queue_id,
213 };
214
215 static struct notifier_block dsp_mbox_notifier = {
216         .notifier_call = io_mbox_msg,
217 };
218
219 static inline void flush_all(struct bridge_dev_context *dev_context)
220 {
221         if (dev_context->brd_state == BRD_DSP_HIBERNATION ||
222             dev_context->brd_state == BRD_HIBERNATION)
223                 wake_dsp(dev_context, NULL);
224
225         hw_mmu_tlb_flush_all(dev_context->dsp_mmu_base);
226 }
227
228 static void bad_page_dump(u32 pa, struct page *pg)
229 {
230         pr_emerg("DSPBRIDGE: MAP function: COUNT 0 FOR PA 0x%x\n", pa);
231         pr_emerg("Bad page state in process '%s'\n"
232                  "page:%p flags:0x%0*lx mapping:%p mapcount:%d count:%d\n"
233                  "Backtrace:\n",
234                  current->comm, pg, (int)(2 * sizeof(unsigned long)),
235                  (unsigned long)pg->flags, pg->mapping,
236                  page_mapcount(pg), page_count(pg));
237         dump_stack();
238 }
239
240 /*
241  *  ======== bridge_drv_entry ========
242  *  purpose:
243  *      Bridge Driver entry point.
244  */
245 void bridge_drv_entry(struct bridge_drv_interface **drv_intf,
246                    const char *driver_file_name)
247 {
248         if (strcmp(driver_file_name, "UMA") == 0)
249                 *drv_intf = &drv_interface_fxns;
250         else
251                 dev_dbg(bridge, "%s Unknown Bridge file name", __func__);
252
253 }
254
255 /*
256  *  ======== bridge_brd_monitor ========
257  *  purpose:
258  *      This bridge_brd_monitor puts DSP into a Loadable state.
259  *      i.e Application can load and start the device.
260  *
261  *  Preconditions:
262  *      Device in 'OFF' state.
263  */
264 static int bridge_brd_monitor(struct bridge_dev_context *dev_ctxt)
265 {
266         struct bridge_dev_context *dev_context = dev_ctxt;
267         u32 temp;
268         struct omap_dsp_platform_data *pdata =
269                 omap_dspbridge_dev->dev.platform_data;
270
271         temp = (*pdata->dsp_prm_read)(OMAP3430_IVA2_MOD, OMAP2_PM_PWSTST) &
272                                         OMAP_POWERSTATEST_MASK;
273         if (!(temp & 0x02)) {
274                 /* IVA2 is not in ON state */
275                 /* Read and set PM_PWSTCTRL_IVA2  to ON */
276                 (*pdata->dsp_prm_rmw_bits)(OMAP_POWERSTATEST_MASK,
277                         PWRDM_POWER_ON, OMAP3430_IVA2_MOD, OMAP2_PM_PWSTCTRL);
278                 /* Set the SW supervised state transition */
279                 (*pdata->dsp_cm_write)(OMAP34XX_CLKSTCTRL_FORCE_WAKEUP,
280                                         OMAP3430_IVA2_MOD, OMAP2_CM_CLKSTCTRL);
281
282                 /* Wait until the state has moved to ON */
283                 while ((*pdata->dsp_prm_read)(OMAP3430_IVA2_MOD,
284                                               OMAP2_PM_PWSTST) &
285                                                 OMAP_INTRANSITION_MASK)
286                         ;
287                 /* Disable Automatic transition */
288                 (*pdata->dsp_cm_write)(OMAP34XX_CLKSTCTRL_DISABLE_AUTO,
289                                         OMAP3430_IVA2_MOD, OMAP2_CM_CLKSTCTRL);
290         }
291         (*pdata->dsp_prm_rmw_bits)(OMAP3430_RST2_IVA2_MASK, 0,
292                                         OMAP3430_IVA2_MOD, OMAP2_RM_RSTCTRL);
293         dsp_clk_enable(DSP_CLK_IVA2);
294
295         /* set the device state to IDLE */
296         dev_context->brd_state = BRD_IDLE;
297
298         return 0;
299 }
300
301 /*
302  *  ======== bridge_brd_read ========
303  *  purpose:
304  *      Reads buffers for DSP memory.
305  */
306 static int bridge_brd_read(struct bridge_dev_context *dev_ctxt,
307                                   u8 *host_buff, u32 dsp_addr,
308                                   u32 ul_num_bytes, u32 mem_type)
309 {
310         int status = 0;
311         struct bridge_dev_context *dev_context = dev_ctxt;
312         u32 offset;
313         u32 dsp_base_addr = dev_ctxt->dsp_base_addr;
314
315         if (dsp_addr < dev_context->dsp_start_add) {
316                 status = -EPERM;
317                 return status;
318         }
319         /* change here to account for the 3 bands of the DSP internal memory */
320         if ((dsp_addr - dev_context->dsp_start_add) <
321             dev_context->internal_size) {
322                 offset = dsp_addr - dev_context->dsp_start_add;
323         } else {
324                 status = read_ext_dsp_data(dev_context, host_buff, dsp_addr,
325                                            ul_num_bytes, mem_type);
326                 return status;
327         }
328         /* copy the data from DSP memory */
329         memcpy(host_buff, (void *)(dsp_base_addr + offset), ul_num_bytes);
330         return status;
331 }
332
333 /*
334  *  ======== bridge_brd_set_state ========
335  *  purpose:
336  *      This routine updates the Board status.
337  */
338 static int bridge_brd_set_state(struct bridge_dev_context *dev_ctxt,
339                                     u32 brd_state)
340 {
341         int status = 0;
342         struct bridge_dev_context *dev_context = dev_ctxt;
343
344         dev_context->brd_state = brd_state;
345         return status;
346 }
347
348 /*
349  *  ======== bridge_brd_start ========
350  *  purpose:
351  *      Initializes DSP MMU and Starts DSP.
352  *
353  *  Preconditions:
354  *  a) DSP domain is 'ACTIVE'.
355  *  b) DSP_RST1 is asserted.
356  *  b) DSP_RST2 is released.
357  */
358 static int bridge_brd_start(struct bridge_dev_context *dev_ctxt,
359                                    u32 dsp_addr)
360 {
361         int status = 0;
362         struct bridge_dev_context *dev_context = dev_ctxt;
363         void __iomem *sync_addr;
364         u32 ul_shm_base;        /* Gpp Phys SM base addr(byte) */
365         u32 ul_shm_base_virt;   /* Dsp Virt SM base addr */
366         u32 ul_tlb_base_virt;   /* Base of MMU TLB entry */
367         u32 shm_sync_pa;
368         /* Offset of shm_base_virt from tlb_base_virt */
369         u32 ul_shm_offset_virt;
370         s32 entry_ndx;
371         s32 itmp_entry_ndx = 0; /* DSP-MMU TLB entry base address */
372         struct cfg_hostres *resources = NULL;
373         u32 temp;
374         u32 ul_dsp_clk_rate;
375         u32 ul_dsp_clk_addr;
376         u32 ul_bios_gp_timer;
377         u32 clk_cmd;
378         struct io_mgr *hio_mgr;
379         u32 ul_load_monitor_timer;
380         u32 wdt_en = 0;
381         struct omap_dsp_platform_data *pdata =
382                 omap_dspbridge_dev->dev.platform_data;
383
384         /* The device context contains all the mmu setup info from when the
385          * last dsp base image was loaded. The first entry is always
386          * SHMMEM base. */
387         /* Get SHM_BEG - convert to byte address */
388         (void)dev_get_symbol(dev_context->dev_obj, SHMBASENAME,
389                              &ul_shm_base_virt);
390         ul_shm_base_virt *= DSPWORDSIZE;
391         /* DSP Virtual address */
392         ul_tlb_base_virt = dev_context->atlb_entry[0].dsp_va;
393         ul_shm_offset_virt =
394             ul_shm_base_virt - (ul_tlb_base_virt * DSPWORDSIZE);
395         /* Kernel logical address */
396         ul_shm_base = dev_context->atlb_entry[0].gpp_va + ul_shm_offset_virt;
397
398         /* SHM physical sync address */
399         shm_sync_pa = dev_context->atlb_entry[0].gpp_pa + ul_shm_offset_virt +
400                         SHMSYNCOFFSET;
401
402         /* 2nd wd is used as sync field */
403         sync_addr = ioremap(shm_sync_pa, SZ_32);
404         if (!sync_addr)
405                 return -ENOMEM;
406
407         /* Write a signature into the shm base + offset; this will
408          * get cleared when the DSP program starts. */
409         if ((ul_shm_base_virt == 0) || (ul_shm_base == 0)) {
410                 pr_err("%s: Illegal SM base\n", __func__);
411                 status = -EPERM;
412         } else
413                 __raw_writel(0xffffffff, sync_addr);
414
415         if (!status) {
416                 resources = dev_context->resources;
417                 if (!resources)
418                         status = -EPERM;
419
420                 /* Assert RST1 i.e only the RST only for DSP megacell */
421                 if (!status) {
422                         (*pdata->dsp_prm_rmw_bits)(OMAP3430_RST1_IVA2_MASK,
423                                         OMAP3430_RST1_IVA2_MASK,
424                                         OMAP3430_IVA2_MOD,
425                                         OMAP2_RM_RSTCTRL);
426
427                         /* Mask address with 1K for compatibility */
428                         pdata->set_bootaddr(dsp_addr &
429                                                 OMAP3_IVA2_BOOTADDR_MASK);
430                         pdata->set_bootmode(dsp_debug ? IDLE : DIRECT);
431                 }
432         }
433         if (!status) {
434                 /* Reset and Unreset the RST2, so that BOOTADDR is copied to
435                  * IVA2 SYSC register */
436                 (*pdata->dsp_prm_rmw_bits)(OMAP3430_RST2_IVA2_MASK,
437                         OMAP3430_RST2_IVA2_MASK, OMAP3430_IVA2_MOD,
438                         OMAP2_RM_RSTCTRL);
439                 udelay(100);
440                 (*pdata->dsp_prm_rmw_bits)(OMAP3430_RST2_IVA2_MASK, 0,
441                                         OMAP3430_IVA2_MOD, OMAP2_RM_RSTCTRL);
442                 udelay(100);
443
444                 /* Disbale the DSP MMU */
445                 hw_mmu_disable(resources->dmmu_base);
446                 /* Disable TWL */
447                 hw_mmu_twl_disable(resources->dmmu_base);
448
449                 /* Only make TLB entry if both addresses are non-zero */
450                 for (entry_ndx = 0; entry_ndx < BRDIOCTL_NUMOFMMUTLB;
451                      entry_ndx++) {
452                         struct bridge_ioctl_extproc *e =
453                                 &dev_context->atlb_entry[entry_ndx];
454                         struct hw_mmu_map_attrs_t map_attrs = {
455                                 .endianism = e->endianism,
456                                 .element_size = e->elem_size,
457                                 .mixed_size = e->mixed_mode,
458                         };
459
460                         if (!e->gpp_pa || !e->dsp_va)
461                                 continue;
462
463                         dev_dbg(bridge,
464                                         "MMU %d, pa: 0x%x, va: 0x%x, size: 0x%x",
465                                         itmp_entry_ndx,
466                                         e->gpp_pa,
467                                         e->dsp_va,
468                                         e->size);
469
470                         hw_mmu_tlb_add(dev_context->dsp_mmu_base,
471                                         e->gpp_pa,
472                                         e->dsp_va,
473                                         e->size,
474                                         itmp_entry_ndx,
475                                         &map_attrs, 1, 1);
476
477                         itmp_entry_ndx++;
478                 }
479         }
480
481         /* Lock the above TLB entries and get the BIOS and load monitor timer
482          * information */
483         if (!status) {
484                 hw_mmu_num_locked_set(resources->dmmu_base, itmp_entry_ndx);
485                 hw_mmu_victim_num_set(resources->dmmu_base, itmp_entry_ndx);
486                 hw_mmu_ttb_set(resources->dmmu_base,
487                                dev_context->pt_attrs->l1_base_pa);
488                 hw_mmu_twl_enable(resources->dmmu_base);
489                 /* Enable the SmartIdle and AutoIdle bit for MMU_SYSCONFIG */
490
491                 temp = __raw_readl((resources->dmmu_base) + 0x10);
492                 temp = (temp & 0xFFFFFFEF) | 0x11;
493                 __raw_writel(temp, (resources->dmmu_base) + 0x10);
494
495                 /* Let the DSP MMU run */
496                 hw_mmu_enable(resources->dmmu_base);
497
498                 /* Enable the BIOS clock */
499                 (void)dev_get_symbol(dev_context->dev_obj,
500                                      BRIDGEINIT_BIOSGPTIMER, &ul_bios_gp_timer);
501                 (void)dev_get_symbol(dev_context->dev_obj,
502                                      BRIDGEINIT_LOADMON_GPTIMER,
503                                      &ul_load_monitor_timer);
504         }
505
506         if (!status) {
507                 if (ul_load_monitor_timer != 0xFFFF) {
508                         clk_cmd = (BPWR_ENABLE_CLOCK << MBX_PM_CLK_CMDSHIFT) |
509                             ul_load_monitor_timer;
510                         dsp_peripheral_clk_ctrl(dev_context, &clk_cmd);
511                 } else {
512                         dev_dbg(bridge, "Not able to get the symbol for Load "
513                                 "Monitor Timer\n");
514                 }
515         }
516
517         if (!status) {
518                 if (ul_bios_gp_timer != 0xFFFF) {
519                         clk_cmd = (BPWR_ENABLE_CLOCK << MBX_PM_CLK_CMDSHIFT) |
520                             ul_bios_gp_timer;
521                         dsp_peripheral_clk_ctrl(dev_context, &clk_cmd);
522                 } else {
523                         dev_dbg(bridge,
524                                 "Not able to get the symbol for BIOS Timer\n");
525                 }
526         }
527
528         if (!status) {
529                 /* Set the DSP clock rate */
530                 (void)dev_get_symbol(dev_context->dev_obj,
531                                      "_BRIDGEINIT_DSP_FREQ", &ul_dsp_clk_addr);
532                 /*Set Autoidle Mode for IVA2 PLL */
533                 (*pdata->dsp_cm_write)(1 << OMAP3430_AUTO_IVA2_DPLL_SHIFT,
534                                 OMAP3430_IVA2_MOD, OMAP3430_CM_AUTOIDLE_PLL);
535
536                 if ((unsigned int *)ul_dsp_clk_addr != NULL) {
537                         /* Get the clock rate */
538                         ul_dsp_clk_rate = dsp_clk_get_iva2_rate();
539                         dev_dbg(bridge, "%s: DSP clock rate (KHZ): 0x%x \n",
540                                 __func__, ul_dsp_clk_rate);
541                         (void)bridge_brd_write(dev_context,
542                                                (u8 *) &ul_dsp_clk_rate,
543                                                ul_dsp_clk_addr, sizeof(u32), 0);
544                 }
545                 /*
546                  * Enable Mailbox events and also drain any pending
547                  * stale messages.
548                  */
549                 dev_context->mbox = omap_mbox_get("dsp", &dsp_mbox_notifier);
550                 if (IS_ERR(dev_context->mbox)) {
551                         dev_context->mbox = NULL;
552                         pr_err("%s: Failed to get dsp mailbox handle\n",
553                                                                 __func__);
554                         status = -EPERM;
555                 }
556
557         }
558         if (!status) {
559 /*PM_IVA2GRPSEL_PER = 0xC0;*/
560                 temp = readl(resources->per_pm_base + 0xA8);
561                 temp = (temp & 0xFFFFFF30) | 0xC0;
562                 writel(temp, resources->per_pm_base + 0xA8);
563
564 /*PM_MPUGRPSEL_PER &= 0xFFFFFF3F; */
565                 temp = readl(resources->per_pm_base + 0xA4);
566                 temp = (temp & 0xFFFFFF3F);
567                 writel(temp, resources->per_pm_base + 0xA4);
568 /*CM_SLEEPDEP_PER |= 0x04; */
569                 temp = readl(resources->per_base + 0x44);
570                 temp = (temp & 0xFFFFFFFB) | 0x04;
571                 writel(temp, resources->per_base + 0x44);
572
573 /*CM_CLKSTCTRL_IVA2 = 0x00000003 -To Allow automatic transitions */
574                 (*pdata->dsp_cm_write)(OMAP34XX_CLKSTCTRL_ENABLE_AUTO,
575                                         OMAP3430_IVA2_MOD, OMAP2_CM_CLKSTCTRL);
576
577                 /* Let DSP go */
578                 dev_dbg(bridge, "%s Unreset\n", __func__);
579                 /* Enable DSP MMU Interrupts */
580                 hw_mmu_event_enable(resources->dmmu_base,
581                                     HW_MMU_ALL_INTERRUPTS);
582                 /* release the RST1, DSP starts executing now .. */
583                 (*pdata->dsp_prm_rmw_bits)(OMAP3430_RST1_IVA2_MASK, 0,
584                                         OMAP3430_IVA2_MOD, OMAP2_RM_RSTCTRL);
585
586                 dev_dbg(bridge, "Waiting for Sync @ 0x%x\n", *(u32 *)sync_addr);
587                 dev_dbg(bridge, "DSP c_int00 Address =  0x%x\n", dsp_addr);
588                 if (dsp_debug)
589                         while (__raw_readw(sync_addr))
590                                 ;
591
592                 /* Wait for DSP to clear word in shared memory */
593                 /* Read the Location */
594                 if (!wait_for_start(dev_context, sync_addr))
595                         status = -ETIMEDOUT;
596
597                 dev_get_symbol(dev_context->dev_obj, "_WDT_enable", &wdt_en);
598                 if (wdt_en) {
599                         /* Start wdt */
600                         dsp_wdt_sm_set((void *)ul_shm_base);
601                         dsp_wdt_enable(true);
602                 }
603
604                 status = dev_get_io_mgr(dev_context->dev_obj, &hio_mgr);
605                 if (hio_mgr) {
606                         io_sh_msetting(hio_mgr, SHM_OPPINFO, NULL);
607                         /* Write the synchronization bit to indicate the
608                          * completion of OPP table update to DSP
609                          */
610                         __raw_writel(0XCAFECAFE, sync_addr);
611
612                         /* update board state */
613                         dev_context->brd_state = BRD_RUNNING;
614                         /* (void)chnlsm_enable_interrupt(dev_context); */
615                 } else {
616                         dev_context->brd_state = BRD_UNKNOWN;
617                 }
618         }
619
620         iounmap(sync_addr);
621
622         return status;
623 }
624
625 /*
626  *  ======== bridge_brd_stop ========
627  *  purpose:
628  *      Puts DSP in self loop.
629  *
630  *  Preconditions :
631  *  a) None
632  */
633 static int bridge_brd_stop(struct bridge_dev_context *dev_ctxt)
634 {
635         int status = 0;
636         struct bridge_dev_context *dev_context = dev_ctxt;
637         struct pg_table_attrs *pt_attrs;
638         u32 dsp_pwr_state;
639         struct omap_dsp_platform_data *pdata =
640                 omap_dspbridge_dev->dev.platform_data;
641
642         if (dev_context->brd_state == BRD_STOPPED)
643                 return status;
644
645         /* as per TRM, it is advised to first drive the IVA2 to 'Standby' mode,
646          * before turning off the clocks.. This is to ensure that there are no
647          * pending L3 or other transactons from IVA2 */
648         dsp_pwr_state = (*pdata->dsp_prm_read)
649                 (OMAP3430_IVA2_MOD, OMAP2_PM_PWSTST) & OMAP_POWERSTATEST_MASK;
650         if (dsp_pwr_state != PWRDM_POWER_OFF) {
651                 (*pdata->dsp_prm_rmw_bits)(OMAP3430_RST2_IVA2_MASK, 0,
652                                         OMAP3430_IVA2_MOD, OMAP2_RM_RSTCTRL);
653                 sm_interrupt_dsp(dev_context, MBX_PM_DSPIDLE);
654                 mdelay(10);
655
656                 /* IVA2 is not in OFF state */
657                 /* Set PM_PWSTCTRL_IVA2  to OFF */
658                 (*pdata->dsp_prm_rmw_bits)(OMAP_POWERSTATEST_MASK,
659                         PWRDM_POWER_OFF, OMAP3430_IVA2_MOD, OMAP2_PM_PWSTCTRL);
660                 /* Set the SW supervised state transition for Sleep */
661                 (*pdata->dsp_cm_write)(OMAP34XX_CLKSTCTRL_FORCE_SLEEP,
662                                         OMAP3430_IVA2_MOD, OMAP2_CM_CLKSTCTRL);
663         }
664         udelay(10);
665         /* Release the Ext Base virtual Address as the next DSP Program
666          * may have a different load address */
667         if (dev_context->dsp_ext_base_addr)
668                 dev_context->dsp_ext_base_addr = 0;
669
670         dev_context->brd_state = BRD_STOPPED;   /* update board state */
671
672         dsp_wdt_enable(false);
673
674         /* This is a good place to clear the MMU page tables as well */
675         if (dev_context->pt_attrs) {
676                 pt_attrs = dev_context->pt_attrs;
677                 memset((u8 *) pt_attrs->l1_base_va, 0x00, pt_attrs->l1_size);
678                 memset((u8 *) pt_attrs->l2_base_va, 0x00, pt_attrs->l2_size);
679                 memset((u8 *) pt_attrs->pg_info, 0x00,
680                        (pt_attrs->l2_num_pages * sizeof(struct page_info)));
681         }
682         /* Disable the mailbox interrupts */
683         if (dev_context->mbox) {
684                 omap_mbox_disable_irq(dev_context->mbox, IRQ_RX);
685                 omap_mbox_put(dev_context->mbox, &dsp_mbox_notifier);
686                 dev_context->mbox = NULL;
687         }
688         /* Reset IVA2 clocks*/
689         (*pdata->dsp_prm_write)(OMAP3430_RST1_IVA2_MASK |
690                         OMAP3430_RST2_IVA2_MASK | OMAP3430_RST3_IVA2_MASK,
691                         OMAP3430_IVA2_MOD, OMAP2_RM_RSTCTRL);
692
693         dsp_clock_disable_all(dev_context->dsp_per_clks);
694         dsp_clk_disable(DSP_CLK_IVA2);
695
696         return status;
697 }
698
699 /*
700  *  ======== bridge_brd_status ========
701  *      Returns the board status.
702  */
703 static int bridge_brd_status(struct bridge_dev_context *dev_ctxt,
704                                     int *board_state)
705 {
706         struct bridge_dev_context *dev_context = dev_ctxt;
707         *board_state = dev_context->brd_state;
708         return 0;
709 }
710
711 /*
712  *  ======== bridge_brd_write ========
713  *      Copies the buffers to DSP internal or external memory.
714  */
715 static int bridge_brd_write(struct bridge_dev_context *dev_ctxt,
716                                    u8 *host_buff, u32 dsp_addr,
717                                    u32 ul_num_bytes, u32 mem_type)
718 {
719         int status = 0;
720         struct bridge_dev_context *dev_context = dev_ctxt;
721
722         if (dsp_addr < dev_context->dsp_start_add) {
723                 status = -EPERM;
724                 return status;
725         }
726         if ((dsp_addr - dev_context->dsp_start_add) <
727             dev_context->internal_size) {
728                 status = write_dsp_data(dev_ctxt, host_buff, dsp_addr,
729                                         ul_num_bytes, mem_type);
730         } else {
731                 status = write_ext_dsp_data(dev_context, host_buff, dsp_addr,
732                                             ul_num_bytes, mem_type, false);
733         }
734
735         return status;
736 }
737
738 /*
739  *  ======== bridge_dev_create ========
740  *      Creates a driver object. Puts DSP in self loop.
741  */
742 static int bridge_dev_create(struct bridge_dev_context
743                                         **dev_cntxt,
744                                         struct dev_object *hdev_obj,
745                                         struct cfg_hostres *config_param)
746 {
747         int status = 0;
748         struct bridge_dev_context *dev_context = NULL;
749         s32 entry_ndx;
750         struct cfg_hostres *resources = config_param;
751         struct pg_table_attrs *pt_attrs;
752         u32 pg_tbl_pa;
753         u32 pg_tbl_va;
754         u32 align_size;
755         struct drv_data *drv_datap = dev_get_drvdata(bridge);
756
757         /* Allocate and initialize a data structure to contain the bridge driver
758          *  state, which becomes the context for later calls into this driver */
759         dev_context = kzalloc(sizeof(struct bridge_dev_context), GFP_KERNEL);
760         if (!dev_context) {
761                 status = -ENOMEM;
762                 goto func_end;
763         }
764
765         dev_context->dsp_start_add = (u32) OMAP_GEM_BASE;
766         dev_context->self_loop = (u32) NULL;
767         dev_context->dsp_per_clks = 0;
768         dev_context->internal_size = OMAP_DSP_SIZE;
769         /*  Clear dev context MMU table entries.
770          *  These get set on bridge_io_on_loaded() call after program loaded. */
771         for (entry_ndx = 0; entry_ndx < BRDIOCTL_NUMOFMMUTLB; entry_ndx++) {
772                 dev_context->atlb_entry[entry_ndx].gpp_pa =
773                     dev_context->atlb_entry[entry_ndx].dsp_va = 0;
774         }
775         dev_context->dsp_base_addr = (u32) MEM_LINEAR_ADDRESS((void *)
776                                                                  (config_param->
777                                                                   mem_base
778                                                                   [3]),
779                                                                  config_param->
780                                                                  mem_length
781                                                                  [3]);
782         if (!dev_context->dsp_base_addr)
783                 status = -EPERM;
784
785         pt_attrs = kzalloc(sizeof(struct pg_table_attrs), GFP_KERNEL);
786         if (pt_attrs != NULL) {
787                 pt_attrs->l1_size = SZ_16K; /* 4096 entries of 32 bits */
788                 align_size = pt_attrs->l1_size;
789                 /* Align sizes are expected to be power of 2 */
790                 /* we like to get aligned on L1 table size */
791                 pg_tbl_va = (u32) mem_alloc_phys_mem(pt_attrs->l1_size,
792                                                      align_size, &pg_tbl_pa);
793
794                 /* Check if the PA is aligned for us */
795                 if ((pg_tbl_pa) & (align_size - 1)) {
796                         /* PA not aligned to page table size ,
797                          * try with more allocation and align */
798                         mem_free_phys_mem((void *)pg_tbl_va, pg_tbl_pa,
799                                           pt_attrs->l1_size);
800                         /* we like to get aligned on L1 table size */
801                         pg_tbl_va =
802                             (u32) mem_alloc_phys_mem((pt_attrs->l1_size) * 2,
803                                                      align_size, &pg_tbl_pa);
804                         /* We should be able to get aligned table now */
805                         pt_attrs->l1_tbl_alloc_pa = pg_tbl_pa;
806                         pt_attrs->l1_tbl_alloc_va = pg_tbl_va;
807                         pt_attrs->l1_tbl_alloc_sz = pt_attrs->l1_size * 2;
808                         /* Align the PA to the next 'align'  boundary */
809                         pt_attrs->l1_base_pa =
810                             ((pg_tbl_pa) +
811                              (align_size - 1)) & (~(align_size - 1));
812                         pt_attrs->l1_base_va =
813                             pg_tbl_va + (pt_attrs->l1_base_pa - pg_tbl_pa);
814                 } else {
815                         /* We got aligned PA, cool */
816                         pt_attrs->l1_tbl_alloc_pa = pg_tbl_pa;
817                         pt_attrs->l1_tbl_alloc_va = pg_tbl_va;
818                         pt_attrs->l1_tbl_alloc_sz = pt_attrs->l1_size;
819                         pt_attrs->l1_base_pa = pg_tbl_pa;
820                         pt_attrs->l1_base_va = pg_tbl_va;
821                 }
822                 if (pt_attrs->l1_base_va)
823                         memset((u8 *) pt_attrs->l1_base_va, 0x00,
824                                pt_attrs->l1_size);
825
826                 /* number of L2 page tables = DMM pool used + SHMMEM +EXTMEM +
827                  * L4 pages */
828                 pt_attrs->l2_num_pages = ((DMMPOOLSIZE >> 20) + 6);
829                 pt_attrs->l2_size = HW_MMU_COARSE_PAGE_SIZE *
830                     pt_attrs->l2_num_pages;
831                 align_size = 4; /* Make it u32 aligned */
832                 /* we like to get aligned on L1 table size */
833                 pg_tbl_va = (u32) mem_alloc_phys_mem(pt_attrs->l2_size,
834                                                      align_size, &pg_tbl_pa);
835                 pt_attrs->l2_tbl_alloc_pa = pg_tbl_pa;
836                 pt_attrs->l2_tbl_alloc_va = pg_tbl_va;
837                 pt_attrs->l2_tbl_alloc_sz = pt_attrs->l2_size;
838                 pt_attrs->l2_base_pa = pg_tbl_pa;
839                 pt_attrs->l2_base_va = pg_tbl_va;
840
841                 if (pt_attrs->l2_base_va)
842                         memset((u8 *) pt_attrs->l2_base_va, 0x00,
843                                pt_attrs->l2_size);
844
845                 pt_attrs->pg_info = kzalloc(pt_attrs->l2_num_pages *
846                                         sizeof(struct page_info), GFP_KERNEL);
847                 dev_dbg(bridge,
848                         "L1 pa %x, va %x, size %x\n L2 pa %x, va "
849                         "%x, size %x\n", pt_attrs->l1_base_pa,
850                         pt_attrs->l1_base_va, pt_attrs->l1_size,
851                         pt_attrs->l2_base_pa, pt_attrs->l2_base_va,
852                         pt_attrs->l2_size);
853                 dev_dbg(bridge, "pt_attrs %p L2 NumPages %x pg_info %p\n",
854                         pt_attrs, pt_attrs->l2_num_pages, pt_attrs->pg_info);
855         }
856         if ((pt_attrs != NULL) && (pt_attrs->l1_base_va != 0) &&
857             (pt_attrs->l2_base_va != 0) && (pt_attrs->pg_info != NULL))
858                 dev_context->pt_attrs = pt_attrs;
859         else
860                 status = -ENOMEM;
861
862         if (!status) {
863                 spin_lock_init(&pt_attrs->pg_lock);
864                 dev_context->tc_word_swap_on = drv_datap->tc_wordswapon;
865
866                 /* Set the Clock Divisor for the DSP module */
867                 udelay(5);
868                 /* MMU address is obtained from the host
869                  * resources struct */
870                 dev_context->dsp_mmu_base = resources->dmmu_base;
871         }
872         if (!status) {
873                 dev_context->dev_obj = hdev_obj;
874                 /* Store current board state. */
875                 dev_context->brd_state = BRD_UNKNOWN;
876                 dev_context->resources = resources;
877                 dsp_clk_enable(DSP_CLK_IVA2);
878                 bridge_brd_stop(dev_context);
879                 /* Return ptr to our device state to the DSP API for storage */
880                 *dev_cntxt = dev_context;
881         } else {
882                 if (pt_attrs != NULL) {
883                         kfree(pt_attrs->pg_info);
884
885                         if (pt_attrs->l2_tbl_alloc_va) {
886                                 mem_free_phys_mem((void *)
887                                                   pt_attrs->l2_tbl_alloc_va,
888                                                   pt_attrs->l2_tbl_alloc_pa,
889                                                   pt_attrs->l2_tbl_alloc_sz);
890                         }
891                         if (pt_attrs->l1_tbl_alloc_va) {
892                                 mem_free_phys_mem((void *)
893                                                   pt_attrs->l1_tbl_alloc_va,
894                                                   pt_attrs->l1_tbl_alloc_pa,
895                                                   pt_attrs->l1_tbl_alloc_sz);
896                         }
897                 }
898                 kfree(pt_attrs);
899                 kfree(dev_context);
900         }
901 func_end:
902         return status;
903 }
904
905 /*
906  *  ======== bridge_dev_ctrl ========
907  *      Receives device specific commands.
908  */
909 static int bridge_dev_ctrl(struct bridge_dev_context *dev_context,
910                                   u32 dw_cmd, void *pargs)
911 {
912         int status = 0;
913         struct bridge_ioctl_extproc *pa_ext_proc =
914                                         (struct bridge_ioctl_extproc *)pargs;
915         s32 ndx;
916
917         switch (dw_cmd) {
918         case BRDIOCTL_CHNLREAD:
919                 break;
920         case BRDIOCTL_CHNLWRITE:
921                 break;
922         case BRDIOCTL_SETMMUCONFIG:
923                 /* store away dsp-mmu setup values for later use */
924                 for (ndx = 0; ndx < BRDIOCTL_NUMOFMMUTLB; ndx++, pa_ext_proc++)
925                         dev_context->atlb_entry[ndx] = *pa_ext_proc;
926                 break;
927         case BRDIOCTL_DEEPSLEEP:
928         case BRDIOCTL_EMERGENCYSLEEP:
929                 /* Currently only DSP Idle is supported Need to update for
930                  * later releases */
931                 status = sleep_dsp(dev_context, PWR_DEEPSLEEP, pargs);
932                 break;
933         case BRDIOCTL_WAKEUP:
934                 status = wake_dsp(dev_context, pargs);
935                 break;
936         case BRDIOCTL_CLK_CTRL:
937                 status = 0;
938                 /* Looking For Baseport Fix for Clocks */
939                 status = dsp_peripheral_clk_ctrl(dev_context, pargs);
940                 break;
941         case BRDIOCTL_PWR_HIBERNATE:
942                 status = handle_hibernation_from_dsp(dev_context);
943                 break;
944         case BRDIOCTL_PRESCALE_NOTIFY:
945                 status = pre_scale_dsp(dev_context, pargs);
946                 break;
947         case BRDIOCTL_POSTSCALE_NOTIFY:
948                 status = post_scale_dsp(dev_context, pargs);
949                 break;
950         case BRDIOCTL_CONSTRAINT_REQUEST:
951                 status = handle_constraints_set(dev_context, pargs);
952                 break;
953         default:
954                 status = -EPERM;
955                 break;
956         }
957         return status;
958 }
959
960 /*
961  *  ======== bridge_dev_destroy ========
962  *      Destroys the driver object.
963  */
964 static int bridge_dev_destroy(struct bridge_dev_context *dev_ctxt)
965 {
966         struct pg_table_attrs *pt_attrs;
967         int status = 0;
968         struct bridge_dev_context *dev_context = (struct bridge_dev_context *)
969             dev_ctxt;
970         struct cfg_hostres *host_res;
971         u32 shm_size;
972         struct drv_data *drv_datap = dev_get_drvdata(bridge);
973
974         /* It should never happen */
975         if (!dev_ctxt)
976                 return -EFAULT;
977
978         /* first put the device to stop state */
979         bridge_brd_stop(dev_context);
980         if (dev_context->pt_attrs) {
981                 pt_attrs = dev_context->pt_attrs;
982                 kfree(pt_attrs->pg_info);
983
984                 if (pt_attrs->l2_tbl_alloc_va) {
985                         mem_free_phys_mem((void *)pt_attrs->l2_tbl_alloc_va,
986                                           pt_attrs->l2_tbl_alloc_pa,
987                                           pt_attrs->l2_tbl_alloc_sz);
988                 }
989                 if (pt_attrs->l1_tbl_alloc_va) {
990                         mem_free_phys_mem((void *)pt_attrs->l1_tbl_alloc_va,
991                                           pt_attrs->l1_tbl_alloc_pa,
992                                           pt_attrs->l1_tbl_alloc_sz);
993                 }
994                 kfree(pt_attrs);
995
996         }
997
998         if (dev_context->resources) {
999                 host_res = dev_context->resources;
1000                 shm_size = drv_datap->shm_size;
1001                 if (shm_size >= 0x10000) {
1002                         if ((host_res->mem_base[1]) &&
1003                             (host_res->mem_phys[1])) {
1004                                 mem_free_phys_mem((void *)
1005                                                   host_res->mem_base
1006                                                   [1],
1007                                                   host_res->mem_phys
1008                                                   [1], shm_size);
1009                         }
1010                 } else {
1011                         dev_dbg(bridge, "%s: Error getting shm size "
1012                                 "from registry: %x. Not calling "
1013                                 "mem_free_phys_mem\n", __func__,
1014                                 status);
1015                 }
1016                 host_res->mem_base[1] = 0;
1017                 host_res->mem_phys[1] = 0;
1018
1019                 if (host_res->mem_base[0])
1020                         iounmap((void *)host_res->mem_base[0]);
1021                 if (host_res->mem_base[2])
1022                         iounmap((void *)host_res->mem_base[2]);
1023                 if (host_res->mem_base[3])
1024                         iounmap((void *)host_res->mem_base[3]);
1025                 if (host_res->mem_base[4])
1026                         iounmap((void *)host_res->mem_base[4]);
1027                 if (host_res->dmmu_base)
1028                         iounmap(host_res->dmmu_base);
1029                 if (host_res->per_base)
1030                         iounmap(host_res->per_base);
1031                 if (host_res->per_pm_base)
1032                         iounmap((void *)host_res->per_pm_base);
1033                 if (host_res->core_pm_base)
1034                         iounmap((void *)host_res->core_pm_base);
1035
1036                 host_res->mem_base[0] = (u32) NULL;
1037                 host_res->mem_base[2] = (u32) NULL;
1038                 host_res->mem_base[3] = (u32) NULL;
1039                 host_res->mem_base[4] = (u32) NULL;
1040                 host_res->dmmu_base = NULL;
1041
1042                 kfree(host_res);
1043         }
1044
1045         /* Free the driver's device context: */
1046         kfree(drv_datap->base_img);
1047         kfree((void *)dev_ctxt);
1048         return status;
1049 }
1050
1051 static int bridge_brd_mem_copy(struct bridge_dev_context *dev_ctxt,
1052                                    u32 dsp_dest_addr, u32 dsp_src_addr,
1053                                    u32 ul_num_bytes, u32 mem_type)
1054 {
1055         int status = 0;
1056         u32 src_addr = dsp_src_addr;
1057         u32 dest_addr = dsp_dest_addr;
1058         u32 copy_bytes = 0;
1059         u32 total_bytes = ul_num_bytes;
1060         u8 host_buf[BUFFERSIZE];
1061         struct bridge_dev_context *dev_context = dev_ctxt;
1062
1063         while (total_bytes > 0 && !status) {
1064                 copy_bytes =
1065                     total_bytes > BUFFERSIZE ? BUFFERSIZE : total_bytes;
1066                 /* Read from External memory */
1067                 status = read_ext_dsp_data(dev_ctxt, host_buf, src_addr,
1068                                            copy_bytes, mem_type);
1069                 if (!status) {
1070                         if (dest_addr < (dev_context->dsp_start_add +
1071                                          dev_context->internal_size)) {
1072                                 /* Write to Internal memory */
1073                                 status = write_dsp_data(dev_ctxt, host_buf,
1074                                                         dest_addr, copy_bytes,
1075                                                         mem_type);
1076                         } else {
1077                                 /* Write to External memory */
1078                                 status =
1079                                     write_ext_dsp_data(dev_ctxt, host_buf,
1080                                                        dest_addr, copy_bytes,
1081                                                        mem_type, false);
1082                         }
1083                 }
1084                 total_bytes -= copy_bytes;
1085                 src_addr += copy_bytes;
1086                 dest_addr += copy_bytes;
1087         }
1088         return status;
1089 }
1090
1091 /* Mem Write does not halt the DSP to write unlike bridge_brd_write */
1092 static int bridge_brd_mem_write(struct bridge_dev_context *dev_ctxt,
1093                                     u8 *host_buff, u32 dsp_addr,
1094                                     u32 ul_num_bytes, u32 mem_type)
1095 {
1096         int status = 0;
1097         struct bridge_dev_context *dev_context = dev_ctxt;
1098         u32 ul_remain_bytes = 0;
1099         u32 ul_bytes = 0;
1100
1101         ul_remain_bytes = ul_num_bytes;
1102         while (ul_remain_bytes > 0 && !status) {
1103                 ul_bytes =
1104                     ul_remain_bytes > BUFFERSIZE ? BUFFERSIZE : ul_remain_bytes;
1105                 if (dsp_addr < (dev_context->dsp_start_add +
1106                                  dev_context->internal_size)) {
1107                         status =
1108                             write_dsp_data(dev_ctxt, host_buff, dsp_addr,
1109                                            ul_bytes, mem_type);
1110                 } else {
1111                         status = write_ext_dsp_data(dev_ctxt, host_buff,
1112                                                     dsp_addr, ul_bytes,
1113                                                     mem_type, true);
1114                 }
1115                 ul_remain_bytes -= ul_bytes;
1116                 dsp_addr += ul_bytes;
1117                 host_buff = host_buff + ul_bytes;
1118         }
1119         return status;
1120 }
1121
1122 /*
1123  *  ======== bridge_brd_mem_map ========
1124  *      This function maps MPU buffer to the DSP address space. It performs
1125  *  linear to physical address translation if required. It translates each
1126  *  page since linear addresses can be physically non-contiguous
1127  *  All address & size arguments are assumed to be page aligned (in proc.c)
1128  *
1129  *  TODO: Disable MMU while updating the page tables (but that'll stall DSP)
1130  */
1131 static int bridge_brd_mem_map(struct bridge_dev_context *dev_ctxt,
1132                                   u32 ul_mpu_addr, u32 virt_addr,
1133                                   u32 ul_num_bytes, u32 ul_map_attr,
1134                                   struct page **mapped_pages)
1135 {
1136         u32 attrs;
1137         int status = 0;
1138         struct bridge_dev_context *dev_context = dev_ctxt;
1139         struct hw_mmu_map_attrs_t hw_attrs;
1140         struct vm_area_struct *vma;
1141         struct mm_struct *mm = current->mm;
1142         u32 write = 0;
1143         u32 num_usr_pgs = 0;
1144         struct page *mapped_page, *pg;
1145         s32 pg_num;
1146         u32 va = virt_addr;
1147         struct task_struct *curr_task = current;
1148         u32 pg_i = 0;
1149         u32 mpu_addr, pa;
1150
1151         dev_dbg(bridge,
1152                 "%s hDevCtxt %p, pa %x, va %x, size %x, ul_map_attr %x\n",
1153                 __func__, dev_ctxt, ul_mpu_addr, virt_addr, ul_num_bytes,
1154                 ul_map_attr);
1155         if (ul_num_bytes == 0)
1156                 return -EINVAL;
1157
1158         if (ul_map_attr & DSP_MAP_DIR_MASK) {
1159                 attrs = ul_map_attr;
1160         } else {
1161                 /* Assign default attributes */
1162                 attrs = ul_map_attr | (DSP_MAPVIRTUALADDR | DSP_MAPELEMSIZE16);
1163         }
1164         /* Take mapping properties */
1165         if (attrs & DSP_MAPBIGENDIAN)
1166                 hw_attrs.endianism = HW_BIG_ENDIAN;
1167         else
1168                 hw_attrs.endianism = HW_LITTLE_ENDIAN;
1169
1170         hw_attrs.mixed_size = (enum hw_mmu_mixed_size_t)
1171             ((attrs & DSP_MAPMIXEDELEMSIZE) >> 2);
1172         /* Ignore element_size if mixed_size is enabled */
1173         if (hw_attrs.mixed_size == 0) {
1174                 if (attrs & DSP_MAPELEMSIZE8) {
1175                         /* Size is 8 bit */
1176                         hw_attrs.element_size = HW_ELEM_SIZE8BIT;
1177                 } else if (attrs & DSP_MAPELEMSIZE16) {
1178                         /* Size is 16 bit */
1179                         hw_attrs.element_size = HW_ELEM_SIZE16BIT;
1180                 } else if (attrs & DSP_MAPELEMSIZE32) {
1181                         /* Size is 32 bit */
1182                         hw_attrs.element_size = HW_ELEM_SIZE32BIT;
1183                 } else if (attrs & DSP_MAPELEMSIZE64) {
1184                         /* Size is 64 bit */
1185                         hw_attrs.element_size = HW_ELEM_SIZE64BIT;
1186                 } else {
1187                         /*
1188                          * Mixedsize isn't enabled, so size can't be
1189                          * zero here
1190                          */
1191                         return -EINVAL;
1192                 }
1193         }
1194         if (attrs & DSP_MAPDONOTLOCK)
1195                 hw_attrs.donotlockmpupage = 1;
1196         else
1197                 hw_attrs.donotlockmpupage = 0;
1198
1199         if (attrs & DSP_MAPVMALLOCADDR) {
1200                 return mem_map_vmalloc(dev_ctxt, ul_mpu_addr, virt_addr,
1201                                        ul_num_bytes, &hw_attrs);
1202         }
1203         /*
1204          * Do OS-specific user-va to pa translation.
1205          * Combine physically contiguous regions to reduce TLBs.
1206          * Pass the translated pa to pte_update.
1207          */
1208         if ((attrs & DSP_MAPPHYSICALADDR)) {
1209                 status = pte_update(dev_context, ul_mpu_addr, virt_addr,
1210                                     ul_num_bytes, &hw_attrs);
1211                 goto func_cont;
1212         }
1213
1214         /*
1215          * Important Note: ul_mpu_addr is mapped from user application process
1216          * to current process - it must lie completely within the current
1217          * virtual memory address space in order to be of use to us here!
1218          */
1219         down_read(&mm->mmap_sem);
1220         vma = find_vma(mm, ul_mpu_addr);
1221         if (vma)
1222                 dev_dbg(bridge,
1223                         "VMAfor UserBuf: ul_mpu_addr=%x, ul_num_bytes=%x, "
1224                         "vm_start=%lx, vm_end=%lx, vm_flags=%lx\n", ul_mpu_addr,
1225                         ul_num_bytes, vma->vm_start, vma->vm_end,
1226                         vma->vm_flags);
1227
1228         /*
1229          * It is observed that under some circumstances, the user buffer is
1230          * spread across several VMAs. So loop through and check if the entire
1231          * user buffer is covered
1232          */
1233         while ((vma) && (ul_mpu_addr + ul_num_bytes > vma->vm_end)) {
1234                 /* jump to the next VMA region */
1235                 vma = find_vma(mm, vma->vm_end + 1);
1236                 dev_dbg(bridge,
1237                         "VMA for UserBuf ul_mpu_addr=%x ul_num_bytes=%x, "
1238                         "vm_start=%lx, vm_end=%lx, vm_flags=%lx\n", ul_mpu_addr,
1239                         ul_num_bytes, vma->vm_start, vma->vm_end,
1240                         vma->vm_flags);
1241         }
1242         if (!vma) {
1243                 pr_err("%s: Failed to get VMA region for 0x%x (%d)\n",
1244                        __func__, ul_mpu_addr, ul_num_bytes);
1245                 status = -EINVAL;
1246                 up_read(&mm->mmap_sem);
1247                 goto func_cont;
1248         }
1249
1250         if (vma->vm_flags & VM_IO) {
1251                 num_usr_pgs = ul_num_bytes / PG_SIZE4K;
1252                 mpu_addr = ul_mpu_addr;
1253
1254                 /* Get the physical addresses for user buffer */
1255                 for (pg_i = 0; pg_i < num_usr_pgs; pg_i++) {
1256                         pa = user_va2_pa(mm, mpu_addr);
1257                         if (!pa) {
1258                                 status = -EPERM;
1259                                 pr_err("DSPBRIDGE: VM_IO mapping physical"
1260                                        "address is invalid\n");
1261                                 break;
1262                         }
1263                         if (pfn_valid(__phys_to_pfn(pa))) {
1264                                 pg = PHYS_TO_PAGE(pa);
1265                                 get_page(pg);
1266                                 if (page_count(pg) < 1) {
1267                                         pr_err("Bad page in VM_IO buffer\n");
1268                                         bad_page_dump(pa, pg);
1269                                 }
1270                         }
1271                         status = pte_set(dev_context->pt_attrs, pa,
1272                                          va, HW_PAGE_SIZE4KB, &hw_attrs);
1273                         if (status)
1274                                 break;
1275
1276                         va += HW_PAGE_SIZE4KB;
1277                         mpu_addr += HW_PAGE_SIZE4KB;
1278                         pa += HW_PAGE_SIZE4KB;
1279                 }
1280         } else {
1281                 num_usr_pgs = ul_num_bytes / PG_SIZE4K;
1282                 if (vma->vm_flags & (VM_WRITE | VM_MAYWRITE))
1283                         write = 1;
1284
1285                 for (pg_i = 0; pg_i < num_usr_pgs; pg_i++) {
1286                         pg_num = get_user_pages(curr_task, mm, ul_mpu_addr, 1,
1287                                                 write, 1, &mapped_page, NULL);
1288                         if (pg_num > 0) {
1289                                 if (page_count(mapped_page) < 1) {
1290                                         pr_err("Bad page count after doing"
1291                                                "get_user_pages on"
1292                                                "user buffer\n");
1293                                         bad_page_dump(page_to_phys(mapped_page),
1294                                                       mapped_page);
1295                                 }
1296                                 status = pte_set(dev_context->pt_attrs,
1297                                                  page_to_phys(mapped_page), va,
1298                                                  HW_PAGE_SIZE4KB, &hw_attrs);
1299                                 if (status)
1300                                         break;
1301
1302                                 if (mapped_pages)
1303                                         mapped_pages[pg_i] = mapped_page;
1304
1305                                 va += HW_PAGE_SIZE4KB;
1306                                 ul_mpu_addr += HW_PAGE_SIZE4KB;
1307                         } else {
1308                                 pr_err("DSPBRIDGE: get_user_pages FAILED,"
1309                                        "MPU addr = 0x%x,"
1310                                        "vma->vm_flags = 0x%lx,"
1311                                        "get_user_pages Err"
1312                                        "Value = %d, Buffer"
1313                                        "size=0x%x\n", ul_mpu_addr,
1314                                        vma->vm_flags, pg_num, ul_num_bytes);
1315                                 status = -EPERM;
1316                                 break;
1317                         }
1318                 }
1319         }
1320         up_read(&mm->mmap_sem);
1321 func_cont:
1322         if (status) {
1323                 /*
1324                  * Roll out the mapped pages incase it failed in middle of
1325                  * mapping
1326                  */
1327                 if (pg_i) {
1328                         bridge_brd_mem_un_map(dev_context, virt_addr,
1329                                            (pg_i * PG_SIZE4K));
1330                 }
1331                 status = -EPERM;
1332         }
1333         /*
1334          * In any case, flush the TLB
1335          * This is called from here instead from pte_update to avoid unnecessary
1336          * repetition while mapping non-contiguous physical regions of a virtual
1337          * region
1338          */
1339         flush_all(dev_context);
1340         dev_dbg(bridge, "%s status %x\n", __func__, status);
1341         return status;
1342 }
1343
1344 /*
1345  *  ======== bridge_brd_mem_un_map ========
1346  *      Invalidate the PTEs for the DSP VA block to be unmapped.
1347  *
1348  *      PTEs of a mapped memory block are contiguous in any page table
1349  *      So, instead of looking up the PTE address for every 4K block,
1350  *      we clear consecutive PTEs until we unmap all the bytes
1351  */
1352 static int bridge_brd_mem_un_map(struct bridge_dev_context *dev_ctxt,
1353                                      u32 virt_addr, u32 ul_num_bytes)
1354 {
1355         u32 l1_base_va;
1356         u32 l2_base_va;
1357         u32 l2_base_pa;
1358         u32 l2_page_num;
1359         u32 pte_val;
1360         u32 pte_size;
1361         u32 pte_count;
1362         u32 pte_addr_l1;
1363         u32 pte_addr_l2 = 0;
1364         u32 rem_bytes;
1365         u32 rem_bytes_l2;
1366         u32 va_curr;
1367         struct page *pg = NULL;
1368         int status = 0;
1369         struct bridge_dev_context *dev_context = dev_ctxt;
1370         struct pg_table_attrs *pt = dev_context->pt_attrs;
1371         u32 temp;
1372         u32 paddr;
1373         u32 numof4k_pages = 0;
1374
1375         va_curr = virt_addr;
1376         rem_bytes = ul_num_bytes;
1377         rem_bytes_l2 = 0;
1378         l1_base_va = pt->l1_base_va;
1379         pte_addr_l1 = hw_mmu_pte_addr_l1(l1_base_va, va_curr);
1380         dev_dbg(bridge, "%s dev_ctxt %p, va %x, NumBytes %x l1_base_va %x, "
1381                 "pte_addr_l1 %x\n", __func__, dev_ctxt, virt_addr,
1382                 ul_num_bytes, l1_base_va, pte_addr_l1);
1383
1384         while (rem_bytes && !status) {
1385                 u32 va_curr_orig = va_curr;
1386                 /* Find whether the L1 PTE points to a valid L2 PT */
1387                 pte_addr_l1 = hw_mmu_pte_addr_l1(l1_base_va, va_curr);
1388                 pte_val = *(u32 *) pte_addr_l1;
1389                 pte_size = hw_mmu_pte_size_l1(pte_val);
1390
1391                 if (pte_size != HW_MMU_COARSE_PAGE_SIZE)
1392                         goto skip_coarse_page;
1393
1394                 /*
1395                  * Get the L2 PA from the L1 PTE, and find
1396                  * corresponding L2 VA
1397                  */
1398                 l2_base_pa = hw_mmu_pte_coarse_l1(pte_val);
1399                 l2_base_va = l2_base_pa - pt->l2_base_pa + pt->l2_base_va;
1400                 l2_page_num =
1401                     (l2_base_pa - pt->l2_base_pa) / HW_MMU_COARSE_PAGE_SIZE;
1402                 /*
1403                  * Find the L2 PTE address from which we will start
1404                  * clearing, the number of PTEs to be cleared on this
1405                  * page, and the size of VA space that needs to be
1406                  * cleared on this L2 page
1407                  */
1408                 pte_addr_l2 = hw_mmu_pte_addr_l2(l2_base_va, va_curr);
1409                 pte_count = pte_addr_l2 & (HW_MMU_COARSE_PAGE_SIZE - 1);
1410                 pte_count = (HW_MMU_COARSE_PAGE_SIZE - pte_count) / sizeof(u32);
1411                 if (rem_bytes < (pte_count * PG_SIZE4K))
1412                         pte_count = rem_bytes / PG_SIZE4K;
1413                 rem_bytes_l2 = pte_count * PG_SIZE4K;
1414
1415                 /*
1416                  * Unmap the VA space on this L2 PT. A quicker way
1417                  * would be to clear pte_count entries starting from
1418                  * pte_addr_l2. However, below code checks that we don't
1419                  * clear invalid entries or less than 64KB for a 64KB
1420                  * entry. Similar checking is done for L1 PTEs too
1421                  * below
1422                  */
1423                 while (rem_bytes_l2 && !status) {
1424                         pte_val = *(u32 *) pte_addr_l2;
1425                         pte_size = hw_mmu_pte_size_l2(pte_val);
1426                         /* va_curr aligned to pte_size? */
1427                         if (pte_size == 0 || rem_bytes_l2 < pte_size ||
1428                             va_curr & (pte_size - 1)) {
1429                                 status = -EPERM;
1430                                 break;
1431                         }
1432
1433                         /* Collect Physical addresses from VA */
1434                         paddr = (pte_val & ~(pte_size - 1));
1435                         if (pte_size == HW_PAGE_SIZE64KB)
1436                                 numof4k_pages = 16;
1437                         else
1438                                 numof4k_pages = 1;
1439                         temp = 0;
1440                         while (temp++ < numof4k_pages) {
1441                                 if (!pfn_valid(__phys_to_pfn(paddr))) {
1442                                         paddr += HW_PAGE_SIZE4KB;
1443                                         continue;
1444                                 }
1445                                 pg = PHYS_TO_PAGE(paddr);
1446                                 if (page_count(pg) < 1) {
1447                                         pr_info("DSPBRIDGE: UNMAP function: "
1448                                                 "COUNT 0 FOR PA 0x%x, size = "
1449                                                 "0x%x\n", paddr, ul_num_bytes);
1450                                         bad_page_dump(paddr, pg);
1451                                 } else {
1452                                         set_page_dirty(pg);
1453                                         page_cache_release(pg);
1454                                 }
1455                                 paddr += HW_PAGE_SIZE4KB;
1456                         }
1457                         if (hw_mmu_pte_clear(pte_addr_l2, va_curr, pte_size)) {
1458                                 status = -EPERM;
1459                                 goto EXIT_LOOP;
1460                         }
1461
1462                         status = 0;
1463                         rem_bytes_l2 -= pte_size;
1464                         va_curr += pte_size;
1465                         pte_addr_l2 += (pte_size >> 12) * sizeof(u32);
1466                 }
1467                 spin_lock(&pt->pg_lock);
1468                 if (rem_bytes_l2 == 0) {
1469                         pt->pg_info[l2_page_num].num_entries -= pte_count;
1470                         if (pt->pg_info[l2_page_num].num_entries == 0) {
1471                                 /*
1472                                  * Clear the L1 PTE pointing to the L2 PT
1473                                  */
1474                                 if (!hw_mmu_pte_clear(l1_base_va, va_curr_orig,
1475                                                      HW_MMU_COARSE_PAGE_SIZE))
1476                                         status = 0;
1477                                 else {
1478                                         status = -EPERM;
1479                                         spin_unlock(&pt->pg_lock);
1480                                         goto EXIT_LOOP;
1481                                 }
1482                         }
1483                         rem_bytes -= pte_count * PG_SIZE4K;
1484                 } else
1485                         status = -EPERM;
1486
1487                 spin_unlock(&pt->pg_lock);
1488                 continue;
1489 skip_coarse_page:
1490                 /* va_curr aligned to pte_size? */
1491                 /* pte_size = 1 MB or 16 MB */
1492                 if (pte_size == 0 || rem_bytes < pte_size ||
1493                     va_curr & (pte_size - 1)) {
1494                         status = -EPERM;
1495                         break;
1496                 }
1497
1498                 if (pte_size == HW_PAGE_SIZE1MB)
1499                         numof4k_pages = 256;
1500                 else
1501                         numof4k_pages = 4096;
1502                 temp = 0;
1503                 /* Collect Physical addresses from VA */
1504                 paddr = (pte_val & ~(pte_size - 1));
1505                 while (temp++ < numof4k_pages) {
1506                         if (pfn_valid(__phys_to_pfn(paddr))) {
1507                                 pg = PHYS_TO_PAGE(paddr);
1508                                 if (page_count(pg) < 1) {
1509                                         pr_info("DSPBRIDGE: UNMAP function: "
1510                                                 "COUNT 0 FOR PA 0x%x, size = "
1511                                                 "0x%x\n", paddr, ul_num_bytes);
1512                                         bad_page_dump(paddr, pg);
1513                                 } else {
1514                                         set_page_dirty(pg);
1515                                         page_cache_release(pg);
1516                                 }
1517                         }
1518                         paddr += HW_PAGE_SIZE4KB;
1519                 }
1520                 if (!hw_mmu_pte_clear(l1_base_va, va_curr, pte_size)) {
1521                         status = 0;
1522                         rem_bytes -= pte_size;
1523                         va_curr += pte_size;
1524                 } else {
1525                         status = -EPERM;
1526                         goto EXIT_LOOP;
1527                 }
1528         }
1529         /*
1530          * It is better to flush the TLB here, so that any stale old entries
1531          * get flushed
1532          */
1533 EXIT_LOOP:
1534         flush_all(dev_context);
1535         dev_dbg(bridge,
1536                 "%s: va_curr %x, pte_addr_l1 %x pte_addr_l2 %x rem_bytes %x,"
1537                 " rem_bytes_l2 %x status %x\n", __func__, va_curr, pte_addr_l1,
1538                 pte_addr_l2, rem_bytes, rem_bytes_l2, status);
1539         return status;
1540 }
1541
1542 /*
1543  *  ======== user_va2_pa ========
1544  *  Purpose:
1545  *      This function walks through the page tables to convert a userland
1546  *      virtual address to physical address
1547  */
1548 static u32 user_va2_pa(struct mm_struct *mm, u32 address)
1549 {
1550         pgd_t *pgd;
1551         pud_t *pud;
1552         pmd_t *pmd;
1553         pte_t *ptep, pte;
1554
1555         pgd = pgd_offset(mm, address);
1556         if (pgd_none(*pgd) || pgd_bad(*pgd))
1557                 return 0;
1558
1559         pud = pud_offset(pgd, address);
1560         if (pud_none(*pud) || pud_bad(*pud))
1561                 return 0;
1562
1563         pmd = pmd_offset(pud, address);
1564         if (pmd_none(*pmd) || pmd_bad(*pmd))
1565                 return 0;
1566
1567         ptep = pte_offset_map(pmd, address);
1568         if (ptep) {
1569                 pte = *ptep;
1570                 if (pte_present(pte))
1571                         return pte & PAGE_MASK;
1572         }
1573
1574         return 0;
1575 }
1576
1577 /*
1578  *  ======== pte_update ========
1579  *      This function calculates the optimum page-aligned addresses and sizes
1580  *      Caller must pass page-aligned values
1581  */
1582 static int pte_update(struct bridge_dev_context *dev_ctxt, u32 pa,
1583                              u32 va, u32 size,
1584                              struct hw_mmu_map_attrs_t *map_attrs)
1585 {
1586         u32 i;
1587         u32 all_bits;
1588         u32 pa_curr = pa;
1589         u32 va_curr = va;
1590         u32 num_bytes = size;
1591         struct bridge_dev_context *dev_context = dev_ctxt;
1592         int status = 0;
1593         u32 page_size[] = { HW_PAGE_SIZE16MB, HW_PAGE_SIZE1MB,
1594                 HW_PAGE_SIZE64KB, HW_PAGE_SIZE4KB
1595         };
1596
1597         while (num_bytes && !status) {
1598                 /* To find the max. page size with which both PA & VA are
1599                  * aligned */
1600                 all_bits = pa_curr | va_curr;
1601
1602                 for (i = 0; i < 4; i++) {
1603                         if ((num_bytes >= page_size[i]) && ((all_bits &
1604                                                              (page_size[i] -
1605                                                               1)) == 0)) {
1606                                 status =
1607                                     pte_set(dev_context->pt_attrs, pa_curr,
1608                                             va_curr, page_size[i], map_attrs);
1609                                 pa_curr += page_size[i];
1610                                 va_curr += page_size[i];
1611                                 num_bytes -= page_size[i];
1612                                 /* Don't try smaller sizes. Hopefully we have
1613                                  * reached an address aligned to a bigger page
1614                                  * size */
1615                                 break;
1616                         }
1617                 }
1618         }
1619
1620         return status;
1621 }
1622
1623 /*
1624  *  ======== pte_set ========
1625  *      This function calculates PTE address (MPU virtual) to be updated
1626  *      It also manages the L2 page tables
1627  */
1628 static int pte_set(struct pg_table_attrs *pt, u32 pa, u32 va,
1629                           u32 size, struct hw_mmu_map_attrs_t *attrs)
1630 {
1631         u32 i;
1632         u32 pte_val;
1633         u32 pte_addr_l1;
1634         u32 pte_size;
1635         /* Base address of the PT that will be updated */
1636         u32 pg_tbl_va;
1637         u32 l1_base_va;
1638         /* Compiler warns that the next three variables might be used
1639          * uninitialized in this function. Doesn't seem so. Working around,
1640          * anyways. */
1641         u32 l2_base_va = 0;
1642         u32 l2_base_pa = 0;
1643         u32 l2_page_num = 0;
1644         int status = 0;
1645
1646         l1_base_va = pt->l1_base_va;
1647         pg_tbl_va = l1_base_va;
1648         if ((size == HW_PAGE_SIZE64KB) || (size == HW_PAGE_SIZE4KB)) {
1649                 /* Find whether the L1 PTE points to a valid L2 PT */
1650                 pte_addr_l1 = hw_mmu_pte_addr_l1(l1_base_va, va);
1651                 if (pte_addr_l1 <= (pt->l1_base_va + pt->l1_size)) {
1652                         pte_val = *(u32 *) pte_addr_l1;
1653                         pte_size = hw_mmu_pte_size_l1(pte_val);
1654                 } else {
1655                         return -EPERM;
1656                 }
1657                 spin_lock(&pt->pg_lock);
1658                 if (pte_size == HW_MMU_COARSE_PAGE_SIZE) {
1659                         /* Get the L2 PA from the L1 PTE, and find
1660                          * corresponding L2 VA */
1661                         l2_base_pa = hw_mmu_pte_coarse_l1(pte_val);
1662                         l2_base_va =
1663                             l2_base_pa - pt->l2_base_pa + pt->l2_base_va;
1664                         l2_page_num =
1665                             (l2_base_pa -
1666                              pt->l2_base_pa) / HW_MMU_COARSE_PAGE_SIZE;
1667                 } else if (pte_size == 0) {
1668                         /* L1 PTE is invalid. Allocate a L2 PT and
1669                          * point the L1 PTE to it */
1670                         /* Find a free L2 PT. */
1671                         for (i = 0; (i < pt->l2_num_pages) &&
1672                              (pt->pg_info[i].num_entries != 0); i++)
1673                                 ;
1674                         if (i < pt->l2_num_pages) {
1675                                 l2_page_num = i;
1676                                 l2_base_pa = pt->l2_base_pa + (l2_page_num *
1677                                                 HW_MMU_COARSE_PAGE_SIZE);
1678                                 l2_base_va = pt->l2_base_va + (l2_page_num *
1679                                                 HW_MMU_COARSE_PAGE_SIZE);
1680                                 /* Endianness attributes are ignored for
1681                                  * HW_MMU_COARSE_PAGE_SIZE */
1682                                 status =
1683                                     hw_mmu_pte_set(l1_base_va, l2_base_pa, va,
1684                                                    HW_MMU_COARSE_PAGE_SIZE,
1685                                                    attrs);
1686                         } else {
1687                                 status = -ENOMEM;
1688                         }
1689                 } else {
1690                         /* Found valid L1 PTE of another size.
1691                          * Should not overwrite it. */
1692                         status = -EPERM;
1693                 }
1694                 if (!status) {
1695                         pg_tbl_va = l2_base_va;
1696                         if (size == HW_PAGE_SIZE64KB)
1697                                 pt->pg_info[l2_page_num].num_entries += 16;
1698                         else
1699                                 pt->pg_info[l2_page_num].num_entries++;
1700                         dev_dbg(bridge, "PTE: L2 BaseVa %x, BasePa %x, PageNum "
1701                                 "%x, num_entries %x\n", l2_base_va,
1702                                 l2_base_pa, l2_page_num,
1703                                 pt->pg_info[l2_page_num].num_entries);
1704                 }
1705                 spin_unlock(&pt->pg_lock);
1706         }
1707         if (!status) {
1708                 dev_dbg(bridge, "PTE: pg_tbl_va %x, pa %x, va %x, size %x\n",
1709                         pg_tbl_va, pa, va, size);
1710                 dev_dbg(bridge, "PTE: endianism %x, element_size %x, "
1711                         "mixed_size %x\n", attrs->endianism,
1712                         attrs->element_size, attrs->mixed_size);
1713                 status = hw_mmu_pte_set(pg_tbl_va, pa, va, size, attrs);
1714         }
1715
1716         return status;
1717 }
1718
1719 /* Memory map kernel VA -- memory allocated with vmalloc */
1720 static int mem_map_vmalloc(struct bridge_dev_context *dev_context,
1721                                   u32 ul_mpu_addr, u32 virt_addr,
1722                                   u32 ul_num_bytes,
1723                                   struct hw_mmu_map_attrs_t *hw_attrs)
1724 {
1725         int status = 0;
1726         struct page *page[1];
1727         u32 i;
1728         u32 pa_curr;
1729         u32 pa_next;
1730         u32 va_curr;
1731         u32 size_curr;
1732         u32 num_pages;
1733         u32 pa;
1734         u32 num_of4k_pages;
1735         u32 temp = 0;
1736
1737         /*
1738          * Do Kernel va to pa translation.
1739          * Combine physically contiguous regions to reduce TLBs.
1740          * Pass the translated pa to pte_update.
1741          */
1742         num_pages = ul_num_bytes / PAGE_SIZE;   /* PAGE_SIZE = OS page size */
1743         i = 0;
1744         va_curr = ul_mpu_addr;
1745         page[0] = vmalloc_to_page((void *)va_curr);
1746         pa_next = page_to_phys(page[0]);
1747         while (!status && (i < num_pages)) {
1748                 /*
1749                  * Reuse pa_next from the previous iteration to avoid
1750                  * an extra va2pa call
1751                  */
1752                 pa_curr = pa_next;
1753                 size_curr = PAGE_SIZE;
1754                 /*
1755                  * If the next page is physically contiguous,
1756                  * map it with the current one by increasing
1757                  * the size of the region to be mapped
1758                  */
1759                 while (++i < num_pages) {
1760                         page[0] =
1761                             vmalloc_to_page((void *)(va_curr + size_curr));
1762                         pa_next = page_to_phys(page[0]);
1763
1764                         if (pa_next == (pa_curr + size_curr))
1765                                 size_curr += PAGE_SIZE;
1766                         else
1767                                 break;
1768
1769                 }
1770                 if (pa_next == 0) {
1771                         status = -ENOMEM;
1772                         break;
1773                 }
1774                 pa = pa_curr;
1775                 num_of4k_pages = size_curr / HW_PAGE_SIZE4KB;
1776                 while (temp++ < num_of4k_pages) {
1777                         get_page(PHYS_TO_PAGE(pa));
1778                         pa += HW_PAGE_SIZE4KB;
1779                 }
1780                 status = pte_update(dev_context, pa_curr, virt_addr +
1781                                     (va_curr - ul_mpu_addr), size_curr,
1782                                     hw_attrs);
1783                 va_curr += size_curr;
1784         }
1785         /*
1786          * In any case, flush the TLB
1787          * This is called from here instead from pte_update to avoid unnecessary
1788          * repetition while mapping non-contiguous physical regions of a virtual
1789          * region
1790          */
1791         flush_all(dev_context);
1792         dev_dbg(bridge, "%s status %x\n", __func__, status);
1793         return status;
1794 }
1795
1796 /*
1797  *  ======== wait_for_start ========
1798  *      Wait for the singal from DSP that it has started, or time out.
1799  */
1800 bool wait_for_start(struct bridge_dev_context *dev_context,
1801                         void __iomem *sync_addr)
1802 {
1803         u16 timeout = TIHELEN_ACKTIMEOUT;
1804
1805         /*  Wait for response from board */
1806         while (__raw_readw(sync_addr) && --timeout)
1807                 udelay(10);
1808
1809         /*  If timed out: return false */
1810         if (!timeout) {
1811                 pr_err("%s: Timed out waiting DSP to Start\n", __func__);
1812                 return false;
1813         }
1814         return true;
1815 }