On Mon, 3 Feb 2020 at 13:40, Pete Batard <p...@akeo.ie> wrote: > > The Raspberry Pi 4 platforms uses a Broadcom Genet network interface, for > which we need ACPI entries in order to make it usable under Linux. > > This patch adds these entries, including a max-dma-burst-size DSD attribute > aimed at simplifying support for Genet on distros that use older kernels, > such as Debian. > > Note that we ran these settings through someone working for Broadcom, who > okayed the proposed values including ownership of max-dma-burst-size (which > we expect to also require for Device Tree usage on older kernels, hence the > requirement for a designated owner). > > Signed-off-by: Pete Batard <p...@akeo.ie> > --- > Platform/RaspberryPi/RPi4/AcpiTables/Dsdt.asl | 29 ++++++++++++++++++++ > 1 file changed, 29 insertions(+) > > diff --git a/Platform/RaspberryPi/RPi4/AcpiTables/Dsdt.asl > b/Platform/RaspberryPi/RPi4/AcpiTables/Dsdt.asl > index b2f1d3439211..12c3967fa9e1 100644 > --- a/Platform/RaspberryPi/RPi4/AcpiTables/Dsdt.asl > +++ b/Platform/RaspberryPi/RPi4/AcpiTables/Dsdt.asl > @@ -267,6 +267,35 @@ DefinitionBlock ("Dsdt.aml", "DSDT", 5, "MSFT", "EDK2", > 2) > } > } > > + Device (ETH0) > + { > + Name (_HID, "BCM6E4E") > + Name (_CID, "BCM6E4E")
What is the point of having identical _HID and _CID? Is that a Windows thing? > + Name (_UID, 0x0) > + Name (_CCA, 0x0) > + Method (_STA) > + { > + Return (0xf) > + } > + Method (_CRS, 0x0, Serialized) > + { > + Name (RBUF, ResourceTemplate () > + { > + Memory32Fixed (ReadWrite, 0xfd580000, 0x10000, ) We could grab that base address from a PCD as well, no? > + Interrupt (ResourceConsumer, Level, ActiveHigh, Exclusive) { 0xBD } > + Interrupt (ResourceConsumer, Level, ActiveHigh, Exclusive) { 0xBE } Why not Interrupt (ResourceConsumer, Level, ActiveHigh, Exclusive) { 0xBD, 0xBE } ? > + }) > + Return (RBUF) > + } > + Name (_DSD, Package () { > + ToUUID("daffd814-6eba-4d8c-8a91-bc9bbf4aa301"), > + Package () { > + Package () { "brcm,max-dma-burst-size", 0x08 }, > + Package () { "phy-mode", "rgmii" }, > + } > + }) > + } > + > // Description: I2C > Device (I2C1) > { > -- > 2.21.0.windows.1 > -=-=-=-=-=-=-=-=-=-=-=- Groups.io Links: You receive all messages sent to this group. View/Reply Online (#54093): https://edk2.groups.io/g/devel/message/54093 Mute This Topic: https://groups.io/mt/70946255/21656 Group Owner: devel+ow...@edk2.groups.io Unsubscribe: https://edk2.groups.io/g/devel/unsub [arch...@mail-archive.com] -=-=-=-=-=-=-=-=-=-=-=-