new file mode 100644
@@ -0,0 +1,69 @@
+/*
+ * Copyright (C) 2011-2014 Imagination Technologies Ltd.
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ *
+ * Helper functions to parse AXD Header in the firmware binary.
+ */
+#include <linux/kernel.h>
+
+#include "axd_api.h"
+#include "axd_hdr.h"
+
+
+#ifdef DEBUG_HEADER
+#define debughdr printk
+#else
+#define debughdr(format, ...)
+#endif
+
+static struct axd_hdr *hdr;
+
+static void dump_hdr(void)
+{
+#ifdef DEBUG_HEADER
+ unsigned int offset = 0;
+ unsigned long address = (unsigned long)hdr;
+
+ debughdr("header <0x%08lX>:\n", address);
+ while (offset <= sizeof(*hdr)) {
+ debughdr("0x%08X\t", *(unsigned int *)(address+offset));
+ offset += 4;
+ if ((offset % (4*4)) == 0)
+ debughdr("\n");
+ }
+ debughdr("\n");
+#endif
+}
+
+void axd_hdr_init(unsigned long address)
+{
+ hdr = (struct axd_hdr *)address;
+ dump_hdr();
+}
+
+unsigned long axd_hdr_get_pc(unsigned int thread)
+{
+ if (thread >= THREAD_COUNT)
+ return -1;
+ return hdr->thread_pc[thread];
+}
+
+unsigned long axd_hdr_get_cmdblock_offset(void)
+{
+ debughdr("cmdblock_offset = 0x%08X\n", hdr->cmd_block_offset);
+ return hdr->cmd_block_offset;
+}
+
+char *axd_hdr_get_build_str(void)
+{
+ return hdr->build_str;
+}
+
+unsigned long axd_hdr_get_log_offset(void)
+{
+ return hdr->log_offset;
+}
new file mode 100644
@@ -0,0 +1,20 @@
+/*
+ * Copyright (C) 2011-2014 Imagination Technologies Ltd.
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ *
+ * Helper functions to parse AXD Header in the firmware binary
+ */
+ #ifndef AXD_HDR_H_
+ #define AXD_HDR_H_
+
+void axd_hdr_init(unsigned long address);
+unsigned long axd_hdr_get_pc(unsigned int thread);
+unsigned long axd_hdr_get_cmdblock_offset(void);
+char *axd_hdr_get_build_str(void);
+unsigned long axd_hdr_get_log_offset(void);
+
+#endif /* AXD_HDR_H_ */
these files provide functions to get information from the fw binary header Signed-off-by: Qais Yousef <qais.yousef@imgtec.com> Cc: Arnd Bergmann <arnd@arndb.de> Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org> Cc: <alsa-devel@alsa-project.org> --- drivers/char/axd/axd_hdr.c | 69 ++++++++++++++++++++++++++++++++++++++++++++++ drivers/char/axd/axd_hdr.h | 20 ++++++++++++++ 2 files changed, 89 insertions(+) create mode 100644 drivers/char/axd/axd_hdr.c create mode 100644 drivers/char/axd/axd_hdr.h