Home
last modified time | relevance | path

Searched full:command (Results 1 – 25 of 3740) sorted by relevance

12345678910>>...150

/linux-3.3/drivers/block/
DDAC960.c317 DAC960_Command_T *Command; in DAC960_CreateAuxiliaryStructures() local
331 Command = (DAC960_Command_T *) AllocationPointer; in DAC960_CreateAuxiliaryStructures()
333 Command->CommandIdentifier = CommandIdentifier; in DAC960_CreateAuxiliaryStructures()
334 Command->Controller = Controller; in DAC960_CreateAuxiliaryStructures()
335 Command->Next = Controller->FreeCommands; in DAC960_CreateAuxiliaryStructures()
336 Controller->FreeCommands = Command; in DAC960_CreateAuxiliaryStructures()
337 Controller->Commands[CommandIdentifier-1] = Command; in DAC960_CreateAuxiliaryStructures()
354 Command->cmd_sglist = Command->V1.ScatterList; in DAC960_CreateAuxiliaryStructures()
355 Command->V1.ScatterGatherList = in DAC960_CreateAuxiliaryStructures()
357 Command->V1.ScatterGatherListDMA = ScatterGatherDMA; in DAC960_CreateAuxiliaryStructures()
[all …]
/linux-3.3/drivers/scsi/lpfc/
Dlpfc_mbox.c47 * @pmb: pointer to the driver internal queue element for mailbox command.
50 * The dump mailbox command provides a method for the device driver to obtain
53 * This routine prepares the mailbox command for dumping list of static
106 * @pmb: pointer to the driver internal queue element for mailbox command.
108 * This routine prepares a mailbox command to bring down HBA link.
121 * lpfc_dump_mem - Prepare a mailbox command for reading a region.
123 * @pmb: pointer to the driver internal queue element for mailbox command.
127 * The dump mailbox command provides a method for the device driver to obtain
130 * This routine prepares the mailbox command for dumping HBA's config region.
158 * lpfc_dump_wakeup_param - Prepare mailbox command for retrieving wakeup params
[all …]
/linux-3.3/drivers/block/mtip32xx/
Dmtip32xx.c128 * This function is called for clean the pending command in the
129 * command slot during the surprise removal of device and return
140 struct mtip_cmd *command; in mtip_command_cleanup() local
149 command = &port->commands[commandindex]; in mtip_command_cleanup()
151 if (atomic_read(&command->active) in mtip_command_cleanup()
152 && (command->async_callback)) { in mtip_command_cleanup()
153 command->async_callback(command->async_data, in mtip_command_cleanup()
155 command->async_callback = NULL; in mtip_command_cleanup()
156 command->async_data = NULL; in mtip_command_cleanup()
160 command->sg, in mtip_command_cleanup()
[all …]
Dmtip32xx.h58 * is used to access the correct s_active/Command Issue register based
65 * a single command may have.
70 * Maximum number of slot groups (Command Issue & s_active registers)
75 /* Internal command tag. */
89 /* Maximum number of supported command slots. */
139 unsigned char command; member
181 /* Command header structure. */
184 * Command options.
190 * - Bits 4:0 Length of the command FIS in DWords (DWord = 4 bytes).
199 * Lower 32 bits of the command table address associated with this
[all …]
/linux-3.3/Documentation/isdn/
DINTERFACE103 command = event-type. (one of the constants ISDN_STAT_...)
110 int (*command)(isdn_ctrl*);
120 command = command to perform. (one of the constants ISDN_CMD_...)
121 arg = depends on command.
122 num = depends on command.
212 All commands will be performed by calling the function command() described
213 above from within the LL. The field command of the struct-parameter will
214 contain the desired command, the field driver is always set to the
225 This command is intended for performing ioctl-calls for configuring
232 called with the field command set to 1.
[all …]
/linux-3.3/drivers/net/wireless/mwifiex/
Dcmdevt.c29 * This function initializes a command node.
54 * This function returns a command node from the free queue depending upon
78 * This function cleans up a command node.
107 * This function sends a host command to the firmware.
109 * The function copies the host command into the driver command
117 /* Copy the HOST command to command buffer */ in mwifiex_cmd_host_cmd()
124 * This function downloads a command to the firmware.
126 * The function performs sanity tests, sets the command sequence
128 * sending. Afterwards, it logs the command ID and action for debugging
129 * and sets up the command timeout timer.
[all …]
DREADME41 This command will trigger a scan.
42 The command will then display the scan table entries
45 The above command can be used to connect to an AP with a particular SSID.
47 WEP encryption, wep keys can be specified in the command.
48 …Note: Every time before connecting to an AP scan command (iw dev mlan0 scan) should be used by use…
51 This command will be used to disconnect from an AP.
55 The command will be used to join or create an ibss. Optionally, operating frequency,
60 The command will be used to leave an ibss network.
63 The command will be used to get the connection status. The command will return parameters
83 The command will be used to change the regulatory domain.
[all …]
/linux-3.3/drivers/net/wireless/ath/ath6kl/
Dbmi.h31 * command, this opportunity ends.
34 * from mailbox0. BMI requests all begin with a command
36 * command-specific data.
39 * The Host can only issue a command once the Target gives it a
40 * "BMI Command Credit", using ATH6KL Counter #4. As soon as the
41 * Target has completed a command, it issues another BMI Command
42 * Credit (so the Host can issue the next command).
55 * u32 command (BMI_DONE)
63 * u32 command (BMI_READ_MEMORY)
74 * u32 command (BMI_WRITE_MEMORY)
[all …]
/linux-3.3/arch/arm/mach-msm/
Dscm.c42 * struct scm_command - one SCM command buffer
43 * @len: total available memory for command and response
44 * @buf_offset: start of command buffer
46 * @id: command to be executed
49 * An SCM command is laid out in memory as follows:
52 * | command header |
54 * | command buffer |
77 * @is_complete: indicates if the command has finished processing
86 * alloc_scm_command() - Allocate an SCM command
87 * @cmd_size: size of the command buffer
[all …]
/linux-3.3/arch/mips/include/asm/octeon/
Dcvmx-cmd-queue.h30 * Support functions for managing command queues used for
33 * The common command queue infrastructure abstracts out the
38 * they all use basic linked command buffers to store the
49 * Command queue pointers are stored in a global named block
82 * don't use it and it slows down the command queue processing
90 * Enumeration representing all hardware blocks that use command
92 * multiple command queues. Not all chips support all hardware
113 * Command write operations can fail if the command queue needs
115 * fail if the number of queued command words reaches the maximum
130 /* Maximum outstanding command words */
[all …]
/linux-3.3/drivers/net/ethernet/i825xx/
Dni52.h66 u8 cmd_ruc; /* command word: RU part */
67 u8 cmd_cuc; /* command word: CU part & ACK */
68 u16 cbl_offset; /* pointeroffset, command block list */
77 * possible command values for the command word
80 #define RUC_NOP 0x0000 /* NOP-command */
86 #define CUC_MASK 0x07 /* mask for CU command */
87 #define CUC_NOP 0x00 /* NOP-command */
91 #define CUC_ABORT 0x04 /* abort command operation immediately */
93 #define ACK_MASK 0xf0 /* mask for ACK command */
170 #define STAT_COMPL 0x8000 /* status: frame/command is complete */
[all …]
Dsun3_82586.h74 unsigned char cmd_ruc; /* command word: RU part */
75 unsigned char cmd_cuc; /* command word: CU part & ACK */
76 unsigned short cbl_offset; /* pointeroffset, command block list */
85 * possible command values for the command word
88 #define RUC_NOP 0x0000 /* NOP-command */
94 #define CUC_MASK 0x07 /* mask for CU command */
95 #define CUC_NOP 0x00 /* NOP-command */
99 #define CUC_ABORT 0x04 /* abort command operation immediately */
101 #define ACK_MASK 0xf0 /* mask for ACK command */
178 #define STAT_COMPL 0x8000 /* status: frame/command is complete */
[all …]
/linux-3.3/drivers/staging/media/as102/
Das10x_cmd.c27 * as10x_cmd_turn_on - send turn on command to AS10x
42 /* prepare command */ in as10x_cmd_turn_on()
46 /* fill command */ in as10x_cmd_turn_on()
49 /* send command */ in as10x_cmd_turn_on()
73 * as10x_cmd_turn_off - send turn off command to AS10x
88 /* prepare command */ in as10x_cmd_turn_off()
92 /* fill command */ in as10x_cmd_turn_off()
95 /* send command */ in as10x_cmd_turn_off()
118 * as10x_cmd_set_tune - send set tune command to AS10x
135 /* prepare command */ in as10x_cmd_set_tune()
[all …]
/linux-3.3/Documentation/w1/
Dw1.netlink28 userspace command for bus master
31 userspace command for slave device
43 [struct w1_netlink_cmd] - command for given master or slave device.
44 __u8 cmd - command opcode.
45 W1_CMD_READ - read command
46 W1_CMD_WRITE - write command
47 W1_CMD_TOUCH - touch command
49 W1_CMD_SEARCH - search command
50 W1_CMD_ALARM_SEARCH - alarm search command
52 __u16 len - length of data for this command
[all …]
/linux-3.3/drivers/scsi/pcmcia/
Dnsp_debug.c12 * Show the command data of a command
88 static void print_commandk (unsigned char *command) in print_commandk() argument
92 print_opcodek(command[0]); in print_commandk()
94 if ((command[0] >> 5) == 6 || in print_commandk()
95 (command[0] >> 5) == 7 ) { in print_commandk()
98 s = COMMAND_SIZE(command[0]); in print_commandk()
101 printk("%02x ", command[i]); in print_commandk()
107 (((unsigned int)command[1] & 0x0f) << 16) | in print_commandk()
108 ( (unsigned int)command[2] << 8) | in print_commandk()
109 ( (unsigned int)command[3] ), in print_commandk()
[all …]
/linux-3.3/drivers/usb/storage/
Dshuttle_usbat.c110 #define USBAT_ATA_CMD 0x17 /* device command (W) */
203 * Convenience function to produce an ATA read/write sectors command
294 * Some USBAT-specific commands can only be executed over a command transport
354 unsigned char *command = us->iobuf; in usbat_set_shuttle_features() local
356 command[0] = 0x40; in usbat_set_shuttle_features()
357 command[1] = USBAT_CMD_SET_FEAT; in usbat_set_shuttle_features()
363 command[2] = epp_control; in usbat_set_shuttle_features()
371 command[3] = external_trigger; in usbat_set_shuttle_features()
378 command[4] = test_pattern; in usbat_set_shuttle_features()
382 * in the read/write command. in usbat_set_shuttle_features()
[all …]
/linux-3.3/drivers/scsi/arm/
Dqueue.h36 * Purpose : removes first SCSI command from a queue
37 * Params : queue - queue to remove command from
38 * Returns : struct scsi_cmnd if successful (and a reference), or NULL if no command available
44 * Purpose : remove a SCSI command from a queue
45 * Params : queue - queue to remove command from
47 * Returns : struct scsi_cmnd if successful (and a reference), or NULL if no command available
58 * Purpose : Add a new command onto a queue
60 * SCpnt - command to add
61 * head - add command to head of queue
68 * Purpose : remove a SCSI command from the queue for a specified target/lun/tag
[all …]
/linux-3.3/drivers/misc/ibmasm/
Ddot_command.c66 * send the 4.3.5.10 dot command (driver VPD) to the service processor
70 struct command *command; in ibmasm_send_driver_vpd() local
76 command = ibmasm_new_command(sp, INIT_BUFFER_SIZE); in ibmasm_send_driver_vpd()
77 if (command == NULL) in ibmasm_send_driver_vpd()
80 header = (struct dot_command_header *)command->buffer; in ibmasm_send_driver_vpd()
87 vpd_command = command->buffer + sizeof(struct dot_command_header); in ibmasm_send_driver_vpd()
99 ibmasm_exec_command(sp, command); in ibmasm_send_driver_vpd()
100 ibmasm_wait_for_response(command, IBMASM_CMD_TIMEOUT_NORMAL); in ibmasm_send_driver_vpd()
102 if (command->status != IBMASM_CMD_COMPLETE) in ibmasm_send_driver_vpd()
105 command_put(command); in ibmasm_send_driver_vpd()
[all …]
Dcommand.c34 struct command *ibmasm_new_command(struct service_processor *sp, size_t buffer_size) in ibmasm_new_command()
36 struct command *cmd; in ibmasm_new_command()
41 cmd = kzalloc(sizeof(struct command), GFP_KERNEL); in ibmasm_new_command()
61 dbg("command count: %d\n", atomic_read(&command_count)); in ibmasm_new_command()
68 struct command *cmd = to_command(kref); in ibmasm_free_command()
72 dbg("command count: %d\n", atomic_read(&command_count)); in ibmasm_free_command()
77 static void enqueue_command(struct service_processor *sp, struct command *cmd) in enqueue_command()
82 static struct command *dequeue_command(struct service_processor *sp) in dequeue_command()
84 struct command *cmd; in dequeue_command()
92 cmd = list_entry(next, struct command, queue_node); in dequeue_command()
[all …]
/linux-3.3/Documentation/scsi/
Darcmsr_spec.txt28 ** All SCSI Command must be sent through postQ:
86 ** 0x03 : Reset (Abort all queued Command)
91 ** 0x07 : Check If Host Command Pending
107 ** The low level command interface is exclusive with VT100 terminal
109 ** 1. Sequence of command execution
112 ** (B) Command block : variable length of data including length,
113 ** command code, data and checksum byte
116 ** 2. Command block
118 ** (A) 1st byte : command block length (low byte)
119 ** (B) 2nd byte : command block length (high byte)
[all …]
/linux-3.3/tools/power/cpupower/bench/
Dcpufreq-bench_script.sh68 local command
71command="cpufreq-bench_plot.sh -o \"sampling_rate_${SAMPLING_RATE}_up_threshold_${up_threshold}\" …
73command="${command} /var/log/cpufreq-bench/up_threshold_${up_threshold}_sampling_rate_${sampling_r…
75 echo $command
76 eval "$command"
81command="cpufreq-bench_plot.sh -o \"up_threshold_${UP_THRESHOLD}_sampling_rate_${sampling_rate}\" …
83command="${command} /var/log/cpufreq-bench/up_threshold_${up_threshold}_sampling_rate_${sampling_r…
85 echo $command
86 eval "$command"
90command="cpufreq-bench_plot.sh -o \"up_threshold_${UP_THRESHOLD}_sampling_rate_${SAMPLING_RATE}\" …
[all …]
/linux-3.3/drivers/media/video/s5p-mfc/
Ds5p_mfc_intr.c5 * This file contains functions used to wait for command completion.
25 int s5p_mfc_wait_for_done_dev(struct s5p_mfc_dev *dev, int command) in s5p_mfc_wait_for_done_dev() argument
30 (dev->int_cond && (dev->int_type == command in s5p_mfc_wait_for_done_dev()
34 mfc_err("Interrupt (dev->int_type:%d, command:%d) timed out\n", in s5p_mfc_wait_for_done_dev()
35 dev->int_type, command); in s5p_mfc_wait_for_done_dev()
41 mfc_debug(1, "Finished waiting (dev->int_type:%d, command: %d)\n", in s5p_mfc_wait_for_done_dev()
42 dev->int_type, command); in s5p_mfc_wait_for_done_dev()
56 int command, int interrupt) in s5p_mfc_wait_for_done_ctx() argument
62 (ctx->int_cond && (ctx->int_type == command in s5p_mfc_wait_for_done_ctx()
67 (ctx->int_cond && (ctx->int_type == command in s5p_mfc_wait_for_done_ctx()
[all …]
/linux-3.3/drivers/mtd/devices/
Dsst25l.c98 unsigned char command[2]; in sst25l_write_enable() local
101 command[0] = enable ? SST25L_CMD_WREN : SST25L_CMD_WRDI; in sst25l_write_enable()
102 err = spi_write(flash->spi, command, 1); in sst25l_write_enable()
106 command[0] = SST25L_CMD_EWSR; in sst25l_write_enable()
107 err = spi_write(flash->spi, command, 1); in sst25l_write_enable()
111 command[0] = SST25L_CMD_WRSR; in sst25l_write_enable()
112 command[1] = enable ? 0 : SST25L_STATUS_BP0 | SST25L_STATUS_BP1; in sst25l_write_enable()
113 err = spi_write(flash->spi, command, 2); in sst25l_write_enable()
149 unsigned char command[4]; in sst25l_erase_sector() local
156 command[0] = SST25L_CMD_SECTOR_ERASE; in sst25l_erase_sector()
[all …]
/linux-3.3/drivers/scsi/
Dnsp32_debug.c10 * Show the command data of a command
86 static void print_commandk (unsigned char *command) in print_commandk() argument
90 print_opcodek(command[0]); in print_commandk()
92 if ((command[0] >> 5) == 6 || in print_commandk()
93 (command[0] >> 5) == 7 ) { in print_commandk()
96 s = COMMAND_SIZE(command[0]); in print_commandk()
100 printk("%02x ", command[i]); in print_commandk()
106 (((unsigned int)command[1] & 0x0f) << 16) | in print_commandk()
107 ( (unsigned int)command[2] << 8) | in print_commandk()
108 ( (unsigned int)command[3] ), in print_commandk()
[all …]
/linux-3.3/Documentation/DocBook/media/v4l/
Dvidioc-encoder-cmd.xml10 <refpurpose>Execute an encoder command</refpurpose>
60 <constant>VIDIOC_ENCODER_CMD</constant> sends a command to the
62 try a command without actually executing it.</para>
64 <para>To send a command applications must initialize all fields of a
71 command code. The <structfield>flags</structfield> field is currently
72 only used by the STOP command and contains one bit: If the
77 <para>A <function>read</function>() call sends a START command to
78 the encoder if it has not been started yet. After a STOP command,
98 <entry>The encoder command, see <xref linkend="encoder-cmds" />.</entry>
103 <entry>Flags to go with the command, see <xref
[all …]

12345678910>>...150