2022-11-10 22:22:48 +08:00
|
|
|
|
/*
|
|
|
|
|
* Copyright : (C) 2022 Phytium Information Technology, Inc.
|
|
|
|
|
* All Rights Reserved.
|
|
|
|
|
*
|
|
|
|
|
* This program is OPEN SOURCE software: you can redistribute it and/or modify it
|
|
|
|
|
* under the terms of the Phytium Public License as published by the Phytium Technology Co.,Ltd,
|
|
|
|
|
* either version 1.0 of the License, or (at your option) any later version.
|
|
|
|
|
*
|
|
|
|
|
* This program is distributed in the hope that it will be useful,but WITHOUT ANY WARRANTY;
|
|
|
|
|
* without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
|
|
|
* See the Phytium Public License for more details.
|
|
|
|
|
*
|
|
|
|
|
*
|
2023-05-11 10:25:21 +08:00
|
|
|
|
* FilePath: fdebug.c
|
2022-11-10 22:22:48 +08:00
|
|
|
|
* Date: 2021-04-25 16:44:23
|
|
|
|
|
* LastEditTime: 2022-02-17 18:04:50
|
2023-05-11 10:25:21 +08:00
|
|
|
|
* Description: This file is for providing debug functions.
|
2022-11-10 22:22:48 +08:00
|
|
|
|
*
|
|
|
|
|
* Modify History:
|
|
|
|
|
* Ver Who Date Changes
|
|
|
|
|
* ----- ------ -------- --------------------------------------
|
2023-05-11 10:25:21 +08:00
|
|
|
|
* 1.0 zhugengyu 2022/10/27 rename file name
|
2022-11-10 22:22:48 +08:00
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#include "fdebug.h"
|
2023-05-11 10:25:21 +08:00
|
|
|
|
#include "fprintk.h"
|
2022-11-10 22:22:48 +08:00
|
|
|
|
#include "stdio.h"
|
|
|
|
|
|
|
|
|
|
#define __is_print(ch) ((unsigned int)((ch) - ' ') < 127u - ' ')
|
|
|
|
|
void FtDumpHexByte(const u8 *ptr, u32 buflen)
|
|
|
|
|
{
|
|
|
|
|
u8 *buf = (u8 *)ptr;
|
|
|
|
|
fsize_t i, j;
|
|
|
|
|
|
|
|
|
|
for (i = 0; i < buflen; i += 16)
|
|
|
|
|
{
|
2023-05-11 10:25:21 +08:00
|
|
|
|
f_printk("%p: ", ptr + i);
|
2022-11-10 22:22:48 +08:00
|
|
|
|
|
|
|
|
|
for (j = 0; j < 16; j++)
|
|
|
|
|
if (i + j < buflen)
|
2023-05-11 10:25:21 +08:00
|
|
|
|
{
|
|
|
|
|
f_printk("%02X ", buf[i + j]);
|
|
|
|
|
}
|
2022-11-10 22:22:48 +08:00
|
|
|
|
else
|
2023-05-11 10:25:21 +08:00
|
|
|
|
{
|
|
|
|
|
f_printk(" ");
|
|
|
|
|
}
|
|
|
|
|
f_printk(" ");
|
2022-11-10 22:22:48 +08:00
|
|
|
|
|
|
|
|
|
for (j = 0; j < 16; j++)
|
|
|
|
|
if (i + j < buflen)
|
2023-05-11 10:25:21 +08:00
|
|
|
|
{
|
|
|
|
|
f_printk("%c", (char)(__is_print(buf[i + j]) ? buf[i + j] : '.'));
|
|
|
|
|
}
|
|
|
|
|
f_printk("\r\n");
|
2022-11-10 22:22:48 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void FtDumpHexByteDebug(const u8 *ptr, u32 buflen)
|
|
|
|
|
{
|
|
|
|
|
u8 *buf = (u8 *)ptr;
|
|
|
|
|
fsize_t i, j;
|
|
|
|
|
|
|
|
|
|
for (i = 0; i < buflen; i += 16)
|
|
|
|
|
{
|
2023-05-11 10:25:21 +08:00
|
|
|
|
f_printk("%x: ", ptr + i);
|
2022-11-10 22:22:48 +08:00
|
|
|
|
|
|
|
|
|
for (j = 0; j < 16; j++)
|
|
|
|
|
if (i + j < buflen)
|
2023-05-11 10:25:21 +08:00
|
|
|
|
{
|
|
|
|
|
f_printk("%x ", buf[i + j]);
|
|
|
|
|
}
|
2022-11-10 22:22:48 +08:00
|
|
|
|
else
|
2023-05-11 10:25:21 +08:00
|
|
|
|
{
|
|
|
|
|
f_printk(" ");
|
|
|
|
|
}
|
|
|
|
|
f_printk(" ");
|
2022-11-10 22:22:48 +08:00
|
|
|
|
|
|
|
|
|
for (j = 0; j < 16; j++)
|
|
|
|
|
if (i + j < buflen)
|
2023-05-11 10:25:21 +08:00
|
|
|
|
{
|
|
|
|
|
f_printk("%c", (char)(__is_print(buf[i + j]) ? buf[i + j] : '.'));
|
|
|
|
|
}
|
|
|
|
|
f_printk("\r\n");
|
2022-11-10 22:22:48 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void FtDumpHexWord(const u32 *ptr, u32 buflen)
|
|
|
|
|
{
|
|
|
|
|
u32 *buf = (u32 *)ptr;
|
|
|
|
|
u8 *char_data = (u8 *)ptr;
|
|
|
|
|
fsize_t i, j;
|
|
|
|
|
buflen = buflen / 4;
|
|
|
|
|
for (i = 0; i < buflen; i += 4)
|
|
|
|
|
{
|
2023-05-11 10:25:21 +08:00
|
|
|
|
f_printk("%p: ", ptr + i);
|
2022-11-10 22:22:48 +08:00
|
|
|
|
|
|
|
|
|
for (j = 0; j < 4; j++)
|
|
|
|
|
{
|
|
|
|
|
if (i + j < buflen)
|
|
|
|
|
{
|
2023-05-11 10:25:21 +08:00
|
|
|
|
f_printk("%lx ", buf[i + j]);
|
2022-11-10 22:22:48 +08:00
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
2023-05-11 10:25:21 +08:00
|
|
|
|
f_printk(" ");
|
2022-11-10 22:22:48 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2023-05-11 10:25:21 +08:00
|
|
|
|
f_printk(" ");
|
2022-11-10 22:22:48 +08:00
|
|
|
|
|
|
|
|
|
for (j = 0; j < 16; j++)
|
|
|
|
|
if (i + j < buflen)
|
2023-05-11 10:25:21 +08:00
|
|
|
|
{
|
|
|
|
|
f_printk("%c", (char)(__is_print(char_data[i + j]) ? char_data[i + j] : '.'));
|
|
|
|
|
}
|
2022-11-10 22:22:48 +08:00
|
|
|
|
|
2023-05-11 10:25:21 +08:00
|
|
|
|
f_printk("\r\n");
|
2022-11-10 22:22:48 +08:00
|
|
|
|
}
|
|
|
|
|
}
|