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

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * Carsten Langgaard, carstenl@mips.com
  3.  * Copyright (C) 2000 MIPS Technologies, Inc.  All rights reserved.
  4.  *
  5.  * ########################################################################
  6.  *
  7.  *  This program is free software; you can distribute it and/or modify it
  8.  *  under the terms of the GNU General Public License (Version 2) as
  9.  *  published by the Free Software Foundation.
  10.  *
  11.  *  This program is distributed in the hope it will be useful, but WITHOUT
  12.  *  ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  13.  *  FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  14.  *  for more details.
  15.  *
  16.  *  You should have received a copy of the GNU General Public License along
  17.  *  with this program; if not, write to the Free Software Foundation, Inc.,
  18.  *  59 Temple Place - Suite 330, Boston MA 02111-1307, USA.
  19.  *
  20.  * ########################################################################
  21.  *
  22.  * Defines of the Malta board specific address-MAP, registers, etc.
  23.  *
  24.  */
  25. #ifndef _MIPS_MALTA_H
  26. #define _MIPS_MALTA_H
  27. #include <asm/addrspace.h>
  28. #include <asm/io.h>
  29. /* 
  30.  * Malta I/O ports base address. 
  31. */
  32. #define MALTA_PORT_BASE      (KSEG1ADDR(0x18000000))
  33. /* 
  34.  * Malta RTC-device indirect register access.
  35.  */
  36. #define MALTA_RTC_ADR_REG       0x70
  37. #define MALTA_RTC_DAT_REG       0x71
  38. /*
  39.  * Malta SMSC FDC37M817 Super I/O Controller register.
  40.  */
  41. #define SMSC_CONFIG_REG 0x3f0
  42. #define SMSC_DATA_REG 0x3f1
  43. #define SMSC_CONFIG_DEVNUM 0x7
  44. #define SMSC_CONFIG_ACTIVATE 0x30
  45. #define SMSC_CONFIG_ENTER 0x55
  46. #define SMSC_CONFIG_EXIT 0xaa
  47. #define SMSC_CONFIG_DEVNUM_FLOPPY     0
  48. #define SMSC_CONFIG_ACTIVATE_ENABLE   1
  49. #define SMSC_WRITE(x,a)     outb(x,a)
  50. #endif /* !(_MIPS_MALTA_H) */