Lines Matching full:1
48 #define GPT_CR_EN (1 << 0) /* GPT Enable */
49 #define GPT_CR_ENMOD (1 << 1) /* GPT Enable Mode */
50 #define GPT_CR_DBGEN (1 << 2) /* GPT Debug mode enable */
51 #define GPT_CR_WAITEN (1 << 3) /* GPT Wait Mode Enable */
52 #define GPT_CR_DOZEN (1 << 4) /* GPT Doze mode enable */
53 #define GPT_CR_STOPEN (1 << 5) /* GPT Stop Mode Enable */
57 #define GPT_CR_FRR (1 << 9) /* Freerun or Restart */
58 #define GPT_CR_SWR (1 << 15) /* Software Reset */
59 #define GPT_CR_IM1 (3 << 16) /* Input capture channel 1 mode (2 bits) */
61 #define GPT_CR_OM1 (7 << 20) /* Output Compare Channel 1 Mode (3 bits) */
64 #define GPT_CR_FO1 (1 << 29) /* Force Output Compare Channel 1 */
65 #define GPT_CR_FO2 (1 << 30) /* Force Output Compare Channel 2 */
66 #define GPT_CR_FO3 (1 << 31) /* Force Output Compare Channel 3 */
68 #define GPT_SR_OF1 (1 << 0)
69 #define GPT_SR_OF2 (1 << 1)
70 #define GPT_SR_OF3 (1 << 2)
71 #define GPT_SR_ROV (1 << 5)
73 #define GPT_IR_OF1IE (1 << 0)
74 #define GPT_IR_OF2IE (1 << 1)
75 #define GPT_IR_OF3IE (1 << 2)
76 #define GPT_IR_ROVIE (1 << 5)