mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-08 14:14:32 +00:00
4e21a555c1
The T2080RDB boards revisions D and up have updated 10G Aquantia PHYs connected to MAC1 and MAC2. The second Aquantia PHY is located at a different address on the MDIO bus compared to rev C (0x8 instead of 0x1). Fix-up the Linux device tree to update the PHY address for the second Aquantia PHY on boards revisions D and up. Also rename the PHY node to reflect the changes. Signed-off-by: Camelia Groza <camelia.groza@nxp.com> [Rebased] Signed-off-by: Priyanka Jain <priyanka.jain@nxp.com>
15 lines
353 B
C
15 lines
353 B
C
/* SPDX-License-Identifier: GPL-2.0+ */
|
|
/*
|
|
* Copyright 2014 Freescale Semiconductor, Inc.
|
|
* Copyright 2021 NXP
|
|
*/
|
|
|
|
#ifndef __CORENET_DS_H__
|
|
#define __CORENET_DS_H__
|
|
|
|
void fdt_fixup_board_enet(void *blob);
|
|
void pci_of_setup(void *blob, struct bd_info *bd);
|
|
void fdt_fixup_board_fman_ethernet(void *blob);
|
|
void fdt_fixup_board_phy(void *blob);
|
|
|
|
#endif
|