/* * 0xFFFF - Open Free Fiasco Firmware Flasher * Copyright (C) 2007, 2008 pancake * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ #include "main.h" #include "query.h" #include #include #include #include /* global pr0n */ #if HAVE_USB #include struct usb_device *device = NULL; struct usb_dev_handle *dev = NULL; #endif char *fiasco_image = NULL; char *boot_cmdline = NULL; char *reverseto = NULL; char *subverstr = NULL; int rd_mode = -1; int rd_flags = -1; int usb_mode = -1; int root_device = -1; int verbose = 0; int identify = 0; int moboreboot = 0; int unpack = 0; int qmode = 0; int info = 0; int nomode = 0; char *modes[]={ "host", "peripheral", NULL }; char *root_devices[] = { "flash", "mmc", "usb", NULL }; void show_title() { printf("0xFFFF v%s // The Free Fiasco Firmware Flasher\n", VERSION); } void show_usage() { int i; show_title(); #if HAVE_USB printf("Over USB:\n"); printf(" -b [arg] boots the kernel with arguments\n"); printf(" -c console prompt mode\n"); printf(" -d [vid:pid] injects a usb device into the supported list\n"); printf(" -D [0|1|2] sets the root device to flash (0), mmc (1) or usb (2)\n"); printf(" -f set the given RD flags (see '-f help')\n"); printf(" -i show device information (let standby mode)\n"); printf(" -l list supported usb device ids\n"); printf(" -p [[p%%]file] piece-of-firmware %% file-where-this-piece-is\n"); printf(" -r [0|1] disable/enable R&D mode\n"); printf(" -R reboot the omap board\n"); printf(" -U [0|1] disable/enable the usb host mode\n"); #endif #if HAVE_SQUEUE printf(" -Q enter shared queues server mode (for gui or remote)\n"); #endif printf("Local stuff:\n"); printf(" -s [serial] serial port console (minicom like terminal)\n"); printf(" -h show this help message\n"); printf(" -S [subversion] unpacks/flash pieces matching this sub-version information\n"); printf(" -n do not flash or write to disk (simulation)\n"); printf(" -C [/dev/mtd] check bad blocks on mtd\n"); printf(" -e [path] dump/extract pieces to path\n"); printf(" -F [fiasco] flash a fiasco firmware image\n"); printf(" -H [file] calculate hash for file\n"); printf(" -I [piece] identify a firmware piece\n"); printf(" -P [new-fiasco] creates a new fiasco package, pieces as arguments\n"); printf(" -u [fiasco] unpack target fiasco image\n"); printf(" -v be verbose and noisy\n"); printf(" -V show 0xFFFF version information\n"); printf(" -x extract configuration entries from /dev/mtd1\n"); printf("Pieces are: "); for(i=0;pieces[i];i++) printf("%s ", pieces[i]); printf("\n"); // serial port support is not yet done (cold flash is for flashing the 8kB nand) // TODO: commandline shell prompt for nolo comm exit(0); } int unpack_callback(struct header_t *header) { FILE *fd; fiasco_data_read(header); if (subverstr) { if (strchr(header->name, ',') != NULL) { if (!strstr(header->name, subverstr)) { printf("Skipping '%s' does not matches -S subversion\n", header->name); return 1; } } } if (nomode) return 1; fd = fopen(header->name, "wb"); if (fd == NULL) { printf("Cannot open file.\n"); return 1; } fwrite(header->data, header->size, 1, fd); fclose(fd); return 0; } int flash_callback(struct header_t *header) { int ret; char *type; ret = unpack_callback(header); if (ret) { printf("ignored\n"); return 1; } type = (char *)fpid_file(header->name); printf("\nFlashing %s (%s)\n", header->name, type); flash_image(header->name, type, NULL); return 0; } void unpack_fiasco_image(char *file) { printf("Dumping firmware pieces to disk.\n"); fiasco_callback = &unpack_callback; openfiasco(file, NULL ,1); } int fiasco_flash(const char *file) { char *p; char version[64]; if (connect_via_usb()) { fprintf(stderr, "Cannot connect to device. It is possibly not in boot stage.\n"); return 0; } // if (info) cmd_info(""); check_nolo_order(); get_nolo_version(); get_sw_version(); get_hw_revision(version, 44); if (subverstr == NULL) { p = strstr(version, "hw_rev:"); if (p) { subverstr = strdup(p+7); // TODO: delimit string by comma printf("SubVersionString autodetected: '%s'\n", subverstr); } } printf("\n"); fiasco_callback = &flash_callback; openfiasco(file, "xloader", 0); openfiasco(file, "secondary", 0); openfiasco(file, "kernel", 0); openfiasco(file, "initfs", 0); openfiasco(file, "rootfs", 0); return 0; } #if HAVE_USB int connect_via_usb() { static char pbc[]={'/','-','\\', '|'}; struct usb_device_descriptor udd; struct devices it_device; int c = 0; // usb_set_debug(5); usb_init(); /* Tries to get access to the Internet Tablet and retries * if any of the neccessary steps fail. * * Note: While a proper device may be found on the bus it may * not be in the right state to be accessed (e.g. the Nokia is * not in the boot stage any more). */ while(!dev) { usleep(0xc350); // 0.5s if(!usb_device_found(&udd, &it_device)) { printf("\rWaiting for device... %c", pbc[++c%4]); fflush(stdout); continue; } /* open device */ if(!(dev = usb_open(device))) { perror("usb_open"); return 1; } if ( usb_claim_interface(dev, 2) < 0) { //device->config->interface->altsetting->bInterfaceNumber) < 0) { // 2 or 0 D perror("usb_claim_interface"); // Something is broken if closing fails. if(usb_close(dev)) { perror("usb_close"); return 1; } dev = NULL; // Try again later. continue; } if (usb_set_altinterface(dev, 1) <0) { //device->config->interface->altsetting->bAlternateSetting) < 0) { D perror("usb_set_altinterface"); // Something is broken if closing fails. if(usb_close(dev)) { perror("usb_close"); return 1; } dev = NULL; // Try again later. continue; } } printf("found %s (%04x:%04x)\n", it_device.name, it_device.vendor_id, it_device.product_id); /* go go go! */ while(get_status()); sleep(1); // take breath return 0; } #endif int main(int argc, char **argv) { int c; while((c = getopt(argc, argv, "QC:cp:PvVhRu:ib:U:r:e:ld:I:D:f:F:s:xH:S:n")) != -1) { switch(c) { case 'H': printf("xorpair: %04x\n", do_hash_file(optarg)); return 0; case 'x': return dump_config(); #if HAVE_USB case 'c': return console_prompt(); case 'b': boot_cmdline = optarg; break; case 'S': subverstr = optarg; break; case 'n': nomode = 1; break; case 'U': usb_mode = atoi(optarg); break; case 'F': fiasco_image = optarg; break; case 'd': sscanf(optarg, "%04hx:%04hx", &supported_devices[SUPPORTED_DEVICES-2].vendor_id, &supported_devices[SUPPORTED_DEVICES-2].product_id); supported_devices[SUPPORTED_DEVICES-2].name = strdup("user"); break; case 'D': root_device = atoi(optarg); break; case 'f': if (!strcmp(optarg,"help")) { printf("* Flags are composed of:\n"); printf(" 0x02 - disable OMAP watchdog (possibly)\n"); printf(" 0x04 - disable RETU watchdog (possibly)\n"); printf(" 0x08 - disable lifeguard reset\n"); printf(" 0x10 - enable serial console\n"); printf(" 0x20 - disable USB timeout\n"); exit(1); } rd_flags = (unsigned short) strtoul(optarg, NULL, 16); break; case 'r': rd_mode = atoi(optarg); break; case 'l': list_valid_devices(); return 0; case 'p': add_piece(optarg); break; case 'i': info = 1; break; case 'R': moboreboot = 1; break; #endif case 'e': reverseto = optarg; break; case 's': return console(optarg); case 'u': fiasco_image = optarg; unpack = 1; break; case 'Q': qmode = 1; break; case 'P': return fiasco_pack(optind, argv); case 'I': printf("%s: %s\n", fpid_file(optarg), optarg); identify = 1; break; case 'C': return check_badblocks(optarg); case 'v': verbose = 1; break; case 'h': show_usage(); break; case 'V': printf("%s\n", VERSION); return 0; } } if (qmode) return queue_mode(); if (!unpack && fiasco_image) return fiasco_flash(fiasco_image); if (identify) return 0; // flags ok? if ( (fiasco_image == NULL) && (boot_cmdline == NULL) && (reverseto == NULL) && (pcs_n == 0) && (rd_flags == -1) && (rd_mode == -1) && (info == 0) && (moboreboot == 0) && (usb_mode == -1) && (root_device == -1)) { printf("# The Free Fiasco Firmware Flasher v"VERSION"\n" "0xFFFF [-chinlQRvVx] [-C mtd-dev] [-d vid:pid] [-D 0|1|2] [-e path] [-f flags]\n" " [-F fiasco] [-H hash-file] [-I piece] [-p [piece%%]file]] [-r 0|1] [-S subver]\n" " [-s serial-dev] [-u fiasco-image] [-U 0|1] | [-P new-fiasco] [piece1] [2] ..\n"); return 1; } if (unpack) { if (reverseto) chdir(reverseto); unpack_fiasco_image(fiasco_image); return 0; } if (reverseto) { reverse_extract_pieces(reverseto); return 0; } #if HAVE_USB if (connect_via_usb()) { fprintf(stderr, "Cannot connect to device. It is possibly not in boot stage.\n"); return 0; } // if (info) cmd_info(""); if (pcs_n) { char version[64]; check_nolo_order(); get_sw_version(); get_hw_revision(version, 44); if (subverstr == NULL) { char *p = strstr(version, "hw_rev:"); if (p) { subverstr = strdup(p+7); // TODO: delimit string by comma printf("SubVersionString autodetected: '%s'\n", subverstr); } } get_nolo_version(); for(c=0;c