summaryrefslogtreecommitdiffstats
path: root/include/tsec.h
diff options
context:
space:
mode:
authorAlison Wang <b18965@freescale.com>2014-09-05 13:52:38 +0800
committerYork Sun <yorksun@freescale.com>2014-09-08 10:30:33 -0700
commit52d00a812a29974e660f64a8839ddb550dca5290 (patch)
tree396d90c9244e58992aa55f3b86450b11958b677a /include/tsec.h
parentd2614ea0ffda9d7c0d049f0fa5b23ce390bcb7a8 (diff)
downloadblackbird-obmc-uboot-52d00a812a29974e660f64a8839ddb550dca5290.tar.gz
blackbird-obmc-uboot-52d00a812a29974e660f64a8839ddb550dca5290.zip
ls102xa: etsec: Add etsec support for LS102xA
This patch is to add etsec support for LS102xA. First, Little-endian descriptor mode should be enabled. So RxBDs and TxBDs are interpreted with little-endian byte ordering. Second, TSEC_SIZE and TSEC_MDIO_OFFSET are different from PowerPC, redefine them for LS1021xA. Signed-off-by: Alison Wang <alison.wang@freescale.com>
Diffstat (limited to 'include/tsec.h')
-rw-r--r--include/tsec.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/include/tsec.h b/include/tsec.h
index 20547153a1..1119d2cb60 100644
--- a/include/tsec.h
+++ b/include/tsec.h
@@ -20,10 +20,14 @@
#include <net.h>
#include <config.h>
#include <phy.h>
-#include <fsl_mdio.h>
+#ifdef CONFIG_LS102XA
+#define TSEC_SIZE 0x40000
+#define TSEC_MDIO_OFFSET 0x40000
+#else
#define TSEC_SIZE 0x01000
#define TSEC_MDIO_OFFSET 0x01000
+#endif
#define CONFIG_SYS_MDIO_BASE_ADDR (MDIO_BASE_ADDR + 0x520)
@@ -128,6 +132,7 @@
#define DMACTRL_INIT_SETTINGS 0x000000c3
#define DMACTRL_GRS 0x00000010
#define DMACTRL_GTS 0x00000008
+#define DMACTRL_LE 0x00008000
#define TSTAT_CLEAR_THALT 0x80000000
#define RSTAT_CLEAR_RHALT 0x00800000
OpenPOWER on IntegriCloud