RE: [PATCH 4/9] bus: fsl-mc: dpio: add frame descriptor and scatter/gather APIs

2016-11-07 Thread Stuart Yoder
; Leo Li ; Roy Pledge > > Subject: RE: [PATCH 4/9] bus: fsl-mc: dpio: add frame descriptor and > scatter/gather APIs > > > -Original Message- > > From: Stuart Yoder > > Sent: Friday, November 04, 2016 4:32 PM > > To: Ruxandra Ioana Radulescu ;

RE: [PATCH 4/9] bus: fsl-mc: dpio: add frame descriptor and scatter/gather APIs

2016-11-04 Thread Ruxandra Ioana Radulescu
; Roy Pledge > Subject: RE: [PATCH 4/9] bus: fsl-mc: dpio: add frame descriptor and > scatter/gather APIs > > > +/** > > > + * dpaa2_fd_set_bpid() - Set the bpid field of frame descriptor > > > + * @fd: the given frame descriptor > > > + * @b

RE: [PATCH 4/9] bus: fsl-mc: dpio: add frame descriptor and scatter/gather APIs

2016-11-04 Thread Stuart Yoder
> +/** > > + * dpaa2_fd_set_bpid() - Set the bpid field of frame descriptor > > + * @fd: the given frame descriptor > > + * @bpid: buffer pool id to be set > > + */ > > +static inline void dpaa2_fd_set_bpid(struct dpaa2_fd *fd, uint16_t bpid) > > +{ > > + fd->simple.bpid = bpid; > > +} > > The

RE: [PATCH 4/9] bus: fsl-mc: dpio: add frame descriptor and scatter/gather APIs

2016-11-04 Thread Ruxandra Ioana Radulescu
; Roy Pledge ; Stuart Yoder > > Subject: [PATCH 4/9] bus: fsl-mc: dpio: add frame descriptor and > scatter/gather APIs > > From: Roy Pledge > > Add global definitions for DPAA2 frame descriptors and scatter > gather entries. > > Signed-off-by: Roy Pledge > S

[PATCH 4/9] bus: fsl-mc: dpio: add frame descriptor and scatter/gather APIs

2016-10-21 Thread Stuart Yoder
From: Roy Pledge Add global definitions for DPAA2 frame descriptors and scatter gather entries. Signed-off-by: Roy Pledge Signed-off-by: Stuart Yoder --- include/linux/fsl/dpaa2-fd.h | 415 +++ 1 file changed, 415 insertions(+) create mode 100644 inclu