]> pilppa.org Git - linux-2.6-omap-h63xx.git/blob - arch/arm/plat-omap/dsp/dsp_common.c
ARM: OMAP: Fix omap1 McBSP without CONFIG_OMAP_DSP
[linux-2.6-omap-h63xx.git] / arch / arm / plat-omap / dsp / dsp_common.c
1 /*
2  * This file is part of OMAP DSP driver (DSP Gateway version 3.3.1)
3  *
4  * Copyright (C) 2002-2006 Nokia Corporation. All rights reserved.
5  *
6  * Contact: Toshihiro Kobayashi <toshihiro.kobayashi@nokia.com>
7  *
8  * This program is free software; you can redistribute it and/or
9  * modify it under the terms of the GNU General Public License
10  * version 2 as published by the Free Software Foundation.
11  *
12  * This program is distributed in the hope that it will be useful, but
13  * WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15  * General Public License for more details.
16  *
17  * You should have received a copy of the GNU General Public License
18  * along with this program; if not, write to the Free Software
19  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
20  * 02110-1301 USA
21  *
22  */
23
24 #include <linux/module.h>
25 #include <linux/init.h>
26 #include <linux/sched.h>
27 #include <linux/delay.h>
28 #include <linux/mm.h>
29 #include <linux/clk.h>
30 #include <linux/mutex.h>
31 #include <linux/interrupt.h>
32 #include <asm/io.h>
33 #include <asm/tlbflush.h>
34 #include <asm/irq.h>
35 #ifdef CONFIG_ARCH_OMAP1
36 #include <asm/arch/tc.h>
37 #endif
38 #include "dsp_common.h"
39
40 #if defined(CONFIG_ARCH_OMAP1)
41 #define dsp_boot_config(mode)   omap_writew((mode), MPUI_DSP_BOOT_CONFIG)
42 #elif defined(CONFIG_ARCH_OMAP2)
43 #define dsp_boot_config(mode)   writel((mode), DSP_IPI_DSPBOOTCONFIG)
44 #endif
45
46 struct omap_dsp *omap_dsp;
47
48 #if defined(CONFIG_ARCH_OMAP1)
49 struct clk *dsp_ck_handle;
50 struct clk *api_ck_handle;
51 #elif defined(CONFIG_ARCH_OMAP2)
52 struct clk *dsp_fck_handle;
53 struct clk *dsp_ick_handle;
54 #endif
55 dsp_long_t dspmem_base, dspmem_size,
56            daram_base, daram_size,
57            saram_base, saram_size;
58
59 struct cpustat {
60         struct mutex lock;
61         enum cpustat_e stat;
62         enum cpustat_e req;
63         u16 icrmask;
64 #ifdef CONFIG_ARCH_OMAP1
65         struct {
66                 int mpui;
67                 int mem;
68                 int mem_delayed;
69         } usecount;
70         int (*mem_req_cb)(void);
71         void (*mem_rel_cb)(void);
72 #endif
73 } cpustat = {
74         .stat = CPUSTAT_RESET,
75         .icrmask = 0xffff,
76 };
77
78 int dsp_set_rstvect(dsp_long_t adr)
79 {
80         unsigned long *dst_adr;
81
82         if (adr >= DSPSPACE_SIZE)
83                 return -EINVAL;
84
85         dst_adr = dspbyte_to_virt(DSP_BOOT_ADR_DIRECT);
86         /* word swap */
87         *dst_adr = ((adr & 0xffff) << 16) | (adr >> 16);
88         /* fill 8 bytes! */
89         *(dst_adr + 1) = 0;
90         /* direct boot */
91         dsp_boot_config(DSP_BOOT_CONFIG_DIRECT);
92
93         return 0;
94 }
95
96 dsp_long_t dsp_get_rstvect(void)
97 {
98         unsigned long *dst_adr;
99
100         dst_adr = dspbyte_to_virt(DSP_BOOT_ADR_DIRECT);
101         return ((*dst_adr & 0xffff) << 16) | (*dst_adr >> 16);
102 }
103
104 #ifdef CONFIG_ARCH_OMAP1
105 static void simple_load_code(unsigned char *src_c, u16 *dst, int len)
106 {
107         int i;
108         u16 *src = (u16 *)src_c;
109         int len_w;
110
111         /* len must be multiple of 2. */
112         if (len & 1)
113                 BUG();
114
115         len_w = len / 2;
116         for (i = 0; i < len_w; i++) {
117                 /* byte swap copy */
118                 *dst = ((*src & 0x00ff) << 8) |
119                        ((*src & 0xff00) >> 8);
120                 src++;
121                 dst++;
122         }
123 }
124
125 /* program size must be multiple of 2 */
126 #define GBL_IDLE_TEXT_SIZE      52
127 #define GBL_IDLE_TEXT_INIT { \
128         /* SAM */ \
129         0x3c, 0x4a,                     /* 0x3c4a:     MOV 0x4, AR2 */ \
130         0xf4, 0x41, 0xfc, 0xff,         /* 0xf441fcff: AND 0xfcff, *AR2 */ \
131         /* disable WDT */ \
132         0x76, 0x34, 0x04, 0xb8,         /* 0x763404b8: MOV 0x3404, AR3 */ \
133         0xfb, 0x61, 0x00, 0xf5,         /* 0xfb6100f5: MOV 0x00f5, *AR3 */ \
134         0x9a,                           /* 0x9a:       PORT */ \
135         0xfb, 0x61, 0x00, 0xa0,         /* 0xfb6100a0: MOV 0x00a0, *AR3 */ \
136         0x9a,                           /* 0x9a:       PORT */ \
137         /* *IER0 = 0, *IER1 = 0 */ \
138         0x3c, 0x0b,                     /* 0x3c0b:     MOV 0x0, AR3 */ \
139         0xe6, 0x61, 0x00,               /* 0xe66100:   MOV 0, *AR3 */ \
140         0x76, 0x00, 0x45, 0xb8,         /* 0x76004508: MOV 0x45, AR3 */ \
141         0xe6, 0x61, 0x00,               /* 0xe66100:   MOV 0, *AR3 */ \
142         /* *ICR = 0xffff */ \
143         0x3c, 0x1b,                     /* 0x3c1b:     MOV 0x1, AR3 */ \
144         0xfb, 0x61, 0xff, 0xff,         /* 0xfb61ffff: MOV 0xffff, *AR3 */ \
145         0x9a,                           /* 0x9a:       PORT */ \
146         /* HOM */ \
147         0xf5, 0x41, 0x03, 0x00,         /* 0xf5410300: OR 0x0300, *AR2 */ \
148         /* idle and loop forever */ \
149         0x7a, 0x00, 0x00, 0x0c,         /* 0x7a00000c: IDLE */ \
150         0x4a, 0x7a,                     /* 0x4a7a:     B -6 (infinite loop) */ \
151         0x20, 0x20, 0x20,               /* 0x20:       NOP */ \
152 }
153
154 /* program size must be multiple of 2 */
155 #define CPU_IDLE_TEXT_SIZE      48
156 #define CPU_IDLE_TEXT_INIT(icrh, icrl) { \
157         /* SAM */ \
158         0x3c, 0x4b,                     /* 0x3c4b:     MOV 0x4, AR3 */ \
159         0xf4, 0x61, 0xfc, 0xff,         /* 0xf461fcff: AND 0xfcff, *AR3 */ \
160         /* disable WDT */ \
161         0x76, 0x34, 0x04, 0xb8,         /* 0x763404b8: MOV 0x3404, AR3 */ \
162         0xfb, 0x61, 0x00, 0xf5,         /* 0xfb6100f5: MOV 0x00f5, *AR3 */ \
163         0x9a,                           /* 0x9a:       PORT */ \
164         0xfb, 0x61, 0x00, 0xa0,         /* 0xfb6100a0: MOV 0x00a0, *AR3 */ \
165         0x9a,                           /* 0x9a:       PORT */ \
166         /* *IER0 = 0, *IER1 = 0 */ \
167         0x3c, 0x0b,                     /* 0x3c0b:     MOV 0x0, AR3 */ \
168         0xe6, 0x61, 0x00,               /* 0xe66100:   MOV 0, *AR3 */ \
169         0x76, 0x00, 0x45, 0xb8,         /* 0x76004508: MOV 0x45, AR3 */ \
170         0xe6, 0x61, 0x00,               /* 0xe66100:   MOV 0, *AR3 */ \
171         /* set ICR = icr */ \
172         0x3c, 0x1b,                     /* 0x3c1b:     MOV AR3 0x1 */ \
173         0xfb, 0x61, (icrh), (icrl),     /* 0xfb61****: MOV *AR3, icr */ \
174         0x9a,                           /* 0x9a:       PORT */ \
175         /* idle and loop forever */ \
176         0x7a, 0x00, 0x00, 0x0c,         /* 0x7a00000c: IDLE */ \
177         0x4a, 0x7a,                     /* 0x4a7a:     B -6 (infinite loop) */ \
178         0x20, 0x20, 0x20                /* 0x20: nop */ \
179 }
180
181 /*
182  * idle_boot base:
183  * Initialized with DSP_BOOT_ADR_MPUI (=0x010000).
184  * This value is used before DSP Gateway driver is initialized.
185  * DSP Gateway driver will overwrite this value with other value,
186  * to avoid confliction with the user program.
187  */
188 static dsp_long_t idle_boot_base = DSP_BOOT_ADR_MPUI;
189
190 static void dsp_gbl_idle(void)
191 {
192         unsigned char idle_text[GBL_IDLE_TEXT_SIZE] = GBL_IDLE_TEXT_INIT;
193
194         __dsp_reset();
195         clk_enable(api_ck_handle);
196
197 #if 0
198         dsp_boot_config(DSP_BOOT_CONFIG_IDLE);
199 #endif
200         simple_load_code(idle_text, dspbyte_to_virt(idle_boot_base),
201                          GBL_IDLE_TEXT_SIZE);
202         if (idle_boot_base == DSP_BOOT_ADR_MPUI)
203                 dsp_boot_config(DSP_BOOT_CONFIG_MPUI);
204         else
205                 dsp_set_rstvect(idle_boot_base);
206
207         __dsp_run();
208         udelay(100);    /* to make things stable */
209         clk_disable(api_ck_handle);
210 }
211
212 static void dsp_cpu_idle(void)
213 {
214         u16 icr_tmp;
215         unsigned char icrh, icrl;
216
217         __dsp_reset();
218         clk_enable(api_ck_handle);
219
220         /*
221          * icr settings:
222          * DMA should not sleep for DARAM/SARAM access
223          * DPLL should not sleep while any other domain is active
224          */
225         icr_tmp = cpustat.icrmask & ~(DSPREG_ICR_DMA | DSPREG_ICR_DPLL);
226         icrh = icr_tmp >> 8;
227         icrl = icr_tmp & 0xff;
228         {
229                 unsigned char idle_text[CPU_IDLE_TEXT_SIZE] = CPU_IDLE_TEXT_INIT(icrh, icrl);
230                 simple_load_code(idle_text, dspbyte_to_virt(idle_boot_base),
231                                  CPU_IDLE_TEXT_SIZE);
232         }
233         if (idle_boot_base == DSP_BOOT_ADR_MPUI)
234                 dsp_boot_config(DSP_BOOT_CONFIG_MPUI);
235         else
236                 dsp_set_rstvect(idle_boot_base);
237         __dsp_run();
238         udelay(100);    /* to make things stable */
239         clk_disable(api_ck_handle);
240 }
241
242 void dsp_set_idle_boot_base(dsp_long_t adr, size_t size)
243 {
244         if (adr == idle_boot_base)
245                 return;
246         idle_boot_base = adr;
247         if ((size < GBL_IDLE_TEXT_SIZE) ||
248             (size < CPU_IDLE_TEXT_SIZE)) {
249                 printk(KERN_ERR
250                        "omapdsp: size for idle program is not enough!\n");
251                 BUG();
252         }
253
254         /* restart idle program with new base address */
255         if (cpustat.stat == CPUSTAT_GBL_IDLE)
256                 dsp_gbl_idle();
257         if (cpustat.stat == CPUSTAT_CPU_IDLE)
258                 dsp_cpu_idle();
259 }
260
261 void dsp_reset_idle_boot_base(void)
262 {
263         idle_boot_base = DSP_BOOT_ADR_MPUI;
264 }
265
266 #endif /* CONFIG_ARCH_OMAP1 */
267
268 static int init_done;
269
270 static int __init omap_dsp_init(void)
271 {
272         mutex_init(&cpustat.lock);
273
274         dspmem_size = 0;
275 #ifdef CONFIG_ARCH_OMAP15XX
276         if (cpu_is_omap1510()) {
277                 dspmem_base = OMAP1510_DSP_BASE;
278                 dspmem_size = OMAP1510_DSP_SIZE;
279                 daram_base = OMAP1510_DARAM_BASE;
280                 daram_size = OMAP1510_DARAM_SIZE;
281                 saram_base = OMAP1510_SARAM_BASE;
282                 saram_size = OMAP1510_SARAM_SIZE;
283         }
284 #endif
285 #ifdef CONFIG_ARCH_OMAP16XX
286         if (cpu_is_omap16xx()) {
287                 dspmem_base = OMAP16XX_DSP_BASE;
288                 dspmem_size = OMAP16XX_DSP_SIZE;
289                 daram_base = OMAP16XX_DARAM_BASE;
290                 daram_size = OMAP16XX_DARAM_SIZE;
291                 saram_base = OMAP16XX_SARAM_BASE;
292                 saram_size = OMAP16XX_SARAM_SIZE;
293         }
294 #endif
295 #ifdef CONFIG_ARCH_OMAP24XX
296         if (cpu_is_omap24xx()) {
297                 dspmem_base = DSP_MEM_24XX_VIRT;
298                 dspmem_size = DSP_MEM_24XX_SIZE;
299                 daram_base = OMAP24XX_DARAM_BASE;
300                 daram_size = OMAP24XX_DARAM_SIZE;
301                 saram_base = OMAP24XX_SARAM_BASE;
302                 saram_size = OMAP24XX_SARAM_SIZE;
303         }
304 #endif
305         if (dspmem_size == 0) {
306                 printk(KERN_ERR "omapdsp: unsupported omap architecture.\n");
307                 return -ENODEV;
308         }
309
310 #if defined(CONFIG_ARCH_OMAP1)
311         dsp_ck_handle = clk_get(NULL, "dsp_ck");
312         if (IS_ERR(dsp_ck_handle)) {
313                 printk(KERN_ERR "omapdsp: could not acquire dsp_ck handle.\n");
314                 return PTR_ERR(dsp_ck_handle);
315         }
316
317         api_ck_handle = clk_get(NULL, "api_ck");
318         if (IS_ERR(api_ck_handle)) {
319                 printk(KERN_ERR "omapdsp: could not acquire api_ck handle.\n");
320                 return PTR_ERR(api_ck_handle);
321         }
322
323         /* This is needed for McBSP init, released in late_initcall */
324         clk_enable(api_ck_handle);
325
326         __dsp_enable();
327         mpui_byteswap_off();
328         mpui_wordswap_on();
329         tc_wordswap();
330 #elif defined(CONFIG_ARCH_OMAP2)
331         dsp_fck_handle = clk_get(NULL, "dsp_fck");
332         if (IS_ERR(dsp_fck_handle)) {
333                 printk(KERN_ERR "omapdsp: could not acquire dsp_fck handle.\n");
334                 return PTR_ERR(dsp_fck_handle);
335         }
336
337         dsp_ick_handle = clk_get(NULL, "dsp_ick");
338         if (IS_ERR(dsp_ick_handle)) {
339                 printk(KERN_ERR "omapdsp: could not acquire dsp_ick handle.\n");
340                 return PTR_ERR(dsp_ick_handle);
341         }
342 #endif
343
344         init_done = 1;
345         printk(KERN_INFO "omap_dsp_init() done\n");
346         return 0;
347 }
348
349 #if defined(CONFIG_ARCH_OMAP1)
350 static int __dsp_late_init(void)
351 {
352         clk_disable(api_ck_handle);
353         return 0;
354 }
355 late_initcall(__dsp_late_init);
356 #endif
357
358 static void dsp_cpustat_update(void)
359 {
360         if (!init_done)
361                 omap_dsp_init();
362
363         if (cpustat.req == CPUSTAT_RUN) {
364                 if (cpustat.stat < CPUSTAT_RUN) {
365 #if defined(CONFIG_ARCH_OMAP1)
366                         __dsp_reset();
367                         clk_enable(api_ck_handle);
368                         udelay(10);
369                         __dsp_run();
370 #elif defined(CONFIG_ARCH_OMAP2)
371                         __dsp_core_disable();
372                         udelay(10);
373                         __dsp_core_enable();
374 #endif
375                         cpustat.stat = CPUSTAT_RUN;
376                         if (omap_dsp != NULL)
377                                 enable_irq(omap_dsp->mmu_irq);
378                 }
379                 return;
380         }
381
382         /* cpustat.req < CPUSTAT_RUN */
383
384         if (cpustat.stat == CPUSTAT_RUN) {
385                 if (omap_dsp != NULL)
386                         disable_irq(omap_dsp->mmu_irq);
387 #ifdef CONFIG_ARCH_OMAP1
388                 clk_disable(api_ck_handle);
389 #endif
390         }
391
392 #ifdef CONFIG_ARCH_OMAP1
393         /*
394          * (1) when ARM wants DARAM access, MPUI should be SAM and
395          *     DSP needs to be on.
396          * (2) if any bits of icr is masked, we can not enter global idle.
397          */
398         if ((cpustat.req == CPUSTAT_CPU_IDLE) ||
399             (cpustat.usecount.mem > 0) ||
400             (cpustat.usecount.mem_delayed > 0) ||
401             ((cpustat.usecount.mpui > 0) && (cpustat.icrmask != 0xffff))) {
402                 if (cpustat.stat != CPUSTAT_CPU_IDLE) {
403                         dsp_cpu_idle();
404                         cpustat.stat = CPUSTAT_CPU_IDLE;
405                 }
406                 return;
407         }
408
409         /*
410          * when ARM only needs MPUI access, MPUI can be HOM and
411          * DSP can be idling.
412          */
413         if ((cpustat.req == CPUSTAT_GBL_IDLE) ||
414             (cpustat.usecount.mpui > 0)) {
415                 if (cpustat.stat != CPUSTAT_GBL_IDLE) {
416                         dsp_gbl_idle();
417                         cpustat.stat = CPUSTAT_GBL_IDLE;
418                 }
419                 return;
420         }
421 #endif /* CONFIG_ARCH_OMAP1 */
422
423         /*
424          * no user, no request
425          */
426         if (cpustat.stat != CPUSTAT_RESET) {
427 #if defined(CONFIG_ARCH_OMAP1)
428                 __dsp_reset();
429 #elif defined(CONFIG_ARCH_OMAP2)
430                 __dsp_core_disable();
431 #endif
432                 cpustat.stat = CPUSTAT_RESET;
433         }
434 }
435
436 void dsp_cpustat_request(enum cpustat_e req)
437 {
438         mutex_lock(&cpustat.lock);
439         cpustat.req = req;
440         dsp_cpustat_update();
441         mutex_unlock(&cpustat.lock);
442 }
443
444 enum cpustat_e dsp_cpustat_get_stat(void)
445 {
446         return cpustat.stat;
447 }
448
449 u16 dsp_cpustat_get_icrmask(void)
450 {
451         return cpustat.icrmask;
452 }
453
454 void dsp_cpustat_set_icrmask(u16 mask)
455 {
456         mutex_lock(&cpustat.lock);
457         cpustat.icrmask = mask;
458         dsp_cpustat_update();
459         mutex_unlock(&cpustat.lock);
460 }
461
462 #ifdef CONFIG_ARCH_OMAP1
463 void omap_dsp_request_mpui(void)
464 {
465         mutex_lock(&cpustat.lock);
466         if (cpustat.usecount.mpui++ == 0)
467                 dsp_cpustat_update();
468         mutex_unlock(&cpustat.lock);
469 }
470
471 void omap_dsp_release_mpui(void)
472 {
473         mutex_lock(&cpustat.lock);
474         if (cpustat.usecount.mpui-- == 0) {
475                 printk(KERN_ERR
476                        "omapdsp: unbalanced mpui request/release detected.\n"
477                        "         cpustat.usecount.mpui is going to be "
478                        "less than zero! ... fixed to be zero.\n");
479                 cpustat.usecount.mpui = 0;
480         }
481         if (cpustat.usecount.mpui == 0)
482                 dsp_cpustat_update();
483         mutex_unlock(&cpustat.lock);
484 }
485
486 int omap_dsp_request_mem(void)
487 {
488         int ret = 0;
489
490         mutex_lock(&cpustat.lock);
491         if ((cpustat.usecount.mem++ == 0) &&
492             (cpustat.usecount.mem_delayed == 0)) {
493                 if (cpustat.mem_req_cb) {
494                         if ((ret = cpustat.mem_req_cb()) < 0) {
495                                 cpustat.usecount.mem--;
496                                 goto out;
497                         }
498                 }
499                 dsp_cpustat_update();
500         }
501 out:
502         mutex_unlock(&cpustat.lock);
503
504         return ret;
505 }
506
507 /*
508  * release_mem will be delayed.
509  */
510 static void do_release_mem(void)
511 {
512         mutex_lock(&cpustat.lock);
513         cpustat.usecount.mem_delayed = 0;
514         if (cpustat.usecount.mem == 0) {
515                 dsp_cpustat_update();
516                 if (cpustat.mem_rel_cb)
517                         cpustat.mem_rel_cb();
518         }
519         mutex_unlock(&cpustat.lock);
520 }
521
522 static DECLARE_WORK(mem_rel_work, (void (*)(void *))do_release_mem, NULL);
523
524 int omap_dsp_release_mem(void)
525 {
526         mutex_lock(&cpustat.lock);
527
528         /* cancel previous release work */
529         cancel_delayed_work(&mem_rel_work);
530         cpustat.usecount.mem_delayed = 0;
531
532         if (cpustat.usecount.mem-- == 0) {
533                 printk(KERN_ERR
534                        "omapdsp: unbalanced memory request/release detected.\n"
535                        "         cpustat.usecount.mem is going to be "
536                        "less than zero! ... fixed to be zero.\n");
537                 cpustat.usecount.mem = 0;
538         }
539         if (cpustat.usecount.mem == 0) {
540                 cpustat.usecount.mem_delayed = 1;
541                 schedule_delayed_work(&mem_rel_work, HZ);
542         }
543
544         mutex_unlock(&cpustat.lock);
545
546         return 0;
547 }
548
549 void dsp_register_mem_cb(int (*req_cb)(void), void (*rel_cb)(void))
550 {
551         mutex_lock(&cpustat.lock);
552
553         cpustat.mem_req_cb = req_cb;
554         cpustat.mem_rel_cb = rel_cb;
555
556         /*
557          * This function must be called while mem is enabled!
558          */
559         BUG_ON(cpustat.usecount.mem == 0);
560
561         mutex_unlock(&cpustat.lock);
562 }
563
564 void dsp_unregister_mem_cb(void)
565 {
566         mutex_lock(&cpustat.lock);
567         cpustat.mem_req_cb = NULL;
568         cpustat.mem_rel_cb = NULL;
569         mutex_unlock(&cpustat.lock);
570 }
571 #endif /* CONFIG_ARCH_OMAP1 */
572
573 arch_initcall(omap_dsp_init);
574
575 #ifdef CONFIG_ARCH_OMAP1
576 EXPORT_SYMBOL(omap_dsp_request_mpui);
577 EXPORT_SYMBOL(omap_dsp_release_mpui);
578 EXPORT_SYMBOL(omap_dsp_request_mem);
579 EXPORT_SYMBOL(omap_dsp_release_mem);
580 #endif /* CONFIG_ARCH_OMAP1 */
581
582 #ifdef CONFIG_OMAP_DSP_MODULE
583 #if defined(CONFIG_ARCH_OMAP1)
584 EXPORT_SYMBOL(dsp_ck_handle);
585 EXPORT_SYMBOL(api_ck_handle);
586 #elif defined(CONFIG_ARCH_OMAP2)
587 EXPORT_SYMBOL(dsp_fck_handle);
588 EXPORT_SYMBOL(dsp_ick_handle);
589 #endif
590 EXPORT_SYMBOL(dspmem_base);
591 EXPORT_SYMBOL(dspmem_size);
592 EXPORT_SYMBOL(daram_base);
593 EXPORT_SYMBOL(daram_size);
594 EXPORT_SYMBOL(saram_base);
595 EXPORT_SYMBOL(saram_size);
596 EXPORT_SYMBOL(dsp_set_rstvect);
597 EXPORT_SYMBOL(dsp_get_rstvect);
598 #ifdef CONFIG_ARCH_OMAP1
599 EXPORT_SYMBOL(dsp_set_idle_boot_base);
600 EXPORT_SYMBOL(dsp_reset_idle_boot_base);
601 #endif /* CONFIG_ARCH_OMAP1 */
602 EXPORT_SYMBOL(dsp_cpustat_request);
603 EXPORT_SYMBOL(dsp_cpustat_get_stat);
604 EXPORT_SYMBOL(dsp_cpustat_get_icrmask);
605 EXPORT_SYMBOL(dsp_cpustat_set_icrmask);
606 #ifdef CONFIG_ARCH_OMAP1
607 EXPORT_SYMBOL(dsp_register_mem_cb);
608 EXPORT_SYMBOL(dsp_unregister_mem_cb);
609 #endif /* CONFIG_ARCH_OMAP1 */
610
611 EXPORT_SYMBOL(__cpu_flush_kern_tlb_range);
612 EXPORT_SYMBOL(cpu_architecture);
613 EXPORT_SYMBOL(pmd_clear_bad);
614 #endif