mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-19 03:08:31 +00:00
d4d7730853
Signed-off-by: Mike Frysinger <vapier@gentoo.org>
26 lines
458 B
C
26 lines
458 B
C
/*
|
|
* Port Masks
|
|
*/
|
|
|
|
#ifndef __BFIN_PERIPHERAL_PORT__
|
|
#define __BFIN_PERIPHERAL_PORT__
|
|
|
|
/* Port F Masks */
|
|
#define PF0 0x0001
|
|
#define PF1 0x0002
|
|
#define PF2 0x0004
|
|
#define PF3 0x0008
|
|
#define PF4 0x0010
|
|
#define PF5 0x0020
|
|
#define PF6 0x0040
|
|
#define PF7 0x0080
|
|
#define PF8 0x0100
|
|
#define PF9 0x0200
|
|
#define PF10 0x0400
|
|
#define PF11 0x0800
|
|
#define PF12 0x1000
|
|
#define PF13 0x2000
|
|
#define PF14 0x4000
|
|
#define PF15 0x8000
|
|
|
|
#endif
|