X-Git-Url: http://git.ozlabs.org/?p=petitboot;a=blobdiff_plain;f=discover%2Fplatform-powerpc.c;h=d1d4191ede7df64f485e75d59e6826237d7525b7;hp=4eb28057c9fb6c7513a05c315cda8599c71cdc7c;hb=37bff93c8b0a71432613f41f2319dc073ca64619;hpb=8cd03c27d3875beb15a489f1f05d0528408cef20;ds=sidebyside diff --git a/discover/platform-powerpc.c b/discover/platform-powerpc.c index 4eb2805..d1d4191 100644 --- a/discover/platform-powerpc.c +++ b/discover/platform-powerpc.c @@ -3,6 +3,7 @@ #include #include #include +#include #include #include #include @@ -16,7 +17,7 @@ #include "platform.h" static const char *partition = "common"; -static const char *sysparams_dir = "/sys/firmware/opal/sysparams"; +static const char *sysparams_dir = "/sys/firmware/opal/sysparams/"; struct param { char *name; @@ -540,16 +541,24 @@ static int read_bootdev_sysparam(const char *name, uint8_t *val) strcat(path, name); fd = open(path, O_RDONLY); - if (fd < 0) + if (fd < 0) { + pb_debug("powerpc: can't access sysparam %s\n", + name); return -1; + } rc = read(fd, buf, sizeof(buf)); close(fd); /* bootdev definitions should only be one byte in size */ - if (rc != 1) + if (rc != 1) { + pb_debug("powerpc: sysparam %s read returned %d\n", + name, rc); return -1; + } + + pb_debug("powerpc: sysparam %s: 0x%02x\n", name, buf[0]); switch (buf[0]) { default: @@ -565,6 +574,46 @@ static int read_bootdev_sysparam(const char *name, uint8_t *val) return 0; } +static int write_bootdev_sysparam(const char *name, uint8_t val) +{ + char path[50]; + int fd, rc; + + strcpy(path, sysparams_dir); + assert(strlen(name) < sizeof(path) - strlen(path)); + strcat(path, name); + + fd = open(path, O_WRONLY); + if (fd < 0) { + pb_debug("powerpc: can't access sysparam %s for writing\n", + name); + return -1; + } + + for (;;) { + errno = 0; + rc = write(fd, &val, sizeof(val)); + if (rc == sizeof(val)) { + rc = 0; + break; + } + + if (rc <= 0 && errno != EINTR) { + pb_log("powerpc: error updating sysparam %s: %s", + name, strerror(errno)); + rc = -1; + break; + } + } + + close(fd); + + if (!rc) + pb_debug("powerpc: set sysparam %s: 0x%02x\n", name, val); + + return rc; +} + static void parse_opal_sysparams(struct config *config) { uint8_t next_bootdev, default_bootdev; @@ -581,10 +630,12 @@ static void parse_opal_sysparams(struct config *config) if (!next_valid && !default_valid) return; - if (!next_valid) + if (next_valid) { + /* invalidate next-boot-device setting */ + write_bootdev_sysparam("next-boot-device", 0xff); + } else { next_bootdev = default_bootdev; - - /* todo: copy default to next */ + } switch (next_bootdev) { case IPMI_BOOTDEV_NONE: