Lines Matching defs:command
49 * command, num_parameters, [ parameter, ...], command, ...
51 * Some commands require a pause before the next command can be received.
52 * Inserting a delay in the command sequence is done by using the NOP command with one
53 * parameter: delay in miliseconds (the No Operation command is part of the MIPI Display
57 * command 0x11
59 * command 0xb1 parameters 0x01, 0x2c, 0x2d
60 * command 0x29
84 if (size < sizeof(*config) + 2) { /* At least 1 command */
104 u8 command = config->commands[i++];
110 dev_err(dev, "config: command=0x%02x num_parameters=%u overflows\n",
111 command, num_parameters);
115 if (command == 0x00 && num_parameters == 1)
118 drm_dev_dbg(dev, DRM_UT_DRIVER, "command %02x %*ph\n",
119 command, num_parameters, parameters);
123 dev_err(dev, "config: malformed command array\n");
175 u8 command = commands->buf[i++];
179 if (command == 0x00 && num_parameters == 1)
182 mipi_dbi_command_stackbuf(dbi, command, parameters, num_parameters);
184 mipi_dbi_command(dbi, command);