2014-01-07 00:58:19 +04:00
/**
* Marvell NFC driver
*
2015-10-26 12:27:39 +03:00
* Copyright ( C ) 2014 - 2015 , Marvell International Ltd .
2014-01-07 00:58:19 +04:00
*
* This software file ( the " File " ) is distributed by Marvell International
* Ltd . under the terms of the GNU General Public License Version 2 , June 1991
* ( the " License " ) . You may use , redistribute and / or modify this File in
* accordance with the terms and conditions of the License , a copy of which
* is available on the worldwide web at
* http : //www.gnu.org/licenses/old-licenses/gpl-2.0.txt.
*
* THE FILE IS DISTRIBUTED AS - IS , WITHOUT WARRANTY OF ANY KIND , AND THE
* IMPLIED WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE
* ARE EXPRESSLY DISCLAIMED . The License provides additional details about
* this warranty disclaimer .
* */
2015-06-11 15:00:19 +03:00
# ifndef _NFCMRVL_H_
# define _NFCMRVL_H_
# include <linux/platform_data/nfcmrvl.h>
2015-10-26 12:27:39 +03:00
# include "fw_dnld.h"
2014-01-07 00:58:19 +04:00
/* Define private flags: */
# define NFCMRVL_NCI_RUNNING 1
2015-10-26 12:27:41 +03:00
# define NFCMRVL_PHY_ERROR 2
2014-01-07 00:58:19 +04:00
2014-01-07 00:58:20 +04:00
# define NFCMRVL_EXT_COEX_ID 0xE0
# define NFCMRVL_NOT_ALLOWED_ID 0xE1
# define NFCMRVL_ACTIVE_ID 0xE2
# define NFCMRVL_EXT_COEX_ENABLE 1
# define NFCMRVL_GPIO_PIN_NFC_NOT_ALLOWED 0xA
# define NFCMRVL_GPIO_PIN_NFC_ACTIVE 0xB
2014-01-07 00:58:19 +04:00
# define NFCMRVL_NCI_MAX_EVENT_SIZE 260
2015-06-12 16:35:54 +03:00
/*
* * NCI FW Parmaters
*/
# define NFCMRVL_PB_BAIL_OUT 0x11
2015-10-26 12:27:39 +03:00
# define NFCMRVL_PROP_REF_CLOCK 0xF0
# define NFCMRVL_PROP_SET_HI_CONFIG 0xF1
2015-06-12 16:35:54 +03:00
2015-06-11 12:25:43 +03:00
/*
* * HCI defines
*/
# define NFCMRVL_HCI_EVENT_HEADER_SIZE 0x04
# define NFCMRVL_HCI_EVENT_CODE 0x04
# define NFCMRVL_HCI_NFC_EVENT_CODE 0xFF
# define NFCMRVL_HCI_COMMAND_CODE 0x01
# define NFCMRVL_HCI_OGF 0x81
# define NFCMRVL_HCI_OCF 0xFE
2015-06-11 15:00:20 +03:00
enum nfcmrvl_phy {
NFCMRVL_PHY_USB = 0 ,
NFCMRVL_PHY_UART = 1 ,
2015-10-26 12:27:39 +03:00
NFCMRVL_PHY_I2C = 2 ,
NFCMRVL_PHY_SPI = 3 ,
2015-06-11 15:00:20 +03:00
} ;
2014-01-07 00:58:19 +04:00
struct nfcmrvl_private {
2015-06-11 12:25:43 +03:00
2015-06-11 15:00:19 +03:00
unsigned long flags ;
/* Platform configuration */
struct nfcmrvl_platform_data config ;
2015-10-26 12:27:39 +03:00
/* Parent dev */
2014-01-07 00:58:19 +04:00
struct nci_dev * ndev ;
2015-06-11 12:25:46 +03:00
2015-10-26 12:27:39 +03:00
/* FW download context */
struct nfcmrvl_fw_dnld fw_dnld ;
/* FW download support */
bool support_fw_dnld ;
2015-06-11 15:00:19 +03:00
/*
* * PHY related information
*/
2015-06-11 12:25:46 +03:00
2015-06-11 15:00:19 +03:00
/* PHY driver context */
2014-01-07 00:58:19 +04:00
void * drv_data ;
2015-06-11 15:00:19 +03:00
/* PHY device */
2014-01-07 00:58:19 +04:00
struct device * dev ;
2015-06-11 15:00:20 +03:00
/* PHY type */
enum nfcmrvl_phy phy ;
2015-06-11 15:00:19 +03:00
/* Low level driver ops */
2014-01-07 00:58:19 +04:00
struct nfcmrvl_if_ops * if_ops ;
} ;
struct nfcmrvl_if_ops {
int ( * nci_open ) ( struct nfcmrvl_private * priv ) ;
int ( * nci_close ) ( struct nfcmrvl_private * priv ) ;
int ( * nci_send ) ( struct nfcmrvl_private * priv , struct sk_buff * skb ) ;
2015-10-26 12:27:39 +03:00
void ( * nci_update_config ) ( struct nfcmrvl_private * priv ,
const void * param ) ;
2014-01-07 00:58:19 +04:00
} ;
void nfcmrvl_nci_unregister_dev ( struct nfcmrvl_private * priv ) ;
2015-06-11 12:25:44 +03:00
int nfcmrvl_nci_recv_frame ( struct nfcmrvl_private * priv , struct sk_buff * skb ) ;
2015-10-26 12:27:40 +03:00
struct nfcmrvl_private * nfcmrvl_nci_register_dev ( enum nfcmrvl_phy phy ,
void * drv_data ,
2015-06-11 15:00:19 +03:00
struct nfcmrvl_if_ops * ops ,
struct device * dev ,
struct nfcmrvl_platform_data * pdata ) ;
2015-06-11 12:25:46 +03:00
void nfcmrvl_chip_reset ( struct nfcmrvl_private * priv ) ;
2015-10-26 12:27:39 +03:00
void nfcmrvl_chip_halt ( struct nfcmrvl_private * priv ) ;
2015-06-11 15:00:19 +03:00
int nfcmrvl_parse_dt ( struct device_node * node ,
struct nfcmrvl_platform_data * pdata ) ;
# endif