diff options
| author | Dave Airlie <[email protected]> | 2010-08-02 10:05:18 +1000 | 
|---|---|---|
| committer | Dave Airlie <[email protected]> | 2010-08-02 10:05:24 +1000 | 
| commit | d656ae53f64cb0f01dac8a02c4d31453d64ef97c (patch) | |
| tree | cf641d4e5828b8f7c430b42657237c5daf9571fd /arch/powerpc/include/asm/cpm.h | |
| parent | 167ffc44caaee68ea60dadf6931a4d195a4ed1f0 (diff) | |
| parent | b37fa16e78d6f9790462b3181602a26b5af36260 (diff) | |
Merge tag 'v2.6.35-rc6' into drm-radeon-next
Need this to avoid conflicts with future radeon fixes
Diffstat (limited to 'arch/powerpc/include/asm/cpm.h')
| -rw-r--r-- | arch/powerpc/include/asm/cpm.h | 24 | 
1 files changed, 24 insertions, 0 deletions
diff --git a/arch/powerpc/include/asm/cpm.h b/arch/powerpc/include/asm/cpm.h index 0835eb977ba9..e50323fe941f 100644 --- a/arch/powerpc/include/asm/cpm.h +++ b/arch/powerpc/include/asm/cpm.h @@ -7,6 +7,30 @@  #include <linux/of.h>  /* + * SPI Parameter RAM common to QE and CPM. + */ +struct spi_pram { +	__be16	rbase;	/* Rx Buffer descriptor base address */ +	__be16	tbase;	/* Tx Buffer descriptor base address */ +	u8	rfcr;	/* Rx function code */ +	u8	tfcr;	/* Tx function code */ +	__be16	mrblr;	/* Max receive buffer length */ +	__be32	rstate;	/* Internal */ +	__be32	rdp;	/* Internal */ +	__be16	rbptr;	/* Internal */ +	__be16	rbc;	/* Internal */ +	__be32	rxtmp;	/* Internal */ +	__be32	tstate;	/* Internal */ +	__be32	tdp;	/* Internal */ +	__be16	tbptr;	/* Internal */ +	__be16	tbc;	/* Internal */ +	__be32	txtmp;	/* Internal */ +	__be32	res;	/* Tx temp. */ +	__be16  rpbase;	/* Relocation pointer (CPM1 only) */ +	__be16	res1;	/* Reserved */ +}; + +/*   * USB Controller pram common to QE and CPM.   */  struct usb_ctlr {  |