You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
123 lines
2.6 KiB
123 lines
2.6 KiB
/*
|
|
* SAMSUNG NFC N2 Controller
|
|
*
|
|
* Copyright (C) 2013 Samsung Electronics Co.Ltd
|
|
* Author: Woonki Lee <woonki84.lee@samsung.com>
|
|
*
|
|
* 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.
|
|
*
|
|
*/
|
|
|
|
#include <linux/platform_device.h>
|
|
|
|
#include <linux/clk.h>
|
|
|
|
#define SEC_NFC_DRIVER_NAME "sec-nfc"
|
|
|
|
#define SEC_NFC_MAX_BUFFER_SIZE 512
|
|
/*#define SEC_NFC_DUPLICATED_IRQ_WQ*/ /*feature on : LSI nfc w/a, off : QC solution*/
|
|
|
|
/* ioctl */
|
|
#define SEC_NFC_MAGIC 'S'
|
|
#define SEC_NFC_GET_MODE _IOW(SEC_NFC_MAGIC, 0, unsigned int)
|
|
#define SEC_NFC_SET_MODE _IOW(SEC_NFC_MAGIC, 1, unsigned int)
|
|
#define SEC_NFC_SLEEP _IOW(SEC_NFC_MAGIC, 2, unsigned int)
|
|
#define SEC_NFC_WAKEUP _IOW(SEC_NFC_MAGIC, 3, unsigned int)
|
|
#define SEC_NFC_SET_NPT_MODE _IOW(SEC_NFC_MAGIC, 4, unsigned int)
|
|
#ifdef CONFIG_ESE_COLDRESET
|
|
#define SEC_NFC_COLD_RESET _IOW(SEC_NFC_MAGIC, 5, unsigned int)
|
|
#endif
|
|
|
|
#define SEC_NFC_DEBUG _IO(SEC_NFC_MAGIC, 99)
|
|
|
|
/* size */
|
|
#define SEC_NFC_MSG_MAX_SIZE (256 + 4)
|
|
|
|
/* wait for device stable */
|
|
#ifdef CONFIG_SEC_NFC_MARGINTIME
|
|
#define SEC_NFC_VEN_WAIT_TIME (150)
|
|
#else
|
|
#define SEC_NFC_VEN_WAIT_TIME (20)
|
|
#endif
|
|
|
|
/* gpio pin configuration */
|
|
struct sec_nfc_platform_data {
|
|
int irq;
|
|
int clk_irq;
|
|
int ven;
|
|
int firm;
|
|
int wake;
|
|
int pvdd;
|
|
unsigned int tvdd;
|
|
unsigned int avdd;
|
|
bool clk_req_wake;
|
|
bool irq_all_trigger;
|
|
#ifdef CONFIG_ESE_COLDRESET
|
|
unsigned int coldreset;
|
|
#endif
|
|
|
|
unsigned int clk_req;
|
|
struct clk *clk;
|
|
|
|
void (*cfg_gpio)(void);
|
|
u32 ven_gpio_flags;
|
|
u32 firm_gpio_flags;
|
|
u32 irq_gpio_flags;
|
|
/*[START] NPT*/
|
|
unsigned int npt;
|
|
u32 npt_gpio_flags;
|
|
/*[END] NPT*/
|
|
struct regulator *nfc_pvdd;
|
|
int bootloader_ver; /* used for nfc test */
|
|
};
|
|
|
|
enum sec_nfc_mode {
|
|
SEC_NFC_MODE_OFF = 0,
|
|
SEC_NFC_MODE_FIRMWARE,
|
|
SEC_NFC_MODE_BOOTLOADER,
|
|
SEC_NFC_MODE_COUNT,
|
|
};
|
|
|
|
enum sec_nfc_power {
|
|
SEC_NFC_PW_ON = 0,
|
|
SEC_NFC_PW_OFF,
|
|
};
|
|
|
|
enum sec_nfc_firmpin {
|
|
SEC_NFC_FW_OFF = 0,
|
|
SEC_NFC_FW_ON,
|
|
};
|
|
|
|
enum sec_nfc_wake {
|
|
SEC_NFC_WAKE_SLEEP = 0,
|
|
SEC_NFC_WAKE_UP,
|
|
};
|
|
|
|
/*[START] NPT*/
|
|
enum sec_nfc_npt_mode {
|
|
SEC_NFC_NPT_OFF = 0,
|
|
SEC_NFC_NPT_ON,
|
|
SEC_NFC_NPT_CMD_ON = 0x7E,
|
|
SEC_NFC_NPT_CMD_OFF,
|
|
};
|
|
/*[END] NPT*/
|
|
|
|
#ifdef CONFIG_ESE_COLDRESET
|
|
/*[START] COLDRESET*/
|
|
enum sec_nfc_coldreset{
|
|
SEC_NFC_COLDRESET_OFF = 0,
|
|
SEC_NFC_COLDRESET_ON,
|
|
};
|
|
|
|
#define FIRMWARE_GUARD_TIME (4)
|
|
#define DEVICEHOST_ID (0x00)
|
|
#define ESE_ID (0x02)
|
|
/*[END] COLDRESET*/
|
|
#endif
|
|
|
|
extern unsigned int lpcharge;
|
|
#define NFC_I2C_LDO_ON 1
|
|
#define NFC_I2C_LDO_OFF 0
|
|
|