diff options
author | Dave Liu <daveliu@freescale.com> | 2006-11-03 12:11:15 -0600 |
---|---|---|
committer | Kim Phillips <kim.phillips@freescale.com> | 2006-11-03 19:42:21 -0600 |
commit | 7737d5c658c606f999dfbe3e86b0fed49e5c50ef (patch) | |
tree | d1bf347ba7f4292def53870ecfcba0a1dd4c6231 /include/ioports.h | |
parent | 5f8204394e39bbe8cd9f08b8f8d145b6c01f7c73 (diff) | |
download | u-boot-imx-7737d5c658c606f999dfbe3e86b0fed49e5c50ef.zip u-boot-imx-7737d5c658c606f999dfbe3e86b0fed49e5c50ef.tar.gz u-boot-imx-7737d5c658c606f999dfbe3e86b0fed49e5c50ef.tar.bz2 |
mpc83xx: add QE ethernet support
this patch adds support for the QUICC Engine based UCC gigabit ethernet device.
Diffstat (limited to 'include/ioports.h')
-rw-r--r-- | include/ioports.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/include/ioports.h b/include/ioports.h index d7e19e1..91ca6fb 100644 --- a/include/ioports.h +++ b/include/ioports.h @@ -53,3 +53,14 @@ typedef struct { * like the table in the 8260UM (and in the hymod manuals). */ extern const iop_conf_t iop_conf_tab[4][32]; + +typedef struct { + unsigned char port; + unsigned char pin; + int dir; + int open_drain; + int assign; +} qe_iop_conf_t; + +#define QE_IOP_TAB_END (-1) + |