All of lore.kernel.org
 help / color / mirror / Atom feed
From: Stefan Roese <sr@denx.de>
To: "Marek Behún" <kabel@kernel.org>
Cc: u-boot@lists.denx.de, pali@kernel.org,
	"Marek Behún" <marek.behun@nic.cz>
Subject: Re: [PATCH u-boot-marvell 06/12] arm: mvebu: turris_mox: Use show_board_info()
Date: Thu, 21 Oct 2021 07:32:23 +0200	[thread overview]
Message-ID: <5e7ac529-8418-ce81-75b8-7762b63a8e46@denx.de> (raw)
In-Reply-To: <20211009173346.7859-7-kabel@kernel.org>

On 09.10.21 19:33, Marek Behún wrote:
> From: Marek Behún <marek.behun@nic.cz>
> 
> We are printing board information in last_stage_init(), but U-Boot has
> dedicated function, show_board_info(), for this.
> 
> Move code which prints board information (board version, serial number,
> module topology, ...) to show_board_info().
> 
> Signed-off-by: Marek Behún <marek.behun@nic.cz>

Reviewed-by: Stefan Roese <sr@denx.de>

Thanks,
Stefan

> ---
>   board/CZ.NIC/turris_mox/turris_mox.c | 67 ++++++++++++++--------------
>   1 file changed, 33 insertions(+), 34 deletions(-)
> 
> diff --git a/board/CZ.NIC/turris_mox/turris_mox.c b/board/CZ.NIC/turris_mox/turris_mox.c
> index 428cd23a19..ff0ed28045 100644
> --- a/board/CZ.NIC/turris_mox/turris_mox.c
> +++ b/board/CZ.NIC/turris_mox/turris_mox.c
> @@ -485,44 +485,34 @@ static void handle_reset_button(void)
>   	}
>   }
>   
> -static void mox_print_info(void)
> +int show_board_info(void)
>   {
> -	int ret, board_version, ram_size;
> -	u64 serial_number;
> +	int i, ret, board_version, ram_size, is_sd;
>   	const char *pub_key;
> +	const u8 *topology;
> +	u64 serial_number;
> +
> +	printf("Model: CZ.NIC Turris Mox Board\n");
>   
>   	ret = mbox_sp_get_board_info(&serial_number, NULL, NULL, &board_version,
>   				     &ram_size);
> -	if (ret < 0)
> -		return;
> -
> -	printf("Turris Mox:\n");
> -	printf("  Board version: %i\n", board_version);
> -	printf("  RAM size: %i MiB\n", ram_size);
> -	printf("  Serial Number: %016llX\n", serial_number);
> +	if (ret < 0) {
> +		printf("  Cannot read board info: %i\n", ret);
> +	} else {
> +		printf("  Board version: %i\n", board_version);
> +		printf("  RAM size: %i MiB\n", ram_size);
> +		printf("  Serial Number: %016llX\n", serial_number);
> +	}
>   
>   	pub_key = mox_sp_get_ecdsa_public_key();
>   	if (pub_key)
>   		printf("  ECDSA Public Key: %s\n", pub_key);
>   	else
> -		printf("Cannot read ECDSA Public Key\n");
> -}
> -
> -int last_stage_init(void)
> -{
> -	int ret, i;
> -	const u8 *topology;
> -	int is_sd;
> -	struct mii_dev *bus;
> -	struct gpio_desc reset_gpio = {};
> -
> -	mox_print_info();
> +		printf("  Cannot read ECDSA Public Key\n");
>   
>   	ret = mox_get_topology(&topology, &module_count, &is_sd);
> -	if (ret) {
> +	if (ret)
>   		printf("Cannot read module topology!\n");
> -		return 0;
> -	}
>   
>   	printf("  SD/eMMC version: %s\n", is_sd ? "SD" : "eMMC");
>   
> @@ -554,8 +544,7 @@ int last_stage_init(void)
>   		}
>   	}
>   
> -	/* now check if modules are connected in supported mode */
> -
> +	/* check if modules are connected in supported mode */
>   	for (i = 0; i < module_count; ++i) {
>   		switch (topology[i]) {
>   		case MOX_MODULE_SFP:
> @@ -616,8 +605,17 @@ int last_stage_init(void)
>   		}
>   	}
>   
> -	/* now configure modules */
> +	if (module_count)
> +		printf("\n");
> +
> +	return 0;
> +}
> +
> +int last_stage_init(void)
> +{
> +	struct gpio_desc reset_gpio = {};
>   
> +	/* configure modules */
>   	if (get_reset_gpio(&reset_gpio) < 0)
>   		return 0;
>   
> @@ -633,16 +631,19 @@ int last_stage_init(void)
>   		mdelay(50);
>   	}
>   
> +	/*
> +	 * check if the addresses are set by reading Scratch & Misc register
> +	 * 0x70 of Peridot (and potentially Topaz) modules
> +	 */
>   	if (peridot || topaz) {
> -		/*
> -		 * now check if the addresses are set by reading Scratch & Misc
> -		 * register 0x70 of Peridot (and potentially Topaz) modules
> -		 */
> +		struct mii_dev *bus;
>   
>   		bus = miiphy_get_dev_by_name("neta@30000");
>   		if (!bus) {
>   			printf("Cannot get MDIO bus device!\n");
>   		} else {
> +			int i;
> +
>   			for (i = 0; i < peridot; ++i)
>   				check_switch_address(bus, 0x10 + i);
>   
> @@ -653,8 +654,6 @@ int last_stage_init(void)
>   		}
>   	}
>   
> -	printf("\n");
> -
>   	handle_reset_button();
>   
>   	return 0;
> 


