diff options
author | Benjamin Herrenschmidt <benh@kernel.crashing.org> | 2011-04-14 18:31:58 -0400 |
---|---|---|
committer | Benjamin Herrenschmidt <benh@kernel.crashing.org> | 2011-04-20 03:01:19 -0400 |
commit | ab814b938d1d372bd2ac6268c15d4e0e6a5245c4 (patch) | |
tree | 252a24fdd538fb132714f4a0cb4eb5facfc2dceb /arch/powerpc/sysdev/Makefile | |
parent | cd852579055bd8ad848415aaabb78b65d522fce0 (diff) |
powerpc: Add SCOM infrastructure
SCOM is a side-band configuration bus implemented on some processors.
This code provides a way for code to map and operate on devices via
SCOM, while the details of how that is implemented is left up to a
SCOM "controller" in the platform code.
Signed-off-by: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Signed-off-by: Michael Ellerman <michael@ellerman.id.au>
Signed-off-by: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Diffstat (limited to 'arch/powerpc/sysdev/Makefile')
-rw-r--r-- | arch/powerpc/sysdev/Makefile | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/arch/powerpc/sysdev/Makefile b/arch/powerpc/sysdev/Makefile index 9516e7598573..6076e0074a87 100644 --- a/arch/powerpc/sysdev/Makefile +++ b/arch/powerpc/sysdev/Makefile | |||
@@ -58,6 +58,8 @@ ifeq ($(CONFIG_SUSPEND),y) | |||
58 | obj-$(CONFIG_6xx) += 6xx-suspend.o | 58 | obj-$(CONFIG_6xx) += 6xx-suspend.o |
59 | endif | 59 | endif |
60 | 60 | ||
61 | obj-$(CONFIG_PPC_SCOM) += scom.o | ||
62 | |||
61 | subdir-ccflags-$(CONFIG_PPC_WERROR) := -Werror | 63 | subdir-ccflags-$(CONFIG_PPC_WERROR) := -Werror |
62 | 64 | ||
63 | obj-$(CONFIG_PPC_XICS) += xics/ | 65 | obj-$(CONFIG_PPC_XICS) += xics/ |