summaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
authorSascha Hauer <s.hauer@pengutronix.de>2013-02-04 15:49:07 +0100
committerSascha Hauer <s.hauer@pengutronix.de>2013-02-04 15:49:07 +0100
commitcfb14ce242c4681062c741d383a4c1e20ae4db2b (patch)
treefe0ba1a04a4ff4b547bfb6c57301f06b5ce876e2 /scripts
parent0b12784089b6a4372ed27cf1fd578d85a7d3dbd4 (diff)
parent5862bd4faff8b9b3343c8ab9454b0095aee7eb49 (diff)
downloadbarebox-cfb14ce242c4681062c741d383a4c1e20ae4db2b.tar.gz
barebox-cfb14ce242c4681062c741d383a4c1e20ae4db2b.tar.xz
Merge branch 'for-next/omap'
Diffstat (limited to 'scripts')
-rw-r--r--scripts/omap4_usbboot.c68
-rw-r--r--scripts/usb_linux.c4
2 files changed, 44 insertions, 28 deletions
diff --git a/scripts/omap4_usbboot.c b/scripts/omap4_usbboot.c
index a276c29231..8c5775d840 100644
--- a/scripts/omap4_usbboot.c
+++ b/scripts/omap4_usbboot.c
@@ -41,10 +41,17 @@
#define host_print(fmt, arg...) printf(FORMAT fmt FORMAT, \
HOST_FORMAT, ##arg, TARGET_FORMAT)
+void panic(struct termios *t_restore)
+{
+ tcsetattr(STDIN_FILENO, TCSANOW, t_restore);
+ printf(FORMAT, HOST_FORMAT);
+ exit(1);
+}
+
struct thread_vars {
struct usb_handle *usb;
- int hide;
- struct termios to;
+ pthread_mutex_t usb_mutex;
+ struct termios t_restore;
};
void *listenerTask(void *argument)
@@ -55,13 +62,12 @@ void *listenerTask(void *argument)
c = getchar();
if (c == EOF)
return NULL;
- while (vars->hide)
- usleep(10000);
+ pthread_mutex_lock(&vars->usb_mutex);
if (usb_write(vars->usb, &c, 4) != 4) {
host_print("could not send '%c' to target\n", c);
- tcsetattr(STDIN_FILENO, TCSANOW, &vars->to);
- exit(1);
+ panic(&vars->t_restore);
}
+ pthread_mutex_unlock(&vars->usb_mutex);
}
return NULL;
}
@@ -168,8 +174,8 @@ struct file_data {
void *data;
};
-int process_file(
- struct usb_handle *usb, const char *rootfs, struct file_data *fd_vector)
+int process_file(struct usb_handle *usb, const char *rootfs,
+ struct file_data *fd_vector, struct termios *t_restore)
{
uint32_t i, j, pos, size;
struct stat s;
@@ -178,7 +184,7 @@ int process_file(
if (usb_read(usb, &i, 4) != 4) {
host_print("USB error\n");
- exit(1);
+ panic(t_restore);
}
ret = 0;
switch (i) {
@@ -188,7 +194,7 @@ int process_file(
for (;; j++) {
if (usb_read(usb, &i, 4) != 4) {
host_print("USB error\n");
- exit(1);
+ panic(t_restore);
}
if (i == USBBOOT_FS_CMD_END) {
fname[j] = 0;
@@ -242,13 +248,13 @@ open_ok:
usb_write(usb, &size, 4) != 4
) {
host_print("could not send file size to target\n");
- exit(1);
+ panic(t_restore);
}
break;
case USBBOOT_FS_CMD_CLOSE:
if (usb_read(usb, &i, 4) != 4) {
host_print("USB error\n");
- exit(1);
+ panic(t_restore);
}
if (i >= MAX_OPEN_FILES || !fd_vector[i].data) {
host_print("invalid close index\n");
@@ -257,7 +263,7 @@ open_ok:
}
if (usb_read(usb, &j, 4) != 4) {
host_print("USB error\n");
- exit(1);
+ panic(t_restore);
}
if (j != USBBOOT_FS_CMD_END) {
host_print("invalid close\n");
@@ -270,7 +276,7 @@ open_ok:
case USBBOOT_FS_CMD_READ:
if (usb_read(usb, &i, 4) != 4) {
host_print("USB error\n");
- exit(1);
+ panic(t_restore);
}
if (i >= MAX_OPEN_FILES || !fd_vector[i].data) {
host_print("invalid read index\n");
@@ -279,7 +285,7 @@ open_ok:
}
if (usb_read(usb, &pos, 4) != 4) {
host_print("USB error\n");
- exit(1);
+ panic(t_restore);
}
if (pos >= fd_vector[i].size) {
host_print("invalid read pos\n");
@@ -288,7 +294,7 @@ open_ok:
}
if (usb_read(usb, &size, 4) != 4) {
host_print("USB error\n");
- exit(1);
+ panic(t_restore);
}
if (pos+size > fd_vector[i].size) {
host_print("invalid read size\n");
@@ -297,7 +303,7 @@ open_ok:
}
if (usb_read(usb, &j, 4) != 4) {
host_print("USB error\n");
- exit(1);
+ panic(t_restore);
}
if (j != USBBOOT_FS_CMD_END) {
host_print("invalid read\n");
@@ -306,7 +312,7 @@ open_ok:
}
if (usb_write(usb, fd_vector[i].data+pos, size) != size) {
host_print("could not send file to target\n");
- exit(1);
+ panic(t_restore);
}
break;
case USBBOOT_FS_CMD_END:
@@ -329,38 +335,48 @@ int usb_boot(
struct termios tn;
struct file_data fd_vector[MAX_OPEN_FILES];
- read_asic_id(usb);
+ if (read_asic_id(usb))
+ return -1;
printf("sending xload to target...\n");
+ usleep(1000);
usb_write(usb, &msg_boot, sizeof(msg_boot));
+ usleep(1000);
usb_write(usb, &msg_size, sizeof(msg_size));
+ usleep(1000);
usb_write(usb, data, sz);
+ usleep(100000);
munmap(data, msg_size);
for (i = 0; i < MAX_OPEN_FILES; i++)
fd_vector[i].data = NULL;
vars.usb = usb;
- vars.hide = 0;
- tcgetattr(STDIN_FILENO, &vars.to);
- tn = vars.to;
+ pthread_mutex_init(&vars.usb_mutex, NULL);
+ tcgetattr(STDIN_FILENO, &vars.t_restore);
+ tn = vars.t_restore;
tn.c_lflag &= ~(ICANON | ECHO);
printf(FORMAT, TARGET_FORMAT);
tcsetattr(STDIN_FILENO, TCSANOW, &tn);
if (pthread_create(&thread, NULL, listenerTask, &vars))
host_print("listenerTask failed\n");
for (;;) {
+ usleep(100);
if (usb_read(usb, &i, 4) != 4)
break;
if (i == USBBOOT_FS_MAGIC) {
- vars.hide = 1;
- process_file(usb, rootfs, fd_vector);
- vars.hide = 0;
+ usleep(100);
+ pthread_mutex_lock(&vars.usb_mutex);
+ process_file(usb, rootfs, fd_vector, &vars.t_restore);
+ pthread_mutex_unlock(&vars.usb_mutex);
continue;
}
printf("%c", i);
fflush(stdout);
}
- tcsetattr(STDIN_FILENO, TCSANOW, &vars.to);
+ usb_close(usb);
+ pthread_mutex_destroy(&vars.usb_mutex);
+ tcsetattr(STDIN_FILENO, TCSANOW, &vars.t_restore);
+ printf(FORMAT, HOST_FORMAT);
return 0;
}
diff --git a/scripts/usb_linux.c b/scripts/usb_linux.c
index 43529aaf1a..9a6e0b84d0 100644
--- a/scripts/usb_linux.c
+++ b/scripts/usb_linux.c
@@ -47,7 +47,7 @@
#include "usb.h"
-#define MAX_RETRIES 5
+#define MAX_RETRIES 2
#ifdef TRACE_USB
#define DBG1(x...) fprintf(stderr, x)
@@ -350,7 +350,7 @@ int usb_read(struct usb_handle *h, void *_data, int len)
n, errno, strerror(errno));
if (++retry > MAX_RETRIES)
return -1;
- sleep(1);
+ usleep(10000);
}
} while (n < 0);