123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148 |
- #include <common.h>
- #include <console.h>
- #include <serial.h>
- #include <malloc.h>
- #ifdef CONFIG_CONSOLE_MUX
- void iomux_printdevs(const int console)
- {
- int i;
- struct stdio_dev *dev;
- for (i = 0; i < cd_count[console]; i++) {
- dev = console_devices[console][i];
- printf("%s ", dev->name);
- }
- printf("\n");
- }
- int iomux_doenv(const int console, const char *arg)
- {
- char *console_args, *temp, **start;
- int i, j, k, io_flag, cs_idx, repeat;
- struct stdio_dev *dev;
- struct stdio_dev **cons_set;
- console_args = strdup(arg);
- if (console_args == NULL)
- return 1;
-
- i = 0;
- temp = console_args;
- for (;;) {
- temp = strchr(temp, ',');
- if (temp != NULL) {
- i++;
- temp++;
- continue;
- }
-
- i++;
- break;
- }
- start = (char **)malloc(i * sizeof(char *));
- if (start == NULL) {
- free(console_args);
- return 1;
- }
- i = 0;
- start[0] = console_args;
- for (;;) {
- temp = strchr(start[i++], ',');
- if (temp == NULL)
- break;
- *temp = '\0';
- start[i] = temp + 1;
- }
- cons_set = (struct stdio_dev **)calloc(i, sizeof(struct stdio_dev *));
- if (cons_set == NULL) {
- free(start);
- free(console_args);
- return 1;
- }
- switch (console) {
- case stdin:
- io_flag = DEV_FLAGS_INPUT;
- break;
- case stdout:
- case stderr:
- io_flag = DEV_FLAGS_OUTPUT;
- break;
- default:
- free(start);
- free(console_args);
- free(cons_set);
- return 1;
- }
- cs_idx = 0;
- for (j = 0; j < i; j++) {
-
- dev = search_device(io_flag, start[j]);
- if (dev == NULL)
- continue;
-
- repeat = 0;
- for (k = 0; k < cs_idx; k++) {
- if (dev == cons_set[k]) {
- repeat++;
- break;
- }
- }
- if (repeat)
- continue;
-
- if (console_assign(console, start[j]) < 0)
- continue;
- cons_set[cs_idx++] = dev;
- }
- free(console_args);
- free(start);
-
- if (cs_idx == 0) {
- free(cons_set);
- return 1;
- } else {
-
- console_devices[console] =
- (struct stdio_dev **)realloc(console_devices[console],
- cs_idx * sizeof(struct stdio_dev *));
- if (console_devices[console] == NULL) {
- free(cons_set);
- return 1;
- }
- memcpy(console_devices[console], cons_set, cs_idx *
- sizeof(struct stdio_dev *));
- cd_count[console] = cs_idx;
- }
- free(cons_set);
- return 0;
- }
- #endif
|