mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-19 11:36:46 +07:00
71c0cd2283
The Raspberry Pi 3 B+ has the following major differences compared to the model 3 B: * Microchip LAN7515 (Gigabit Ethernet with integrated USB 2.0 HUB) * Cypress CYW43455 (802.11n/ac and BT 4.2) We need to add the USB LAN chip so the bootloader can add the MAC address. This is necessary because there ain't an EEPROM or a valid OTP. Signed-off-by: Phil Elwell <phil@raspberrypi.org> Signed-off-by: Stefan Wahren <stefan.wahren@i2se.com> Reviewed-by: Eric Anholt <eric@anholt.net> Signed-off-by: Eric Anholt <eric@anholt.net>
28 lines
393 B
Plaintext
28 lines
393 B
Plaintext
// SPDX-License-Identifier: GPL-2.0
|
|
/ {
|
|
aliases {
|
|
ethernet0 = ðernet;
|
|
};
|
|
};
|
|
|
|
&usb {
|
|
usb-port@1 {
|
|
compatible = "usb424,2514";
|
|
reg = <1>;
|
|
#address-cells = <1>;
|
|
#size-cells = <0>;
|
|
|
|
usb-port@1 {
|
|
compatible = "usb424,2514";
|
|
reg = <1>;
|
|
#address-cells = <1>;
|
|
#size-cells = <0>;
|
|
|
|
ethernet: ethernet@1 {
|
|
compatible = "usb424,7800";
|
|
reg = <1>;
|
|
};
|
|
};
|
|
};
|
|
};
|