X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=include%2Fioports.h;h=1134ea52081c9e55851330e2fd50e92452c817b3;hb=5df70e91c72dab45b7d81e4568b12e5a5b5f90ec;hp=d7e19e195bb8b8fa60a58b3c299340412ee69e9d;hpb=9c4c5ae3e10e4f2ca799aacbb74e1f5adb86e0b5;p=platform%2Fkernel%2Fu-boot.git diff --git a/include/ioports.h b/include/ioports.h index d7e19e1..1134ea5 100644 --- a/include/ioports.h +++ b/include/ioports.h @@ -26,7 +26,7 @@ typedef struct { * a 0x20 byte boundary */ #ifdef CONFIG_MPC85xx -#define ioport_addr(im, idx) (ioport_t *)((uint)&((im)->im_cpm.im_cpm_iop) + ((idx)*0x20)) +#define ioport_addr(im, idx) (ioport_t *)((uint)&(im->im_cpm_iop) + ((idx)*0x20)) #else #define ioport_addr(im, idx) (ioport_t *)((uint)&(im)->im_ioport + ((idx)*0x20)) #endif @@ -53,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)