48 lines
1.8 KiB
C
48 lines
1.8 KiB
C
#ifndef E502API_PRIVATE_H
|
|
#define E502API_PRIVATE_H
|
|
|
|
#include "e502api.h"
|
|
#include "x502api_private.h"
|
|
#include "e502_cm4_defs.h"
|
|
#include "lboot_req.h"
|
|
|
|
|
|
#define E502_CM4_DEVFLAGS (X502_DEVFLAGS_IFACE_SUPPORT_ETH \
|
|
| X502_DEVFLAGS_INDUSTRIAL \
|
|
| X502_DEVFLAGS_FPGA_LOADED \
|
|
| X502_DEVFLAGS_DAC_TYPE \
|
|
)
|
|
|
|
|
|
#define E502_DEVICE_NAME "E502"
|
|
#define E16_DEVICE_NAME "E16"
|
|
|
|
int32_t e502_iface_fpga_read(t_x502_hnd hnd, uint32_t addr, uint32_t *val);
|
|
int32_t e502_iface_fpga_write(t_x502_hnd hnd, uint32_t addr, uint32_t val);
|
|
int32_t e502_iface_fpga_mode_init(t_x502_hnd hnd);
|
|
int32_t e502_iface_stream_running(t_x502_hnd hnd, uint32_t ch, int32_t* running);
|
|
int32_t e502_iface_bf_mem_block_rd(t_x502_hnd hnd, uint32_t addr, uint32_t *block, uint32_t size);
|
|
int32_t e502_iface_bf_mem_block_wr(t_x502_hnd hnd, uint32_t addr, const uint32_t *block, uint32_t size);
|
|
int32_t e502_iface_bf_firm_load(t_x502_hnd hnd, const char *filename);
|
|
|
|
|
|
|
|
int32_t e502_iface_flash_rd(t_x502_hnd hnd, uint32_t addr, uint8_t* data, uint32_t size);
|
|
int32_t e502_iface_flash_wr(t_x502_hnd hnd, uint32_t addr, const uint8_t* data, uint32_t size);
|
|
int32_t e502_iface_flash_erase(t_x502_hnd hnd, uint32_t addr, uint32_t size);
|
|
int32_t e502_iface_flash_set_prot(t_x502_hnd hnd, uint32_t prot, const uint8_t* prot_data, uint32_t size);
|
|
int32_t e502_iface_reload_dev_info(t_x502_hnd hnd);
|
|
|
|
int32_t e502_iface_cycle_load_start(t_x502_hnd hnd, uint32_t size);
|
|
int32_t e502_iface_cycle_setup(t_x502_hnd hnd, uint32_t flags);
|
|
int32_t e502_iface_cycle_stop(t_x502_hnd hnd, uint32_t flags);
|
|
int32_t e502_iface_cycle_check_setup(t_x502_hnd hnd, uint32_t *done);
|
|
int32_t e502_iface_check_feature(t_x502_hnd hnd, uint32_t feature);
|
|
|
|
void e502_devinfo_init(t_x502_info *info, const t_lboot_devinfo *lboot_info);
|
|
int32_t e502_fill_devflags(t_x502_hnd hnd);
|
|
|
|
|
|
|
|
#endif // E502API_PRIVATE_H
|