setup.c
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:1k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * arch/sh/stboard/setup.c
  3.  *
  4.  * Copyright (C) 2001 Stuart Menefy (stuart.menefy@st.com)
  5.  *
  6.  * May be copied or modified under the terms of the GNU General Public
  7.  * License.  See linux/COPYING for more information.
  8.  *
  9.  * STMicroelectronics ST40STB1 HARP and compatible support.
  10.  */
  11. #include <linux/config.h>
  12. #include <linux/kernel.h>
  13. #include <linux/init.h>
  14. #include <asm/io.h>
  15. #include "harp.h"
  16. /*
  17.  * Initialize the board
  18.  */
  19. int __init setup_harp(void)
  20. {
  21. #ifdef CONFIG_SH_STB1_HARP
  22. unsigned long ic8_version, ic36_version;
  23. ic8_version = ctrl_inl(EPLD_REVID2);
  24. ic36_version = ctrl_inl(EPLD_REVID1);
  25.         printk("STMicroelectronics STB1 HARP initialisatonn");
  26.         printk("EPLD versions: IC8: %d.%02d, IC36: %d.%02dn",
  27.                (ic8_version >> 4) & 0xf, ic8_version & 0xf,
  28.                (ic36_version >> 4) & 0xf, ic36_version & 0xf);
  29. #elif defined(CONFIG_SH_STB1_OVERDRIVE)
  30. unsigned long version;
  31. version = ctrl_inl(EPLD_REVID);
  32.         printk("STMicroelectronics STB1 Overdrive initialisatonn");
  33.         printk("EPLD version: %d.%02dn",
  34.        (version >> 4) & 0xf, version & 0xf);
  35. #else
  36. #error Undefined machine
  37. #endif
  38.  
  39.         /* Currently all STB1 chips have problems with the sleep instruction,
  40.          * so disable it here.
  41.          */
  42. disable_hlt();
  43. return 0;
  44. }