net: wireless: rockchip_wlan: add rtl8723cs support
[firefly-linux-kernel-4.4.55.git] / drivers / net / wireless / rockchip_wlan / rtl8723cs / include / drv_types_gspi.h
1 /******************************************************************************
2  *
3  * Copyright(c) 2007 - 2012 Realtek Corporation. All rights reserved.
4  *
5  * This program is free software; you can redistribute it and/or modify it
6  * under the terms of version 2 of the GNU General Public License as
7  * published by the Free Software Foundation.
8  *
9  * This program is distributed in the hope that it will be useful, but WITHOUT
10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11  * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
12  * more details.
13  *
14  * You should have received a copy of the GNU General Public License along with
15  * this program; if not, write to the Free Software Foundation, Inc.,
16  * 51 Franklin Street, Fifth Floor, Boston, MA 02110, USA
17  *
18  *
19  ******************************************************************************/
20 #ifndef __DRV_TYPES_GSPI_H__
21 #define __DRV_TYPES_GSPI_H__
22
23 /* SPI Header Files */
24 #ifdef PLATFORM_LINUX
25         #include <linux/platform_device.h>
26         #include <linux/spi/spi.h>
27         #include <linux/gpio.h>
28         /* #include <mach/ldo.h> */
29         #include <asm/mach-types.h>
30         #include <asm/gpio.h>
31         #include <asm/io.h>
32         #include <mach/board.h>
33         #include <mach/hardware.h>
34         #include <mach/irqs.h>
35         #include <custom_gpio.h>
36 #endif
37
38
39 typedef struct gspi_data {
40         u8  func_number;
41
42         u8  tx_block_mode;
43         u8  rx_block_mode;
44         u32 block_transfer_len;
45
46 #ifdef PLATFORM_LINUX
47         struct spi_device *func;
48
49         struct workqueue_struct *priv_wq;
50         struct delayed_work irq_work;
51 #endif
52 } GSPI_DATA, *PGSPI_DATA;
53
54 #endif /*  #ifndef __DRV_TYPES_GSPI_H__ */