powerpc: Move GE PIC drivers
Move the GE PIC drivers to allow these to be used by non-86xx boards. Signed-off-by: Martyn Welch <martyn.welch@ge.com> Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
This commit is contained in:
parent
6518bb69f4
commit
44b24b74ab
|
@ -64,10 +64,6 @@ config GEF_SBC610
|
||||||
help
|
help
|
||||||
This option enables support for the GE SBC610.
|
This option enables support for the GE SBC610.
|
||||||
|
|
||||||
config GE_FPGA
|
|
||||||
bool
|
|
||||||
default n
|
|
||||||
|
|
||||||
endif
|
endif
|
||||||
|
|
||||||
config MPC8641
|
config MPC8641
|
||||||
|
|
|
@ -7,7 +7,6 @@ obj-$(CONFIG_SMP) += mpc86xx_smp.o
|
||||||
obj-$(CONFIG_MPC8641_HPCN) += mpc86xx_hpcn.o
|
obj-$(CONFIG_MPC8641_HPCN) += mpc86xx_hpcn.o
|
||||||
obj-$(CONFIG_SBC8641D) += sbc8641d.o
|
obj-$(CONFIG_SBC8641D) += sbc8641d.o
|
||||||
obj-$(CONFIG_MPC8610_HPCD) += mpc8610_hpcd.o
|
obj-$(CONFIG_MPC8610_HPCD) += mpc8610_hpcd.o
|
||||||
obj-$(CONFIG_GE_FPGA) += gef_pic.o
|
|
||||||
obj-$(CONFIG_GEF_SBC610) += gef_sbc610.o
|
obj-$(CONFIG_GEF_SBC610) += gef_sbc610.o
|
||||||
obj-$(CONFIG_GEF_SBC310) += gef_sbc310.o
|
obj-$(CONFIG_GEF_SBC310) += gef_sbc310.o
|
||||||
obj-$(CONFIG_GEF_PPC9A) += gef_ppc9a.o
|
obj-$(CONFIG_GEF_PPC9A) += gef_ppc9a.o
|
||||||
|
|
|
@ -37,9 +37,9 @@
|
||||||
|
|
||||||
#include <sysdev/fsl_pci.h>
|
#include <sysdev/fsl_pci.h>
|
||||||
#include <sysdev/fsl_soc.h>
|
#include <sysdev/fsl_soc.h>
|
||||||
|
#include <sysdev/ge/ge_pic.h>
|
||||||
|
|
||||||
#include "mpc86xx.h"
|
#include "mpc86xx.h"
|
||||||
#include "gef_pic.h"
|
|
||||||
|
|
||||||
#undef DEBUG
|
#undef DEBUG
|
||||||
|
|
||||||
|
|
|
@ -37,9 +37,9 @@
|
||||||
|
|
||||||
#include <sysdev/fsl_pci.h>
|
#include <sysdev/fsl_pci.h>
|
||||||
#include <sysdev/fsl_soc.h>
|
#include <sysdev/fsl_soc.h>
|
||||||
|
#include <sysdev/ge/ge_pic.h>
|
||||||
|
|
||||||
#include "mpc86xx.h"
|
#include "mpc86xx.h"
|
||||||
#include "gef_pic.h"
|
|
||||||
|
|
||||||
#undef DEBUG
|
#undef DEBUG
|
||||||
|
|
||||||
|
|
|
@ -37,9 +37,9 @@
|
||||||
|
|
||||||
#include <sysdev/fsl_pci.h>
|
#include <sysdev/fsl_pci.h>
|
||||||
#include <sysdev/fsl_soc.h>
|
#include <sysdev/fsl_soc.h>
|
||||||
|
#include <sysdev/ge/ge_pic.h>
|
||||||
|
|
||||||
#include "mpc86xx.h"
|
#include "mpc86xx.h"
|
||||||
#include "gef_pic.h"
|
|
||||||
|
|
||||||
#undef DEBUG
|
#undef DEBUG
|
||||||
|
|
||||||
|
|
|
@ -29,3 +29,7 @@ config SCOM_DEBUGFS
|
||||||
bool "Expose SCOM controllers via debugfs"
|
bool "Expose SCOM controllers via debugfs"
|
||||||
depends on PPC_SCOM
|
depends on PPC_SCOM
|
||||||
default n
|
default n
|
||||||
|
|
||||||
|
config GE_FPGA
|
||||||
|
bool
|
||||||
|
default n
|
||||||
|
|
|
@ -65,3 +65,5 @@ obj-$(CONFIG_PPC_SCOM) += scom.o
|
||||||
subdir-ccflags-$(CONFIG_PPC_WERROR) := -Werror
|
subdir-ccflags-$(CONFIG_PPC_WERROR) := -Werror
|
||||||
|
|
||||||
obj-$(CONFIG_PPC_XICS) += xics/
|
obj-$(CONFIG_PPC_XICS) += xics/
|
||||||
|
|
||||||
|
obj-$(CONFIG_GE_FPGA) += ge/
|
||||||
|
|
|
@ -0,0 +1 @@
|
||||||
|
obj-$(CONFIG_GE_FPGA) += ge_pic.o
|
|
@ -22,7 +22,7 @@
|
||||||
#include <asm/prom.h>
|
#include <asm/prom.h>
|
||||||
#include <asm/irq.h>
|
#include <asm/irq.h>
|
||||||
|
|
||||||
#include "gef_pic.h"
|
#include "ge_pic.h"
|
||||||
|
|
||||||
#define DEBUG
|
#define DEBUG
|
||||||
#undef DEBUG
|
#undef DEBUG
|
Loading…
Reference in New Issue