[PATCH 2/6] ARM: add Highbank core platform support

Rob Herring robherring2 at gmail.com
Wed Aug 24 22:19:19 EDT 2011


Jamie,

On 08/16/2011 05:19 PM, Jamie Iles wrote:
> Hi Rob,
> 
> On Tue, Aug 16, 2011 at 03:34:54PM -0500, Rob Herring wrote:
>> From: Rob Herring <rob.herring at calxeda.com>
>>
>> This adds basic support for the Calxeda Highbank platform.
>>
>> Signed-off-by: Rob Herring <rob.herring at calxeda.com>
>> ---
> [...]
>> +static void __init highbank_timer_init(void)
>> +{
>> +	int irq;
>> +	struct device_node *np;
>> +	void __iomem *timer_base;
>> +
>> +	/* Map system registers */
>> +	np = of_find_compatible_node(NULL, NULL, "calxeda,hb-sregs");
>> +	sregs_base = of_iomap(np, 0);
> 
> Should the return values be checked here?  I know that all valid device trees 
> should have these nodes and valid a reg property, but I don't know if the 
> error handling needs to be a bit more explicit.  For my platform I have put 
> these checks and panics() if they fail, but I'm not sure if that's the right 
> thing!
> 
A panic will stop the boot at a point the console is not up unless
DEBUG_LL is enabled. If you continue, you may be able to continue long
enough to get a console and then fail when something that depends on
this is used. For this case, it would be when the clocks are not setup
correctly (once real clock setup is implemented). As it is now, these
registers aren't accessed until you do suspend, hotplug, or poweroff.

So probably just a WARN_ON would be better here.

Rob



More information about the linux-arm-kernel mailing list