Prechádzať zdrojové kódy

qcacmn: Update QDF API to convert ASCII hex char to decimal value

To convert ASCII hexa decimal character to unsigned value and similarly
to convert string of ASCII hexa decimal characters to array of decimal
values, there is need of QDF API.

Therfore, add QDF wrapper functions to kernel API hex_to_bin() and
hex2bin().

Change-Id: I4692961eeba9067f9b737f7deeefca397ff1a7bf
CRs-Fixed: 2274320
Rajeev Kumar Sirasanagandla 6 rokov pred
rodič
commit
6b6b91db11
2 zmenil súbory, kde vykonal 76 pridanie a 0 odobranie
  1. 45 0
      qdf/inc/qdf_util.h
  2. 31 0
      qdf/linux/src/i_qdf_util.h

+ 45 - 0
qdf/inc/qdf_util.h

@@ -707,4 +707,49 @@ void qdf_get_random_bytes(void *buf, int nbytes)
 {
 	return __qdf_get_random_bytes(buf, nbytes);
 }
+
+/**
+ * qdf_hex_to_bin() - QDF API to Convert hexa decimal ASCII character to
+ * unsigned integer value.
+ * @ch: hexa decimal ASCII character
+ *
+ * Return: For hexa decimal ASCII char return actual decimal value
+ *	   else -1 for bad input.
+ */
+static inline
+int qdf_hex_to_bin(char ch)
+{
+	return __qdf_hex_to_bin(ch);
+}
+
+/**
+ * qdf_hex_str_to_binary() - QDF API to Convert string of hexa decimal
+ * ASCII characters to array of unsigned integers.
+ * @dst: output array to hold converted values
+ * @src: input string of hexa decimal ASCII characters
+ * @count: size of dst string
+ *
+ * This function is used to convert string of hexa decimal characters to
+ * array of unsigned integers and caller should ensure:
+ *	a) @dst, @src are not NULL,
+ *	b) size of @dst should be (size of src / 2)
+ *
+ * Example 1:
+ * src = 11aa, means, src[0] = '1', src[1] = '2', src[2] = 'a', src[3] = 'a'
+ * count = (size of src / 2) = 2
+ * after conversion, dst[0] = 0x11, dst[1] = oxAA and return (0).
+ *
+ * Example 2:
+ * src = 11az, means, src[0] = '1', src[1] = '2', src[2] = 'a', src[3] = 'z'
+ * src[3] is not ASCII hexa decimal character, return negative value (-1).
+ *
+ * Return: For a string of hexa decimal ASCII characters return 0
+ *	   else -1 for bad input.
+ */
+static inline
+int qdf_hex_str_to_binary(u8 *dst, const char *src, size_t count)
+{
+	return __qdf_hex_str_to_binary(dst, src, count);
+}
+
 #endif /*_QDF_UTIL_H*/

+ 31 - 0
qdf/linux/src/i_qdf_util.h

@@ -506,4 +506,35 @@ uint64_t __qdf_do_div_rem(uint64_t dividend, uint32_t divisor)
 {
 	return do_div(dividend, divisor);
 }
+
+/**
+ * __qdf_hex_to_bin() - Wrapper function to kernel API to get unsigned
+ * integer from hexa decimal ASCII character.
+ * @ch: hexa decimal ASCII character
+ *
+ * Return: For hexa decimal ASCII char return actual decimal value
+ *	   else -1 for bad input.
+ */
+static inline
+int __qdf_hex_to_bin(char ch)
+{
+	return hex_to_bin(ch);
+}
+
+/**
+ * __qdf_hex_str_to_binary() - Wrapper function to get array of unsigned
+ * integers from string of hexa decimal ASCII characters.
+ * @dst: output array to hold converted values
+ * @src: input string of hexa decimal ASCII characters
+ * @count: size of dst string
+ *
+ * Return: For a string of hexa decimal ASCII characters return 0
+ *	   else -1 for bad input.
+ */
+static inline
+int __qdf_hex_str_to_binary(u8 *dst, const char *src, size_t count)
+{
+	return hex2bin(dst, src, count);
+}
+
 #endif /*_I_QDF_UTIL_H*/