Commit 72646c7f authored by Grant C. Likely's avatar Grant C. Likely Committed by Paul Mackerras

[PATCH] powerpc: Add Virtex-4 FX to cpu table

Signed-off-by: default avatarGrant C. Likely <grant.likely@secretlab.ca>
Signed-off-by: default avatarPaul Mackerras <paulus@samba.org>
parent 5eb446cb
...@@ -891,7 +891,7 @@ struct cpu_spec cpu_specs[] = { ...@@ -891,7 +891,7 @@ struct cpu_spec cpu_specs[] = {
.platform = "ppc405", .platform = "ppc405",
}, },
{ /* Xilinx Virtex-II Pro */ { /* Xilinx Virtex-II Pro */
.pvr_mask = 0xffff0000, .pvr_mask = 0xfffff000,
.pvr_value = 0x20010000, .pvr_value = 0x20010000,
.cpu_name = "Virtex-II Pro", .cpu_name = "Virtex-II Pro",
.cpu_features = CPU_FTRS_40X, .cpu_features = CPU_FTRS_40X,
...@@ -901,6 +901,16 @@ struct cpu_spec cpu_specs[] = { ...@@ -901,6 +901,16 @@ struct cpu_spec cpu_specs[] = {
.dcache_bsize = 32, .dcache_bsize = 32,
.platform = "ppc405", .platform = "ppc405",
}, },
{ /* Xilinx Virtex-4 FX */
.pvr_mask = 0xfffff000,
.pvr_value = 0x20011000,
.cpu_name = "Virtex-4 FX",
.cpu_features = CPU_FTRS_40X,
.cpu_user_features = PPC_FEATURE_32 |
PPC_FEATURE_HAS_MMU | PPC_FEATURE_HAS_4xxMAC,
.icache_bsize = 32,
.dcache_bsize = 32,
},
{ /* 405EP */ { /* 405EP */
.pvr_mask = 0xffff0000, .pvr_mask = 0xffff0000,
.pvr_value = 0x51210000, .pvr_value = 0x51210000,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment