Lines Matching refs:PIN
24 #define VCXK_INIT_PIN(PORT, PIN, DDR, I0O1) \ argument
26 writel(PIN, &pio->PORT.per); \
27 writel(PIN, &pio->PORT.DDR); \
28 writel(PIN, &pio->PORT.mddr); \
30 writel(PIN, &pio->PORT.puer); \
33 #define VCXK_SET_PIN(PORT, PIN) writel(PIN, &pio->PORT.sodr); argument
34 #define VCXK_CLR_PIN(PORT, PIN) writel(PIN, &pio->PORT.codr); argument
45 #define VCXK_INIT_PIN(PORT, PIN, DDR, I0O1) \ argument
46 if (I0O1) DDR |= PIN; else DDR &= ~PIN;
48 #define VCXK_SET_PIN(PORT, PIN) PORT |= PIN; argument
49 #define VCXK_CLR_PIN(PORT, PIN) PORT &= ~PIN; argument