linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Hector Martin <marcan@marcan.st>
To: Arend van Spriel <arend.vanspriel@broadcom.com>,
	Aditya Garg <gargaditya08@live.com>,
	aspriel@gmail.com, hante.meuleman@broadcom.com, kvalo@kernel.org,
	davem@davemloft.net, edumazet@google.com, kuba@kernel.org,
	pabeni@redhat.com, lina@asahilina.net, franky.lin@broadcom.com
Cc: Orlando Chamberlain <redecorating@protonmail.com>,
	brcm80211-dev-list@broadcom.com,
	brcm80211-dev-list.pdl@broadcom.com,
	linux-wireless@vger.kernel.org,
	LKML <linux-kernel@vger.kernel.org>,
	Asahi Linux <asahi@lists.linux.dev>
Subject: Re: [PATCH 1/2] brcmfmac: Use separate struct to declare firmware names for Apple OTP chips
Date: Tue, 3 Jan 2023 22:46:56 +0900	[thread overview]
Message-ID: <3659477c-c822-c5d6-868c-ba40c5a80be6@marcan.st> (raw)
In-Reply-To: <6b30559d-9bcc-f3b3-d9b2-2406e9a044b7@broadcom.com>

On 03/01/2023 22.30, Arend van Spriel wrote:
> On 1/3/2023 4:55 AM, Hector Martin wrote:
>> On 2023/01/03 3:27, Arend Van Spriel wrote:
>>> On January 2, 2023 4:15:41 PM Hector Martin <marcan@marcan.st> wrote:
>>>
>>>> On 02/01/2023 23.40, Aditya Garg wrote:
>>>>> From: Aditya Garg <gargaditya08@live.com>
>>>>>
>>>>> Commit 'dce45ded7619' added support for 89459 chip pcie device. It uses the
>>>>> BRCM4355 chip which is also found in Apple hardware. However this commit
>>>>> causes conflicts in the firmware naming between Apple hardware, which
>>>>> supports OTP and other non-Apple hardwares. So, this patch makes these
>>>>> Apple chips use their own firmware table so as to avoid possible conflicts
>>>>> like these in the future.
>>>>
>>>> I think my reply to Arend flew over your head.
>>>>
>>>> My point was that I'd rather have the Broadcom/Cypress people actually
>>>> answer my question so we can figure out how to do this *properly*,
>>>> instead of doing "safer-but-dumb" things (like this patch) because we
>>>> just don't have the information to do it properly.
>>>
>>> Fair enough. Can you accurately (re)state your question and I will try to
>>> answer it.
>>
>> As per my original email: Is the CYW89459 just a rebrand of the BCM4355,
>> or just a subset? Can we consider them equivalent, and equivalent to the
>> Apple part (BCM4355C1 / revision 12)?
> 
> There is probably no easy answer. Mainly because Cypress is a separate 
> entity. However, they use the same/similar technology and code base. So 
> let me first start with the chip naming. The wifi chip primarily has a 
> number and revision. The chip number is straighforward and can be read 
> from the device. The chip revision comes in two variants: 1) simple 
> increasing number as read from the device, and 2) a <letter><digit> 
> format. The latter start at a0, which you almost never see in the wild 
> unless we do it "first time right". Whenever spinning a new chip we 
> either increase the digit or the letter depending on type/amount of 
> changes. There is not predictable mapping between the revision variants. 
> Depending on the hurdles in a chip project we may move from a0 to b0, or 
> from b0 to b1 or whatever.

Right, this is standard chip spin numbering, that much I know.

> If CYW89459 chip reads chip number 0x4355 than it is a BCM4355. If it is 
> a different revision it may require different firmware. A different 
> letter will always require different firmware. A different digit may 
> work although the firmware can have code paths for a specific revision.

So is it always correct to have the same firmware (in a generic
situation, not a customized OEM build) for, say, a BCM4355 rev 12,
regardless of what the PCI ID programmed into the OTP is (and what the
marketing device name is)?

