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

Linux/Unix编程

开发平台:

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 for the Galileo GT64120 and Algorithmics
  31.  * Bonito system controllers.
  32.  */
  33. #define MALTA_GT_PORT_BASE      (KSEG1ADDR(0x18000000))
  34. #define MALTA_BONITO_PORT_BASE  (KSEG1ADDR(0x1fd00000))
  35. #define MALTA_MSC_PORT_BASE     (KSEG1ADDR(0x18000000))
  36. /*
  37.  * Malta RTC-device indirect register access.
  38.  */
  39. #define MALTA_RTC_ADR_REG       0x70
  40. #define MALTA_RTC_DAT_REG       0x71
  41. /*
  42.  * Malta SMSC FDC37M817 Super I/O Controller register.
  43.  */
  44. #define SMSC_CONFIG_REG 0x3f0
  45. #define SMSC_DATA_REG 0x3f1
  46. #define SMSC_CONFIG_DEVNUM 0x7
  47. #define SMSC_CONFIG_ACTIVATE 0x30
  48. #define SMSC_CONFIG_ENTER 0x55
  49. #define SMSC_CONFIG_EXIT 0xaa
  50. #define SMSC_CONFIG_DEVNUM_FLOPPY     0
  51. #define SMSC_CONFIG_ACTIVATE_ENABLE   1
  52. #define SMSC_WRITE(x,a)     outb(x,a)
  53. #endif /* !(_MIPS_MALTA_H) */