]> git.kernelconcepts.de Git - karo-tx-linux.git/commit
ARC: [Review] Multi-platform image #2: Board callback Infrastructure
authorVineet Gupta <vgupta@synopsys.com>
Fri, 18 Jan 2013 09:42:26 +0000 (15:12 +0530)
committerVineet Gupta <vgupta@synopsys.com>
Fri, 15 Feb 2013 17:46:13 +0000 (23:16 +0530)
commit03a6d28cdddfbd11b338c23e7fe51d0816b9bdef
tree740383bea378fd680c35ff9b8c074ac36e2781ee
parent93ad700de2abc111c50bb961c150a9968d5b3982
ARC: [Review] Multi-platform image #2: Board callback Infrastructure

The orig platform code orgnaization was singleton design pattern - only
one platform (and board thereof) would build at a time.

Thus any platform/board specific code (e.g. irq init, early init ...)
expected by ARC common code was exported as well defined set of APIs,
with only ONE instance building ever.

Now with multiple-platform build requirement, that design of code no
longer holds - multiple board specific calls need to build at the same
time - so ARC common code can't use the API approach, it needs a
callback based design where each board registers it's specific set of
functions, and at runtime, depending on board detection, the callbacks
are used from the registry.

This commit adds all the infrastructure, where board specific callbacks
are specified as a "maThine description".

All the hooks are placed in right spots, no board callbacks registered
yet (with MACHINE_STARt/END constructs) so the hooks will not run.

Next commit will actually convert the platform to this infrastructure.

Signed-off-by: Vineet Gupta <vgupta@synopsys.com>
Cc: Arnd Bergmann <arnd@arndb.de>
Acked-by: Arnd Bergmann <arnd@arndb.de>
arch/arc/include/asm/mach_desc.h [new file with mode: 0644]
arch/arc/include/asm/prom.h
arch/arc/kernel/devtree.c
arch/arc/kernel/irq.c
arch/arc/kernel/setup.c
arch/arc/kernel/smp.c
arch/arc/kernel/time.c
arch/arc/kernel/vmlinux.lds.S