From: Marco Felsch <m.felsch@pengutronix.de>
To: John Watts <contact@jookia.org>
Cc: barebox@lists.infradead.org
Subject: Re: [PATCH v3 3/4] ARM: novena: Read Ethernet MAC address from EEPROM
Date: Mon, 30 Jan 2023 21:04:43 +0100 [thread overview]
Message-ID: <20230130200443.mybfhzrcsywqw65v@pengutronix.de> (raw)
In-Reply-To: <20230129232758.1799987-4-contact@jookia.org>
Hi John,
thanks for the patch.
On 23-01-30, John Watts wrote:
> The Novena has an EEPROM used for storing information about the board,
> including the Ethernet MAC address.
>
> The reference for the EEPROM fields is the novena-eeprom source code.
>
> Signed-off-by: John Watts <contact@jookia.org>
> ---
> arch/arm/boards/novena/board.c | 85 ++++++++++++++++++++++++++++++++++
> arch/arm/dts/imx6q-novena.dts | 14 ++++++
> 2 files changed, 99 insertions(+)
>
> diff --git a/arch/arm/boards/novena/board.c b/arch/arm/boards/novena/board.c
> index e41ea10f8d..b6c59aff44 100644
> --- a/arch/arm/boards/novena/board.c
> +++ b/arch/arm/boards/novena/board.c
> @@ -3,9 +3,94 @@
>
> #include <common.h>
> #include <deep-probe.h>
> +#include <fs.h>
> +#include <libfile.h>
> +#include <net.h>
> +
> +struct novena_eeprom {
> + uint8_t signature[6]; /* 'Novena' */
> + uint8_t version; /* 1 or 2, not checked */
> + uint8_t page_size; /* v2 only: EEPROM read/write page */
> + uint32_t serial; /* 32-bit serial number */
> + uint8_t mac[6]; /* Gigabit MAC address */
> + uint16_t features; /* features */
> + /* ... extra fields omitted ... */
> +} __packed;
> +
> +static void power_on_audio_codec(void)
> +{
> + int rc = of_devices_ensure_probed_by_name("regulator-audio-codec");
> +
> + if (rc < 0)
> + pr_err("Unable to power on audio codec: %s\n", strerror(-rc));
> +}
> +
> +static struct novena_eeprom *novena_read_eeprom(void)
> +{
> + size_t read;
> + loff_t max = sizeof(struct novena_eeprom);
> + void *eeprom;
> + int rc;
> +
> + /*
> + * When powered off the audio codec pulls down the EEPROM's I2C line.
> + * Power it on so we can actually read data.
> + */
> + power_on_audio_codec();
> +
> + rc = of_device_ensure_probed_by_alias("eeprom0");
> + if (rc < 0) {
> + pr_err("Unable to probe eeprom0: %s\n", strerror(-rc));
> + return NULL;
> + }
> +
> + rc = read_file_2("/dev/eeprom0", &read, &eeprom, max);
> +
> + if (rc < 0 && rc != -EFBIG) {
> + pr_err("Unable to read Novena EEPROM: %s\n", strerror(-rc));
> + return NULL;
> + } else if (read != max) {
> + pr_err("Short read from Novena EEPROM?\n");
> + free(eeprom);
This will trigger a double free since you're use of an unconditional
free() during probe().
Regards,
Marco
> + return NULL;
> + }
> +
> + return eeprom;
> +}
> +
> +static bool novena_check_eeprom(struct novena_eeprom *eeprom)
> +{
> + char *sig = eeprom->signature;
> + size_t size = sizeof(eeprom->signature);
> +
> + if (memcmp("Novena", sig, size) != 0) {
> + pr_err("Unknown Novena EEPROM signature\n");
> + return false;
> + }
> +
> + return true;
> +}
> +
> +static void novena_set_mac(struct novena_eeprom *eeprom)
> +{
> + struct device_node *dnode;
> +
> + dnode = of_find_node_by_alias(of_get_root_node(), "ethernet0");
> + if (dnode)
> + of_eth_register_ethaddr(dnode, eeprom->mac);
> + else
> + pr_err("Unable to find ethernet node\n");
> +}
>
> static int novena_probe(struct device *dev)
> {
> + struct novena_eeprom *eeprom = novena_read_eeprom();
> +
> + if (eeprom && novena_check_eeprom(eeprom))
> + novena_set_mac(eeprom);
> +
> + free(eeprom);
> +
> return 0;
> }
>
> diff --git a/arch/arm/dts/imx6q-novena.dts b/arch/arm/dts/imx6q-novena.dts
> index 12bade849c..c614ed3cbb 100644
> --- a/arch/arm/dts/imx6q-novena.dts
> +++ b/arch/arm/dts/imx6q-novena.dts
> @@ -2,3 +2,17 @@
> // SPDX-FileCopyrightText: 2023 John Watts <contact@jookia.org>
>
> #include <arm/imx6q-novena.dts>
> +
> +/ {
> + aliases {
> + eeprom0 = &eeprom;
> + };
> +};
> +
> +&i2c3 {
> + eeprom: eeprom@56 {
> + compatible = "24c512";
> + reg = <0x56>;
> + pagesize = <128>;
> + };
> +};
> --
> 2.39.1
>
>
>
next prev parent reply other threads:[~2023-01-30 20:06 UTC|newest]
Thread overview: 52+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-01-22 17:51 [PATCH 0/5] Add support for the Kosagi Novena board John Watts
2023-01-22 17:51 ` [PATCH 1/5] ARM: novena: Add " John Watts
2023-01-23 9:20 ` Sascha Hauer
2023-01-22 17:51 ` [PATCH 2/5] ARM: novena: Setup RAM using static configuration John Watts
2023-01-22 17:51 ` [PATCH 3/5] ARM: novena: Require the PFUZE regulator John Watts
2023-01-22 17:51 ` [PATCH 4/5] ARM: novena: Read Ethernet MAC address from EEPROM John Watts
2023-01-23 9:33 ` Sascha Hauer
2023-01-23 9:55 ` John Watts
2023-01-24 18:35 ` John Watts
2023-01-25 8:04 ` Sascha Hauer
2023-01-25 8:11 ` John Watts
2023-01-25 8:19 ` Sascha Hauer
2023-01-25 13:31 ` John Watts
2023-01-25 13:48 ` Ahmad Fatoum
2023-01-25 14:04 ` John Watts
2023-01-25 14:16 ` Ahmad Fatoum
2023-01-25 14:28 ` John Watts
2023-01-25 14:33 ` Ahmad Fatoum
2023-01-25 14:50 ` John Watts
2023-01-25 15:42 ` Sascha Hauer
2023-01-25 16:13 ` John Watts
2023-01-22 17:51 ` [PATCH 5/5] ARM: novena: Use DDR3 information from SPD EEPROM John Watts
2023-01-22 23:20 ` John Watts
2023-01-25 16:42 ` [PATCH v2 0/4] Add support for the Kosagi Novena board John Watts
2023-01-25 16:42 ` [PATCH v2 1/4] ARM: novena: Add " John Watts
2023-01-25 19:33 ` Marco Felsch
2023-01-26 7:25 ` Sascha Hauer
2023-01-26 7:50 ` John Watts
2023-01-26 9:13 ` Marco Felsch
2023-01-25 16:42 ` [PATCH v2 2/4] ARM: novena: Setup RAM using static configuration John Watts
2023-01-25 19:39 ` Marco Felsch
2023-01-26 7:54 ` John Watts
2023-01-26 8:11 ` Sascha Hauer
2023-01-26 9:14 ` Marco Felsch
2023-01-25 16:42 ` [PATCH v2 3/4] ARM: novena: Read Ethernet MAC address from EEPROM John Watts
2023-01-25 20:07 ` Marco Felsch
2023-01-26 8:05 ` John Watts
2023-01-26 9:07 ` Marco Felsch
2023-01-25 16:42 ` [PATCH v2 4/4] ARM: novena: Use DDR3 information from SPD EEPROM John Watts
2023-01-29 23:27 ` [PATCH v3 0/4] Add support for the Kosagi Novena board John Watts
2023-01-29 23:27 ` [PATCH v3 1/4] ARM: novena: Add " John Watts
2023-01-30 20:13 ` Marco Felsch
2023-01-30 20:26 ` John Watts
2023-01-31 9:45 ` Marco Felsch
2023-01-29 23:27 ` [PATCH v3 2/4] ARM: novena: Setup RAM using static configuration John Watts
2023-01-29 23:27 ` [PATCH v3 3/4] ARM: novena: Read Ethernet MAC address from EEPROM John Watts
2023-01-30 20:04 ` Marco Felsch [this message]
2023-01-30 20:25 ` John Watts
2023-01-31 9:29 ` Marco Felsch
2023-01-29 23:28 ` [PATCH v3 4/4] ARM: novena: Use DDR3 information from SPD EEPROM John Watts
2023-01-30 20:18 ` Marco Felsch
2023-01-30 20:41 ` John Watts
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=20230130200443.mybfhzrcsywqw65v@pengutronix.de \
--to=m.felsch@pengutronix.de \
--cc=barebox@lists.infradead.org \
--cc=contact@jookia.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