123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207 |
- /*****************************************************************************
- Copyright(c) 2013 FCI Inc. All Rights Reserved
- File name : fci_hal.c
- Description : source of host interface
- This program 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 of the License, or
- (at your option) any later version.
- This program 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 this program; if not, write to the Free Software
- Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- History :
- ----------------------------------------------------------------------
- *******************************************************************************/
- #include "fci_types.h"
- #include "fci_hal.h"
- #include "fc8300_spi.h"
- #include "fc8300_ppi.h"
- #include "fc8300_i2c.h"
- struct IF_PORT {
- s32 (*init)(HANDLE handle, u16 param1, u16 param2);
- s32 (*byteread)(HANDLE handle, DEVICEID devid, u16 addr, u8 *data);
- s32 (*wordread)(HANDLE handle, DEVICEID devid, u16 addr, u16 *data);
- s32 (*longread)(HANDLE handle, DEVICEID devid, u16 addr, u32 *data);
- s32 (*bulkread)(HANDLE handle, DEVICEID devid,
- u16 addr, u8 *data, u16 length);
- s32 (*bytewrite)(HANDLE handle, DEVICEID devid, u16 addr, u8 data);
- s32 (*wordwrite)(HANDLE handle, DEVICEID devid, u16 addr, u16 data);
- s32 (*longwrite)(HANDLE handle, DEVICEID devid, u16 addr, u32 data);
- s32 (*bulkwrite)(HANDLE handle, DEVICEID devid,
- u16 addr, u8 *data, u16 length);
- s32 (*dataread)(HANDLE handle, DEVICEID devid,
- u16 addr, u8 *data, u32 length);
- s32 (*deinit)(HANDLE handle);
- };
- static struct IF_PORT spiif = {
- &fc8300_spi_init,
- &fc8300_spi_byteread,
- &fc8300_spi_wordread,
- &fc8300_spi_longread,
- &fc8300_spi_bulkread,
- &fc8300_spi_bytewrite,
- &fc8300_spi_wordwrite,
- &fc8300_spi_longwrite,
- &fc8300_spi_bulkwrite,
- &fc8300_spi_dataread,
- &fc8300_spi_deinit
- };
- static struct IF_PORT ppiif = {
- &fc8300_ppi_init,
- &fc8300_ppi_byteread,
- &fc8300_ppi_wordread,
- &fc8300_ppi_longread,
- &fc8300_ppi_bulkread,
- &fc8300_ppi_bytewrite,
- &fc8300_ppi_wordwrite,
- &fc8300_ppi_longwrite,
- &fc8300_ppi_bulkwrite,
- &fc8300_ppi_dataread,
- &fc8300_ppi_deinit
- };
- static struct IF_PORT i2cif = {
- &fc8300_i2c_init,
- &fc8300_i2c_byteread,
- &fc8300_i2c_wordread,
- &fc8300_i2c_longread,
- &fc8300_i2c_bulkread,
- &fc8300_i2c_bytewrite,
- &fc8300_i2c_wordwrite,
- &fc8300_i2c_longwrite,
- &fc8300_i2c_bulkwrite,
- &fc8300_i2c_dataread,
- &fc8300_i2c_deinit
- };
- static struct IF_PORT *ifport = &i2cif;
- static u8 hostif_type = BBM_I2C;
- s32 bbm_hostif_select(HANDLE handle, u8 hostif)
- {
- hostif_type = hostif;
- switch (hostif) {
- case BBM_SPI:
- ifport = &spiif;
- break;
- case BBM_I2C:
- ifport = &i2cif;
- break;
- case BBM_PPI:
- ifport = &ppiif;
- break;
- default:
- return BBM_E_HOSTIF_SELECT;
- }
- if (ifport->init(handle, 0, 0))
- return BBM_E_HOSTIF_INIT;
- return BBM_OK;
- }
- s32 bbm_hostif_deselect(HANDLE handle)
- {
- if (ifport->deinit(handle))
- return BBM_NOK;
- ifport = &spiif;
- hostif_type = BBM_SPI;
- return BBM_OK;
- }
- s32 bbm_read(HANDLE handle, DEVICEID devid, u16 addr, u8 *data)
- {
- if (ifport->byteread(handle, devid, addr, data))
- return BBM_E_BB_READ;
- return BBM_OK;
- }
- s32 bbm_byte_read(HANDLE handle, DEVICEID devid, u16 addr, u8 *data)
- {
- if (ifport->byteread(handle, devid, addr, data))
- return BBM_E_BB_READ;
- return BBM_OK;
- }
- s32 bbm_word_read(HANDLE handle, DEVICEID devid, u16 addr, u16 *data)
- {
- if (ifport->wordread(handle, devid, addr, data))
- return BBM_E_BB_READ;
- return BBM_OK;
- }
- s32 bbm_long_read(HANDLE handle, DEVICEID devid, u16 addr, u32 *data)
- {
- if (ifport->longread(handle, devid, addr, data))
- return BBM_E_BB_READ;
- return BBM_OK;
- }
- s32 bbm_bulk_read(HANDLE handle, DEVICEID devid,
- u16 addr, u8 *data, u16 length)
- {
- if (ifport->bulkread(handle, devid, addr, data, length))
- return BBM_E_BB_READ;
- return BBM_OK;
- }
- s32 bbm_write(HANDLE handle, DEVICEID devid, u16 addr, u8 data)
- {
- if (ifport->bytewrite(handle, devid, addr, data))
- return BBM_E_BB_WRITE;
- return BBM_OK;
- }
- s32 bbm_byte_write(HANDLE handle, DEVICEID devid, u16 addr, u8 data)
- {
- if (ifport->bytewrite(handle, devid, addr, data))
- return BBM_E_BB_WRITE;
- return BBM_OK;
- }
- s32 bbm_word_write(HANDLE handle, DEVICEID devid, u16 addr, u16 data)
- {
- if (ifport->wordwrite(handle, devid, addr, data))
- return BBM_E_BB_WRITE;
- return BBM_OK;
- }
- s32 bbm_long_write(HANDLE handle, DEVICEID devid, u16 addr, u32 data)
- {
- if (ifport->longwrite(handle, devid, addr, data))
- return BBM_E_BB_WRITE;
- return BBM_OK;
- }
- s32 bbm_bulk_write(HANDLE handle, DEVICEID devid,
- u16 addr, u8 *data, u16 length)
- {
- if (ifport->bulkwrite(handle, devid, addr, data, length))
- return BBM_E_BB_WRITE;
- return BBM_OK;
- }
- s32 bbm_data(HANDLE handle, DEVICEID devid, u16 addr, u8 *data, u32 length)
- {
- if (ifport->dataread(handle, devid, addr, data, length))
- return BBM_E_BB_WRITE;
- return BBM_OK;
- }
|