📄 mb93091_misc.c
字号:
//==========================================================================
//
// mb93091_misc.c
//
// HAL misc board support code for Fujitsu MB93091 ( FR-V 400/500 )
//
//==========================================================================
//####ECOSGPLCOPYRIGHTBEGIN####
// -------------------------------------------
// This file is part of eCos, the Embedded Configurable Operating System.
// Copyright (C) 1998, 1999, 2000, 2001, 2002, 2004 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): gthomas
// Contributors: gthomas
// Date: 2001-09-07
// Purpose: HAL board support
// Description: Implementations of HAL board interfaces
//
//####DESCRIPTIONEND####
//
//========================================================================*/
#include <pkgconf/hal.h>
#include <pkgconf/system.h>
#include CYGBLD_HAL_PLATFORM_H
#include <cyg/infra/cyg_type.h> // base types
#include <cyg/infra/cyg_trac.h> // tracing macros
#include <cyg/infra/cyg_ass.h> // assertion macros
#include <cyg/infra/diag.h> // diag_printf() and friends
#include <cyg/hal/hal_io.h> // IO macros
#include <cyg/hal/hal_arch.h> // Register state info
#include <cyg/hal/hal_diag.h>
#include <cyg/hal/hal_intr.h> // Interrupt names
#include <cyg/hal/hal_cache.h>
#include <cyg/hal/mb93091.h> // Hardware definitions
#include <cyg/hal/hal_if.h> // calling interface API
static cyg_uint32 _period;
void hal_clock_initialize(cyg_uint32 period)
{
_period = period;
// Set timer #1 to run in terminal count mode for period
HAL_WRITE_UINT8(_FRVGEN_TCTR, _FRVGEN_TCTR_SEL1|_FRVGEN_TCTR_RLOHI|_FRVGEN_TCTR_MODE0);
HAL_WRITE_UINT8(_FRVGEN_TCSR1, period & 0xFF);
HAL_WRITE_UINT8(_FRVGEN_TCSR1, period >> 8);
// Configure interrupt
HAL_INTERRUPT_CONFIGURE(CYGNUM_HAL_INTERRUPT_TIMER1, 1, 1); // Interrupt when TOUT1 is high
}
void hal_clock_reset(cyg_uint32 vector, cyg_uint32 period)
{
cyg_int16 offset;
cyg_uint8 _val;
// Latch & read counter from timer #1
HAL_WRITE_UINT8(_FRVGEN_TCTR, _FRVGEN_TCTR_LATCH|_FRVGEN_TCTR_RLOHI|_FRVGEN_TCTR_SEL1);
HAL_READ_UINT8(_FRVGEN_TCSR1, _val);
offset = _val;
HAL_READ_UINT8(_FRVGEN_TCSR1, _val);
offset |= _val << 8; // This will be the number of clocks beyond 0
period += offset;
// Reinitialize with adjusted count
// Set timer #1 to run in terminal count mode for period
HAL_WRITE_UINT8(_FRVGEN_TCTR, _FRVGEN_TCTR_SEL1|_FRVGEN_TCTR_RLOHI|_FRVGEN_TCTR_MODE0);
HAL_WRITE_UINT8(_FRVGEN_TCSR1, period & 0xFF);
HAL_WRITE_UINT8(_FRVGEN_TCSR1, period >> 8);
}
// Read the current value of the clock, returning the number of hardware "ticks"
// that have occurred (i.e. how far away the current value is from the start)
void hal_clock_read(cyg_uint32 *pvalue)
{
cyg_int16 offset;
cyg_uint8 _val;
// Latch & read counter from timer #1
HAL_WRITE_UINT8(_FRVGEN_TCTR, _FRVGEN_TCTR_LATCH|_FRVGEN_TCTR_RLOHI|_FRVGEN_TCTR_SEL1);
HAL_READ_UINT8(_FRVGEN_TCSR1, _val);
offset = _val;
HAL_READ_UINT8(_FRVGEN_TCSR1, _val);
offset |= _val << 8;
// 'offset' is the current timer value
*pvalue = _period - offset;
}
// Delay for some number of useconds.
// Assumptions:
// Use timer #2
// Min granularity is 10us
#define _MIN_DELAY 10
void hal_delay_us(int us)
{
cyg_uint8 stat;
int timeout;
while (us >= _MIN_DELAY) {
us -= _MIN_DELAY;
// Set timer #2 to run in terminal count mode for _MIN_DELAY us
HAL_WRITE_UINT8(_FRVGEN_TCTR, _FRVGEN_TCTR_SEL2|_FRVGEN_TCTR_RLOHI|_FRVGEN_TCTR_MODE0);
HAL_WRITE_UINT8(_FRVGEN_TCSR2, _MIN_DELAY & 0xFF);
HAL_WRITE_UINT8(_FRVGEN_TCSR2, _MIN_DELAY >> 8);
timeout = 100000;
// Wait for TOUT to indicate terminal count reached
do {
HAL_WRITE_UINT8(_FRVGEN_TCTR, _FRVGEN_TCTR_RB|_FRVGEN_TCTR_RB_NCOUNT|_FRVGEN_TCTR_RB_CTR2);
HAL_READ_UINT8(_FRVGEN_TCSR2, stat);
if (--timeout == 0) break;
} while ((stat & _FRVGEN_TCxSR_TOUT) == 0);
}
}
//
// Early stage hardware initialization
// Some initialization has already been done before we get here. For now
// just set up the interrupt environment and the LEDs
//
// LED control
//
static int sendlcdcmd(cyg_uint32 cmd)
{
volatile cyg_uint32 *USERLCD = (void *)_MB93091_MB_LCD;
int c = 10000;
*USERLCD = LCD_CMD_READ_BUSY;
*USERLCD = LCD_RW;
while (!((*USERLCD) & 0x80)) {
if (--c) {
return 1;
}
}
*USERLCD = cmd;
*USERLCD = cmd &~LCD_E;
hal_delay_us(100);
return 0;
}
static void sendlcdstring(char *str)
{
while(*str)
sendlcdcmd(LCD_DATA_WRITE(*(str++)));
}
static void setlcd(char *model)
{
sendlcdcmd(LCD_CMD_FUNCSET(1,1,0));
hal_delay_us(4100);
sendlcdcmd(LCD_CMD_FUNCSET(1,1,0));
hal_delay_us(100);
sendlcdcmd(LCD_CMD_FUNCSET(1,1,0));
sendlcdcmd(LCD_CMD_ON(0,0));
sendlcdcmd(LCD_CMD_CLEAR);
hal_delay_us(1640);
sendlcdcmd(LCD_CMD_HOME);
sendlcdcmd(LCD_CMD_SET_DD_ADDR(0));
sendlcdstring("RedBoot");
if (model) {
sendlcdstring(" on");
sendlcdcmd(LCD_CMD_SET_DD_ADDR(64));
sendlcdstring("Fujitsu MB93");
sendlcdstring(model);
}
}
cyg_bool _mb93091_has_vdk = 1;
long _system_clock; // Calculated clock frequency
char HAL_PLATFORM_CPU[] = "Fujitsu FRxxx\0";
char HAL_PLATFORM_BOARD[] = "MB93xxx evaluation board\0";
char HAL_PLATFORM_EXTRA[] = "\0PSR xx)";
void hal_hardware_init(void)
{
cyg_uint32 clk, clkc, psr, u32;
char *model;
int cb_nr = 0;
cyg_uint16 tmp;
// Set up interrupt controller
HAL_WRITE_UINT16(_FRVGEN_IRC_MASK, 0xFFFE); // All masked
HAL_WRITE_UINT16(_FRVGEN_IRC_RC, 0xFFFE); // All cleared
HAL_WRITE_UINT16(_FRVGEN_IRC_IRL, 0x10); // Clear IRL (interrupt request latch)
// Onboard FPGA interrupts
HAL_WRITE_UINT16(_MB93091_FPGA_CONTROL, _MB93091_FPGA_CONTROL_IRQ); // Enable IRQ registers
HAL_WRITE_UINT16(_MB93091_FPGA_IRQ_MASK, // Set up for LAN, PCI INTx
0x7FFE &
~(_MB93091_FPGA_IRQ_INTA |
_MB93091_FPGA_IRQ_INTB |
_MB93091_FPGA_IRQ_INTC |
_MB93091_FPGA_IRQ_INTD)
);
HAL_WRITE_UINT16(_MB93091_FPGA_IRQ_LEVELS, // Set up for LAN, PCI INTx
0x7FFE &
~(_MB93091_FPGA_IRQ_LAN |
_MB93091_FPGA_IRQ_INTA |
_MB93091_FPGA_IRQ_INTB |
_MB93091_FPGA_IRQ_INTC |
_MB93091_FPGA_IRQ_INTD)
);
HAL_INTERRUPT_CONFIGURE(CYGNUM_HAL_INTERRUPT_LAN, 1, 0); // Level, low
asm("movsg psr,%0" : "=r"(psr));
switch(psr >> 24) {
case 0x20:/* FR401 */
model = "401";
cb_nr = 10;
break;
case 0x21:/* FR401A */
model = "401A";
cb_nr = 11;
break;
case 0x22:/* FR403 */
model = "403";
cb_nr = 30;
break;
case 0x40:/* FR405 */
model = "405";
/* Turn on the IRQ control bit if it's off. */
HAL_READ_UINT16(_MB93091_FPGA_VDKID, tmp);
cb_nr = (tmp == 0x46) ? 70 : 60;
break;
case 0x50:/* FR451 */
model = "451";
cb_nr = 451;
break;
case 0x12:/* FR501A */
model = "501A";
break;
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -