aboutsummaryrefslogtreecommitdiffstats
path: root/arch/ppc/platforms
diff options
context:
space:
mode:
authorGrant C. Likely <grant.likely@secretlab.ca>2006-01-19 03:12:40 -0500
committerPaul Mackerras <paulus@samba.org>2006-02-07 06:35:57 -0500
commit562e7370a4d59d7ee8988fb0e13707d1f01a046a (patch)
treee42797b26e76c0079b4e2af66e5c643f0e43cf22 /arch/ppc/platforms
parentb4367e7451f19a3ae8b453e8b7ac0a1fdd9bca04 (diff)
[PATCH] powerpc: Make Virtex-II Pro support generic for all Virtex devices
The PPC405 hard core is used in both the Virtex-II Pro and Virtex 4 FX FPGAs. This patch cleans up the Virtex naming convention to reflect more than just the Virtex-II Pro. Rename files virtex-ii_pro.[ch] to virtex.[ch] Rename config value VIRTEX_II_PRO to XILINX_VIRTEX Signed-off-by: Grant C. Likely <grant.likely@secretlab.ca> Signed-off-by: Paul Mackerras <paulus@samba.org>
Diffstat (limited to 'arch/ppc/platforms')
-rw-r--r--arch/ppc/platforms/4xx/Kconfig7
-rw-r--r--arch/ppc/platforms/4xx/Makefile2
-rw-r--r--arch/ppc/platforms/4xx/virtex.c (renamed from arch/ppc/platforms/4xx/virtex-ii_pro.c)4
-rw-r--r--arch/ppc/platforms/4xx/virtex.h (renamed from arch/ppc/platforms/4xx/virtex-ii_pro.h)8
-rw-r--r--arch/ppc/platforms/4xx/xilinx_ml300.c2
-rw-r--r--arch/ppc/platforms/4xx/xilinx_ml300.h2
6 files changed, 15 insertions, 10 deletions
diff --git a/arch/ppc/platforms/4xx/Kconfig b/arch/ppc/platforms/4xx/Kconfig
index d8837911bbc6..203abab32cc3 100644
--- a/arch/ppc/platforms/4xx/Kconfig
+++ b/arch/ppc/platforms/4xx/Kconfig
@@ -208,11 +208,16 @@ config 405GPR
208 depends on SYCAMORE 208 depends on SYCAMORE
209 default y 209 default y
210 210
211config VIRTEX_II_PRO 211config XILINX_VIRTEX_II_PRO
212 bool 212 bool
213 depends on XILINX_ML300 213 depends on XILINX_ML300
214 default y 214 default y
215 215
216config XILINX_VIRTEX
217 bool
218 depends on XILINX_VIRTEX_II_PRO
219 default y
220
216config STB03xxx 221config STB03xxx
217 bool 222 bool
218 depends on REDWOOD_5 || REDWOOD_6 223 depends on REDWOOD_5 || REDWOOD_6
diff --git a/arch/ppc/platforms/4xx/Makefile b/arch/ppc/platforms/4xx/Makefile
index c9bb61170954..be4163c8afe7 100644
--- a/arch/ppc/platforms/4xx/Makefile
+++ b/arch/ppc/platforms/4xx/Makefile
@@ -26,4 +26,4 @@ obj-$(CONFIG_440SP) += ibm440sp.o
26obj-$(CONFIG_440SPE) += ppc440spe.o 26obj-$(CONFIG_440SPE) += ppc440spe.o
27obj-$(CONFIG_405EP) += ibm405ep.o 27obj-$(CONFIG_405EP) += ibm405ep.o
28obj-$(CONFIG_405GPR) += ibm405gpr.o 28obj-$(CONFIG_405GPR) += ibm405gpr.o
29obj-$(CONFIG_VIRTEX_II_PRO) += virtex-ii_pro.o 29obj-$(CONFIG_XILINX_VIRTEX) += virtex.o
diff --git a/arch/ppc/platforms/4xx/virtex-ii_pro.c b/arch/ppc/platforms/4xx/virtex.c
index 097cc9d5aca0..bbb12c0c0b2c 100644
--- a/arch/ppc/platforms/4xx/virtex-ii_pro.c
+++ b/arch/ppc/platforms/4xx/virtex.c
@@ -1,5 +1,5 @@
1/* 1/*
2 * arch/ppc/platforms/4xx/virtex-ii_pro.c 2 * arch/ppc/platforms/4xx/virtex.c
3 * 3 *
4 * Author: MontaVista Software, Inc. 4 * Author: MontaVista Software, Inc.
5 * source@mvista.com 5 * source@mvista.com
@@ -12,7 +12,7 @@
12#include <linux/config.h> 12#include <linux/config.h>
13#include <linux/init.h> 13#include <linux/init.h>
14#include <asm/ocp.h> 14#include <asm/ocp.h>
15#include "virtex-ii_pro.h" 15#include <platforms/4xx/virtex.h>
16 16
17/* Have OCP take care of the serial ports. */ 17/* Have OCP take care of the serial ports. */
18struct ocp_def core_ocp[] = { 18struct ocp_def core_ocp[] = {
diff --git a/arch/ppc/platforms/4xx/virtex-ii_pro.h b/arch/ppc/platforms/4xx/virtex.h
index 026130c8e72a..049c767d33e7 100644
--- a/arch/ppc/platforms/4xx/virtex-ii_pro.h
+++ b/arch/ppc/platforms/4xx/virtex.h
@@ -1,5 +1,5 @@
1/* 1/*
2 * arch/ppc/platforms/4xx/virtex-ii_pro.h 2 * arch/ppc/platforms/4xx/virtex.h
3 * 3 *
4 * Include file that defines the Xilinx Virtex-II Pro processor 4 * Include file that defines the Xilinx Virtex-II Pro processor
5 * 5 *
@@ -12,8 +12,8 @@
12 */ 12 */
13 13
14#ifdef __KERNEL__ 14#ifdef __KERNEL__
15#ifndef __ASM_VIRTEXIIPRO_H__ 15#ifndef __ASM_VIRTEX_H__
16#define __ASM_VIRTEXIIPRO_H__ 16#define __ASM_VIRTEX_H__
17 17
18#include <linux/config.h> 18#include <linux/config.h>
19#include <platforms/4xx/xparameters/xparameters.h> 19#include <platforms/4xx/xparameters/xparameters.h>
@@ -95,5 +95,5 @@
95 95
96#include <asm/ibm405.h> 96#include <asm/ibm405.h>
97 97
98#endif /* __ASM_VIRTEXIIPRO_H__ */ 98#endif /* __ASM_VIRTEX_H__ */
99#endif /* __KERNEL__ */ 99#endif /* __KERNEL__ */
diff --git a/arch/ppc/platforms/4xx/xilinx_ml300.c b/arch/ppc/platforms/4xx/xilinx_ml300.c
index 0b1b77d986bf..b0de0a2f131d 100644
--- a/arch/ppc/platforms/4xx/xilinx_ml300.c
+++ b/arch/ppc/platforms/4xx/xilinx_ml300.c
@@ -22,7 +22,7 @@
22#include <asm/machdep.h> 22#include <asm/machdep.h>
23#include <asm/ocp.h> 23#include <asm/ocp.h>
24 24
25#include <platforms/4xx/virtex-ii_pro.h> /* for NR_SER_PORTS */ 25#include <platforms/4xx/virtex.h> /* for NR_SER_PORTS */
26 26
27/* 27/*
28 * As an overview of how the following functions (platform_init, 28 * As an overview of how the following functions (platform_init,
diff --git a/arch/ppc/platforms/4xx/xilinx_ml300.h b/arch/ppc/platforms/4xx/xilinx_ml300.h
index f8c588412336..899398143623 100644
--- a/arch/ppc/platforms/4xx/xilinx_ml300.h
+++ b/arch/ppc/platforms/4xx/xilinx_ml300.h
@@ -16,7 +16,7 @@
16#define __ASM_XILINX_ML300_H__ 16#define __ASM_XILINX_ML300_H__
17 17
18/* ML300 has a Xilinx Virtex-II Pro processor */ 18/* ML300 has a Xilinx Virtex-II Pro processor */
19#include <platforms/4xx/virtex-ii_pro.h> 19#include <platforms/4xx/virtex.h>
20 20
21#ifndef __ASSEMBLY__ 21#ifndef __ASSEMBLY__
22 22