#include #include #include #include #include #include #include "xscom.h" static void print_usage(void) { printf("usage: putscom [-c|--chip chip-id] addr value\n"); printf(" putscom -v|--version\n"); } #define VERSION_STR _str(VERSION) #define _str(s) __str(s) #define __str(s) #s int main(int argc, char *argv[]) { uint64_t val = -1ull, addr = -1ull; uint32_t def_chip, chip_id = 0xffffffff; bool show_help = false, got_addr = false, got_val = false; bool show_version = false; bool no_work = false; int rc; while(1) { static struct option long_opts[] = { {"chip", required_argument, NULL, 'c'}, {"help", no_argument, NULL, 'h'}, {"version", no_argument, NULL, 'v'}, }; int c, oidx = 0; c = getopt_long(argc, argv, "-c:hv", long_opts, &oidx); if (c == EOF) break; switch(c) { case 1: if (!got_addr) { addr = strtoull(optarg, NULL, 16); got_addr = true; break; } val = strtoull(optarg, NULL, 16); got_val = true; break; case 'c': chip_id = strtoul(optarg, NULL, 0); break; case 'v': show_version = true; break; case 'h': show_help = true; break; default: exit(1); } } if (!got_addr || !got_val) no_work = true; if (no_work && !show_version && !show_help) { fprintf(stderr, "Invalid or missing address/value\n"); print_usage(); exit(1); } if (show_version) printf("xscom utils version %s\n", VERSION_STR); if (show_help) print_usage(); if (no_work) return 0; def_chip = xscom_init(); if (def_chip == 0xffffffff) { fprintf(stderr, "No valid XSCOM chip found\n"); exit(1); } if (chip_id == 0xffffffff) chip_id = def_chip; rc = xscom_write(chip_id, addr, val); if (rc) { fprintf(stderr,"Error %d writing XSCOM\n", rc); exit(1); } rc = xscom_read(chip_id, addr, &val); if (rc) { fprintf(stderr,"Error %d reading XSCOM\n", rc); exit(1); } printf("%" PRIx64 "\n", val); return 0; }