[PATCH 4/6] ARM: reset: add reset functionality for jumping to a physical address
Will Deacon
will.deacon at arm.com
Wed Jun 8 12:14:11 EDT 2011
On Wed, Jun 08, 2011 at 05:10:05PM +0100, Frank Hofmann wrote:
> >> Just found a problem with this.
> >>
> >> If you have a MULTI_CPU config, this doesn't compile. For two reasons:
> >>
> >> 1. you cannot use cpu_reset as argument to virt_to_phys because you can't
> >> take the address
> >> That bit can be fixed by changing the MULTI_CPU #define in
> >> <asm/proc-fns.h> not to include the macro argument.
> >> (There is no code in the arm tree using cpu_reset_whatever names which
> >> would break from that change ... still, not that nice)
> >>
> >> 2. even when you do that, you loose the "typeof()" information and the
> >> above still doesn't compile.
> >>
> >> Only a manual type override,
> >>
> >> void (*phys_reset)(unsigned long) = (void (*)(unsigned long))cpu_reset;
> >>
> >> is accepted then.
> >
> > Damn, yes, I assumed the MULTI_CPU case would just pointer at the structure field,
> > but it takes the argument as parameter for the invocation. Oh well, I'll hardcode
> > the type after all then!
>
> It's not just that - the worse bit is that as long as the #define looks
> like:
>
> #define cpu_reset(addr) processor.reset(addr)
>
> compile is being refused; one has to ditch the argument part of the macro
> to be able to take the address.
>
> I'm unsure how desirable that change is; it's got the unwanted consequence
> that people who decide to use function names like "graphics_cpu_reset" or
> "cpu_reset_specialregisters" would fall flat on their face.
Isn't this already a problem in the !MULTI_CPU case? cpu_reset will be expanded
to something like armv7_cpu_reset by the macro.
> As said, not that anyone does so right now; just not nice to introduce
> such behaviour.
But if that behaviour is already there, I don't think it's a big deal.
Will
More information about the linux-arm-kernel
mailing list