X-Git-Url: https://git.sur5r.net/?a=blobdiff_plain;f=include%2Fioports.h;h=cfba667cab25fdd2d15eecd751c01e95e47daaf1;hb=77a318545d57aefa844752465b94c7e09a3f26d0;hp=8f5947f46197b25e6cb9c1758e32b156a5d109b5;hpb=0f89ba4320c42f9df753c7c5527aed1d8eaeca93;p=u-boot diff --git a/include/ioports.h b/include/ioports.h index 8f5947f461..cfba667cab 100644 --- a/include/ioports.h +++ b/include/ioports.h @@ -25,7 +25,11 @@ typedef struct { * the internal memory map aligns the above structure on * a 0x20 byte boundary */ +#ifdef CONFIG_MPC85xx +#define ioport_addr(im, idx) (ioport_t *)((uint)&((im)->im_cpm.im_cpm_iop) + ((idx)*0x20)) +#else #define ioport_addr(im, idx) (ioport_t *)((uint)&(im)->im_ioport + ((idx)*0x20)) +#endif /* * this structure provides configuration @@ -49,3 +53,13 @@ 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)