From: Andrey Smirnov <andrew.smirnov@gmail.com>
To: barebox@lists.infradead.org
Cc: Andrey Smirnov <andrew.smirnov@gmail.com>
Subject: [PATCH v2 2/4] bootsource: Add bootsource alias name API
Date: Wed, 16 May 2018 13:18:25 -0700 [thread overview]
Message-ID: <20180516201827.6430-3-andrew.smirnov@gmail.com> (raw)
In-Reply-To: <20180516201827.6430-1-andrew.smirnov@gmail.com>
Add API allowing to query and override the name of the alias pointing
at DTB node representing current bootsource.
Signed-off-by: Andrey Smirnov <andrew.smirnov@gmail.com>
---
common/bootsource.c | 74 ++++++++++++++++++++++++++++++++++++++++++++
include/bootsource.h | 2 ++
2 files changed, 76 insertions(+)
diff --git a/common/bootsource.c b/common/bootsource.c
index 78ecd8267..ed435c051 100644
--- a/common/bootsource.c
+++ b/common/bootsource.c
@@ -41,6 +41,80 @@ static const char *bootsource_str[] = {
static enum bootsource bootsource = BOOTSOURCE_UNKNOWN;
static int bootsource_instance = BOOTSOURCE_INSTANCE_UNKNOWN;
+const char *bootsource_alias_name = NULL;
+
+/**
+ * bootsource_get_alias_name() - Get the name of the bootsource alias
+ *
+ * This function will return newly allocated string containing name of
+ * the alias that is expected to point to DTB node corresponding to
+ * detected bootsource
+ *
+ * NOTE: Caller is expected to free() the string allocated by this
+ * function
+ */
+char *bootsource_get_alias_name(void)
+{
+ int instance = bootsource_instance;
+ const char *stem;
+
+ /*
+ * If alias name was overridden via
+ * bootsource_set_alias_name() return that value without
+ * asking any questions.
+ *
+ * Note that we have to strdup() the result to make it
+ * free-able.
+ */
+ if (bootsource_alias_name)
+ return strdup(bootsource_alias_name);
+
+ if (bootsource >= ARRAY_SIZE(bootsource_str) ||
+ bootsource == BOOTSOURCE_UNKNOWN)
+ return NULL;
+
+ switch (bootsource) {
+ case BOOTSOURCE_I2C_EEPROM: /* FALLTHROUGH */
+ case BOOTSOURCE_SPI_EEPROM:
+ /*
+ * For I2C and SPI EEPROMs we set the stem to be 'i2c'
+ * and 'spi' correspondingly. The resulting alias will
+ * be pointing at the controller said EEPROM is
+ * attached to.
+ *
+ * NOTE: This code assumes single bootable EEPROM per
+ * controller
+ */
+ BUILD_BUG_ON(BOOTSOURCE_SPI != BOOTSOURCE_SPI_EEPROM - 1);
+ BUILD_BUG_ON(BOOTSOURCE_I2C != BOOTSOURCE_I2C_EEPROM - 1);
+
+ stem = bootsource_str[bootsource - 1];
+ break;
+ case BOOTSOURCE_SERIAL: /* FALLTHROUGH */
+ case BOOTSOURCE_I2C: /* FALLTHROUGH */
+ case BOOTSOURCE_MMC: /* FALLTHROUGH */
+ case BOOTSOURCE_SPI: /* FALLTHROUGH */
+ case BOOTSOURCE_CAN:
+ stem = bootsource_str[bootsource];
+ break;
+ default:
+ return NULL;
+ }
+
+ /*
+ * Assume 0 if instance was not specified by bootsource
+ * detection code.
+ */
+ if (instance == BOOTSOURCE_INSTANCE_UNKNOWN)
+ instance = 0;
+
+ return basprintf("%s%d", stem, instance);
+}
+
+void bootsource_set_alias_name(const char *name)
+{
+ bootsource_alias_name = name;
+}
void bootsource_set(enum bootsource src)
{
diff --git a/include/bootsource.h b/include/bootsource.h
index 064f6b9a2..29347aaeb 100644
--- a/include/bootsource.h
+++ b/include/bootsource.h
@@ -25,5 +25,7 @@ enum bootsource bootsource_get(void);
int bootsource_get_instance(void);
void bootsource_set(enum bootsource src);
void bootsource_set_instance(int instance);
+void bootsource_set_alias_name(const char *name);
+char *bootsource_get_alias_name(void);
#endif /* __BOOTSOURCE_H__ */
--
2.17.0
_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox
next prev parent reply other threads:[~2018-05-16 20:19 UTC|newest]
Thread overview: 9+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-05-16 20:18 [PATCH v2 0/4] Pass reset and boot sources via /chosen node Andrey Smirnov
2018-05-16 20:18 ` [PATCH v2 1/4] of: Make of_property_get_value() public Andrey Smirnov
2018-05-16 20:18 ` Andrey Smirnov [this message]
2018-05-17 9:43 ` [PATCH v2 2/4] bootsource: Add bootsource alias name API Sascha Hauer
2018-05-17 19:35 ` Andrey Smirnov
2018-05-16 20:18 ` [PATCH v2 3/4] common: oftree: Pass bootsource and bootsource instance to kernel Andrey Smirnov
2018-05-17 9:52 ` Sascha Hauer
2018-05-17 20:20 ` Andrey Smirnov
2018-05-16 20:18 ` [PATCH v2 4/4] common: oftree: Pass reset source and reset source " Andrey Smirnov
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20180516201827.6430-3-andrew.smirnov@gmail.com \
--to=andrew.smirnov@gmail.com \
--cc=barebox@lists.infradead.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox