Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 11278
b: refs/heads/master
c: 93ce2f5
h: refs/heads/master
v: v3
  • Loading branch information
Andrew Isaacson authored and Ralf Baechle committed Oct 29, 2005
1 parent 64353bc commit a6eab3e
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 3 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 4f19f990475dc4465ca6906ba03a55805d4c1402
refs/heads/master: 93ce2f524e96571711029884e6340c790a029b94
3 changes: 3 additions & 0 deletions trunk/arch/mips/kernel/cpu-probe.c
Original file line number Diff line number Diff line change
Expand Up @@ -623,6 +623,9 @@ static inline void cpu_probe_sibyte(struct cpuinfo_mips *c)
c->options &= ~(MIPS_CPU_FPU | MIPS_CPU_32FPR);
#endif
break;
case PRID_IMP_SB1A:
c->cputype = CPU_SB1A;
break;
}
}

Expand Down
1 change: 1 addition & 0 deletions trunk/arch/mips/kernel/proc.c
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,7 @@ static const char *cpu_name[] = {
[CPU_5KC] = "MIPS 5Kc",
[CPU_R4310] = "R4310",
[CPU_SB1] = "SiByte SB1",
[CPU_SB1A] = "SiByte SB1A",
[CPU_TX3912] = "TX3912",
[CPU_TX3922] = "TX3922",
[CPU_TX3927] = "TX3927",
Expand Down
1 change: 1 addition & 0 deletions trunk/arch/mips/mm/tlbex.c
Original file line number Diff line number Diff line change
Expand Up @@ -854,6 +854,7 @@ static __init void build_tlb_write_entry(u32 **p, struct label **l,
case CPU_R12000:
case CPU_4KC:
case CPU_SB1:
case CPU_SB1A:
case CPU_4KSC:
case CPU_20KC:
case CPU_25KF:
Expand Down
2 changes: 1 addition & 1 deletion trunk/include/asm-mips/addrspace.h
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@
#define TO_PHYS_MASK _LLCONST_(0x000000ffffffffff) /* 2^^40 - 1 */
#endif

#if defined(CONFIG_CPU_SB1)
#if defined(CONFIG_CPU_SB1) || defined(CONFIG_CPU_SB1A)
#define KUSIZE _LLCONST_(0x0000100000000000) /* 2^^44 */
#define KUSIZE_64 _LLCONST_(0x0000100000000000) /* 2^^44 */
#define K0SIZE _LLCONST_(0x0000100000000000) /* 2^^44 */
Expand Down
4 changes: 3 additions & 1 deletion trunk/include/asm-mips/cpu.h
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,7 @@
*/

#define PRID_IMP_SB1 0x0100
#define PRID_IMP_SB1A 0x1100

/*
* These are the PRID's for when 23:16 == PRID_COMP_SANDCRAFT
Expand Down Expand Up @@ -194,7 +195,8 @@
#define CPU_AU1200 59
#define CPU_34K 60
#define CPU_PR4450 61
#define CPU_LAST 61
#define CPU_SB1A 62
#define CPU_LAST 62

/*
* ISA Level encodings
Expand Down

0 comments on commit a6eab3e

Please sign in to comment.