OpenCores
URL https://opencores.org/ocsvn/openrisc/openrisc/trunk

Subversion Repositories openrisc

[/] [openrisc/] [trunk/] [rtos/] [ecos-3.0/] [packages/] [io/] [flash/] [current/] [src/] [legacy_dev.c] - Rev 786

Compare with Previous | Blame | View Log

//==========================================================================
//
//      legacy_dev.c
//
//      Interface to the legacy device drivers 
//
//==========================================================================
// ####ECOSGPLCOPYRIGHTBEGIN####                                            
// -------------------------------------------                              
// This file is part of eCos, the Embedded Configurable Operating System.   
// Copyright (C) 2004, 2006, 2009 Free Software Foundation, 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.,    
// 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, 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 v2.                                               
//
// This exception does not invalidate any other reasons why a work based    
// on this file might be covered by the GNU General Public License.         
// -------------------------------------------                              
// ####ECOSGPLCOPYRIGHTEND####                                              
//==========================================================================
//#####DESCRIPTIONBEGIN####
//
// Author(s):    Andrew Lunn
// Contributors: Andrew Lunn
// Date:         2004-07-02
// Purpose:      
// Description:  Implement an interface to the legacy device drivers
//              
//####DESCRIPTIONEND####
//
//==========================================================================
 
#include <pkgconf/system.h>
#include <pkgconf/io_flash.h>
 
#include <cyg/hal/hal_arch.h>
#include <cyg/hal/hal_intr.h>
#include <cyg/hal/hal_cache.h>
#include <string.h>
 
#include <cyg/io/flash.h>
#include <cyg/io/flash_dev.h>
#include "flash_legacy.h"
 
// When this flag is set, do not actually jump to the relocated code.
// This can be used for running the function in place (RAM startup only),
// allowing calls to diag_printf() and similar.
#undef RAM_FLASH_DEV_DEBUG
#if !defined(CYG_HAL_STARTUP_RAM) && defined(RAM_FLASH_DEV_DEBUG)
# warning "Can only enable the flash debugging when configured for RAM startup"
#endif
 
struct flash_info flash_info;
 
// These are the functions in the HW specific driver we need to call.
typedef void code_fun(void*);
 
externC code_fun flash_query;
externC code_fun flash_erase_block;
externC code_fun flash_program_buf;
externC code_fun flash_read_buf;
externC code_fun flash_lock_block;
externC code_fun flash_unlock_block;
 
static int dummy_printf( const char *fmt, ... ) {return 0;}
 
// Initialize the device
static int 
legacy_flash_init (struct cyg_flash_dev *dev)
{
  int err;
  static cyg_flash_block_info_t block_info[1];
 
  // Legacy device drivers can't handle NULL printf function
  if (NULL != dev->pf)
      flash_info.pf = dev->pf;
  else
      flash_info.pf = &dummy_printf;
 
  err=flash_hwr_init();
 
  if (!err) {
    dev->start = (cyg_flashaddr_t)flash_info.start;
    dev->end = dev->start + flash_info.block_size * flash_info.blocks - 1; 
    dev->num_block_infos = 1;
    dev->block_info = block_info;
    block_info[0].block_size = flash_info.block_size;
    block_info[0].blocks = flash_info.blocks;
  }
  return err;
}
 
static size_t 
legacy_flash_query (struct cyg_flash_dev *dev, 
                    void * data, 
                    size_t len)
{
  typedef void code_fun(void*);
  code_fun *_flash_query;
 
  _flash_query = (code_fun*) cyg_flash_anonymizer(&flash_query);
 
  (*_flash_query)(data);
 
  return len;
}
 
static int 
legacy_flash_erase_block (struct cyg_flash_dev *dev, 
                          cyg_flashaddr_t block_base)
{
  typedef int code_fun(cyg_flashaddr_t, unsigned int);
  code_fun *_flash_erase_block;
  size_t block_size = dev->block_info[0].block_size;
  int    stat;
 
  _flash_erase_block = (code_fun*) cyg_flash_anonymizer(&flash_erase_block);
 
  stat =  (*_flash_erase_block)(block_base, block_size);
  return flash_hwr_map_error(stat);
}
 
