2007-09-21 09:06:02 +00:00
|
|
|
/***************************************************************************
|
|
|
|
* __________ __ ___.
|
|
|
|
* Open \______ \ ____ ____ | | _\_ |__ _______ ___
|
|
|
|
* Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
|
|
|
|
* Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
|
|
|
|
* Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
|
|
|
|
* \/ \/ \/ \/ \/
|
2007-09-22 15:43:38 +00:00
|
|
|
* $Id$
|
2007-09-21 09:06:02 +00:00
|
|
|
*
|
|
|
|
* Copyright (C) 2007 by Catalin Patulea
|
|
|
|
*
|
2008-06-28 18:10:04 +00:00
|
|
|
* 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.
|
2007-09-21 09:06:02 +00:00
|
|
|
*
|
|
|
|
* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
|
|
|
|
* KIND, either express or implied.
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#ifndef SPI_TARGET_H
|
|
|
|
#define SPI_TARGET_H
|
|
|
|
|
|
|
|
#include <inttypes.h>
|
2007-10-01 05:27:43 +00:00
|
|
|
#include <stdbool.h>
|
|
|
|
|
|
|
|
enum SPI_target {
|
2008-05-14 18:55:19 +00:00
|
|
|
#ifndef CREATIVE_ZVx
|
2007-10-01 05:27:43 +00:00
|
|
|
SPI_target_TSC2100 = 0,
|
|
|
|
SPI_target_RX5X348AB,
|
2007-11-02 05:07:52 +00:00
|
|
|
SPI_target_BACKLIGHT,
|
2008-04-24 20:08:28 +00:00
|
|
|
#else
|
|
|
|
SPI_target_LTV250QV = 0,
|
|
|
|
#endif
|
2007-10-01 05:27:43 +00:00
|
|
|
SPI_MAX_TARGETS,
|
|
|
|
};
|
2007-09-21 09:06:02 +00:00
|
|
|
|
2007-09-22 14:21:07 +00:00
|
|
|
void spi_init(void);
|
2007-10-01 05:27:43 +00:00
|
|
|
int spi_block_transfer(enum SPI_target target,
|
|
|
|
const uint8_t *tx_bytes, unsigned int tx_size,
|
2007-09-22 14:21:07 +00:00
|
|
|
uint8_t *rx_bytes, unsigned int rx_size);
|
2007-09-21 09:06:02 +00:00
|
|
|
|
|
|
|
#endif
|