URL
https://opencores.org/ocsvn/openrisc_me/openrisc_me/trunk
Subversion Repositories openrisc_me
[/] [openrisc/] [trunk/] [rtos/] [ecos-2.0/] [packages/] [hal/] [mips/] [tx39/] [v2_0/] [include/] [variant.inc] - Rev 249
Go to most recent revision | Compare with Previous | Blame | View Log
#ifndef CYGONCE_HAL_VARIANT_INC
#define CYGONCE_HAL_VARIANT_INC
##=============================================================================
##
## variant.inc
##
## TX39 family assembler header file
##
##=============================================================================
#####ECOSGPLCOPYRIGHTBEGIN####
## -------------------------------------------
## This file is part of eCos, the Embedded Configurable Operating System.
## Copyright (C) 1998, 1999, 2000, 2001, 2002 Red Hat, Inc.
##
## eCos is free software; you can redistribute it and/or modify it under
## the terms of the GNU General Public License as published by the Free
## Software Foundation; either version 2 or (at your option) any later version.
##
## eCos is distributed in the hope that it will be useful, but WITHOUT ANY
## WARRANTY; without even the implied warranty of MERCHANTABILITY or
## FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
## for more details.
##
## You should have received a copy of the GNU General Public License along
## with eCos; if not, write to the Free Software Foundation, Inc.,
## 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
##
## As a special exception, if other files instantiate templates or use macros
## or inline functions from this file, or you compile this file and link it
## with other works to produce a work based on this file, this file does not
## by itself cause the resulting work to be covered by the GNU General Public
## License. However the source code for this file must still be made available
## in accordance with section (3) of the GNU General Public License.
##
## This exception does not invalidate any other reasons why a work based on
## this file might be covered by the GNU General Public License.
##
## Alternative licenses for eCos may be arranged by contacting Red Hat, Inc.
## at http://sources.redhat.com/ecos/ecos-license/
## -------------------------------------------
#####ECOSGPLCOPYRIGHTEND####
##=============================================================================
#######DESCRIPTIONBEGIN####
##
## Author(s): nickg
## Contributors: nickg
## Date: 1999-04-06
## Purpose: TX39 family definitions.
## Description: This file contains various definitions and macros that are
## useful for writing assembly code for the TX39 CPU family.
## Usage:
## #include <cyg/hal/variant.inc>
## ...
##
##
######DESCRIPTIONEND####
##
##=============================================================================
#include <pkgconf/hal.h>
#include <cyg/hal/mips.inc>
#include <cyg/hal/platform.inc>
##-----------------------------------------------------------------------------
## Define CPU variant for architecture HAL.
#define CYG_HAL_MIPS_R3000A
#define CYG_HAL_MIPS_R3900
##-----------------------------------------------------------------------------
## Indicate that the ISR tables are defined in variant.S
#define CYG_HAL_MIPS_ISR_TABLES_DEFINED
##-----------------------------------------------------------------------------
## TX39 Memory controller.
#ifndef CYGPKG_HAL_MIPS_MEMC_DEFINED
## ROM timing characteristics are dependent on the clock speed.
#if (CYGHWR_HAL_MIPS_CPU_FREQ == 50)
#define ROM_CCR0_INIT 0x00000420
#define DRAM_DREFC_INIT 0x00000180
#define DRAM_DWR0_INIT 0x00111111
#elif (CYGHWR_HAL_MIPS_CPU_FREQ == 66)
#define ROM_CCR0_INIT 0x00000520
#define DRAM_DREFC_INIT 0x00000200
#define DRAM_DWR0_INIT 0x00332222
#else
#error Unsupported clock frequency
#endif
## DRAM configuration is dependent on the DRAM device used.
## for 16MByte (4MBit (x4bit) x 8) 0x08024030
## for 4MByte (1MBit (x4bit) x 8) 0x08013020
## for 8MByte (1MBit (x4bit) x 8 x 2 banks) 0x08013020
#if defined CYGHWR_HAL_TX39_JMR3904_DRAM_CONFIG_INIT
#define DRAM_CONFIG_INIT CYGHWR_HAL_TX39_JMR3904_DRAM_CONFIG_INIT
#else
#define DRAM_CONFIG_INIT 0x08024030
#endif
## Enabling timeout exceptions can result in bogus exceptions under the
## following conditions:
## o half speed bus mode (JMR board uses this mode)
## o code resides on 0 wait SRAM
## o I- and D- caches are enabled
## o a very narrow timing condition of cache refill cycle (not
## descibed here)
## The simple solution is to configure 1 cycle wait state SRAM rather
## than zero.
#ifdef CYGHWR_HAL_MIPS_TX39_JMR3904_ENABLE_TOE
#define SRAM_WAIT_INIT 0x00000100
#else
#define SRAM_WAIT_INIT 0x00000000
#endif
.macro hal_memc_init
# These mappings need to be set up before we
# can use the stack and make calls to other
# functions
# If we have been started from Cygmon, it should have
# already done a lot of this, but it should do no harm
# to reinitialize the following registers.
# SCS0,1 base addr of ISA & PCI
la v0,0xffffe010
la v1,0x20201410
sw v1,0(v0)
la v0,0xffffe014
la v1,0xfffffcfc
sw v1,0(v0)
# ROM configuration
.set at
la v0,0xffff9000
lw v1,0(v0)
and v1,v1,0xffff0004 # keep hardware defaults
or v1,ROM_CCR0_INIT # install our values
sw v1,0(v0)
.set noat
# SRAM config
la v0,0xffff9100
la v1,SRAM_WAIT_INIT
sw v1,0(v0)
# ISA bus setup
la v0,0xb2100000
la v1,4
sb v1,0(v0)
# Clear IMR (to cope with JMON)
la v0,0xffffc004
la v1,0x00000000
sw v1,0(v0)
hal_memc_init_dram
.endm
.macro hal_memc_init_dram
# DRAM Configuration
la v0, 0xffff8000
la v1, DRAM_CONFIG_INIT
sw v1, 0(v0)
# DBMR0
la v0, 0xffff8004
la v1, 0x00000000
sw v1, 0(v0)
# DWR0
la v0, 0xffff8008
la v1, DRAM_DWR0_INIT
sw v1, 0(v0)
# DREFC - Depends on clock requency
la v0, 0xffff8800
la v1, DRAM_DREFC_INIT
sw v1, 0(v0)
.endm
#define CYGPKG_HAL_MIPS_MEMC_DEFINED
#endif
##-----------------------------------------------------------------------------
## TX39 interrupt handling.
#ifndef CYGPKG_HAL_MIPS_INTC_DEFINED
#ifdef CYGPKG_HAL_MIPS_TX3904
# Set all ILRX registers to 0, masking all external interrupts.
.macro hal_intc_init
#ifndef CYG_HAL_STARTUP_RAM
la v0,0xFFFFC010
move v1,zero
sw v1,0(v0)
sw v1,4(v0)
sw v1,8(v0)
sw v1,12(v0)
#endif
.endm
.macro hal_intc_decode vnum
mfc0 v1,cause # get cause register
nop
srl v1,v1,10 # shift IP bits to ls bits
andi v1,v1,0x7F # isolate IP bits
la v0,hal_intc_translation_table # address of translation table
add v0,v0,v1 # offset of index byte
lb \vnum,0(v0) # load it
.endm
#ifndef CYGPKG_HAL_MIPS_INTC_TRANSLATE_DEFINED
#ifdef CYGIMP_HAL_COMMON_INTERRUPTS_CHAIN
.macro hal_intc_translate inum,vnum
move \vnum,zero # Just vector zero is supported
.endm
#else
.macro hal_intc_translate inum,vnum
move \vnum,\inum # Vector == interrupt number
.endm
#endif
#endif
# This table translates from the 6 bit value supplied in the IP bits
# of the cause register into a 0..16 offset into the ISR tables.
.macro hal_intc_decode_data
hal_intc_translation_table:
.byte 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15
.byte 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15
.byte 16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16
.byte 16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16
.endm
#define CYGPKG_HAL_MIPS_INTC_DEFINED
#else
#error Unknown TX39 variant
#endif
#endif
#------------------------------------------------------------------------------
# Diagnostics macros.
#if 0
#ifndef CYGPKG_HAL_MIPS_DIAG_DEFINED
# Set up PIO0 for debugging output
.macro hal_diag_init
la v0,0xfffff500
la v1,0xff
sb v1,0(v0)
la v1,0
sb v1,4(v0)
.endm
#define CYGPKG_HAL_MIPS_DIAG_DEFINED
#endif
#endif
#------------------------------------------------------------------------------
#endif // ifndef CYGONCE_HAL_VARIANT_INC
# end of variant.inc
Go to most recent revision | Compare with Previous | Blame | View Log