view packages/io/flash/current/src/legacy_api.c @ 1777:c16341b1bac6 default tip

* Added execute permissions to files missed in conversion from CVS
author alexs
date Mon, 12 Oct 2009 02:26:09 +0100
parents 79275fdb4f20
children
line wrap: on
line source

//==========================================================================
//
//      legacy_api.c
//
//      Legacy API implementation on top of the new API
//
//==========================================================================
//####ECOSGPLCOPYRIGHTBEGIN####
// -------------------------------------------
// This file is part of eCos, the Embedded Configurable Operating System.
// Copyright (C) 2004 Andrew Lunn
//
// 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):    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/io/flash.h>

int
flash_init(_printf *pf)
{
  return cyg_flash_init(pf);
}

int
flash_verify_addr(void *target)
{
  return cyg_flash_verify_addr((cyg_flashaddr_t) target);
}

int
flash_get_limits(void *target, void **start, void **end)
{
  int err;
  cyg_flash_info_t info;
  
  err = cyg_flash_get_info(0, &info);
  if (err != CYG_FLASH_ERR_OK) {
    return err;
  }

  *start = (void *)info.start;
  *end = (void *)info.end;

  return CYG_FLASH_ERR_OK;
}


int
flash_get_block_info(int *block_size, int *blocks)
{
  size_t biggest_size=0;
  cyg_uint32 i;
  cyg_flash_info_t info;
  int err;
  
  err = cyg_flash_get_info(0, &info);
  if (err != CYG_FLASH_ERR_OK) {
    return err;
  }

  // Find the biggest size of blocks
  for (i=0; i < info.num_block_infos; i++) {
    if (info.block_info[i].block_size > biggest_size) {
      biggest_size = info.block_info[i].block_size;
    }
  }
  
  // Calculate the number of biggest size blocks
  *block_size = biggest_size;
  *blocks = 0;
  for (i=0; i < info.num_block_infos; i++) {
    *blocks += (info.block_info[i].block_size *
                info.block_info[i].blocks) /
      biggest_size;
  }
  return CYG_FLASH_ERR_OK;
}

int
flash_erase(void *addr, int len, void **err_addr)
{
  return cyg_flash_erase((cyg_flashaddr_t)addr, len, 
                         (cyg_flashaddr_t *)err_addr);
}

int flash_program(void *flash_base, void *ram_base, int len, 
                  void **err_address)
{
  return cyg_flash_program((cyg_flashaddr_t)flash_base, ram_base, 
                           len, (cyg_flashaddr_t *)err_address);
}

int flash_read(void *flash_base, void *ram_base, int len, void **err_address)
{
  return cyg_flash_read((cyg_flashaddr_t)flash_base, ram_base, 
                        len, (cyg_flashaddr_t *)err_address);
}

char *flash_errmsg(int err)
{
  return (char *)cyg_flash_errmsg(err);
}

#ifdef CYGHWR_IO_FLASH_BLOCK_LOCKING
int flash_lock(void *base, int len, void **err_address)
{
    return cyg_flash_lock((const cyg_flashaddr_t)base,
                          len, (cyg_flashaddr_t *)err_address);
}

int flash_unlock(void *base, int len, void **err_address)
{
    return cyg_flash_unlock((const cyg_flashaddr_t)base,
                            len, (cyg_flashaddr_t *)err_address);
}
#endif


// EOF legacy_api.c