static int
legacy_flash_program(struct cyg_flash_dev *dev, 
                     cyg_flashaddr_t base, 
                     const void* data, size_t len)
{
  typedef int code_fun(cyg_flashaddr_t, const void *, int, unsigned long, int);
  code_fun *_flash_program_buf;
  size_t block_size = dev->block_info[0].block_size;
  size_t block_mask = ~(block_size -1);
  int    stat;
 
  _flash_program_buf = (code_fun*) cyg_flash_anonymizer(&flash_program_buf);
 
  stat = (*_flash_program_buf)(base, data, len, block_mask, flash_info.buffer_size);
  return flash_hwr_map_error(stat);
}
 
#ifdef CYGSEM_IO_FLASH_READ_INDIRECT
static int 
legacy_flash_read (struct cyg_flash_dev *dev, 
                   const cyg_flashaddr_t base, 
                   void* data, size_t len)
{
  typedef int code_fun(const cyg_flashaddr_t, void *, int, unsigned long, int);
  code_fun *_flash_read_buf;
  size_t block_size = dev->block_info[0].block_size;
  size_t block_mask = ~(block_size -1);
  int    stat;
  _flash_read_buf = (code_fun*) cyg_flash_anonymizer(&flash_read_buf);
 
  stat = (*_flash_read_buf)(base, data, len, block_mask, block_size);
  return flash_hwr_map_error(stat);
}
 
# define LEGACY_FLASH_READ  legacy_flash_read
#else
# define LEGACY_FLASH_READ  ((int (*)(struct cyg_flash_dev*, const cyg_flashaddr_t, void*, const size_t))0)
#endif
 
 
#ifdef CYGHWR_IO_FLASH_BLOCK_LOCKING
static int 
legacy_flash_block_lock (struct cyg_flash_dev *dev, 
                         const cyg_flashaddr_t block_base)
{
  typedef int code_fun(cyg_flashaddr_t);
  code_fun *_flash_lock_block;
  int       stat;  
  _flash_lock_block = (code_fun*) cyg_flash_anonymizer(&flash_lock_block);
 
  stat = (*_flash_lock_block)(block_base);
  return flash_hwr_map_error(stat);
}
 
static int 
legacy_flash_block_unlock (struct cyg_flash_dev *dev, 
                           const cyg_flashaddr_t block_base)
{
  typedef int code_fun(cyg_flashaddr_t, int, int);
  code_fun *_flash_unlock_block;
  size_t block_size = dev->block_info[0].block_size;
  cyg_uint32 blocks = dev->block_info[0].blocks;
  int        stat;  
  _flash_unlock_block = (code_fun*) cyg_flash_anonymizer(&flash_unlock_block);
 
  stat = (*_flash_unlock_block)(block_base, block_size, blocks);
  return flash_hwr_map_error(stat);
}
#endif
 
void
flash_dev_query(void* data)
{
    typedef void code_fun(void*);
    code_fun *_flash_query;
    HAL_FLASH_CACHES_STATE(d_cache, i_cache);
 
    _flash_query = (code_fun*) cyg_flash_anonymizer(&flash_query);
 
    HAL_FLASH_CACHES_OFF(d_cache, i_cache);
    (*_flash_query)(data);
    HAL_FLASH_CACHES_ON(d_cache, i_cache);
}
 
static const CYG_FLASH_FUNS(cyg_legacy_funs, 
                            legacy_flash_init,
                            legacy_flash_query,
                            legacy_flash_erase_block,
                            legacy_flash_program,
                            LEGACY_FLASH_READ,
                            legacy_flash_block_lock,
                            legacy_flash_block_unlock
    );
 
CYG_FLASH_DRIVER(cyg_zzlegacy_flashdev,
                 &cyg_legacy_funs,
                 0,     // Flags
                 0,     // Start address, filled in by init
                 0,     // End address, filled in by init
                 0,     // Number of block infos, filled in by init
                 NULL,  // Block infos, again filled in by init
                 NULL   // Driver private data, none needed
    );
 

Compare with Previous | Blame | View Log

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.