Linux Kernel  3.7.1
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
pinmux.h
Go to the documentation of this file.
1 #ifndef _ASM_CRIS_ARCH_PINMUX_H
2 #define _ASM_CRIS_ARCH_PINMUX_H
3 
4 #define PORT_A 0
5 #define PORT_B 1
6 #define PORT_C 2
7 
8 enum pin_mode {
13 };
14 
36 };
37 
38 int crisv32_pinmux_init(void);
39 int crisv32_pinmux_alloc(int port, int first_pin, int last_pin, enum pin_mode);
41 int crisv32_pinmux_dealloc(int port, int first_pin, int last_pin);
43 void crisv32_pinmux_dump(void);
44 
45 #endif