Linux Audio

Check our new training course

Loading...
  1#include <linux/export.h>
  2#include <linux/threads.h>
  3#include <linux/smp.h>
  4#include <linux/sched.h>
  5#include <linux/elfcore.h>
  6#include <linux/string.h>
  7#include <linux/interrupt.h>
  8#include <linux/screen_info.h>
  9#include <linux/vt_kern.h>
 10#include <linux/nvram.h>
 11#include <linux/irq.h>
 12#include <linux/pci.h>
 13#include <linux/delay.h>
 14#include <linux/bitops.h>
 15
 16#include <asm/page.h>
 17#include <asm/processor.h>
 18#include <asm/cacheflush.h>
 19#include <asm/uaccess.h>
 20#include <asm/io.h>
 21#include <linux/atomic.h>
 22#include <asm/checksum.h>
 23#include <asm/pgtable.h>
 24#include <asm/tlbflush.h>
 25#include <linux/adb.h>
 26#include <linux/cuda.h>
 27#include <linux/pmu.h>
 28#include <asm/prom.h>
 29#include <asm/pci-bridge.h>
 30#include <asm/irq.h>
 31#include <asm/pmac_feature.h>
 32#include <asm/dma.h>
 33#include <asm/machdep.h>
 34#include <asm/hw_irq.h>
 35#include <asm/nvram.h>
 36#include <asm/mmu_context.h>
 37#include <asm/backlight.h>
 38#include <asm/time.h>
 39#include <asm/cputable.h>
 40#include <asm/btext.h>
 41#include <asm/div64.h>
 42#include <asm/signal.h>
 43#include <asm/dcr.h>
 44#include <asm/ftrace.h>
 45#include <asm/switch_to.h>
 46
 47#ifdef CONFIG_PPC32
 48extern void transfer_to_handler(void);
 49extern void do_IRQ(struct pt_regs *regs);
 50extern void machine_check_exception(struct pt_regs *regs);
 51extern void alignment_exception(struct pt_regs *regs);
 52extern void program_check_exception(struct pt_regs *regs);
 53extern void single_step_exception(struct pt_regs *regs);
 54extern int sys_sigreturn(struct pt_regs *regs);
 55
 56EXPORT_SYMBOL(clear_pages);
 57EXPORT_SYMBOL(ISA_DMA_THRESHOLD);
 58EXPORT_SYMBOL(DMA_MODE_READ);
 59EXPORT_SYMBOL(DMA_MODE_WRITE);
 60
 61EXPORT_SYMBOL(transfer_to_handler);
 62EXPORT_SYMBOL(do_IRQ);
 63EXPORT_SYMBOL(machine_check_exception);
 64EXPORT_SYMBOL(alignment_exception);
 65EXPORT_SYMBOL(program_check_exception);
 66EXPORT_SYMBOL(single_step_exception);
 67EXPORT_SYMBOL(sys_sigreturn);
 68#endif
 69
 70#ifdef CONFIG_FUNCTION_TRACER
 71EXPORT_SYMBOL(_mcount);
 72#endif
 73
 74EXPORT_SYMBOL(strcpy);
 75EXPORT_SYMBOL(strncpy);
 76EXPORT_SYMBOL(strcat);
 77EXPORT_SYMBOL(strlen);
 78EXPORT_SYMBOL(strcmp);
 79EXPORT_SYMBOL(strncmp);
 80
 81EXPORT_SYMBOL(csum_partial);
 82EXPORT_SYMBOL(csum_partial_copy_generic);
 83EXPORT_SYMBOL(ip_fast_csum);
 84EXPORT_SYMBOL(csum_tcpudp_magic);
 85
 86EXPORT_SYMBOL(__copy_tofrom_user);
 87EXPORT_SYMBOL(__clear_user);
 88EXPORT_SYMBOL(copy_page);
 89
 90#if defined(CONFIG_PCI) && defined(CONFIG_PPC32)
 91EXPORT_SYMBOL(isa_io_base);
 92EXPORT_SYMBOL(isa_mem_base);
 93EXPORT_SYMBOL(pci_dram_offset);
 94#endif /* CONFIG_PCI */
 95
 96EXPORT_SYMBOL(start_thread);
 97EXPORT_SYMBOL(kernel_thread);
 98
 99EXPORT_SYMBOL(giveup_fpu);
100#ifdef CONFIG_ALTIVEC
101EXPORT_SYMBOL(giveup_altivec);
102#endif /* CONFIG_ALTIVEC */
103#ifdef CONFIG_VSX
104EXPORT_SYMBOL(giveup_vsx);
105EXPORT_SYMBOL_GPL(__giveup_vsx);
106#endif /* CONFIG_VSX */
107#ifdef CONFIG_SPE
108EXPORT_SYMBOL(giveup_spe);
109#endif /* CONFIG_SPE */
110
111#ifndef CONFIG_PPC64
112EXPORT_SYMBOL(flush_instruction_cache);
113#endif
114EXPORT_SYMBOL(__flush_icache_range);
115EXPORT_SYMBOL(flush_dcache_range);
116
117#ifdef CONFIG_SMP
118#ifdef CONFIG_PPC32
119EXPORT_SYMBOL(smp_hw_index);
120#endif
121#endif
122
123#ifdef CONFIG_ADB
124EXPORT_SYMBOL(adb_request);
125EXPORT_SYMBOL(adb_register);
126EXPORT_SYMBOL(adb_unregister);
127EXPORT_SYMBOL(adb_poll);
128EXPORT_SYMBOL(adb_try_handler_change);
129#endif /* CONFIG_ADB */
130#ifdef CONFIG_ADB_CUDA
131EXPORT_SYMBOL(cuda_request);
132EXPORT_SYMBOL(cuda_poll);
133#endif /* CONFIG_ADB_CUDA */
134EXPORT_SYMBOL(to_tm);
135
136#ifdef CONFIG_PPC32
137long long __ashrdi3(long long, int);
138long long __ashldi3(long long, int);
139long long __lshrdi3(long long, int);
140EXPORT_SYMBOL(__ashrdi3);
141EXPORT_SYMBOL(__ashldi3);
142EXPORT_SYMBOL(__lshrdi3);
143int __ucmpdi2(unsigned long long, unsigned long long);
144EXPORT_SYMBOL(__ucmpdi2);
145#endif
146
147EXPORT_SYMBOL(memcpy);
148EXPORT_SYMBOL(memset);
149EXPORT_SYMBOL(memmove);
150EXPORT_SYMBOL(memcmp);
151EXPORT_SYMBOL(memchr);
152
153#if defined(CONFIG_FB_VGA16_MODULE)
154EXPORT_SYMBOL(screen_info);
155#endif
156
157#ifdef CONFIG_PPC32
158EXPORT_SYMBOL(timer_interrupt);
159EXPORT_SYMBOL(tb_ticks_per_jiffy);
160EXPORT_SYMBOL(cacheable_memcpy);
161EXPORT_SYMBOL(cacheable_memzero);
162#endif
163
164#ifdef CONFIG_PPC32
165EXPORT_SYMBOL(switch_mmu_context);
166#endif
167
168#ifdef CONFIG_PPC_STD_MMU_32
169extern long mol_trampoline;
170EXPORT_SYMBOL(mol_trampoline); /* For MOL */
171EXPORT_SYMBOL(flush_hash_pages); /* For MOL */
172#ifdef CONFIG_SMP
173extern int mmu_hash_lock;
174EXPORT_SYMBOL(mmu_hash_lock); /* For MOL */
175#endif /* CONFIG_SMP */
176extern long *intercept_table;
177EXPORT_SYMBOL(intercept_table);
178#endif /* CONFIG_PPC_STD_MMU_32 */
179#ifdef CONFIG_PPC_DCR_NATIVE
180EXPORT_SYMBOL(__mtdcr);
181EXPORT_SYMBOL(__mfdcr);
182#endif
183EXPORT_SYMBOL(empty_zero_page);
184
185#ifdef CONFIG_PPC64
186EXPORT_SYMBOL(__arch_hweight8);
187EXPORT_SYMBOL(__arch_hweight16);
188EXPORT_SYMBOL(__arch_hweight32);
189EXPORT_SYMBOL(__arch_hweight64);
190#endif
191
192#ifdef CONFIG_PPC_BOOK3S_64
193EXPORT_SYMBOL_GPL(mmu_psize_defs);
194#endif