If so, then my conclusion is that the original patch I replied to is
incorrect, all the defines should've been called BCM4355 (not the
Cypress part number), and we probably need two firmware table entries
since (judging by the revision check elsewhere in that patch) there are
other revisions in the wild than the one Apple uses, and therefore there
should at the very least be a firmware name split at C1. It would then
be very helpful to know what revisions *do* exist and their correct naming.

If different PCI device IDs might need different firmware, then the
exiting firmware selection/table mechanism is insufficient.

> Happy New year to you. Thanks for clearly marking the rant. Makes it 
> easier to ignore, but let me get into this. I would not call bcmdhd the 
> downstream driver. It is a separate out-of-tree driver. Indeed resources 
> were pulled from brcm80211 development, but there always have been only 
> 2 or 3 people working on it. Me being the constant working mule and 
> these days only for 20% of my working hours to do the job. So you are 
> not really doing our job as we are not assigned to do so. I guess there 
> is no ROI for Broadcom or so it is perceived and there is no customer 
> pushing for it. That said I am always happy to help and clarify whatever 
> I can.

Is there any chance you can provide a list of chips/shipping revisions
and revision IDs, so we can stop guessing at the mappings in the
firmware table? Because this is effectively breaking userspace ABI every
time we make a change to an existing chip, as it can change the firmware
file name that userspace loads. This already happened with BCM4364,
where (at least) B2 and B3 revisions exist in the wild and we need
separate firmwares, yet it was added with a full mask, resulting in
people copying "the right firmware for them" manually and my patch to
split it into properly named firmwares will break those users.

- Hector

  reply	other threads:[~2023-01-03 13:47 UTC|newest]

Thread overview: 20+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-01-02  7:46 [REGRESSION] Wi-Fi fails to work on BCM4364B2 chips since kernel 6.1 Aditya Garg
2023-01-02  8:21 ` Linux kernel regression tracking (#info)
2023-01-02 10:27   ` Thorsten Leemhuis
2023-01-02  8:47 ` Hector Martin
2023-01-02  8:57   ` Aditya Garg
2023-01-02  9:13     ` Hector Martin
2023-01-02 14:40     ` [PATCH 1/2] brcmfmac: Use separate struct to declare firmware names for Apple OTP chips Aditya Garg
2023-01-02 14:41       ` [PATCH 2/2] brcmfmac: Add PCIe ID of BCM4355 chip found on T2 Macs Aditya Garg
2023-01-02 14:46         ` Aditya Garg
2023-01-03  2:08         ` kernel test robot
2023-01-02 14:46       ` [PATCH v2 1/2] brcmfmac: Use separate struct to declare firmware names for Apple OTP chips Aditya Garg
2023-01-02 14:48         ` [PATCH v2 2/2] brcmfmac: Add PCIe ID of BCM4355 chip found on T2 Macs Aditya Garg
2023-01-02 15:15       ` [PATCH 1/2] brcmfmac: Use separate struct to declare firmware names for Apple OTP chips Hector Martin
2023-01-02 15:24         ` Aditya Garg
2023-01-02 18:27         ` Arend Van Spriel
2023-01-03  3:55           ` Hector Martin
2023-01-03 13:30             ` Arend van Spriel
2023-01-03 13:46               ` Hector Martin [this message]
2023-01-04  9:32                 ` Arend van Spriel
2023-01-03 19:59               ` Zzy Wysm

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=3659477c-c822-c5d6-868c-ba40c5a80be6@marcan.st \
    --to=marcan@marcan.st \
    --cc=arend.vanspriel@broadcom.com \
    --cc=asahi@lists.linux.dev \
    --cc=aspriel@gmail.com \
    --cc=brcm80211-dev-list.pdl@broadcom.com \
    --cc=brcm80211-dev-list@broadcom.com \
    --cc=davem@davemloft.net \
    --cc=edumazet@google.com \
    --cc=franky.lin@broadcom.com \
    --cc=gargaditya08@live.com \
    --cc=hante.meuleman@broadcom.com \
    --cc=kuba@kernel.org \
    --cc=kvalo@kernel.org \
    --cc=lina@asahilina.net \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-wireless@vger.kernel.org \
    --cc=pabeni@redhat.com \
    --cc=redecorating@protonmail.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).