aboutsummaryrefslogtreecommitdiff
path: root/sys/mips/nlm/board.c
diff options
context:
space:
mode:
authorJayachandran C. <jchandra@FreeBSD.org>2012-07-09 10:24:45 +0000
committerJayachandran C. <jchandra@FreeBSD.org>2012-07-09 10:24:45 +0000
commitfe60722c96df9b265d37274804c16abac1042d42 (patch)
treeab9915fe9a2f30289771c39232862250de335a19 /sys/mips/nlm/board.c
parent21221d1f6b8de2c7793dea1c5f44c5fb10ae3641 (diff)
downloadsrc-fe60722c96df9b265d37274804c16abac1042d42.tar.gz
src-fe60722c96df9b265d37274804c16abac1042d42.zip
Identify Netlogic XLP 8xx B1 chip revisions
Add functions to check for 8xx B0 and 3xx Ax revisions which will be used in network block initialization.
Notes
Notes: svn path=/head/; revision=238290
Diffstat (limited to 'sys/mips/nlm/board.c')
-rw-r--r--sys/mips/nlm/board.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/sys/mips/nlm/board.c b/sys/mips/nlm/board.c
index b4b0439dd372..c6fd59d49216 100644
--- a/sys/mips/nlm/board.c
+++ b/sys/mips/nlm/board.c
@@ -362,6 +362,8 @@ nlm_print_processor_info(void)
revstr = "A2"; break;
case 3:
revstr = "B0"; break;
+ case 4:
+ revstr = "B1"; break;
default:
revstr = "??"; break;
}