blob: 314085e9232be715003ff3a81bdfbce27e739050 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
/*
* Copyright c Realtek Semiconductor Corporation, 2009
* All rights reserved.
*
* Program : 8972D V100 GPIO Header File
* Abstract :
* Author :
*
*/
#ifndef __GPIO_8972D_V100_H__
#define __GPIO_8972D_V100_H__
////// For 8972D V100 ATA SLIC /////
#if defined(CONFIG_RTK_VOIP_DRIVERS_ATA_SLIC)
#define GPIO "ATA"
#define PIN_RESET1 GPIO_ID(GPIO_PORT_G,0) //output
//#define PIN_RESET2 GPIO_ID(GPIO_PORT_D,6) //output
#define PIN_CS1 GPIO_ID(GPIO_PORT_B,7) //output
#define PIN_CS2 GPIO_ID(GPIO_PORT_C,0) //output
#define PIN_CLK GPIO_ID(GPIO_PORT_C,4) //output
#define PIN_DI GPIO_ID(GPIO_PORT_C,5) //input
#define PIN_DO GPIO_ID(GPIO_PORT_A,1) //output
/* LED */
/* V100 use below GPIO as SLIC CS */
#define PIN_VOIP0_LED GPIO_ID(GPIO_PORT_G,5)
#define PIN_VOIP1_LED GPIO_ID(GPIO_PORT_G,6)
#endif //CONFIG_RTK_VOIP_DRIVERS_ATA_SLIC
#endif /* __GPIO_8972D_V100_H__ */
|