|
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 | : | 25.5 GB of 70.42 GB (36.22%) |
|
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-generic-pae/
include/
linux/
- drwxr-xr-x
|
Viewing file: sigma.h (1.05 KB) -rw-r--r--Select action/file-type:  ( +) |  ( +) |  ( +) | Code ( +) | Session ( +) |  ( +) | SDB ( +) |  ( +) |  ( +) |  ( +) |  ( +) |  ( +) |
/* * Load firmware files from Analog Devices SigmaStudio * * Copyright 2009-2011 Analog Devices Inc. * * Licensed under the GPL-2 or later. */
#ifndef __SIGMA_FIRMWARE_H__ #define __SIGMA_FIRMWARE_H__
#include <linux/firmware.h> #include <linux/types.h>
struct i2c_client;
#define SIGMA_MAGIC "ADISIGM"
struct sigma_firmware { const struct firmware *fw; size_t pos; };
struct sigma_firmware_header { unsigned char magic[7]; u8 version; u32 crc; };
enum { SIGMA_ACTION_WRITEXBYTES = 0, SIGMA_ACTION_WRITESINGLE, SIGMA_ACTION_WRITESAFELOAD, SIGMA_ACTION_DELAY, SIGMA_ACTION_PLLWAIT, SIGMA_ACTION_NOOP, SIGMA_ACTION_END, };
struct sigma_action { u8 instr; u8 len_hi; u16 len; u16 addr; unsigned char payload[]; };
static inline u32 sigma_action_len(struct sigma_action *sa) { return (sa->len_hi << 16) | sa->len; }
static inline size_t sigma_action_size(struct sigma_action *sa, u32 payload_len) { return sizeof(*sa) + payload_len + (payload_len % 2); }
extern int process_sigma_firmware(struct i2c_client *client, const char *name);
#endif
|