setup.c
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:2k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  * Copyright (C) 2000, 2001 Broadcom Corporation
  3.  *
  4.  * This program is free software; you can redistribute it and/or
  5.  * modify it under the terms of the GNU General Public License
  6.  * as published by the Free Software Foundation; either version 2
  7.  * of the License, or (at your option) any later version.
  8.  *
  9.  * This program is distributed in the hope that it will be useful,
  10.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  11.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  12.  * GNU General Public License for more details.
  13.  *
  14.  * You should have received a copy of the GNU General Public License
  15.  * along with this program; if not, write to the Free Software
  16.  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
  17.  */
  18. #include <asm/sibyte/sb1250.h>
  19. #include <asm/sibyte/sb1250_regs.h>
  20. #include <asm/sibyte/sb1250_scd.h>
  21. #include <asm/sibyte/64bit.h>
  22. /* Setup code likely to be common to all BCM1250 platforms */
  23. unsigned int sb1250_pass;
  24. void sb1250_setup(void)
  25. {
  26. int bad_config = 0;
  27. sb1250_pass = G_SYS_REVISION(in64(IO_SPACE_BASE | A_SCD_SYSTEM_REVISION));
  28. /* sb1250_pass is more specific than "1", "2" etc.  There are
  29.            many revision numbers corresponding to "Pass 2". */
  30. switch(sb1250_pass) {
  31. case 1:
  32. #ifndef CONFIG_SB1_PASS_1_WORKAROUNDS
  33. printk("@@@@ This is a pass 1 board, and the kernel doesn't have the proper workarounds compiled in. @@@@");
  34. bad_config = 1;
  35. #endif
  36. break;
  37. default:
  38. #if defined(CONFIG_CPU_HAS_PREFETCH) || !defined(CONFIG_SB1_PASS_2_WORKAROUNDS)
  39. printk("@@@@ This is a pass 2 board, and the kernel doesn't have the proper workarounds compiled in. @@@@");
  40. printk("@@@@ Prefetches are enabled in this kernel, but are buggy on this board.  @@@@");
  41. bad_config = 1;
  42. #endif
  43. break;
  44. }
  45. /* XXXKW this is too early for panic/printk to actually do much! */
  46. if (bad_config) {
  47. panic("Invalid configuration for this pass.");
  48. }
  49. }