Viele Grüße,
Stefan

-- 
DENX Software Engineering GmbH,      Managing Director: Wolfgang Denk
HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany
Phone: (+49)-8142-66989-51 Fax: (+49)-8142-66989-80 Email: sr@denx.de

  reply	other threads:[~2021-10-21  5:32 UTC|newest]

Thread overview: 26+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-10-09 17:33 [PATCH u-boot-marvell 00/12] Small Turris MOX and Omnia changes Marek Behún
2021-10-09 17:33 ` [PATCH u-boot-marvell 01/12] arm: mvebu: turris_mox: Drop SF_DEFAULT_MODE from defconfig Marek Behún
2021-10-21  5:30   ` Stefan Roese
2021-10-09 17:33 ` [PATCH u-boot-marvell 02/12] arm: mvebu: turris_mox: Move options to defconfig Marek Behún
2021-10-21  5:31   ` Stefan Roese
2021-10-09 17:33 ` [PATCH u-boot-marvell 03/12] arm: mvebu: a3720: Create Kconfig option for I2C_MV Marek Behún
2021-10-21  5:31   ` Stefan Roese
2021-10-09 17:33 ` [PATCH u-boot-marvell 04/12] arm: kirkwood, mvebu: Remove CONFIG_SYS_RESET_ADDRESS option Marek Behún
2021-10-21  5:31   ` Stefan Roese
2021-10-09 17:33 ` [PATCH u-boot-marvell 05/12] arm: mvebu: turris_mox: Cosmetic update for board config header Marek Behún
2021-10-21  5:32   ` Stefan Roese
2021-10-09 17:33 ` [PATCH u-boot-marvell 06/12] arm: mvebu: turris_mox: Use show_board_info() Marek Behún
2021-10-21  5:32   ` Stefan Roese [this message]
2021-10-09 17:33 ` [PATCH u-boot-marvell 07/12] arm: mvebu: turris_mox: Always handle reset button Marek Behún
2021-10-21  5:32   ` Stefan Roese
2021-10-09 17:33 ` [PATCH u-boot-marvell 08/12] arm: mvebu: turris_mox: Better check for valid ethernet addresses in env Marek Behún
2021-10-21  5:33   ` Stefan Roese
2021-10-09 17:33 ` [PATCH u-boot-marvell 09/12] arm: mvebu: turris_omnia: Overwrite ethaddr only if invalid Marek Behún
2021-10-21  5:33   ` Stefan Roese
2021-10-09 17:33 ` [PATCH u-boot-marvell 10/12] arm: mvebu: turris_omnia: Use show_board_info() Marek Behún
2021-10-21  5:34   ` Stefan Roese
2021-10-09 17:33 ` [PATCH u-boot-marvell 11/12] arm: mvebu: turris_omnia: Move SPL's SYS_MALLOC_SIMPLE to Kconfig Marek Behún
2021-10-21  5:34   ` Stefan Roese
2021-10-09 17:33 ` [PATCH u-boot-marvell 12/12] arm: mvebu: turris_omnia: Move CONFIG_SPL_DRIVERS_MISC " Marek Behún
2021-10-21  5:34   ` Stefan Roese
2021-10-21  7:47 ` [PATCH u-boot-marvell 00/12] Small Turris MOX and Omnia changes Stefan Roese

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=5e7ac529-8418-ce81-75b8-7762b63a8e46@denx.de \
    --to=sr@denx.de \
    --cc=kabel@kernel.org \
    --cc=marek.behun@nic.cz \
    --cc=pali@kernel.org \
    --cc=u-boot@lists.denx.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.