From: Mattijs Korpershoek <mkorpershoek@kernel.org>
To: "Guillaume La Roque (TI.com)" <glaroque@baylibre.com>,
u-boot@lists.denx.de, Anshul Dalal <anshuld@ti.com>,
Bryan Brattlof <bb@ti.com>
Cc: Tom Rini <trini@konsulko.com>,
Garrett Giordano <ggiordano@phytec.com>,
Wadim Egorov <w.egorov@phytec.de>,
Neha Malcom Francis <n-francis@ti.com>,
Mattijs Korpershoek <mkorpershoek@kernel.org>,
Ilias Apalodimas <ilias.apalodimas@linaro.org>,
Santhosh Kumar K <s-k6@ti.com>,
Jonathan Humphreys <j-humphreys@ti.com>,
Sam Protsenko <semen.protsenko@linaro.org>,
Devarsh Thakkar <devarsht@ti.com>,
Prasanth Babu Mantena <p-mantena@ti.com>,
Judith Mendez <jm@ti.com>,
Marek Vasut <marek.vasut+renesas@mailbox.org>,
Dhruva Gole <d-gole@ti.com>, Andrew Davis <afd@ti.com>,
Vignesh Raghavendra <vigneshr@ti.com>,
Neil Armstrong <neil.armstrong@linaro.org>,
Aashvij Shenai <a-shenai@ti.com>, Peng Fan <peng.fan@nxp.com>,
"Guillaume La Roque (TI.com)" <glaroque@baylibre.com>
Subject: Re: [PATCH v2 3/4] board: am64x: Use generic AM6x board detection functions
Date: Mon, 27 Oct 2025 17:15:24 +0100 [thread overview]
Message-ID: <87sef4jp7n.fsf@kernel.org> (raw)
In-Reply-To: <20251024-am62xeeprom-v2-3-0e372347e7d4@baylibre.com>
Hi Guillaume,
Thank you for the patch.
On Fri, Oct 24, 2025 at 16:17, "Guillaume La Roque (TI.com)" <glaroque@baylibre.com> wrote:
> Replace the board-specific implementation of do_board_detect() and
> setup_serial() with calls to the generic do_board_detect_am6() and
> setup_serial_am6() functions.
>
> The generic function provides the same functionality with
> additional fallback logic to try alternate EEPROM addresses.
The am64x board-specific one also has the fallback logic.
Since that's a minor commit message nitpick:
Reviewed-by: Mattijs Korpershoek <mkorpershoek@kernel.org>
>
> Signed-off-by: Guillaume La Roque (TI.com) <glaroque@baylibre.com>
> ---
> board/ti/am64x/evm.c | 45 +++------------------------------------------
> 1 file changed, 3 insertions(+), 42 deletions(-)
>
> diff --git a/board/ti/am64x/evm.c b/board/ti/am64x/evm.c
> index f9bb593e4c6..3688cf2ca25 100644
> --- a/board/ti/am64x/evm.c
> +++ b/board/ti/am64x/evm.c
> @@ -114,30 +114,11 @@ void spl_perform_board_fixups(struct spl_image_info *spl_image)
> #endif
>
> #ifdef CONFIG_TI_I2C_BOARD_DETECT
> -int do_board_detect(void)
> -{
> - int ret;
> -
> - ret = ti_i2c_eeprom_am6_get_base(CONFIG_EEPROM_BUS_ADDRESS,
> - CONFIG_EEPROM_CHIP_ADDRESS);
> - if (ret) {
> - printf("EEPROM not available at 0x%02x, trying to read at 0x%02x\n",
> - CONFIG_EEPROM_CHIP_ADDRESS, CONFIG_EEPROM_CHIP_ADDRESS + 1);
> - ret = ti_i2c_eeprom_am6_get_base(CONFIG_EEPROM_BUS_ADDRESS,
> - CONFIG_EEPROM_CHIP_ADDRESS + 1);
> - if (ret)
> - pr_err("Reading on-board EEPROM at 0x%02x failed %d\n",
> - CONFIG_EEPROM_CHIP_ADDRESS + 1, ret);
> - }
> -
> - return ret;
> -}
> -
> int checkboard(void)
> {
> struct ti_am6_eeprom *ep = TI_AM6_EEPROM_DATA;
>
> - if (!do_board_detect())
> + if (!do_board_detect_am6())
> printf("Board: %s rev %s\n", ep->name, ep->version);
>
> return 0;
> @@ -154,7 +135,7 @@ static void setup_board_eeprom_env(void)
> {
> char *name = "am64x_gpevm";
>
> - if (do_board_detect())
> + if (do_board_detect_am6())
> goto invalid_eeprom;
>
> if (board_is_am64x_gpevm())
> @@ -169,26 +150,6 @@ invalid_eeprom:
> set_board_info_env_am6(name);
> ti_set_fdt_env(name, ti_am64_evm_fdt_map);
> }
> -
> -static void setup_serial(void)
> -{
> - struct ti_am6_eeprom *ep = TI_AM6_EEPROM_DATA;
> - unsigned long board_serial;
> - char *endp;
> - char serial_string[17] = { 0 };
> -
> - if (env_get("serial#"))
> - return;
> -
> - board_serial = hextoul(ep->serial, &endp);
> - if (*endp != '\0') {
> - pr_err("Error: Can't set serial# to %s\n", ep->serial);
> - return;
> - }
> -
> - snprintf(serial_string, sizeof(serial_string), "%016lx", board_serial);
> - env_set("serial#", serial_string);
> -}
> #endif
> #endif
>
> @@ -199,7 +160,7 @@ int board_late_init(void)
> struct ti_am6_eeprom *ep = TI_AM6_EEPROM_DATA;
>
> setup_board_eeprom_env();
> - setup_serial();
> + setup_serial_am6();
> /*
> * The first MAC address for ethernet a.k.a. ethernet0 comes from
> * efuse populated via the am654 gigabit eth switch subsystem driver.
>
> --
> 2.34.1
next prev parent reply other threads:[~2025-10-27 16:15 UTC|newest]
Thread overview: 11+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-10-24 14:17 [PATCH v2 0/4] board: ti: am62x: Add EEPROM support and refactor board detection Guillaume La Roque (TI.com)
2025-10-24 14:17 ` [PATCH v2 1/4] board: ti: common: Add generic AM6x board detection functions Guillaume La Roque (TI.com)
2025-10-27 16:10 ` Mattijs Korpershoek
2025-10-24 14:17 ` [PATCH v2 2/4] board: am62x: Add support for reading eeprom data Guillaume La Roque (TI.com)
2025-10-27 16:13 ` Mattijs Korpershoek
2025-10-27 18:08 ` Andrew Davis
2025-10-31 8:22 ` Guillaume La Roque
2025-10-24 14:17 ` [PATCH v2 3/4] board: am64x: Use generic AM6x board detection functions Guillaume La Roque (TI.com)
2025-10-27 16:15 ` Mattijs Korpershoek [this message]
2025-10-24 14:17 ` [PATCH v2 4/4] board: am65x: Use generic AM6x board detection function Guillaume La Roque (TI.com)
2025-10-27 16:18 ` Mattijs Korpershoek
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=87sef4jp7n.fsf@kernel.org \
--to=mkorpershoek@kernel.org \
--cc=a-shenai@ti.com \
--cc=afd@ti.com \
--cc=anshuld@ti.com \
--cc=bb@ti.com \
--cc=d-gole@ti.com \
--cc=devarsht@ti.com \
--cc=ggiordano@phytec.com \
--cc=glaroque@baylibre.com \
--cc=ilias.apalodimas@linaro.org \
--cc=j-humphreys@ti.com \
--cc=jm@ti.com \
--cc=marek.vasut+renesas@mailbox.org \
--cc=n-francis@ti.com \
--cc=neil.armstrong@linaro.org \
--cc=p-mantena@ti.com \
--cc=peng.fan@nxp.com \
--cc=s-k6@ti.com \
--cc=semen.protsenko@linaro.org \
--cc=trini@konsulko.com \
--cc=u-boot@lists.denx.de \
--cc=vigneshr@ti.com \
--cc=w.egorov@phytec.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox