mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-06 05:04:26 +00:00
819833af39
This helps to clean up the include/ directory so that it only contains non-architecture-specific headers and also matches Linux's directory layout which many U-Boot developers are already familiar with. Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
28 lines
568 B
C
28 lines
568 B
C
/*
|
|
* Port Masks
|
|
*/
|
|
|
|
#ifndef __BFIN_PERIPHERAL_PORT__
|
|
#define __BFIN_PERIPHERAL_PORT__
|
|
|
|
/* PORT_MUX Masks */
|
|
#define PJSE 0x0001
|
|
#define PJCE_MASK 0x0006
|
|
#define PJCE_SPORT 0x0000
|
|
#define PJCE_CAN 0x0001
|
|
#define PJCE_SPI 0x0002
|
|
#define PFDE 0x0008
|
|
#define PFTE 0x0010
|
|
#define PFS6E 0x0020
|
|
#define PFS5E 0x0040
|
|
#define PFS4E 0x0080
|
|
#define PFFE 0x0100
|
|
#define PGSE 0x0200
|
|
#define PGRE 0x0400
|
|
#define PGTE 0x0800
|
|
|
|
#include "../mach-common/bits/ports-f.h"
|
|
#include "../mach-common/bits/ports-g.h"
|
|
#include "../mach-common/bits/ports-h.h"
|
|
|
|
#endif
|