136 lines
3.0 KiB
C
Executable File
136 lines
3.0 KiB
C
Executable File
/*
|
|
* 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>
|
|
#ifdef CONFIG_SEC_NFC_CLK_REQ
|
|
#include <linux/clk.h>
|
|
#endif
|
|
|
|
#ifdef CONFIG_SEC_NFC_LDO_CONTROL
|
|
#define NFC_I2C_LDO_ON 1
|
|
#define NFC_I2C_LDO_OFF 0
|
|
#endif
|
|
|
|
#ifdef CONFIG_SEC_NFC_I2C /* support old driver configuration */
|
|
|
|
#ifndef CONFIG_SEC_NFC
|
|
#define CONFIG_SEC_NFC
|
|
#endif
|
|
|
|
#if !defined(CONFIG_SEC_NFC_IF_I2C) && !defined(CONFIG_SEC_NFC_IF_UART)
|
|
#define CONFIG_SEC_NFC_IF_I2C
|
|
#endif
|
|
|
|
#if !defined(CONFIG_SEC_NFC_PRODUCT_N3) && !defined(CONFIG_SEC_NFC_PRODUCT_N5)
|
|
#define CONFIG_SEC_NFC_PRODUCT_N3
|
|
#endif
|
|
|
|
#endif /* CONFIG_SEC_NFC_I2C */
|
|
|
|
#define SEC_NFC_DRIVER_NAME "sec-nfc"
|
|
|
|
#define SEC_NFC_MAX_BUFFER_SIZE 512
|
|
|
|
/* 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)
|
|
#define SEC_NFC_DEBUG _IO(SEC_NFC_MAGIC, 99)
|
|
|
|
/* SFR bit mask */
|
|
#define SEC_NFC_CLKCTRL_PD 0x01
|
|
#define SEC_NFC_CLKCTRL_REQ_POLA 0x10
|
|
#define SEC_NFC_CLKCTRL_PD_POLA 0x20
|
|
#define SEC_NFC_CLKCTRL_CLK_ENABLE 0x80000000 /*add at exynos7885*/
|
|
|
|
|
|
/* 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 (100)
|
|
#endif
|
|
|
|
/* gpio pin configuration */
|
|
struct sec_nfc_platform_data {
|
|
unsigned int irq;
|
|
unsigned int clk_irq;
|
|
phys_addr_t clkctrl_addr;
|
|
unsigned int ven;
|
|
#ifdef CONFIG_NFC_N5_PMC8974_CLK_REQ
|
|
int firm;
|
|
int wake;
|
|
#else
|
|
unsigned int firm;
|
|
unsigned int wake;
|
|
#endif
|
|
unsigned int tvdd;
|
|
unsigned int avdd;
|
|
#ifdef CONFIG_SEC_NFC_CLK_REQ
|
|
unsigned int clk_req;
|
|
struct clk *clk;
|
|
#endif
|
|
|
|
#if defined(CONFIG_NFC_N5_PMC8974_CLK_REQ) || defined(CONFIG_SEC_NFC_USE_8226_BBCLK2)
|
|
struct clk *nfc_clk;
|
|
#endif
|
|
void (*cfg_gpio)(void);
|
|
u32 ven_gpio_flags;
|
|
u32 firm_gpio_flags;
|
|
u32 irq_gpio_flags;
|
|
#ifdef CONFIG_SEC_NFC_LDO_CONTROL
|
|
const char *i2c_1p8;
|
|
#endif
|
|
unsigned int pvdd_en;
|
|
};
|
|
|
|
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,
|
|
};
|
|
|
|
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,
|
|
};
|
|
|
|
#ifdef CONFIG_SEC_NFC_LDO_CONTROL
|
|
extern unsigned int lpcharge;
|
|
#endif
|