upstream u-boot with additional patches for our devices/boards:
https://lists.denx.de/pipermail/u-boot/2017-March/282789.html (AXP crashes) ;
Gbit ethernet patch for some LIME2 revisions ;
with SPI flash support
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
568 B
28 lines
568 B
/*
|
|
* 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
|
|
|