From: swarren@wwwdotorg.org (Stephen Warren)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH 2/3] ARM: bcm2835: Add the Raspberry Pi firmware driver
Date: Tue, 12 May 2015 16:08:23 -0600 [thread overview]
Message-ID: <555279D7.5020500@wwwdotorg.org> (raw)
In-Reply-To: <87a8x94rk5.fsf@eliezer.anholt.net>
On 05/12/2015 11:46 AM, Eric Anholt wrote:
> Stephen Warren <swarren@wwwdotorg.org> writes:
>
>> On 04/29/15 11:51, Eric Anholt wrote:
>>> Stephen Warren <swarren@wwwdotorg.org> writes:
>>>
>>>> On 04/27/2015 05:14 PM, Eric Anholt wrote:
>>>>> This gives us a function for making mailbox property channel requests
>>>>> of the firmware, and uses it to control the 3 power domains provided
>>>>> by the firmware.
>>>>
>>>>> diff --git a/arch/arm/mach-bcm/raspberrypi-firmware.c b/arch/arm/mach-bcm/raspberrypi-firmware.c
>>>>
>>>>> +/*
>>>>> + * Submits a set of concatenated tags to the VPU firmware through the
>>>>> + * mailbox property interface.
>>>>> + *
>>>>> + * The buffer header and the ending tag are added by this function and
>>>>> + * don't need to be supplied, just the actual tags for your operation.
>>>>> + * See struct raspberrypi_firmware_property_tag_header for the per-tag structure.
>>>>> + */
>>>>> +int raspberrypi_firmware_property(void *data, size_t tag_size)
>>>>> +{
>>>>> + size_t size = tag_size + 12;
>>>>> + u32 *buf;
>>>>> + dma_addr_t bus_addr;
>>>>> + int ret = 0;
>>>>> +
>>>>> + if (!firmware)
>>>>> + return -EPROBE_DEFER;
>>>>
>>>> I think it'd make more sense if the clients looked up the firmware
>>>> driver via phandle at their probe time. This would mean:
>>>>
>>>> * No need for global "firmware", since clients could pass the firmware
>>>> driver handle into this function.
>>>>
>>>> * Clients resolve deferred probe at their probe time. That way, they
>>>> won't register themselves with subsystems asserting they can provide
>>>> services, but find out they can't yet provide the service at that time.
>>>
>>> The one client so far (vc4) was resolving deferred probe at its probe
>>> time, but not taking a reference on the firmware driver. I figure I'll
>>> have it do the phandle lookup and refcount -- do you still want the
>>> struct platform_device passed in here? If we de-global firmware, it's
>>> going to mean some faffing in the power domain side of things to find
>>> the device again, it seems.
>>
>> I think I'd expect the API in the firmware driver to require the client
>> to pass the client DT node pointer plus a property name, and do all the
>> lookup itself. That's what most DT resource lookup APIs in the kernel do
>> now.
>
> I've made this change, but it's not great -- the client has to know some
> details of how this driver is structured (that it sets the drvdata) in
> order to figure out whether the driver is loaded or not and return
> -EPROBE_DEFERRED. I couldn't find any other existing solutions than
> that in the tree.
The client shouldn't need to know that.
I'd expect the client to pass a DT node pointer to the provider's
driver, and that provider driver would know and isolate all the details
about its own internals. The provider could return some kind of
handler/... to the provider device if required.
I would expect any subsystem that supports client->provider references
in DT would have an example of this (e.g. IRQs, GPIOs, regulators, ...).
However, the code for those can be rather complex to dive into for the
first time. For a fairly simple standalone example, check out:
Provider:
drivers/amba/tegra-ahb.c
tegra_ahb_enable_smmu()
Consumer:
drivers/iommu/tegra-smmu.c
tegra_smmu_ahb_enable()
(called from tegra_smmu_probe() in the same file)
next prev parent reply other threads:[~2015-05-12 22:08 UTC|newest]
Thread overview: 23+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-04-27 23:14 [PATCH 0/3] Raspberry Pi firmware driver Eric Anholt
2015-04-27 23:14 ` [PATCH 1/3] dt/bindings: Add binding for the " Eric Anholt
2015-04-28 9:34 ` Lee Jones
2015-04-29 1:42 ` Stephen Warren
2015-04-27 23:14 ` [PATCH 2/3] ARM: bcm2835: Add " Eric Anholt
2015-04-28 7:56 ` Arnd Bergmann
2015-04-28 20:07 ` Eric Anholt
2015-04-28 9:27 ` Lee Jones
2015-04-28 9:28 ` Lee Jones
2015-04-29 1:58 ` Stephen Warren
2015-04-29 2:14 ` Jassi Brar
2015-04-29 2:56 ` Jassi Brar
2015-04-29 17:51 ` Eric Anholt
2015-04-29 23:47 ` Stephen Warren
2015-05-12 17:46 ` Eric Anholt
2015-05-12 22:08 ` Stephen Warren [this message]
2015-05-13 0:38 ` Eric Anholt
2015-05-13 18:28 ` Stephen Warren
2015-04-27 23:14 ` [PATCH 3/3] ARM: bcm2835: Add the necessary firmware driver information to the DT Eric Anholt
2015-04-28 9:33 ` Lee Jones
2015-04-29 1:44 ` Stephen Warren
2015-04-29 16:29 ` Eric Anholt
2015-04-29 23:43 ` Stephen Warren
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=555279D7.5020500@wwwdotorg.org \
--to=swarren@wwwdotorg.org \
--cc=linux-arm-kernel@lists.infradead.org \
/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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.