add erase and reset commands
This commit is contained in:
parent
5751beb935
commit
64e643bd0b
|
@ -34,6 +34,9 @@
|
||||||
#define vref2_normal(x) ( CAT(x,_VREF2H) )
|
#define vref2_normal(x) ( CAT(x,_VREF2H) )
|
||||||
#define vref2_erase(x) ( CAT(x,_VREF2L) )
|
#define vref2_erase(x) ( CAT(x,_VREF2L) )
|
||||||
|
|
||||||
|
/* fgets input buffer length: for prompts and such */
|
||||||
|
#define BUF_LEN 32
|
||||||
|
|
||||||
struct layout {
|
struct layout {
|
||||||
char *name;
|
char *name;
|
||||||
enum ftdi_interface interface;
|
enum ftdi_interface interface;
|
||||||
|
@ -44,6 +47,12 @@ struct layout {
|
||||||
uint16_t vref2_erase;
|
uint16_t vref2_erase;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
int print_and_prompt( struct ftdi_device_list *devlist );
|
||||||
|
int bb_mpsee(struct ftdi_context *ftdic, uint16_t dir, uint16_t val);
|
||||||
|
void reset(struct ftdi_context *ftdic, const struct layout * l);
|
||||||
|
void erase(struct ftdi_context *ftdic, const struct layout * l);
|
||||||
|
void usage(void);
|
||||||
|
|
||||||
#define std_layout(x) \
|
#define std_layout(x) \
|
||||||
.interface = interface(x), \
|
.interface = interface(x), \
|
||||||
.dir = dir(x), \
|
.dir = dir(x), \
|
||||||
|
@ -63,14 +72,23 @@ static const struct layout layouts[] =
|
||||||
{ .name = NULL, /* end of table */ },
|
{ .name = NULL, /* end of table */ },
|
||||||
};
|
};
|
||||||
|
|
||||||
|
struct command {
|
||||||
|
char *name;
|
||||||
|
void (*cmd)(struct ftdi_context *ftdic, const struct layout * l);
|
||||||
|
};
|
||||||
|
|
||||||
/* fgets input buffer length: for prompts and such */
|
static const struct command commands[] =
|
||||||
#define BUF_LEN 32
|
{
|
||||||
|
{
|
||||||
int print_and_prompt( struct ftdi_device_list *devlist );
|
.name = "reset",
|
||||||
int bb_mpsee(struct ftdi_context *ftdic, uint16_t dir, uint16_t val);
|
.cmd = reset,
|
||||||
void toggle_reset(struct ftdi_context *ftdic, const struct layout * l);
|
},
|
||||||
void usage(void);
|
{
|
||||||
|
.name = "erase",
|
||||||
|
.cmd = erase,
|
||||||
|
},
|
||||||
|
{ .name = NULL, /* end of table */ },
|
||||||
|
};
|
||||||
|
|
||||||
const struct layout * find_layout(char * str)
|
const struct layout * find_layout(char * str)
|
||||||
{
|
{
|
||||||
|
@ -93,7 +111,7 @@ int main(int argc, char **argv)
|
||||||
int dev_index = -1; int num_devs;
|
int dev_index = -1; int num_devs;
|
||||||
char layout_str[BUF_LEN];
|
char layout_str[BUF_LEN];
|
||||||
const struct layout *layout;
|
const struct layout *layout;
|
||||||
int ret;
|
int i, ret;
|
||||||
|
|
||||||
while (1) {
|
while (1) {
|
||||||
int c;
|
int c;
|
||||||
|
@ -171,7 +189,19 @@ int main(int argc, char **argv)
|
||||||
fprintf(stderr, "couldn't open dev_index %d\n", dev_index);
|
fprintf(stderr, "couldn't open dev_index %d\n", dev_index);
|
||||||
return EXIT_FAILURE;
|
return EXIT_FAILURE;
|
||||||
}
|
}
|
||||||
toggle_reset(&ftdic, layout);
|
|
||||||
|
i = 0;
|
||||||
|
while(commands[i].name != NULL) {
|
||||||
|
if(strcmp(commands[i].name, argv[optind]) == 0) { break; }
|
||||||
|
i++;
|
||||||
|
}
|
||||||
|
if(commands[i].name != NULL) {
|
||||||
|
commands[i].cmd(&ftdic, layout);
|
||||||
|
} else {
|
||||||
|
printf("invalid command\n");
|
||||||
|
}
|
||||||
|
|
||||||
|
printf("done.\n");
|
||||||
|
|
||||||
ftdi_list_free(&devlist);
|
ftdi_list_free(&devlist);
|
||||||
ftdi_deinit(&ftdic);
|
ftdi_deinit(&ftdic);
|
||||||
|
@ -227,18 +257,50 @@ int print_and_prompt( struct ftdi_device_list *devlist )
|
||||||
return sel;
|
return sel;
|
||||||
}
|
}
|
||||||
|
|
||||||
void toggle_reset(struct ftdi_context *ftdic, const struct layout * l)
|
void reset(struct ftdi_context *ftdic, const struct layout * l)
|
||||||
{
|
{
|
||||||
|
|
||||||
|
/* using MPSSE since it give access to high GPIO*/
|
||||||
|
/* set as inputs for now */
|
||||||
|
ftdi_set_bitmode(ftdic, 0 , BITMODE_MPSSE);
|
||||||
|
|
||||||
printf("toggle reset\n");
|
printf("toggle reset\n");
|
||||||
|
|
||||||
|
bb_mpsee(ftdic, l->dir, (l->reset_release | l->vref2_normal));
|
||||||
|
bb_mpsee(ftdic, l->dir, (l->reset_set | l->vref2_normal));
|
||||||
|
bb_mpsee(ftdic, l->dir, (l->reset_release | l->vref2_normal));
|
||||||
|
|
||||||
|
return;
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
void erase(struct ftdi_context *ftdic, const struct layout * l)
|
||||||
|
{
|
||||||
|
printf("setting VREF2 erase\n");
|
||||||
|
|
||||||
/* using MPSSE since it give access to high GPIO*/
|
/* using MPSSE since it give access to high GPIO*/
|
||||||
/* set as inputs for now */
|
/* set as inputs for now */
|
||||||
ftdi_set_bitmode(ftdic, 0 , BITMODE_MPSSE);
|
ftdi_set_bitmode(ftdic, 0 , BITMODE_MPSSE);
|
||||||
|
|
||||||
bb_mpsee(ftdic, l->dir, (l->reset_release | l->vref2_normal));
|
bb_mpsee(ftdic, l->dir, (l->reset_release | l->vref2_normal));
|
||||||
bb_mpsee(ftdic, l->dir, (l->reset_set | l->vref2_normal));
|
bb_mpsee(ftdic, l->dir, (l->reset_release | l->vref2_erase));
|
||||||
|
|
||||||
|
printf("toggle reset\n");
|
||||||
|
|
||||||
|
bb_mpsee(ftdic, l->dir, (l->reset_set | l->vref2_erase));
|
||||||
|
bb_mpsee(ftdic, l->dir, (l->reset_release | l->vref2_erase));
|
||||||
|
|
||||||
|
printf("waiting for erase\n");
|
||||||
|
|
||||||
|
sleep(1);
|
||||||
|
|
||||||
|
printf("setting VREF2 normal\n");
|
||||||
|
|
||||||
bb_mpsee(ftdic, l->dir, (l->reset_release | l->vref2_normal));
|
bb_mpsee(ftdic, l->dir, (l->reset_release | l->vref2_normal));
|
||||||
|
|
||||||
|
reset(ftdic, l);
|
||||||
|
|
||||||
return;
|
return;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue