#include <linux/kernel.h>
#include <linux/module.h>
#include <linux/spi/spi.h>
#include <linux/pm_runtime.h>
#include <linux/of_device.h>
#include <linux/platform_data/sc18is602.h>
#include <linux/gpio/consumer.h>
enum chips { sc18is602, sc18is602b, sc18is603 };
#define SC18IS602_BUFSIZ 200
#define SC18IS602_CLOCK 7372000
#define SC18IS602_MODE_CPHA BIT(2)
#define SC18IS602_MODE_CPOL BIT(3)
#define SC18IS602_MODE_LSB_FIRST BIT(5)
#define SC18IS602_MODE_CLOCK_DIV_4 0x0
#define SC18IS602_MODE_CLOCK_DIV_16 0x1
#define SC18IS602_MODE_CLOCK_DIV_64 0x2
#define SC18IS602_MODE_CLOCK_DIV_128 0x3
struct spi_master *master;
struct i2c_client *client;
u8 buffer[SC18IS602_BUFSIZ + 1];
static int sc18is602_wait_ready(struct sc18is602 *hw, int len)
int usecs = 1000000 * len / hw->speed + 1;
for (i = 0; i < 10; i++) {
err = i2c_master_recv(hw->client, dummy, 1);
usleep_range(usecs, usecs * 2);
static int sc18is602_txrx(struct sc18is602 *hw, struct spi_message *msg,
struct spi_transfer *t, bool do_transfer)
unsigned int len = t->len;
hw->buffer[0] = 1 << msg->spi->chip_select;
memcpy(&hw->buffer[hw->tlen], t->tx_buf, len);