uclient: update to Git HEAD (2024-04-18)
[openwrt/staging/stintel.git] / package / boot / uboot-mvebu / patches / 0002-arm-mvebu-Espressobin-move-network-setup-into-a-sepa.patch
1 From 3f8c18894a50fd45b81a807f217893f289500bc6 Mon Sep 17 00:00:00 2001
2 From: Robert Marko <robert.marko@sartura.hr>
3 Date: Thu, 3 Aug 2023 14:24:31 +0200
4 Subject: [PATCH 2/3] arm: mvebu: Espressobin: move network setup into a
5 separate function
6
7 Currently, Esspresobin switch is being setup directly in last_stage_init()
8 which makes it hard to add support for any other board to be setup.
9
10 So, lets just move the switch setup code to a separate function and call it
11 if compatible matches, there should be no functional change.
12
13 Signed-off-by: Robert Marko <robert.marko@sartura.hr>
14 ---
15 board/Marvell/mvebu_armada-37xx/board.c | 16 +++++++++++-----
16 1 file changed, 11 insertions(+), 5 deletions(-)
17
18 --- a/board/Marvell/mvebu_armada-37xx/board.c
19 +++ b/board/Marvell/mvebu_armada-37xx/board.c
20 @@ -300,15 +300,11 @@ static int mii_multi_chip_mode_write(str
21 return 0;
22 }
23
24 -/* Bring-up board-specific network stuff */
25 -int last_stage_init(void)
26 +static int espressobin_last_stage_init(void)
27 {
28 struct udevice *bus;
29 ofnode node;
30
31 - if (!of_machine_is_compatible("globalscale,espressobin"))
32 - return 0;
33 -
34 node = ofnode_by_compatible(ofnode_null(), "marvell,orion-mdio");
35 if (!ofnode_valid(node) ||
36 uclass_get_device_by_ofnode(UCLASS_MDIO, node, &bus) ||
37 @@ -356,6 +352,16 @@ int last_stage_init(void)
38
39 return 0;
40 }
41 +
42 +/* Bring-up board-specific network stuff */
43 +int last_stage_init(void)
44 +{
45 +
46 + if (of_machine_is_compatible("globalscale,espressobin"))
47 + return espressobin_last_stage_init();
48 +
49 + return 0;
50 +}
51 #endif
52
53 #ifdef CONFIG_OF_BOARD_SETUP