25 lines
405 B
C
25 lines
405 B
C
#ifndef H_PM_AUX_H
|
|
#define H_PM_AUX_H
|
|
|
|
#include "xmedia_type.h"
|
|
#include "xmedia_errcode.h"
|
|
|
|
#define UBOOT_HEADER_PARAM_LEN 0x2800
|
|
#define AUX_AREA_SIZE 0x5000
|
|
|
|
#define AUX_LEN_POS 0x400
|
|
|
|
struct aux_mem {
|
|
xmedia_u64 phy_addr;
|
|
xmedia_u32 size;
|
|
};
|
|
|
|
xmedia_s32 aux_read(xmedia_char *buf, xmedia_u32 size);
|
|
|
|
xmedia_s32 read_aux_to_ddr(struct aux_mem *paux);
|
|
|
|
xmedia_s32 aux_free_mem(void);
|
|
|
|
|
|
#endif
|