[PATCH v3] brcmfmac: expose firmware config files through modinfo

2020-11-24 Thread matthias . bgg
From: Matthias Brugger Apart from a firmware binary the chip needs a config file used by the FW. Add the config files to modinfo so that they can be read by userspace. Signed-off-by: Matthias Brugger --- Changes in v3: Use only two more generic wildcards. Changes in v2: In comparison to firs

[PATCH v2] brcmfmac: expose firmware config files through modinfo

2020-11-20 Thread matthias . bgg
From: Matthias Brugger Apart from a firmware binary the chip needs a config file used by the FW. Add the config files to modinfo so that they can be read by userspace. Signed-off-by: Matthias Brugger --- Changes in v2: In comparison to first version [0] we use wildcards to enumerate the firmw

[PATCH] brcmfmac: expose firmware config files through modinfo

2020-07-01 Thread matthias . bgg
From: Matthias Brugger Apart from a firmware binary the chip needs a config file used by the FW. Add the config files to modinfo so that they can be read by userspace. Signed-off-by: Matthias Brugger --- .../wireless/broadcom/brcm80211/brcmfmac/sdio.c | 16 1 file changed,

[PATCH v3] brcmfmac: Transform compatible string for FW loading

2020-07-01 Thread matthias . bgg
From: Matthias Brugger The driver relies on the compatible string from DT to determine which FW configuration file it should load. The DTS spec allows for '/' as part of the compatible string. We change this to '-' so that we will still be able to load the config file, even when the compatible ha

[PATCH v2] brcmfmac: Transform compatible string for FW loading

2020-06-29 Thread matthias . bgg
From: Matthias Brugger The driver relies on the compatible string from DT to determine which FW configuration file it should load. The DTS spec allows for '/' as part of the compatible string. We change this to '-' so that we will still be able to load the config file, even when the compatible ha

[PATCH] brcmfmac: Transform compatible string for FW loading

2020-06-25 Thread matthias . bgg
From: Matthias Brugger The driver relies on the compatible string from DT to determine which FW configuration file it should load. The DTS spec allows for '/' as part of the compatible string. We change this to '-' so that we will still be able to load the config file, even when the compatible ha

[PATCH v1 2/3] net: bcmgenet: use optional max DMA burst size property

2019-10-11 Thread matthias . bgg
From: Matthias Brugger Depending on the HW, the maximal usable DMA burst size can vary. If not set accordingly a timeout in the transmit queue happens and no package can be sent. Read to optional max-burst-sz property, if not present, fallback to the standard value. Signed-off-by: Matthias Brugg