All of lore.kernel.org
 help / color / mirror / Atom feed
From: Sean Anderson <sean.anderson@seco.com>
To: u-boot@lists.denx.de, Simon Glass <sjg@chromium.org>
Cc: Heinrich Schuchardt <xypron.glpk@gmx.de>,
	Ramon Fried <rfried.dev@gmail.com>,
	Joe Hershberger <joe.hershberger@ni.com>,
	Tom Rini <trini@konsulko.com>, Mario Six <mario.six@gdsys.cc>,
	Sean Anderson <sean.anderson@seco.com>
Subject: [PATCH v2 11/11] test: Load mac address using misc device
Date: Mon,  4 Apr 2022 15:30:40 -0400	[thread overview]
Message-ID: <20220404193040.2305153-12-sean.anderson@seco.com> (raw)
In-Reply-To: <20220404193040.2305153-1-sean.anderson@seco.com>

This loads a mac address using a misc device using the nvmem interface.

Signed-off-by: Sean Anderson <sean.anderson@seco.com>
---

(no changes since v1)

 arch/sandbox/dts/test.dts   | 9 ++++++++-
 drivers/misc/misc_sandbox.c | 3 +++
 2 files changed, 11 insertions(+), 1 deletion(-)

diff --git a/arch/sandbox/dts/test.dts b/arch/sandbox/dts/test.dts
index 2ea4e2365c..c43bd82796 100644
--- a/arch/sandbox/dts/test.dts
+++ b/arch/sandbox/dts/test.dts
@@ -514,7 +514,8 @@
 	eth_5: eth@10003000 {
 		compatible = "sandbox,eth";
 		reg = <0x10003000 0x1000>;
-		mac-address = [ 02 00 11 22 33 46 ];
+		nvmem-cells = <&eth5_addr>;
+		nvmem-cell-names = "mac-address";
 	};
 
 	eth_3: sbe5 {
@@ -887,7 +888,13 @@
 	};
 
 	misc-test {
+		#address-cells = <1>;
+		#size-cells = <1>;
 		compatible = "sandbox,misc_sandbox";
+
+		eth5_addr: mac-address@10 {
+			reg = <0x10 6>;
+		};
 	};
 
 	mmc2 {
diff --git a/drivers/misc/misc_sandbox.c b/drivers/misc/misc_sandbox.c
index 0e4292fd0a..31cde2dbac 100644
--- a/drivers/misc/misc_sandbox.c
+++ b/drivers/misc/misc_sandbox.c
@@ -112,8 +112,11 @@ static const struct misc_ops misc_sandbox_ops = {
 int misc_sandbox_probe(struct udevice *dev)
 {
 	struct misc_sandbox_priv *priv = dev_get_priv(dev);
+	/* For eth5 */
+	const u8 mac[] = { 0x02, 0x00, 0x11, 0x22, 0x33, 0x46 };
 
 	priv->enabled = true;
+	memcpy(&priv->mem[16], mac, sizeof(mac));
 
 	return 0;
 }
-- 
2.35.1.1320.gc452695387.dirty


      parent reply	other threads:[~2022-04-04 19:34 UTC|newest]

Thread overview: 14+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-04-04 19:30 [PATCH v2 00/11] Add support for NVMEM API Sean Anderson
2022-04-04 19:30 ` [PATCH v2 01/11] sandbox: net: Remove fake-host-hwaddr Sean Anderson
2022-04-04 19:30 ` [PATCH v2 02/11] sandbox: Remove eth2addr from environment Sean Anderson
2022-04-04 19:30 ` [PATCH v2 03/11] test: eth: Add test for ethernet addresses Sean Anderson
2022-04-18 17:03   ` Tom Rini
2022-04-18 18:27     ` Sean Anderson
2022-04-04 19:30 ` [PATCH v2 04/11] sandbox: Move some mac addresses to device tree Sean Anderson
2022-04-04 19:30 ` [PATCH v2 05/11] misc: i2c_eeprom: Make i2c_eeprom_write use a const buf Sean Anderson
2022-04-04 19:30 ` [PATCH v2 06/11] misc: Add support for nvmem cells Sean Anderson
2022-04-04 19:30 ` [PATCH v2 07/11] sandbox: Enable NVMEM Sean Anderson
2022-04-04 19:30 ` [PATCH v2 08/11] net: Add support for reading mac addresses from nvmem cells Sean Anderson
2022-04-04 19:30 ` [PATCH v2 09/11] test: Load mac address with i2c eeprom Sean Anderson
2022-04-04 19:30 ` [PATCH v2 10/11] test: Load mac address using RTC Sean Anderson
2022-04-04 19:30 ` Sean Anderson [this message]

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=20220404193040.2305153-12-sean.anderson@seco.com \
    --to=sean.anderson@seco.com \
    --cc=joe.hershberger@ni.com \
    --cc=mario.six@gdsys.cc \
    --cc=rfried.dev@gmail.com \
    --cc=sjg@chromium.org \
    --cc=trini@konsulko.com \
    --cc=u-boot@lists.denx.de \
    --cc=xypron.glpk@gmx.de \
    /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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.