X-Git-Url: http://git.ozlabs.org/?p=petitboot;a=blobdiff_plain;f=discover%2Fplatform-powerpc.c;h=98dc045b2c656cf85f0130b42d237dcbbf639d01;hp=d1d4191ede7df64f485e75d59e6826237d7525b7;hb=71da0c6cb80e3708213a08c06e71f099534bcd2a;hpb=bb3ddd63720501f451d3f2797f315c25efd3bd4a diff --git a/discover/platform-powerpc.c b/discover/platform-powerpc.c index d1d4191..98dc045 100644 --- a/discover/platform-powerpc.c +++ b/discover/platform-powerpc.c @@ -9,6 +9,7 @@ #include #include +#include #include #include #include @@ -34,6 +35,8 @@ static const char *known_params[] = { "auto-boot?", "petitboot,network", "petitboot,timeout", + "petitboot,bootdev", + "petitboot,debug?", NULL, }; @@ -344,8 +347,8 @@ static int parse_one_dns_config(struct config *config, static void populate_network_config(struct platform_powerpc *platform, struct config *config) { + char *val, *saveptr = NULL; const char *cval; - char *val; int i; cval = get_param(platform, "petitboot,network"); @@ -355,7 +358,7 @@ static void populate_network_config(struct platform_powerpc *platform, val = talloc_strdup(config, cval); for (i = 0; ; i++) { - char *tok, *saveptr; + char *tok; tok = strtok_r(i == 0 ? val : NULL, " ", &saveptr); if (!tok) @@ -371,6 +374,32 @@ static void populate_network_config(struct platform_powerpc *platform, talloc_free(val); } +static void populate_bootdev_config(struct platform_powerpc *platform, + struct config *config) + +{ + const char *val; + + config->boot_device = NULL; + + val = get_param(platform, "petitboot,bootdev"); + if (!val || !strlen(val)) + return; + + if (!strncmp(val, "uuid:", strlen("uuid:"))) { + config->boot_device = talloc_strdup(config, + val + strlen("uuid:")); + + } else if (!strncmp(val, "mac:", strlen("mac:"))) { + config->boot_device = talloc_strdup(config, + val + strlen("mac:")); + + } else { + pb_log("bootdev config is in an unknown format " + "(expected uuid:... or mac:...)"); + } +} + static void populate_config(struct platform_powerpc *platform, struct config *config) { @@ -394,6 +423,13 @@ static void populate_config(struct platform_powerpc *platform, } populate_network_config(platform, config); + + populate_bootdev_config(platform, config); + + if (!config->debug) { + val = get_param(platform, "petitboot,debug?"); + config->debug = val && !strcmp(val, "true"); + } } static char *iface_config_str(void *ctx, struct interface_config *config) @@ -481,6 +517,21 @@ static void update_network_config(struct platform_powerpc *platform, talloc_free(val); } +static void update_bootdev_config(struct platform_powerpc *platform, + struct config *config) +{ + char *val, *tmp = NULL; + + if (!config->boot_device) + val = ""; + else + tmp = val = talloc_asprintf(platform, + "uuid:%s", config->boot_device); + + update_string_config(platform, "petitboot,bootdev", val); + talloc_free(tmp); +} + static int update_config(struct platform_powerpc *platform, struct config *config, struct config *defaults) { @@ -505,6 +556,8 @@ static int update_config(struct platform_powerpc *platform, update_network_config(platform, config); + update_bootdev_config(platform, config); + return write_nvram(platform); } @@ -526,6 +579,7 @@ enum ipmi_bootdev { IPMI_BOOTDEV_NONE = 0x00, IPMI_BOOTDEV_NETWORK = 0x01, IPMI_BOOTDEV_DISK = 0x2, + IPMI_BOOTDEV_SAFE = 0x3, IPMI_BOOTDEV_CDROM = 0x5, IPMI_BOOTDEV_SETUP = 0x6, }; @@ -566,6 +620,7 @@ static int read_bootdev_sysparam(const char *name, uint8_t *val) case IPMI_BOOTDEV_NONE: case IPMI_BOOTDEV_NETWORK: case IPMI_BOOTDEV_DISK: + case IPMI_BOOTDEV_SAFE: case IPMI_BOOTDEV_CDROM: case IPMI_BOOTDEV_SETUP: *val = buf[0]; @@ -652,6 +707,10 @@ static void parse_opal_sysparams(struct config *config) case IPMI_BOOTDEV_SETUP: config->autoboot_enabled = false; break; + case IPMI_BOOTDEV_SAFE: + config->autoboot_enabled = false; + config->safe_mode = true; + break; } } @@ -686,13 +745,30 @@ static int save_config(struct platform *p, struct config *config) return rc; } +static int get_sysinfo(struct platform *p, struct system_info *sysinfo) +{ + struct platform_powerpc *platform = p->platform_data; + int len, rc; + char *buf; + + rc = read_file(platform, "/proc/device_tree/model", &buf, &len); + if (rc == 0) + sysinfo->type = talloc_steal(sysinfo, buf); + + rc = read_file(platform, "/proc/device_tree/system-id", &buf, &len); + if (rc == 0) + sysinfo->identifier = talloc_steal(sysinfo, buf); + + return 0; +} + static bool probe(struct platform *p, void *ctx) { struct platform_powerpc *platform; struct stat statbuf; int rc; - /* we need a device tree and a working nvram binary */ + /* we need a device tree */ rc = stat("/proc/device-tree", &statbuf); if (rc) return false; @@ -700,10 +776,6 @@ static bool probe(struct platform *p, void *ctx) if (!S_ISDIR(statbuf.st_mode)) return false; - rc = process_run_simple(ctx, "nvram", "--print-config", NULL); - if (!WIFEXITED(rc) || WEXITSTATUS(rc) != 0) - return false; - platform = talloc(ctx, struct platform_powerpc); list_init(&platform->params); @@ -711,12 +783,14 @@ static bool probe(struct platform *p, void *ctx) return true; } + static struct platform platform_powerpc = { .name = "powerpc", .dhcp_arch_id = 0x000e, .probe = probe, .load_config = load_config, .save_config = save_config, + .get_sysinfo = get_sysinfo, }; register_platform(platform_powerpc);