~ubuntu-branches/ubuntu/oneiric/linux-ti-omap4/oneiric

« back to all changes in this revision

Viewing changes to arch/arm/plat-omap/include/syslink/host_os.h

  • Committer: Bazaar Package Importer
  • Author(s): Paolo Pisati, Paolo Pisati
  • Date: 2011-08-16 17:55:44 UTC
  • Revision ID: james.westby@ubuntu.com-20110816175544-ieu39dvqbiyufiwb
Tags: 3.0.0-1202.6
[ Paolo Pisati ]

* [Config] Sync config
* TI BSP update: kernel-tilt/tilt-3.0 @ f95dded2534d1d5a40fa4cb833699953d5f3e4de

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
 
 
2
/*
 
3
 * host_os.h
 
4
 *
 
5
 * DSP-BIOS Bridge driver support functions for TI OMAP processors.
 
6
 *
 
7
 * Copyright (C) 2008 Texas Instruments, Inc.
 
8
 *
 
9
 * This package is free software; you can redistribute it and/or modify
 
10
 * it under the terms of the GNU General Public License version 2 as
 
11
 * published by the Free Software Foundation.
 
12
 *
 
13
 * THIS PACKAGE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR
 
14
 * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
 
15
 * WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
 
16
 */
 
17
 
 
18
 
 
19
/*
 
20
 *  ======== windows.h ========
 
21
 *
 
22
 *! Revision History
 
23
 *! ================
 
24
 *! 08-Mar-2004 sb Added cacheflush.h to support Dynamic Memory Mapping feature
 
25
 *! 16-Feb-2004 sb Added headers required for consistent_alloc
 
26
 */
 
27
 
 
28
#ifndef _HOST_OS_H_
 
29
#define _HOST_OS_H_
 
30
 
 
31
#include <generated/autoconf.h>
 
32
#include <asm/system.h>
 
33
#include <asm/atomic.h>
 
34
#include <linux/semaphore.h>
 
35
#include <linux/uaccess.h>
 
36
#include <asm/irq.h>
 
37
#include <linux/io.h>
 
38
#include <linux/syscalls.h>
 
39
#include <linux/version.h>
 
40
#include <linux/kernel.h>
 
41
#include <linux/string.h>
 
42
#include <linux/stddef.h>
 
43
#include <linux/types.h>
 
44
#include <linux/interrupt.h>
 
45
#include <linux/spinlock.h>
 
46
#include <linux/sched.h>
 
47
#include <linux/fs.h>
 
48
#include <linux/file.h>
 
49
#include <linux/slab.h>
 
50
#include <linux/delay.h>
 
51
#include <linux/ctype.h>
 
52
#include <linux/mm.h>
 
53
#include <linux/device.h>
 
54
#include <linux/vmalloc.h>
 
55
#include <linux/ioport.h>
 
56
#include <linux/platform_device.h>
 
57
#include <linux/clk.h>
 
58
#include <linux/pagemap.h>
 
59
#include <asm/cacheflush.h>
 
60
#include <linux/dma-mapping.h>
 
61
 
 
62
/*  ----------------------------------- Macros */
 
63
 
 
64
#define SEEK_SET        0       /* Seek from beginning of file.  */
 
65
#define SEEK_CUR        1       /* Seek from current position.  */
 
66
#define SEEK_END        2       /* Seek from end of file.  */
 
67
 
 
68
/* TODO -- Remove, once BP defines them */
 
69
#define INT_MAIL_MPU_IRQ        26
 
70
#define INT_DSP_MMU_IRQ        28
 
71
 
 
72
#endif