/** * parse_hex_sentence() - Convert a ascii hex representation into byte array. * @in: Input buffer of ascii. * @isize: Length of input buffer. * @out: Output buffer. * @osize: Length of output buffer, e.g. max number of bytes to parse. * * An valid input is a series of ascii hexadecimal numbers, separated by spaces. * An example valid input is * " 00 f2 0 000076 6 0 ff" * * If an individual "word" within the hex sentence is longer than MAX_WORD_SIZE, * then the sentence is illegal, and parsing will fail. * * Return: Number of bytes parsed, or negative error code on failure.
*/ staticint parse_hex_sentence(constchar *in, int isize, u8 *out, int osize)
{ int n_parsed = 0; int word_start = 0; int word_end; int word_len; /* Temp buffer for holding a "word" of chars that represents one byte */ #define MAX_WORD_SIZE 16 char tmp[MAX_WORD_SIZE + 1];
u8 byte;
while (word_start < isize && n_parsed < osize) { /* Find the start of the next word */ while (word_start < isize && isspace(in[word_start]))
word_start++; /* reached the end of the input before next word? */ if (word_start >= isize) break;
/* Find the end of this word */
word_end = word_start; while (word_end < isize && !isspace(in[word_end]))
word_end++;
/* Copy to a tmp NULL terminated string */
word_len = word_end - word_start; if (word_len > MAX_WORD_SIZE) return -EINVAL;
memcpy(tmp, in + word_start, word_len);
tmp[word_len] = '\0';
/* * Convert from hex string, place in output. If fails to parse, * just return -EINVAL because specific error code is only * relevant for this one word, returning it would be confusing.
*/ if (kstrtou8(tmp, 16, &byte)) return -EINVAL;
out[n_parsed++] = byte;
word_start = word_end;
} return n_parsed;
}
/* The message type takes up two bytes*/ #define TYPE_AND_DATA_SIZE ((EC_MAILBOX_DATA_SIZE) + 2)
ret = parse_hex_sentence(buf, kcount, request_data, TYPE_AND_DATA_SIZE); if (ret < 0) return ret; /* Need at least two bytes for message type and one byte of data */ if (ret < 3) return -EINVAL;
if (debug_info->response_size) {
fmt_len = hex_dump_to_buffer(debug_info->raw_data,
debug_info->response_size,
16, 1, debug_info->formatted_data, sizeof(debug_info->formatted_data), true); /* Only return response the first time it is read */
debug_info->response_size = 0;
}
/* Format is unused since it is only required for get method which is NULL */
DEFINE_DEBUGFS_ATTRIBUTE(fops_test_event, NULL, test_event_set, "%llu\n");
/** * wilco_ec_debugfs_probe() - Create the debugfs node * @pdev: The platform device, probably created in core.c * * Try to create a debugfs node. If it fails, then we don't want to change * behavior at all, this is for debugging after all. Just fail silently. * * Return: 0 always.
*/ staticint wilco_ec_debugfs_probe(struct platform_device *pdev)
{ struct wilco_ec_device *ec = dev_get_drvdata(pdev->dev.parent);
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.