diff options
Diffstat (limited to 'include')
| -rw-r--r-- | include/asm-ppc/immap_85xx.h | 45 | ||||
| -rw-r--r-- | include/asm-ppc/immap_fsl_pci.h | 4 | ||||
| -rw-r--r-- | include/asm-ppc/iopin_85xx.h | 40 | ||||
| -rw-r--r-- | include/asm-ppc/mmu.h | 4 | ||||
| -rw-r--r-- | include/asm-sh/bitops.h | 65 | ||||
| -rw-r--r-- | include/asm-sh/byteorder.h | 1 | ||||
| -rw-r--r-- | include/asm-sh/cpu_sh7722.h | 18 | ||||
| -rw-r--r-- | include/asm-sh/cpu_sh7750.h | 2 | ||||
| -rw-r--r-- | include/asm-sh/posix_types.h | 2 | ||||
| -rw-r--r-- | include/asm-sh/u-boot.h | 2 | ||||
| -rw-r--r-- | include/common.h | 1 | ||||
| -rw-r--r-- | include/configs/MPC8540ADS.h | 12 | ||||
| -rw-r--r-- | include/configs/MPC8541CDS.h | 13 | ||||
| -rw-r--r-- | include/configs/MPC8544DS.h | 119 | ||||
| -rw-r--r-- | include/configs/MPC8548CDS.h | 103 | ||||
| -rw-r--r-- | include/configs/MPC8555CDS.h | 13 | ||||
| -rw-r--r-- | include/configs/MPC8560ADS.h | 14 | ||||
| -rw-r--r-- | include/configs/MPC8568MDS.h | 39 | ||||
| -rw-r--r-- | include/configs/ms7722se.h | 11 | ||||
| -rw-r--r-- | include/configs/ms7750se.h | 6 | ||||
| -rw-r--r-- | include/e500.h | 1 | ||||
| -rw-r--r-- | include/ioports.h | 2 | 
22 files changed, 165 insertions, 352 deletions
diff --git a/include/asm-ppc/immap_85xx.h b/include/asm-ppc/immap_85xx.h index 496fc72da..d769d7012 100644 --- a/include/asm-ppc/immap_85xx.h +++ b/include/asm-ppc/immap_85xx.h @@ -720,11 +720,10 @@ typedef struct ccsr_tsec {  } ccsr_tsec_t;  /* - * PIC Registers(0x2_6000-0x4_0000-0x8_0000) + * PIC Registers(0x4_0000-0x8_0000)   */  typedef struct ccsr_pic { -	char 	res0[106496];	/* 0x26000-0x40000 */ -	char	res1[64]; +	char	res1[64];	/* 0x40000 */  	uint	ipidr0;		/* 0x40040 - Interprocessor Interrupt Dispatch Register 0 */  	char	res2[12];  	uint	ipidr1;		/* 0x40050 - Interprocessor Interrupt Dispatch Register 1 */ @@ -1619,25 +1618,25 @@ typedef struct ccsr_gur {  #define PORDEVSR_PCI	(0x00800000)	/* PCI Mode */ -typedef struct immap { -	ccsr_local_ecm_t	im_local_ecm; -	ccsr_ddr_t		im_ddr; -	ccsr_i2c_t		im_i2c; -	ccsr_duart_t		im_duart; -	ccsr_lbc_t		im_lbc; -	ccsr_pcix_t		im_pcix; -	ccsr_pcix_t		im_pcix2; -	char			reserved[90112]; -	ccsr_l2cache_t		im_l2cache; -	ccsr_dma_t		im_dma; -	ccsr_tsec_t		im_tsec1; -	ccsr_tsec_t		im_tsec2; -	ccsr_pic_t		im_pic; -	ccsr_cpm_t		im_cpm; -	ccsr_rio_t		im_rio; -	ccsr_gur_t		im_gur; -} immap_t; - -extern immap_t  *immr; +#define CFG_MPC85xx_GUTS_OFFSET	(0xE0000) +#define CFG_MPC85xx_GUTS_ADDR	(CFG_IMMR + CFG_MPC85xx_GUTS_OFFSET) +#define CFG_MPC85xx_ECM_OFFSET	(0x0000) +#define CFG_MPC85xx_ECM_ADDR	(CFG_IMMR + CFG_MPC85xx_ECM_OFFSET) +#define CFG_MPC85xx_DDR_OFFSET	(0x2000) +#define CFG_MPC85xx_DDR_ADDR	(CFG_IMMR + CFG_MPC85xx_DDR_OFFSET) +#define CFG_MPC85xx_LBC_OFFSET	(0x5000) +#define CFG_MPC85xx_LBC_ADDR	(CFG_IMMR + CFG_MPC85xx_LBC_OFFSET) +#define CFG_MPC85xx_PCIX_OFFSET	(0x8000) +#define CFG_MPC85xx_PCIX_ADDR	(CFG_IMMR + CFG_MPC85xx_PCIX_OFFSET) +#define CFG_MPC85xx_PCIX2_OFFSET	(0x9000) +#define CFG_MPC85xx_PCIX2_ADDR	(CFG_IMMR + CFG_MPC85xx_PCIX2_OFFSET) +#define CFG_MPC85xx_L2_OFFSET	(0x20000) +#define CFG_MPC85xx_L2_ADDR	(CFG_IMMR + CFG_MPC85xx_L2_OFFSET) +#define CFG_MPC85xx_DMA_OFFSET	(0x21000) +#define CFG_MPC85xx_DMA_ADDR	(CFG_IMMR + CFG_MPC85xx_DMA_OFFSET) +#define CFG_MPC85xx_PIC_OFFSET	(0x40000) +#define CFG_MPC85xx_PIC_ADDR	(CFG_IMMR + CFG_MPC85xx_PIC_OFFSET) +#define CFG_MPC85xx_CPM_OFFSET	(0x80000) +#define CFG_MPC85xx_CPM_ADDR	(CFG_IMMR + CFG_MPC85xx_CPM_OFFSET)  #endif /*__IMMAP_85xx__*/ diff --git a/include/asm-ppc/immap_fsl_pci.h b/include/asm-ppc/immap_fsl_pci.h index bd732b668..6715064c9 100644 --- a/include/asm-ppc/immap_fsl_pci.h +++ b/include/asm-ppc/immap_fsl_pci.h @@ -144,7 +144,9 @@ typedef struct ccsr_pci {  	u32	perr_cap1;	/* 0xe2c - PCIE Error Capture Register 1 */  	u32	perr_cap2;	/* 0xe30 - PCIE Error Capture Register 2 */  	u32	perr_cap3;	/* 0xe34 - PCIE Error Capture Register 3 */ -	char	res23[456];	/*     (- #x1000 #xe38) 456 */ +	char	res23[200]; +	u32	pdb_stat;	/* 0xf00 - PCIE Debug Status */ +	char	res24[252];  } ccsr_fsl_pci_t;  #endif /*__IMMAP_fsl_pci__*/ diff --git a/include/asm-ppc/iopin_85xx.h b/include/asm-ppc/iopin_85xx.h index f854df633..daddb554d 100644 --- a/include/asm-ppc/iopin_85xx.h +++ b/include/asm-ppc/iopin_85xx.h @@ -23,121 +23,121 @@ typedef struct {  extern __inline__ void iopin_set_high (iopin_t * iopin)  { -	volatile uint *datp = &((immap_t *) CFG_IMMR)->im_cpm.im_cpm_iop.pdata; +	volatile uint *datp = &((ccsr_cpm_t *) CFG_MPC85xx_CPM_ADDR)->im_cpm_iop.pdata;  	datp[iopin->port * 8] |= (1 << (31 - iopin->pin));  }  extern __inline__ void iopin_set_low (iopin_t * iopin)  { -	volatile uint *datp = &((immap_t *) CFG_IMMR)->im_cpm.im_cpm_iop.pdata; +	volatile uint *datp = &((ccsr_cpm_t *) CFG_MPC85xx_CPM_ADDR)->im_cpm_iop.pdata;  	datp[iopin->port * 8] &= ~(1 << (31 - iopin->pin));  }  extern __inline__ uint iopin_is_high (iopin_t * iopin)  { -	volatile uint *datp = &((immap_t *) CFG_IMMR)->im_cpm.im_cpm_iop.pdata; +	volatile uint *datp = &((ccsr_cpm_t *) CFG_MPC85xx_CPM_ADDR)->im_cpm_iop.pdata;  	return (datp[iopin->port * 8] >> (31 - iopin->pin)) & 1;  }  extern __inline__ uint iopin_is_low (iopin_t * iopin)  { -	volatile uint *datp = &((immap_t *) CFG_IMMR)->im_cpm.im_cpm_iop.pdata; +	volatile uint *datp = &((ccsr_cpm_t *) CFG_MPC85xx_CPM_ADDR)->im_cpm_iop.pdata;  	return ((datp[iopin->port * 8] >> (31 - iopin->pin)) & 1) ^ 1;  }  extern __inline__ void iopin_set_out (iopin_t * iopin)  { -	volatile uint *dirp = &((immap_t *) CFG_IMMR)->im_cpm.im_cpm_iop.pdira; +	volatile uint *dirp = &((ccsr_cpm_t *) CFG_MPC85xx_CPM_ADDR)->im_cpm_iop.pdira;  	dirp[iopin->port * 8] |= (1 << (31 - iopin->pin));  }  extern __inline__ void iopin_set_in (iopin_t * iopin)  { -	volatile uint *dirp = &((immap_t *) CFG_IMMR)->im_cpm.im_cpm_iop.pdira; +	volatile uint *dirp = &((ccsr_cpm_t *) CFG_MPC85xx_CPM_ADDR)->im_cpm_iop.pdira;  	dirp[iopin->port * 8] &= ~(1 << (31 - iopin->pin));  }  extern __inline__ uint iopin_is_out (iopin_t * iopin)  { -	volatile uint *dirp = &((immap_t *) CFG_IMMR)->im_cpm.im_cpm_iop.pdira; +	volatile uint *dirp = &((ccsr_cpm_t *) CFG_MPC85xx_CPM_ADDR)->im_cpm_iop.pdira;  	return (dirp[iopin->port * 8] >> (31 - iopin->pin)) & 1;  }  extern __inline__ uint iopin_is_in (iopin_t * iopin)  { -	volatile uint *dirp = &((immap_t *) CFG_IMMR)->im_cpm.im_cpm_iop.pdira; +	volatile uint *dirp = &((ccsr_cpm_t *) CFG_MPC85xx_CPM_ADDR)->im_cpm_iop.pdira;  	return ((dirp[iopin->port * 8] >> (31 - iopin->pin)) & 1) ^ 1;  }  extern __inline__ void iopin_set_odr (iopin_t * iopin)  { -	volatile uint *odrp = &((immap_t *) CFG_IMMR)->im_cpm.im_cpm_iop.podra; +	volatile uint *odrp = &((ccsr_cpm_t *) CFG_MPC85xx_CPM_ADDR)->im_cpm_iop.podra;  	odrp[iopin->port * 8] |= (1 << (31 - iopin->pin));  }  extern __inline__ void iopin_set_act (iopin_t * iopin)  { -	volatile uint *odrp = &((immap_t *) CFG_IMMR)->im_cpm.im_cpm_iop.podra; +	volatile uint *odrp = &((ccsr_cpm_t *) CFG_MPC85xx_CPM_ADDR)->im_cpm_iop.podra;  	odrp[iopin->port * 8] &= ~(1 << (31 - iopin->pin));  }  extern __inline__ uint iopin_is_odr (iopin_t * iopin)  { -	volatile uint *odrp = &((immap_t *) CFG_IMMR)->im_cpm.im_cpm_iop.podra; +	volatile uint *odrp = &((ccsr_cpm_t *) CFG_MPC85xx_CPM_ADDR)->im_cpm_iop.podra;  	return (odrp[iopin->port * 8] >> (31 - iopin->pin)) & 1;  }  extern __inline__ uint iopin_is_act (iopin_t * iopin)  { -	volatile uint *odrp = &((immap_t *) CFG_IMMR)->im_cpm.im_cpm_iop.podra; +	volatile uint *odrp = &((ccsr_cpm_t *) CFG_MPC85xx_CPM_ADDR)->im_cpm_iop.podra;  	return ((odrp[iopin->port * 8] >> (31 - iopin->pin)) & 1) ^ 1;  }  extern __inline__ void iopin_set_ded (iopin_t * iopin)  { -	volatile uint *parp = &((immap_t *) CFG_IMMR)->im_cpm.im_cpm_iop.ppara; +	volatile uint *parp = &((ccsr_cpm_t *) CFG_MPC85xx_CPM_ADDR)->im_cpm_iop.ppara;  	parp[iopin->port * 8] |= (1 << (31 - iopin->pin));  }  extern __inline__ void iopin_set_gen (iopin_t * iopin)  { -	volatile uint *parp = &((immap_t *) CFG_IMMR)->im_cpm.im_cpm_iop.ppara; +	volatile uint *parp = &((ccsr_cpm_t *) CFG_MPC85xx_CPM_ADDR)->im_cpm_iop.ppara;  	parp[iopin->port * 8] &= ~(1 << (31 - iopin->pin));  }  extern __inline__ uint iopin_is_ded (iopin_t * iopin)  { -	volatile uint *parp = &((immap_t *) CFG_IMMR)->im_cpm.im_cpm_iop.ppara; +	volatile uint *parp = &((ccsr_cpm_t *) CFG_MPC85xx_CPM_ADDR)->im_cpm_iop.ppara;  	return (parp[iopin->port * 8] >> (31 - iopin->pin)) & 1;  }  extern __inline__ uint iopin_is_gen (iopin_t * iopin)  { -	volatile uint *parp = &((immap_t *) CFG_IMMR)->im_cpm.im_cpm_iop.ppara; +	volatile uint *parp = &((ccsr_cpm_t *) CFG_MPC85xx_CPM_ADDR)->im_cpm_iop.ppara;  	return ((parp[iopin->port * 8] >> (31 - iopin->pin)) & 1) ^ 1;  }  extern __inline__ void iopin_set_opt2 (iopin_t * iopin)  { -	volatile uint *sorp = &((immap_t *) CFG_IMMR)->im_cpm.im_cpm_iop.psora; +	volatile uint *sorp = &((ccsr_cpm_t *) CFG_MPC85xx_CPM_ADDR)->im_cpm_iop.psora;  	sorp[iopin->port * 8] |= (1 << (31 - iopin->pin));  }  extern __inline__ void iopin_set_opt1 (iopin_t * iopin)  { -	volatile uint *sorp = &((immap_t *) CFG_IMMR)->im_cpm.im_cpm_iop.psora; +	volatile uint *sorp = &((ccsr_cpm_t *) CFG_MPC85xx_CPM_ADDR)->im_cpm_iop.psora;  	sorp[iopin->port * 8] &= ~(1 << (31 - iopin->pin));  }  extern __inline__ uint iopin_is_opt2 (iopin_t * iopin)  { -	volatile uint *sorp = &((immap_t *) CFG_IMMR)->im_cpm.im_cpm_iop.psora; +	volatile uint *sorp = &((ccsr_cpm_t *) CFG_MPC85xx_CPM_ADDR)->im_cpm_iop.psora;  	return (sorp[iopin->port * 8] >> (31 - iopin->pin)) & 1;  }  extern __inline__ uint iopin_is_opt1 (iopin_t * iopin)  { -	volatile uint *sorp = &((immap_t *) CFG_IMMR)->im_cpm.im_cpm_iop.psora; +	volatile uint *sorp = &((ccsr_cpm_t *) CFG_MPC85xx_CPM_ADDR)->im_cpm_iop.psora;  	return ((sorp[iopin->port * 8] >> (31 - iopin->pin)) & 1) ^ 1;  } diff --git a/include/asm-ppc/mmu.h b/include/asm-ppc/mmu.h index b3cfa9b37..3d403327e 100644 --- a/include/asm-ppc/mmu.h +++ b/include/asm-ppc/mmu.h @@ -413,7 +413,9 @@ extern int write_bat(ppc_bat_t bat, unsigned long upper, unsigned long lower);  #define LAWAR_TRGT_IF_PCI1	0x00000000  #define LAWAR_TRGT_IF_PCIX	0x00000000  #define LAWAR_TRGT_IF_PCI2	0x00100000 -#define LAWAR_TRGT_IF_PEX	0x00200000 +#define LAWAR_TRGT_IF_PCIE1	0x00200000 +#define LAWAR_TRGT_IF_PCIE2	0x00100000 +#define LAWAR_TRGT_IF_PCIE3	0x00300000  #define LAWAR_TRGT_IF_LBC	0x00400000  #define LAWAR_TRGT_IF_CCSR	0x00800000  #define LAWAR_TRGT_IF_DDR_INTERLEAVED 0x00B00000 diff --git a/include/asm-sh/bitops.h b/include/asm-sh/bitops.h index 529d0f2db..410fba46e 100644 --- a/include/asm-sh/bitops.h +++ b/include/asm-sh/bitops.h @@ -2,7 +2,6 @@  #define __ASM_SH_BITOPS_H  #ifdef __KERNEL__ -//#include <asm/system.h>  #include <asm/irqflags.h>  /* For __swab32 */  #include <asm/byteorder.h> @@ -99,8 +98,6 @@ static inline int test_and_change_bit(int nr, volatile void * addr)  	return retval;  } -//#include <asm-generic/bitops/non-atomic.h> -  static inline unsigned long ffz(unsigned long word)  {  	unsigned long result; @@ -121,46 +118,34 @@ static inline unsigned long ffz(unsigned long word)   *   * Undefined if no bit exists, so code should check against 0 first.   */ -static inline int ffs(int x) +static inline int ffs (int x)  { -  int r = 1; +	int r = 1; -  if (!x) -    return 0; -  if (!(x & 0xffff)) { -    x >>= 16; -    r += 16; -  } -  if (!(x & 0xff)) { -    x >>= 8; -    r += 8; -  } -  if (!(x & 0xf)) { -    x >>= 4; -    r += 4; -  } -  if (!(x & 3)) { -    x >>= 2; -    r += 2; -  } -  if (!(x & 1)) { -    x >>= 1; -    r += 1; -  } -  return r; +	if (!x) +		return 0; +	if (!(x & 0xffff)) { +		x >>= 16; +		r += 16; +	} +	if (!(x & 0xff)) { +		x >>= 8; +		r += 8; +	} +	if (!(x & 0xf)) { +		x >>= 4; +		r += 4; +	} +	if (!(x & 3)) { +		x >>= 2; +		r += 2; +	} +	if (!(x & 1)) { +		x >>= 1; +		r += 1; +	} +	return r;  } - -#if 0 -#include <asm-generic/bitops/find.h> -#include <asm-generic/bitops/ffs.h> -#include <asm-generic/bitops/hweight.h> -#include <asm-generic/bitops/sched.h> -#include <asm-generic/bitops/ext2-non-atomic.h> -#include <asm-generic/bitops/ext2-atomic.h> -#include <asm-generic/bitops/minix.h> -#include <asm-generic/bitops/fls.h> -#include <asm-generic/bitops/fls64.h> -#endif  #endif /* __KERNEL__ */  #endif /* __ASM_SH_BITOPS_H */ diff --git a/include/asm-sh/byteorder.h b/include/asm-sh/byteorder.h index 8836e657d..25626a076 100644 --- a/include/asm-sh/byteorder.h +++ b/include/asm-sh/byteorder.h @@ -28,4 +28,3 @@  #endif  #endif - diff --git a/include/asm-sh/cpu_sh7722.h b/include/asm-sh/cpu_sh7722.h index fb63c6ea4..13d4a77ed 100644 --- a/include/asm-sh/cpu_sh7722.h +++ b/include/asm-sh/cpu_sh7722.h @@ -31,13 +31,13 @@  #define INTEVT		0xFF000028  /*	MMU	*/ -#define PTEH		0xFF000000  -#define PTEL		0xFF000004  -#define TTB		0xFF000008  -#define TEA		0xFF00000C  -#define MMUCR		0xFF000010  -#define PASCR		0xFF000070  -#define IRMCR		0xFF000078  +#define PTEH		0xFF000000 +#define PTEL		0xFF000004 +#define TTB		0xFF000008 +#define TEA		0xFF00000C +#define MMUCR		0xFF000010 +#define PASCR		0xFF000070 +#define IRMCR		0xFF000078  /*	CACHE	*/  #define CCR		0xFF00001C @@ -325,7 +325,7 @@  #define SPICR1      0xA4420030  /*	SCIF	*/ -/*  +/*  #define SCSMR       0xFFE00000  #define SCBRR       0xFFE00004  #define SCSCR       0xFFE00008 @@ -1334,4 +1334,4 @@  #define SDDRL       0xFC11000A  #define SDINT       0xFC110018 -#endif /* _ASM_CPU_SH7722_H_ */  +#endif /* _ASM_CPU_SH7722_H_ */ diff --git a/include/asm-sh/cpu_sh7750.h b/include/asm-sh/cpu_sh7750.h index 9993e6320..bb6461a6b 100644 --- a/include/asm-sh/cpu_sh7750.h +++ b/include/asm-sh/cpu_sh7750.h @@ -1,7 +1,7 @@  /*   * (C) Copyright 2007 Nobuhiro Iwamatsu <iwamatsu@nigauri.org>   * - * SH7750/SH7750S/SH7750R/SH7751/SH7751R  + * SH7750/SH7750S/SH7750R/SH7751/SH7751R   *  Internal I/O register   *   * This program is free software; you can redistribute it and/or diff --git a/include/asm-sh/posix_types.h b/include/asm-sh/posix_types.h index 4bb9f7e26..c9d9fb84f 100644 --- a/include/asm-sh/posix_types.h +++ b/include/asm-sh/posix_types.h @@ -68,7 +68,7 @@ static __inline__ void __FD_CLR(unsigned long __fd, __kernel_fd_set *__fdsetp)  #undef	__FD_ISSET  static __inline__ int __FD_ISSET(unsigned long __fd, const __kernel_fd_set *__p) -{  +{  	unsigned long __tmp = __fd / __NFDBITS;  	unsigned long __rem = __fd % __NFDBITS;  	return (__p->fds_bits[__tmp] & (1UL<<__rem)) != 0; diff --git a/include/asm-sh/u-boot.h b/include/asm-sh/u-boot.h index c74e97cdf..b79644cfd 100644 --- a/include/asm-sh/u-boot.h +++ b/include/asm-sh/u-boot.h @@ -25,7 +25,6 @@  #ifndef __ASM_SH_U_BOOT_H_  #define __ASM_SH_U_BOOT_H_ -  typedef struct bd_info {  	unsigned long   bi_memstart;    /* start of DRAM memory */  	unsigned long   bi_memsize;     /* size  of DRAM memory in bytes */ @@ -41,4 +40,3 @@ typedef struct bd_info {  } bd_t;  #endif - diff --git a/include/common.h b/include/common.h index 04195abcb..22e80bb9b 100644 --- a/include/common.h +++ b/include/common.h @@ -498,6 +498,7 @@ ulong	get_bus_freq  (ulong);  #if defined(CONFIG_MPC85xx)  typedef MPC85xx_SYS_INFO sys_info_t;  void	get_sys_info  ( sys_info_t * ); +ulong	get_ddr_freq  (ulong);  #endif  #if defined(CONFIG_MPC86xx)  typedef MPC86xx_SYS_INFO sys_info_t; diff --git a/include/configs/MPC8540ADS.h b/include/configs/MPC8540ADS.h index be603ac11..35e1d6306 100644 --- a/include/configs/MPC8540ADS.h +++ b/include/configs/MPC8540ADS.h @@ -298,13 +298,9 @@  #endif  /* pass open firmware flat tree */ -#define CONFIG_OF_FLAT_TREE	1 -#define CONFIG_OF_BOARD_SETUP	1 - -#define OF_CPU			"PowerPC,8540@0" -#define OF_SOC			"soc8540@e0000000" -#define OF_TBCLK		(bd->bi_busfreq / 8) -#define OF_STDOUT_PATH		"/soc8540@e0000000/serial@4500" +#define CONFIG_OF_LIBFDT		1 +#define CONFIG_OF_BOARD_SETUP		1 +#define CONFIG_OF_STDOUT_VIA_ALIAS	1  #define CFG_64BIT_VSPRINTF	1  #define CFG_64BIT_STRTOUL	1 @@ -424,6 +420,7 @@  #define CONFIG_CMD_PING  #define CONFIG_CMD_I2C +#define CONFIG_CMD_ELF  #if defined(CONFIG_PCI)      #define CONFIG_CMD_PCI @@ -441,6 +438,7 @@   * Miscellaneous configurable options   */  #define CFG_LONGHELP			/* undef to save memory	*/ +#define CONFIG_CMDLINE_EDITING		/* Command-line editing */  #define CFG_LOAD_ADDR	0x2000000	/* default load address */  #define CFG_PROMPT	"=> "		/* Monitor Command Prompt */ diff --git a/include/configs/MPC8541CDS.h b/include/configs/MPC8541CDS.h index 8dda6651e..d2e723789 100644 --- a/include/configs/MPC8541CDS.h +++ b/include/configs/MPC8541CDS.h @@ -309,14 +309,9 @@ extern unsigned long get_clock_freq(void);  #endif  /* pass open firmware flat tree */ -#define CONFIG_OF_FLAT_TREE	1 -#define CONFIG_OF_BOARD_SETUP	1 - -#define OF_CPU			"PowerPC,8541@0" -#define OF_SOC			"soc8541@e0000000" -#define OF_TBCLK		(bd->bi_busfreq / 8) -#define OF_STDOUT_PATH		"/soc8541@e0000000/serial@4600" -#define OF_PCI			"pci@e0008000" +#define CONFIG_OF_LIBFDT		1 +#define CONFIG_OF_BOARD_SETUP		1 +#define CONFIG_OF_STDOUT_VIA_ALIAS	1  /*   * I2C @@ -422,6 +417,7 @@ extern unsigned long get_clock_freq(void);  #define CONFIG_CMD_PING  #define CONFIG_CMD_I2C  #define CONFIG_CMD_MII +#define CONFIG_CMD_ELF  #if defined(CONFIG_PCI)      #define CONFIG_CMD_PCI @@ -434,6 +430,7 @@ extern unsigned long get_clock_freq(void);   * Miscellaneous configurable options   */  #define CFG_LONGHELP			/* undef to save memory	*/ +#define CONFIG_CMDLINE_EDITING		/* Command-line editing */  #define CFG_LOAD_ADDR	0x2000000	/* default load address */  #define CFG_PROMPT	"=> "		/* Monitor Command Prompt */  #if defined(CONFIG_CMD_KGDB) diff --git a/include/configs/MPC8544DS.h b/include/configs/MPC8544DS.h index 13e2a2c07..545a76cc6 100644 --- a/include/configs/MPC8544DS.h +++ b/include/configs/MPC8544DS.h @@ -40,6 +40,7 @@  #define CONFIG_PCIE2		1	/* PCIE controler 2 (slot 2) */  #define CONFIG_PCIE3		1	/* PCIE controler 3 (ULI bridge) */  #define CONFIG_FSL_PCI_INIT	1	/* Use common FSL init code */ +#define CONFIG_FSL_PCIE_RESET	1	/* need PCIe reset errata */  #define CONFIG_TSEC_ENET		/* tsec ethernet support */  #define CONFIG_ENV_OVERWRITE @@ -251,13 +252,9 @@ extern unsigned long get_board_sys_clk(unsigned long dummy);  #endif  /* pass open firmware flat tree */ -#define CONFIG_OF_FLAT_TREE	1 -#define CONFIG_OF_BOARD_SETUP	1 - -#define OF_CPU			"PowerPC,8544@0" -#define OF_SOC			"soc8544@e0000000" -#define OF_TBCLK		(bd->bi_busfreq / 8) -#define OF_STDOUT_PATH		"/soc8544@e0000000/serial@4500" +#define CONFIG_OF_LIBFDT		1 +#define CONFIG_OF_BOARD_SETUP		1 +#define CONFIG_OF_STDOUT_VIA_ALIAS	1  /* I2C */  #define CONFIG_FSL_I2C		/* Use FSL common I2C driver */ @@ -410,6 +407,7 @@ extern unsigned long get_board_sys_clk(unsigned long dummy);  #define CONFIG_CMD_PING  #define CONFIG_CMD_I2C  #define CONFIG_CMD_MII +#define CONFIG_CMD_ELF  #if defined(CONFIG_PCI)      #define CONFIG_CMD_PCI @@ -426,6 +424,7 @@ extern unsigned long get_board_sys_clk(unsigned long dummy);   * Miscellaneous configurable options   */  #define CFG_LONGHELP			/* undef to save memory	*/ +#define CONFIG_CMDLINE_EDITING		/* Command-line editing */  #define CFG_LOAD_ADDR	0x2000000	/* default load address */  #define CFG_PROMPT	"=> "		/* Monitor Command Prompt */  #if defined(CONFIG_CMD_KGDB) @@ -475,10 +474,6 @@ extern unsigned long get_board_sys_clk(unsigned long dummy);  #define CONFIG_ETHADDR	00:E0:0C:02:00:FD  #define CONFIG_HAS_ETH1  #define CONFIG_ETH1ADDR	00:E0:0C:02:01:FD -#define CONFIG_HAS_ETH2 -#define CONFIG_ETH2ADDR	00:E0:0C:02:02:FD -#define CONFIG_HAS_ETH3 -#define CONFIG_ETH3ADDR	00:E0:0C:02:03:FD  #endif  #define CONFIG_IPADDR	192.168.1.251 @@ -488,8 +483,8 @@ extern unsigned long get_board_sys_clk(unsigned long dummy);  #define CONFIG_BOOTFILE	8544ds/uImage.uboot  #define CONFIG_UBOOTPATH	8544ds/u-boot.bin	/* TFTP server */ -#define CONFIG_SERVERIP	192.168.0.1 -#define CONFIG_GATEWAYIP 192.168.0.1 +#define CONFIG_SERVERIP	192.168.1.1 +#define CONFIG_GATEWAYIP 192.168.1.1  #define CONFIG_NETMASK	255.255.0.0  #define CONFIG_LOADADDR	1000000	/*default location for tftp and bootm*/ @@ -499,65 +494,6 @@ extern unsigned long get_board_sys_clk(unsigned long dummy);  #define CONFIG_BAUDRATE	115200 -#if defined(CONFIG_PCIE1) || defined(CONFIG_PCIE2) || defined(CONFIG_PCIE3) -#define PCIE_ENV \ - "pciereg=md ${a}000 6; md ${a}020 4; md ${a}bf8 2; echo o;md ${a}c00 25;" \ -	"echo i; md ${a}da0 15; echo e;md ${a}e00 e; echo d; md ${a}f00 c\0" \ - "pcieerr=md ${a}020 1; md ${a}e00 e;"		\ -	"pci d.b $b.0 7 1; pci d.w $b.0 1e 1;"	\ -	"pci d.w $b.0 56 1;"			\ -	"pci d $b.0 104 1;pci d $b.0 110 1;pci d $b.0 130 1\0" \ - "pcieerrc=mw ${a}020 ffffffff; mw ${a}e00 ffffffff;"	\ -	"pci w.b $b.0 7 ff; pci w.w $b.0 1e ffff; pci w.w $b.0 56 ffff;" \ -	"pci w $b.0 104 ffffffff; pci w $b.0 110 ffffffff;" \ -	"pci w $b.0 130 ffffffff\0" \ - "pciecfg=pci d $b.0 0 20; pci d $b.0 100 e; pci d $b.0 400 69\0"	\ - "pcie1regs=setenv a e000a; run pciereg\0"	\ - "pcie2regs=setenv a e0009; run pciereg\0"	\ - "pcie3regs=setenv a e000b; run pciereg\0"	\ - "pcie1cfg=setenv b 3; run pciecfg\0" \ - "pcie2cfg=setenv b 5; run pciecfg\0" \ - "pcie3cfg=setenv b 0; run pciecfg\0" \ - "pcie1err=setenv a e000a; setenv b 3; run pcieerr\0"	\ - "pcie2err=setenv a e0009; setenv b 5; run pcieerr\0"	\ - "pcie3err=setenv a e000b; setenv b 0; run pcieerr\0"	\ - "pcie1errc=setenv a e000a; setenv b 3; run pcieerrc\0"	\ - "pcie2errc=setenv a e0009; setenv b 5; run pcieerrc\0"	\ - "pcie3errc=setenv a e000b; setenv b 0; run pcieerrc\0" -#else -#define	PCIE_ENV "" -#endif - -#if defined(CONFIG_PCI1) -#define PCI_ENV \ - "pcireg=md ${a}000 3; echo o;md ${a}c00 25; echo i; md ${a}da0 15;" \ -	"echo e;md ${a}e00 9\0"			\ - "pci1regs=setenv a e0008; run pcireg\0"	\ - "pcierr=md ${a}e00 8; pci d.b $b.0 7 1; pci d.w $b.0 1e 1;" \ -	"pci d.w $b.0 56 1\0"			\ - "pcierrc=mw ${a}e00 ffffffff; mw ${a}e0c 0; pci w.b $b.0 7 ff;" \ -	"pci w.w $b.0 1e ffff; pci w.w $b.0 56 ffff\0"		\ - "pci1err=setenv a e0008; setenv b 7; run pcierr\0"		\ - "pci1errc=setenv a e0008; setenv b 7; run pcierrc\0" -#else -#define	PCI_ENV "" -#endif - -#if defined(CONFIG_TSEC_ENET) -#define ENET_ENV \ - "enetreg1=md ${a}000 2; md ${a}010 9; md ${a}050 4; md ${a}08c 1;" \ -	"md ${a}098 2\0" \ - "enetregt=echo t;md ${a}100 6; md ${a}140 2; md ${a}180 10; md ${a}200 10\0" \ - "enetregr=echo r;md ${a}300 6; md ${a}330 5; md ${a}380 10; md ${a}400 10\0" \ - "enetregm=echo mac;md ${a}500 5; md ${a}520 28;echo fifo;md ${a}a00 1;" \ -	"echo mib;md ${a}680 31\0" \ - "enetreg=run enetreg1; run enetregm; run enetregt; run enetregr\0" \ - "enet1regs=setenv a e0024; run enetreg\0" \ - "enet3regs=setenv a e0026; run enetreg\0" -#else -#define ENET_ENV "" -#endif -  #define	CONFIG_EXTRA_ENV_SETTINGS				\   "netdev=eth0\0"						\   "uboot=" MK_STR(CONFIG_UBOOTPATH) "\0"				\ @@ -570,29 +506,9 @@ extern unsigned long get_board_sys_clk(unsigned long dummy);   "consoledev=ttyS0\0"				\   "ramdiskaddr=2000000\0"			\   "ramdiskfile=8544ds/ramdisk.uboot\0"		\ - "dtbaddr=c00000\0"				\ - "dtbfile=8544ds/mpc8544ds.dtb\0"		\ - "bdev=sda3\0"					\ - "eoi=mw e00400b0 0\0"				\ - "iack=md e00400a0 1\0"				\ - "ddrreg=md ${a}000 8; md ${a}080 8;md ${a}100 d; md ${a}140 4; md ${a}bf0 4;" \ -	"md ${a}e00 3; md ${a}e20 3; md ${a}e40 7; md ${a}f00 5\0" \ - "ddrregs=setenv a e0002; run ddrreg\0"		\ - "gureg=md ${a}000 2c; md ${a}0b0 1; md ${a}0c0 1; md ${a}b20 3;" \ -	"md ${a}e00 1; md ${a}e60 1; md ${a}ef0 15\0"	\ - "guregs=setenv a e00e0; run gureg\0"		\ - "ecmreg=md ${a}000 1; md ${a}010 1; md ${a}bf8 2; md ${a}e00 6\0" \ - "ecmregs=setenv a e0001; run ecmreg\0"		\ - "lawregs=md e0000c08 4b\0" \ - "lbcregs=md e0005000 36\0" \ - "dma0regs=md e0021100 12\0" \ - "dma1regs=md e0021180 12\0" \ - "dma2regs=md e0021200 12\0" \ - "dma3regs=md e0021280 12\0" \ - PCIE_ENV	\ - PCI_ENV	\ - ENET_ENV - + "fdtaddr=c00000\0"				\ + "fdtfile=8544ds/mpc8544ds.dtb\0"		\ + "bdev=sda3\0"  #define CONFIG_NFSBOOTCOMMAND		\   "setenv bootargs root=/dev/nfs rw "	\ @@ -600,23 +516,22 @@ extern unsigned long get_board_sys_clk(unsigned long dummy);   "ip=$ipaddr:$serverip:$gatewayip:$netmask:$hostname:$netdev:off " \   "console=$consoledev,$baudrate $othbootargs;"	\   "tftp $loadaddr $bootfile;"		\ - "tftp $dtbaddr $dtbfile;"		\ - "bootm $loadaddr - $dtbaddr" - + "tftp $fdtaddr $fdtfile;"		\ + "bootm $loadaddr - $fdtaddr"  #define CONFIG_RAMBOOTCOMMAND		\   "setenv bootargs root=/dev/ram rw "	\   "console=$consoledev,$baudrate $othbootargs;"	\   "tftp $ramdiskaddr $ramdiskfile;"	\   "tftp $loadaddr $bootfile;"		\ - "tftp $dtbaddr $dtbfile;"		\ - "bootm $loadaddr $ramdiskaddr $dtbaddr" + "tftp $fdtaddr $fdtfile;"		\ + "bootm $loadaddr $ramdiskaddr $fdtaddr"  #define CONFIG_BOOTCOMMAND		\   "setenv bootargs root=/dev/$bdev rw "	\   "console=$consoledev,$baudrate $othbootargs;"	\   "tftp $loadaddr $bootfile;"		\ - "tftp $dtbaddr $dtbfile;"		\ - "bootm $loadaddr - $dtbaddr" + "tftp $fdtaddr $fdtfile;"		\ + "bootm $loadaddr - $fdtaddr"  #endif	/* __CONFIG_H */ diff --git a/include/configs/MPC8548CDS.h b/include/configs/MPC8548CDS.h index 4edc7fd2b..3f382e59a 100644 --- a/include/configs/MPC8548CDS.h +++ b/include/configs/MPC8548CDS.h @@ -42,6 +42,7 @@  #undef CONFIG_RIO  #undef CONFIG_PCI2  #define CONFIG_FSL_PCI_INIT	1	/* Use common FSL init code */ +#define CONFIG_FSL_PCIE_RESET	1	/* need PCIe reset errata */  #define CONFIG_TSEC_ENET		/* tsec ethernet support */  #define CONFIG_ENV_OVERWRITE @@ -333,14 +334,9 @@ extern unsigned long get_clock_freq(void);  #endif  /* pass open firmware flat tree */ -#define CONFIG_OF_FLAT_TREE	1 -#define CONFIG_OF_BOARD_SETUP	1 - -#define OF_CPU			"PowerPC,8548@0" -#define OF_SOC			"soc8548@e0000000" -#define OF_TBCLK		(bd->bi_busfreq / 8) -#define OF_STDOUT_PATH		"/soc8548@e0000000/serial@4600" -#define OF_PCI			"pci@e0008000" +#define CONFIG_OF_LIBFDT		1 +#define CONFIG_OF_BOARD_SETUP		1 +#define CONFIG_OF_STDOUT_VIA_ALIAS	1  /*   * I2C @@ -483,6 +479,7 @@ extern unsigned long get_clock_freq(void);  #define CONFIG_CMD_PING  #define CONFIG_CMD_I2C  #define CONFIG_CMD_MII +#define CONFIG_CMD_ELF  #if defined(CONFIG_PCI)      #define CONFIG_CMD_PCI @@ -495,6 +492,7 @@ extern unsigned long get_clock_freq(void);   * Miscellaneous configurable options   */  #define CFG_LONGHELP			/* undef to save memory	*/ +#define CONFIG_CMDLINE_EDITING		/* Command-line editing */  #define CFG_LOAD_ADDR	0x2000000	/* default load address */  #define CFG_PROMPT	"=> "		/* Monitor Command Prompt */  #if defined(CONFIG_CMD_KGDB) @@ -568,72 +566,6 @@ extern unsigned long get_clock_freq(void);  #define CONFIG_BAUDRATE	115200 -#if defined(CONFIG_PCIE1) -#define PCIE_ENV \ - "pciereg=md ${a}000 6; md ${a}020 4; md ${a}bf8 2; echo o;md ${a}c00 25;" \ -	"echo i; md ${a}da0 15; echo e;md ${a}e00 e; echo d; md ${a}f00 c\0" \ - "pcieerr=md ${a}020 1; md ${a}e00 e; pci d.b $b.0 7 1; pci d.w $b.0 1e 1;" \ -	"pci d.w $b.0 56 1; pci d $b.0 104 1; pci d $b.0 110 1;" \ -	"pci d $b.0 130 1\0" \ - "pcieerrc=mw ${a}020 ffffffff; mw ${a}e00 ffffffff; pci w.b $b.0 7 ff;" \ -	"pci w.w $b.0 1e ffff; pci w.w $b.0 56 ffff; pci w $b.0 104 ffffffff;"\ -	"pci w $b.0 110 ffffffff; pci w $b.0 130 ffffffff\0" \ - "pciecfg=pci d $b.0 0 20; pci d $b.0 100 e; pci d $b.0 400 69\0" \ - "pcie1regs=setenv a e000a; run pciereg\0" \ - "pcie1cfg=setenv b 3; run pciecfg\0" \ - "pcie1err=setenv a e000a; setenv b 3; run pcieerr\0" \ - "pcie1errc=setenv a e000a; setenv b 3; run pcieerrc\0" -#else -#define	PCIE_ENV "" -#endif - -#if defined(CONFIG_PCI1) || defined(CONFIG_PCI2) -#define PCI_ENV \ - "pcireg=md ${a}000 3; echo o;md ${a}c00 25; echo i; md ${a}da0 15;" \ -	"echo e;md ${a}e00 9\0" \ - "pcierr=md ${a}e00 8; pci d.b $b.0 7 1;pci d.w $b.0 1e 1;" \ -	"pci d.w $b.0 56 1\0" \ - "pcierrc=mw ${a}e00 ffffffff; mw ${a}e0c 0; pci w.b $b.0 7 ff;" \ -	"pci w.w $b.0 1e ffff; pci w.w $b.0 56 ffff\0" -#else -#define	PCI_ENV "" -#endif - -#if defined(CONFIG_PCI1) -#define PCI_ENV1 \ - "pci1regs=setenv a e0008; run pcireg\0" \ - "pci1err=setenv a e0008; setenv b 0; run pcierr\0" \ - "pci1errc=setenv a e0008; setenv b 0; run pcierrc\0" -#else -#define	PCI_ENV1 "" -#endif - -#if defined(CONFIG_PCI2) -#define PCI_ENV2 \ - "pci2regs=setenv a e0009; run pcireg\0" \ - "pci2err=setenv a e0009; setenv b 123; run pcierr\0"	\ - "pci2errc=setenv a e0009; setenv b 123; run pcierrc\0" -#else -#define	PCI_ENV2 "" -#endif - -#if defined(CONFIG_TSEC_ENET) -#define ENET_ENV \ - "enetreg1=md ${a}000 2; md ${a}010 9; md ${a}050 4; md ${a}08c 1;" \ -	"md ${a}098 2\0" \ - "enetregt=echo t;md ${a}100 6; md ${a}140 2; md ${a}180 10; md ${a}200 10\0" \ - "enetregr=echo r;md ${a}300 6; md ${a}330 5; md ${a}380 10; md ${a}400 10\0" \ - "enetregm=echo mac;md ${a}500 5; md ${a}520 28;echo fifo;md ${a}a00 1;" \ -	"echo mib;md ${a}680 31\0" \ - "enetreg=run enetreg1; run enetregm; run enetregt; run enetregr\0" \ - "enet1regs=setenv a e0024; run enetreg\0" \ - "enet2regs=setenv a e0025; run enetreg\0" \ - "enet3regs=setenv a e0026; run enetreg\0" \ - "enet4regs=setenv a e0027; run enetreg\0" -#else -#define ENET_ENV "" -#endif -  #define	CONFIG_EXTRA_ENV_SETTINGS				\   "netdev=eth0\0"						\   "uboot=" MK_STR(CONFIG_UBOOTPATH) "\0"				\ @@ -647,28 +579,7 @@ extern unsigned long get_clock_freq(void);   "ramdiskaddr=2000000\0"			\   "ramdiskfile=ramdisk.uboot\0"			\   "fdtaddr=c00000\0"				\ - "fdtfile=mpc8548cds.dtb\0"			\ - "eoi=mw e00400b0 0\0"				\ - "iack=md e00400a0 1\0"				\ - "ddrreg=md ${a}000 8; md ${a}080 8;md ${a}100 d; md ${a}140 4; md ${a}bf0 4;" \ -	"md ${a}e00 3; md ${a}e20 3; md ${a}e40 7; md ${a}f00 5\0" \ - "ddrregs=setenv a e0002; run ddrreg\0"		\ - "gureg=md ${a}000 2c; md ${a}0b0 1; md ${a}0c0 1; md ${a}b20 3;" \ -	"md ${a}e00 1; md ${a}e60 1; md ${a}ef0 15\0"	\ - "guregs=setenv a e00e0; run gureg\0"		\ - "ecmreg=md ${a}000 1; md ${a}010 1; md ${a}bf8 2; md ${a}e00 6\0" \ - "ecmregs=setenv a e0001; run ecmreg\0" \ - "lawregs=md e0000c08 4b\0" \ - "lbcregs=md e0005000 36\0" \ - "dma0regs=md e0021100 12\0" \ - "dma1regs=md e0021180 12\0" \ - "dma2regs=md e0021200 12\0" \ - "dma3regs=md e0021280 12\0" \ - PCIE_ENV \ - PCI_ENV \ - PCI_ENV1 \ - PCI_ENV2 \ - ENET_ENV + "fdtfile=mpc8548cds.dtb\0"  #define CONFIG_NFSBOOTCOMMAND						\     "setenv bootargs root=/dev/nfs rw "					\ diff --git a/include/configs/MPC8555CDS.h b/include/configs/MPC8555CDS.h index c414bf033..90ef3d6b6 100644 --- a/include/configs/MPC8555CDS.h +++ b/include/configs/MPC8555CDS.h @@ -309,14 +309,9 @@ extern unsigned long get_clock_freq(void);  #endif  /* pass open firmware flat tree */ -#define CONFIG_OF_FLAT_TREE	1 -#define CONFIG_OF_BOARD_SETUP	1 - -#define OF_CPU			"PowerPC,8555@0" -#define OF_SOC			"soc8555@e0000000" -#define OF_TBCLK		(bd->bi_busfreq / 8) -#define OF_STDOUT_PATH		"/soc8555@e0000000/serial@4600" -#define OF_PCI			"pci@e0008000" +#define CONFIG_OF_LIBFDT		1 +#define CONFIG_OF_BOARD_SETUP		1 +#define CONFIG_OF_STDOUT_VIA_ALIAS	1  /*   * I2C @@ -422,6 +417,7 @@ extern unsigned long get_clock_freq(void);  #define CONFIG_CMD_PING  #define CONFIG_CMD_I2C  #define CONFIG_CMD_MII +#define CONFIG_CMD_ELF  #if defined(CONFIG_PCI)      #define CONFIG_CMD_PCI @@ -434,6 +430,7 @@ extern unsigned long get_clock_freq(void);   * Miscellaneous configurable options   */  #define CFG_LONGHELP			/* undef to save memory	*/ +#define CONFIG_CMDLINE_EDITING		/* Command-line editing */  #define CFG_LOAD_ADDR	0x2000000	/* default load address */  #define CFG_PROMPT	"=> "		/* Monitor Command Prompt */  #if defined(CONFIG_CMD_KGDB) diff --git a/include/configs/MPC8560ADS.h b/include/configs/MPC8560ADS.h index a8f362fa1..d4e0de0d3 100644 --- a/include/configs/MPC8560ADS.h +++ b/include/configs/MPC8560ADS.h @@ -289,13 +289,9 @@  #endif  /* pass open firmware flat tree */ -#define CONFIG_OF_FLAT_TREE	1 -#define CONFIG_OF_BOARD_SETUP	1 - -#define OF_CPU			"PowerPC,8560@0" -#define OF_SOC			"soc8560@e0000000" -#define OF_TBCLK		(bd->bi_busfreq / 8) -#define OF_STDOUT_PATH		"/soc8560@e0000000/serial@4500" +#define CONFIG_OF_LIBFDT		1 +#define CONFIG_OF_BOARD_SETUP		1 +#define CONFIG_OF_STDOUT_VIA_ALIAS	1  /*   * I2C @@ -450,6 +446,7 @@  #define CONFIG_CMD_PING  #define CONFIG_CMD_I2C +#define CONFIG_CMD_ELF  #if defined(CONFIG_PCI)      #define CONFIG_CMD_PCI @@ -471,6 +468,7 @@   * Miscellaneous configurable options   */  #define CFG_LONGHELP			/* undef to save memory	*/ +#define CONFIG_CMDLINE_EDITING		/* Command-line editing */  #define CFG_LOAD_ADDR	0x1000000	/* default load address */  #define CFG_PROMPT	"=> "		/* Monitor Command Prompt */ @@ -525,6 +523,8 @@  #define CONFIG_ETH1ADDR  00:E0:0C:00:01:FD  #define CONFIG_HAS_ETH2  #define CONFIG_ETH2ADDR  00:E0:0C:00:02:FD +#define CONFIG_HAS_ETH3 +#define CONFIG_ETH3ADDR  00:E0:0C:00:03:FD  #endif  #define CONFIG_IPADDR    192.168.1.253 diff --git a/include/configs/MPC8568MDS.h b/include/configs/MPC8568MDS.h index b9366cc99..59f490e85 100644 --- a/include/configs/MPC8568MDS.h +++ b/include/configs/MPC8568MDS.h @@ -33,7 +33,11 @@  #define CONFIG_MPC8568		1	/* MPC8568 specific */  #define CONFIG_MPC8568MDS	1	/* MPC8568MDS board specific */ -#define CONFIG_PCI +#define CONFIG_PCI		1	/* Enable PCI/PCIE */ +#define CONFIG_PCI1		1	/* PCI controller */ +#define CONFIG_PCIE1		1	/* PCIE controller */ +#define CONFIG_FSL_PCI_INIT	1	/* use common fsl pci init code */ +#define CONFIG_FSL_PCIE_RESET	1	/* need PCIe reset errata */  #define CONFIG_TSEC_ENET 		/* tsec ethernet support */  #define CONFIG_QE			/* Enable QE */  #define CONFIG_ENV_OVERWRITE @@ -87,6 +91,9 @@ extern unsigned long get_clock_freq(void);  #define CFG_CCSRBAR		0xe0000000	/* relocated CCSRBAR */  #define CFG_IMMR		CFG_CCSRBAR	/* PQII uses CFG_IMMR */ +#define CFG_PCI1_ADDR           (CFG_CCSRBAR+0x8000) +#define CFG_PCIE1_ADDR          (CFG_CCSRBAR+0xa000) +  /*   * DDR Setup   */ @@ -290,14 +297,9 @@ extern unsigned long get_clock_freq(void);  #endif  /* pass open firmware flat tree */ -#define CONFIG_OF_FLAT_TREE	1 -#define CONFIG_OF_BOARD_SETUP	1 - -#define OF_CPU			"PowerPC,8568@0" -#define OF_SOC			"soc8568@e0000000" -#define OF_QE			"qe@e0080000" -#define OF_TBCLK		(bd->bi_busfreq / 8) -#define OF_STDOUT_PATH		"/soc8568@e0000000/serial@4500" +#define CONFIG_OF_LIBFDT		1 +#define CONFIG_OF_BOARD_SETUP		1 +#define CONFIG_OF_STDOUT_VIA_ALIAS	1  /*   * I2C @@ -325,12 +327,12 @@ extern unsigned long get_clock_freq(void);  #define CFG_PCI1_IO_PHYS	0xe2000000  #define CFG_PCI1_IO_SIZE	0x00800000	/* 8M */ -#define CFG_PEX_MEM_BASE	0xa0000000 -#define CFG_PEX_MEM_PHYS	CFG_PEX_MEM_BASE -#define CFG_PEX_MEM_SIZE	0x10000000	/* 256M */ -#define CFG_PEX_IO_BASE		0x00000000 -#define CFG_PEX_IO_PHYS		0xe2800000 -#define CFG_PEX_IO_SIZE		0x00800000	/* 8M */ +#define CFG_PCIE1_MEM_BASE	0xa0000000 +#define CFG_PCIE1_MEM_PHYS	CFG_PCIE1_MEM_BASE +#define CFG_PCIE1_MEM_SIZE	0x20000000	/* 512M */ +#define CFG_PCIE1_IO_BASE	0x00000000 +#define CFG_PCIE1_IO_PHYS	0xe2800000 +#define CFG_PCIE1_IO_SIZE	0x00800000	/* 8M */  #define CFG_SRIO_MEM_BASE	0xc0000000 @@ -383,6 +385,11 @@ extern unsigned long get_clock_freq(void);  #undef CONFIG_PCI_SCAN_SHOW		/* show pci devices on startup */  #define CFG_PCI_SUBSYS_VENDORID 0x1057  /* Motorola */ +/* PCI view of System Memory */ +#define CFG_PCI_MEMORY_BUS      0x00000000 +#define CFG_PCI_MEMORY_PHYS     0x00000000 +#define CFG_PCI_MEMORY_SIZE     0x80000000 +  #endif	/* CONFIG_PCI */  #ifndef CONFIG_NET_MULTI @@ -440,6 +447,7 @@ extern unsigned long get_clock_freq(void);  #define CONFIG_CMD_PING  #define CONFIG_CMD_I2C  #define CONFIG_CMD_MII +#define CONFIG_CMD_ELF  #if defined(CONFIG_PCI)      #define CONFIG_CMD_PCI @@ -452,6 +460,7 @@ extern unsigned long get_clock_freq(void);   * Miscellaneous configurable options   */  #define CFG_LONGHELP			/* undef to save memory	*/ +#define CONFIG_CMDLINE_EDITING		/* Command-line editing */  #define CFG_LOAD_ADDR	0x2000000	/* default load address */  #define CFG_PROMPT	"=> "		/* Monitor Command Prompt */  #if defined(CONFIG_CMD_KGDB) diff --git a/include/configs/ms7722se.h b/include/configs/ms7722se.h index 18e985118..ae0d01851 100644 --- a/include/configs/ms7722se.h +++ b/include/configs/ms7722se.h @@ -25,7 +25,7 @@  #ifndef __MS7722SE_H  #define __MS7722SE_H -#undef DEBUG  +#undef DEBUG  #define CONFIG_SH		1  #define CONFIG_SH4		1  #define CONFIG_CPU_SH7722	1 @@ -56,7 +56,6 @@  /* MEMORY */  #define MS7722SE_SDRAM_BASE	(0x8C000000)  #define MS7722SE_FLASH_BASE_1	(0xA0000000) -//#define MS7722SE_FLASH_BASE_1	(0xA1000000)  #define MS7722SE_FLASH_BANK_SIZE	(8*1024 * 1024)  #define CFG_LONGHELP				/* undef to save memory	*/ @@ -87,12 +86,12 @@  #define CFG_LOAD_ADDR	(CFG_SDRAM_BASE + 4 * 1024 * 1024)	/* default load address for scripts ?!? */ -#define CFG_MONITOR_BASE	(MS7722SE_FLASH_BASE_1)	/* Address of u-boot image  +#define CFG_MONITOR_BASE	(MS7722SE_FLASH_BASE_1)	/* Address of u-boot image  						   	in Flash (NOT run time address in SDRAM) ?!? */  #define CFG_MONITOR_LEN	(128 * 1024)		/* */  #define CFG_MALLOC_LEN	(256 * 1024)		/* Size of DRAM reserved for malloc() use */  #define CFG_GBL_DATA_SIZE	(256)		/* size in bytes reserved for initial data */ -#define CFG_BOOTMAPSZ	(8 * 1024 * 1024)	 +#define CFG_BOOTMAPSZ	(8 * 1024 * 1024)  /* FLASH */  #define CFG_FLASH_CFI @@ -102,7 +101,7 @@  #define CFG_FLASH_BASE		(MS7722SE_FLASH_BASE_1)	/* Physical start address of Flash memory */ -#define CFG_MAX_FLASH_SECT	150		/* Max number of sectors on each  +#define CFG_MAX_FLASH_SECT	150		/* Max number of sectors on each  				   			Flash chip */  /* if you use all NOR Flash , you change dip-switch. Please see MS7722SE01 Manual. */ @@ -131,7 +130,7 @@  /* Board Clock */  #define CONFIG_SYS_CLK_FREQ	33333333 -#define TMU_CLK_DIVIDER		(4)	/* 4 (default), 16, 64, 256 or 1024 */		 +#define TMU_CLK_DIVIDER		(4)	/* 4 (default), 16, 64, 256 or 1024 */  #define CFG_HZ			(CONFIG_SYS_CLK_FREQ / TMU_CLK_DIVIDER)  #endif	/* __MS7722SE_H */ diff --git a/include/configs/ms7750se.h b/include/configs/ms7750se.h index 7925f209d..36681568f 100644 --- a/include/configs/ms7750se.h +++ b/include/configs/ms7750se.h @@ -37,7 +37,7 @@  /*   * Command line configuration.   */ -//#include <config_cmd_default.h> +/*#include <config_cmd_default.h>*/  #define CONFIG_CMD_DFL  #define CONFIG_CMD_FLASH @@ -56,7 +56,7 @@  #define CFG_SDRAM_BASE		(0x8C000000)  #define CFG_SDRAM_SIZE		(64 * 1024 * 1024) -#define CFG_LONGHELP		 +#define CFG_LONGHELP  #define CFG_PROMPT		"=> "  #define CFG_CBSIZE		256  #define CFG_PBSIZE		256 @@ -71,7 +71,7 @@  /* NOR Flash */  /* #define CFG_FLASH_BASE		(0xA1000000)*/  #define CFG_FLASH_BASE		(0xA0000000) -#define CFG_MAX_FLASH_BANKS	(1)	/* Max number of  +#define CFG_MAX_FLASH_BANKS	(1)	/* Max number of  				 	 * Flash memory banks  				 	 */  #define CFG_MAX_FLASH_SECT	142 diff --git a/include/e500.h b/include/e500.h index 8e3bf8cb7..0d73260f4 100644 --- a/include/e500.h +++ b/include/e500.h @@ -12,6 +12,7 @@ typedef struct  {    unsigned long freqProcessor;    unsigned long freqSystemBus; +  unsigned long freqDDRBus;  } MPC85xx_SYS_INFO;  #endif  /* _ASMLANGUAGE */ diff --git a/include/ioports.h b/include/ioports.h index cfba667ca..1134ea520 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  |