⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 cpm_85xx.h

📁 linux下的BOOT程序原码,有需要的可以来下,保证好用
💻 H
📖 第 1 页 / 共 3 页
字号:
/* * MPC85xx Communication Processor Module * Copyright (c) 2003,Motorola Inc. * Xianghua Xiao (X.Xiao@motorola.com) * * MPC8260 Communication Processor Module. * Copyright (c) 1999 Dan Malek (dmalek@jlc.net) * * This file contains structures and information for the communication * processor channels found in the dual port RAM or parameter RAM. * All CPM control and status is available through the MPC8260 internal * memory map.  See immap.h for details. */#ifndef __CPM_85XX__#define __CPM_85XX__#include <asm/immap_85xx.h>/* CPM Command register.*/#define CPM_CR_RST	((uint)0x80000000)#define CPM_CR_PAGE	((uint)0x7c000000)#define CPM_CR_SBLOCK	((uint)0x03e00000)#define CPM_CR_FLG	((uint)0x00010000)#define CPM_CR_MCN	((uint)0x00003fc0)#define CPM_CR_OPCODE	((uint)0x0000000f)/* Device sub-block and page codes.*/#define CPM_CR_SCC1_SBLOCK	(0x04)#define CPM_CR_SCC2_SBLOCK	(0x05)#define CPM_CR_SCC3_SBLOCK	(0x06)#define CPM_CR_SCC4_SBLOCK	(0x07)#define CPM_CR_SMC1_SBLOCK	(0x08)#define CPM_CR_SMC2_SBLOCK	(0x09)#define CPM_CR_SPI_SBLOCK	(0x0a)#define CPM_CR_I2C_SBLOCK	(0x0b)#define CPM_CR_TIMER_SBLOCK	(0x0f)#define CPM_CR_RAND_SBLOCK	(0x0e)#define CPM_CR_FCC1_SBLOCK	(0x10)#define CPM_CR_FCC2_SBLOCK	(0x11)#define CPM_CR_FCC3_SBLOCK	(0x12)#define CPM_CR_MCC1_SBLOCK	(0x1c)#define CPM_CR_SCC1_PAGE	(0x00)#define CPM_CR_SCC2_PAGE	(0x01)#define CPM_CR_SCC3_PAGE	(0x02)#define CPM_CR_SCC4_PAGE	(0x03)#define CPM_CR_SPI_PAGE		(0x09)#define CPM_CR_I2C_PAGE		(0x0a)#define CPM_CR_TIMER_PAGE	(0x0a)#define CPM_CR_RAND_PAGE	(0x0a)#define CPM_CR_FCC1_PAGE	(0x04)#define CPM_CR_FCC2_PAGE	(0x05)#define CPM_CR_FCC3_PAGE	(0x06)#define CPM_CR_MCC1_PAGE	(0x07)#define CPM_CR_MCC2_PAGE	(0x08)/* Some opcodes (there are more...later)*/#define CPM_CR_INIT_TRX		((ushort)0x0000)#define CPM_CR_INIT_RX		((ushort)0x0001)#define CPM_CR_INIT_TX		((ushort)0x0002)#define CPM_CR_HUNT_MODE	((ushort)0x0003)#define CPM_CR_STOP_TX		((ushort)0x0004)#define CPM_CR_RESTART_TX	((ushort)0x0006)#define CPM_CR_SET_GADDR	((ushort)0x0008)#define mk_cr_cmd(PG, SBC, MCN, OP) \	((PG << 26) | (SBC << 21) | (MCN << 6) | OP)/* Dual Port RAM addresses.  The first 16K is available for almost * any CPM use, so we put the BDs there.  The first 128 bytes are * used for SMC1 and SMC2 parameter RAM, so we start allocating * BDs above that.  All of this must change when we start * downloading RAM microcode. */#define CPM_DATAONLY_BASE	((uint)128)#define CPM_DP_NOSPACE		((uint)0x7FFFFFFF)#if defined(CONFIG_MPC8541) || defined(CONFIG_MPC8555)#define CPM_FCC_SPECIAL_BASE	((uint)0x00009000)#define CPM_DATAONLY_SIZE	((uint)(8 * 1024) - CPM_DATAONLY_BASE)#else	/* MPC8540, MPC8560 */#define CPM_FCC_SPECIAL_BASE	((uint)0x0000B000)#define CPM_DATAONLY_SIZE	((uint)(16 * 1024) - CPM_DATAONLY_BASE)#endif/* The number of pages of host memory we allocate for CPM.  This is * done early in kernel initialization to get physically contiguous * pages. */#define NUM_CPM_HOST_PAGES	2/* Export the base address of the communication processor registers * and dual port ram. *//*extern	cpm8560_t	*cpmp;	 Pointer to comm processor */uint		m8560_cpm_dpalloc(uint size, uint align);uint		m8560_cpm_hostalloc(uint size, uint align);void		m8560_cpm_setbrg(uint brg, uint rate);void		m8560_cpm_fastbrg(uint brg, uint rate, int div16);void		m8560_cpm_extcbrg(uint brg, uint rate, uint extclk, int pinsel);/* Buffer descriptors used by many of the CPM protocols.*/typedef struct cpm_buf_desc {	ushort	cbd_sc;		/* Status and Control */	ushort	cbd_datlen;	/* Data length in buffer */	uint	cbd_bufaddr;	/* Buffer address in host memory */} cbd_t;#define BD_SC_EMPTY	((ushort)0x8000)	/* Recieve is empty */#define BD_SC_READY	((ushort)0x8000)	/* Transmit is ready */#define BD_SC_WRAP	((ushort)0x2000)	/* Last buffer descriptor */#define BD_SC_INTRPT	((ushort)0x1000)	/* Interrupt on change */#define BD_SC_LAST	((ushort)0x0800)	/* Last buffer in frame */#define BD_SC_CM	((ushort)0x0200)	/* Continous mode */#define BD_SC_ID	((ushort)0x0100)	/* Rec'd too many idles */#define BD_SC_P		((ushort)0x0100)	/* xmt preamble */#define BD_SC_BR	((ushort)0x0020)	/* Break received */#define BD_SC_FR	((ushort)0x0010)	/* Framing error */#define BD_SC_PR	((ushort)0x0008)	/* Parity error */#define BD_SC_OV	((ushort)0x0002)	/* Overrun */#define BD_SC_CD	((ushort)0x0001)	/* ?? *//* Function code bits, usually generic to devices.*/#define CPMFCR_GBL	((u_char)0x20)	/* Set memory snooping */#define CPMFCR_EB	((u_char)0x10)	/* Set big endian byte order */#define CPMFCR_TC2	((u_char)0x04)	/* Transfer code 2 value */#define CPMFCR_DTB	((u_char)0x02)	/* Use local bus for data when set */#define CPMFCR_BDB	((u_char)0x01)	/* Use local bus for BD when set *//* Parameter RAM offsets from the base.*/#define CPM_POST_WORD_ADDR      0x80FC	/* steal a long at the end of SCC1 */#define PROFF_SCC1		((uint)0x8000)#define PROFF_SCC2		((uint)0x8100)#define PROFF_SCC3		((uint)0x8200)#define PROFF_SCC4		((uint)0x8300)#define PROFF_FCC1		((uint)0x8400)#define PROFF_FCC2		((uint)0x8500)#define PROFF_FCC3		((uint)0x8600)#define PROFF_MCC1		((uint)0x8700)#define PROFF_MCC2		((uint)0x8800)#define PROFF_SPI_BASE		((uint)0x89fc)#define PROFF_TIMERS		((uint)0x8ae0)#define PROFF_REVNUM		((uint)0x8af0)#define PROFF_RAND		((uint)0x8af8)#define PROFF_I2C_BASE		((uint)0x8afc)/* Baud rate generators.*/#define CPM_BRG_RST		((uint)0x00020000)#define CPM_BRG_EN		((uint)0x00010000)#define CPM_BRG_EXTC_INT	((uint)0x00000000)#define CPM_BRG_EXTC_CLK3_9	((uint)0x00004000)#define CPM_BRG_EXTC_CLK5_15	((uint)0x00008000)#define CPM_BRG_ATB		((uint)0x00002000)#define CPM_BRG_CD_MASK		((uint)0x00001ffe)#define CPM_BRG_DIV16		((uint)0x00000001)/* SCCs.*/#define SCC_GSMRH_IRP		((uint)0x00040000)#define SCC_GSMRH_GDE		((uint)0x00010000)#define SCC_GSMRH_TCRC_CCITT	((uint)0x00008000)#define SCC_GSMRH_TCRC_BISYNC	((uint)0x00004000)#define SCC_GSMRH_TCRC_HDLC	((uint)0x00000000)#define SCC_GSMRH_REVD		((uint)0x00002000)#define SCC_GSMRH_TRX		((uint)0x00001000)#define SCC_GSMRH_TTX		((uint)0x00000800)#define SCC_GSMRH_CDP		((uint)0x00000400)#define SCC_GSMRH_CTSP		((uint)0x00000200)#define SCC_GSMRH_CDS		((uint)0x00000100)#define SCC_GSMRH_CTSS		((uint)0x00000080)#define SCC_GSMRH_TFL		((uint)0x00000040)#define SCC_GSMRH_RFW		((uint)0x00000020)#define SCC_GSMRH_TXSY		((uint)0x00000010)#define SCC_GSMRH_SYNL16	((uint)0x0000000c)#define SCC_GSMRH_SYNL8		((uint)0x00000008)#define SCC_GSMRH_SYNL4		((uint)0x00000004)#define SCC_GSMRH_RTSM		((uint)0x00000002)#define SCC_GSMRH_RSYN		((uint)0x00000001)#define SCC_GSMRL_SIR		((uint)0x80000000)	/* SCC2 only */#define SCC_GSMRL_EDGE_NONE	((uint)0x60000000)#define SCC_GSMRL_EDGE_NEG	((uint)0x40000000)#define SCC_GSMRL_EDGE_POS	((uint)0x20000000)#define SCC_GSMRL_EDGE_BOTH	((uint)0x00000000)#define SCC_GSMRL_TCI		((uint)0x10000000)#define SCC_GSMRL_TSNC_3	((uint)0x0c000000)#define SCC_GSMRL_TSNC_4	((uint)0x08000000)#define SCC_GSMRL_TSNC_14	((uint)0x04000000)#define SCC_GSMRL_TSNC_INF	((uint)0x00000000)#define SCC_GSMRL_RINV		((uint)0x02000000)#define SCC_GSMRL_TINV		((uint)0x01000000)#define SCC_GSMRL_TPL_128	((uint)0x00c00000)#define SCC_GSMRL_TPL_64	((uint)0x00a00000)#define SCC_GSMRL_TPL_48	((uint)0x00800000)#define SCC_GSMRL_TPL_32	((uint)0x00600000)#define SCC_GSMRL_TPL_16	((uint)0x00400000)#define SCC_GSMRL_TPL_8		((uint)0x00200000)#define SCC_GSMRL_TPL_NONE	((uint)0x00000000)#define SCC_GSMRL_TPP_ALL1	((uint)0x00180000)#define SCC_GSMRL_TPP_01	((uint)0x00100000)#define SCC_GSMRL_TPP_10	((uint)0x00080000)#define SCC_GSMRL_TPP_ZEROS	((uint)0x00000000)#define SCC_GSMRL_TEND		((uint)0x00040000)#define SCC_GSMRL_TDCR_32	((uint)0x00030000)#define SCC_GSMRL_TDCR_16	((uint)0x00020000)#define SCC_GSMRL_TDCR_8	((uint)0x00010000)#define SCC_GSMRL_TDCR_1	((uint)0x00000000)#define SCC_GSMRL_RDCR_32	((uint)0x0000c000)#define SCC_GSMRL_RDCR_16	((uint)0x00008000)#define SCC_GSMRL_RDCR_8	((uint)0x00004000)#define SCC_GSMRL_RDCR_1	((uint)0x00000000)#define SCC_GSMRL_RENC_DFMAN	((uint)0x00003000)#define SCC_GSMRL_RENC_MANCH	((uint)0x00002000)#define SCC_GSMRL_RENC_FM0	((uint)0x00001000)#define SCC_GSMRL_RENC_NRZI	((uint)0x00000800)#define SCC_GSMRL_RENC_NRZ	((uint)0x00000000)#define SCC_GSMRL_TENC_DFMAN	((uint)0x00000600)#define SCC_GSMRL_TENC_MANCH	((uint)0x00000400)#define SCC_GSMRL_TENC_FM0	((uint)0x00000200)#define SCC_GSMRL_TENC_NRZI	((uint)0x00000100)#define SCC_GSMRL_TENC_NRZ	((uint)0x00000000)#define SCC_GSMRL_DIAG_LE	((uint)0x000000c0)	/* Loop and echo */#define SCC_GSMRL_DIAG_ECHO	((uint)0x00000080)#define SCC_GSMRL_DIAG_LOOP	((uint)0x00000040)#define SCC_GSMRL_DIAG_NORM	((uint)0x00000000)#define SCC_GSMRL_ENR		((uint)0x00000020)#define SCC_GSMRL_ENT		((uint)0x00000010)#define SCC_GSMRL_MODE_ENET	((uint)0x0000000c)#define SCC_GSMRL_MODE_DDCMP	((uint)0x00000009)#define SCC_GSMRL_MODE_BISYNC	((uint)0x00000008)#define SCC_GSMRL_MODE_V14	((uint)0x00000007)#define SCC_GSMRL_MODE_AHDLC	((uint)0x00000006)#define SCC_GSMRL_MODE_PROFIBUS	((uint)0x00000005)#define SCC_GSMRL_MODE_UART	((uint)0x00000004)#define SCC_GSMRL_MODE_SS7	((uint)0x00000003)#define SCC_GSMRL_MODE_ATALK	((uint)0x00000002)#define SCC_GSMRL_MODE_HDLC	((uint)0x00000000)#define SCC_TODR_TOD		((ushort)0x8000)/* SCC Event and Mask register.*/#define	SCCM_TXE	((unsigned char)0x10)#define	SCCM_BSY	((unsigned char)0x04)#define	SCCM_TX		((unsigned char)0x02)#define	SCCM_RX		((unsigned char)0x01)typedef struct scc_param {	ushort	scc_rbase;	/* Rx Buffer descriptor base address */	ushort	scc_tbase;	/* Tx Buffer descriptor base address */	u_char	scc_rfcr;	/* Rx function code */	u_char	scc_tfcr;	/* Tx function code */	ushort	scc_mrblr;	/* Max receive buffer length */	uint	scc_rstate;	/* Internal */	uint	scc_idp;	/* Internal */	ushort	scc_rbptr;	/* Internal */	ushort	scc_ibc;	/* Internal */	uint	scc_rxtmp;	/* Internal */	uint	scc_tstate;	/* Internal */	uint	scc_tdp;	/* Internal */	ushort	scc_tbptr;	/* Internal */	ushort	scc_tbc;	/* Internal */	uint	scc_txtmp;	/* Internal */	uint	scc_rcrc;	/* Internal */	uint	scc_tcrc;	/* Internal */} sccp_t;/* CPM Ethernet through SCC1. */typedef struct scc_enet {

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -