[PATCH 1/1] mfd: Fix runtime warning caused by duplicate device registration
Lee Jones
lee.jones at linaro.org
Thu Jul 5 07:46:49 EDT 2012
On 05/07/12 10:45, Mark Brown wrote:
> On Thu, Jul 05, 2012 at 08:36:38AM +0100, Lee Jones wrote:
>> On 03/07/12 15:21, Mark Brown wrote:
>
>>> This doesn't explain any of the issues, it just says that they exist.
>>> My best guess would be that at least some of the issue is due to
>>> instantiating the MFD cells from the device tree but it's hard to say
>>> clearly.
>
>> I'm guessing Arnd's email answered some of the questions you had.
>> Let me know of you would like me to explain it in any greater
>> detail.
>
> No, frankly. It was just a general "why might we put things in DT"
> answer which (especially given what you say below) isn't related to the
> issue at all.
Okay, so currently we have something like this:
/ {
soc-u9500 {
#address-cells = <1>;
#size-cells = <1>;
ranges;
/*
* The nodes below which have addresses associated with
* them all have correctly formed reg properties:
* i.e. "reg = <0xa0411000 0x1000>"
*/
intc: interrupt-controller at a0411000
L2: l2-cache
pmu
timer at a0410600
rtc at 80154000
gpio0: gpio at 8012e000
pinctrl
usb at a03e0000
dma-controller at 801C0000
/*
* Then it becomes more interesting. We have the PRCMU
* which has the same address space as above, but its
* children have mixed address spaces. Some have their
* own set of memory mapped registers, others are
* communicated with by i2c. So:
*/
prcmu at 80157000 {
reg = <0x80157000 0x1000>;
#address-cells = <1>;
#size-cells = <1>;
ranges;
/* The timer has its own memory mapped address space. */
prcmu-timer-4 at 80157450
/* Ignore the regulators, no one really cares about those ;) */
db8500-prcmu-regulators
/*
* Then the ab8500 communicates with the PRCMU via a selection
* of i2c mailboxes. So we did have this:
* mailbox {
* #address-cells = <1>;
* #size-cells = <0>;
*
* ab8500 { <blah> };
* }
* But then Device Tree complains at you because of this:
drivers/of/address.c:
> #define OF_CHECK_COUNTS(na, ns) ((na) > 0 && (na) <= OF_MAX_ADDR_CELLS && (ns) > 0)
>
> /* Cound address cells & copy address locally */
> bus->count_cells(dev, &na, &ns);
> if (!OF_CHECK_COUNTS(na, ns)) {
> printk(KERN_ERR "prom_parse: Bad cell count for %s\n",
> dev->full_name);
> goto bail;
> }
* Device Tree doesn't allow you to have zero size cells,
* which we would require if we were to register all of the
* AB8500 devices separately during a DT boot.
*/
ab8500 at 5 {
reg = <5>; /* mailbox 5 is i2c */
ab8500-rtc
ab8500-gpadc
ab8500-usb
reg = <1>;
ab8500-ponkey
ab8500-sysctrl
ab8500-pwm
ab8500-debugfs
ab8500-regulators
};
};
i2c at 80004000
ssp at 80002000
uart at 80120000
sdi at 80126000
external-bus at 50000000
};
};
Besides, the main role of Device Tree is to eradicate platform code.
Whereas the code in the MFD driver used to register the AB8500 devices
is not platform code.
Does that answer your question better?
>> By the way, this patch has nothing to do with registering these
>> devices when DT is enabled. The code already does that. This is a
>> bug fix, to stop multiple registration of the ab8500 when DT is
>> _not_ enabled.
>
> Really? It seems really surprising that adding more DT support to the
> MFD core would have any bearing on something like this...
I'm not really sure what you mean by this.
--
Lee Jones
Linaro ST-Ericsson Landing Team Lead
M: +44 77 88 633 515
Linaro.org │ Open source software for ARM SoCs
Follow Linaro: Facebook | Twitter | Blog
More information about the linux-arm-kernel
mailing list