diff options
| author | Wolfgang Denk <wd@denx.de> | 2010-09-28 23:30:47 +0200 | 
|---|---|---|
| committer | Wolfgang Denk <wd@denx.de> | 2010-09-28 23:30:47 +0200 | 
| commit | 2e6e1772c0e34871769be4aef79748fe3e47d953 (patch) | |
| tree | 00e4e19d7bccd2a1cd5753854ff4c2b8a26bebb0 /board/amcc | |
| parent | 1e4e5ef0469050f014aee1204dae8a9ab6053e49 (diff) | |
| parent | 3df61957938586c512c17e72d83551d190400981 (diff) | |
| download | olio-uboot-2014.01-2e6e1772c0e34871769be4aef79748fe3e47d953.tar.xz olio-uboot-2014.01-2e6e1772c0e34871769be4aef79748fe3e47d953.zip | |
Merge branch 'next' of /home/wd/git/u-boot/next
Conflicts:
	include/ppc4xx.h
Signed-off-by: Wolfgang Denk <wd@denx.de>
Diffstat (limited to 'board/amcc')
37 files changed, 63 insertions, 71 deletions
| diff --git a/board/amcc/acadia/memory.c b/board/amcc/acadia/memory.c index 8c2addcb9..703a6686e 100644 --- a/board/amcc/acadia/memory.c +++ b/board/amcc/acadia/memory.c @@ -29,7 +29,7 @@  #include <common.h>  #include <asm/processor.h>  #include <asm/io.h> -#include <asm/gpio.h> +#include <asm/ppc4xx-gpio.h>  extern void board_pll_init_f(void); diff --git a/board/amcc/acadia/pll.c b/board/amcc/acadia/pll.c index b63813c7b..6327d6c68 100644 --- a/board/amcc/acadia/pll.c +++ b/board/amcc/acadia/pll.c @@ -23,7 +23,7 @@  #include <common.h>  #include <asm/processor.h> -#include <ppc405.h> +#include <asm/ppc405.h>  /* test-only: move into cpu directory!!! */ @@ -53,9 +53,9 @@ void board_pll_init_f(void)  	/* Initialize PLL */  	mtcpr(CPR0_PLLC, 0x0000033c);  	mtcpr(CPR0_PLLD, 0x0c010200); -	mtcpr(CPC0_PRIMAD, 0x04060c0c); -	mtcpr(CPC0_PERD0, 0x000c0000);	/* SPI clk div. eq. OPB clk div. */ -	mtcpr(CPR0_CLKUP, 0x40000000); +	mtcpr(CPR0_PRIMAD, 0x04060c0c); +	mtcpr(CPR0_PERD0, 0x000c0000);	/* SPI clk div. eq. OPB clk div. */ +	mtcpr(CPR0_CLKUPD, 0x40000000);  }  #elif defined(PLLMR0_266_160_80) @@ -85,10 +85,10 @@ void board_pll_init_f(void)  	/* Initialize PLL */  	mtcpr(CPR0_PLLC, 0x20000238);  	mtcpr(CPR0_PLLD, 0x03010400); -	mtcpr(CPC0_PRIMAD, 0x03050a0a); -	mtcpr(CPC0_PERC0, 0x00000000); -	mtcpr(CPC0_PERD0, 0x070a0707);	/* SPI clk div. eq. OPB clk div. */ -	mtcpr(CPC0_PERD1, 0x07323200); +	mtcpr(CPR0_PRIMAD, 0x03050a0a); +	mtcpr(CPR0_PERC0, 0x00000000); +	mtcpr(CPR0_PERD0, 0x070a0707);	/* SPI clk div. eq. OPB clk div. */ +	mtcpr(CPR0_PERD1, 0x07323200);  	mtcpr(CPR0_CLKUP, 0x40000000);  } @@ -119,9 +119,9 @@ void board_pll_init_f(void)  	/* Initialize PLL */  	mtcpr(CPR0_PLLC, 0x0000033C);  	mtcpr(CPR0_PLLD, 0x0a010000); -	mtcpr(CPC0_PRIMAD, 0x02040808); -	mtcpr(CPC0_PERD0, 0x02080505);	/* SPI clk div. eq. OPB clk div. */ -	mtcpr(CPC0_PERD1, 0xA6A60300); +	mtcpr(CPR0_PRIMAD, 0x02040808); +	mtcpr(CPR0_PERD0, 0x02080505);	/* SPI clk div. eq. OPB clk div. */ +	mtcpr(CPR0_PERD1, 0xA6A60300);  	mtcpr(CPR0_CLKUP, 0x40000000);  } @@ -145,9 +145,9 @@ void board_pll_init_f(void)  	/* Initialize PLL */  	mtcpr(CPR0_PLLC, 0x000003BC);  	mtcpr(CPR0_PLLD, 0x06060600); -	mtcpr(CPC0_PRIMAD, 0x02020004); -	mtcpr(CPC0_PERD0, 0x04002828);	/* SPI clk div. eq. OPB clk div. */ -	mtcpr(CPC0_PERD1, 0xC8C81600); +	mtcpr(CPR0_PRIMAD, 0x02020004); +	mtcpr(CPR0_PERD0, 0x04002828);	/* SPI clk div. eq. OPB clk div. */ +	mtcpr(CPR0_PERD1, 0xC8C81600);  	mtcpr(CPR0_CLKUP, 0x40000000);  }  #endif				/* CPU_<speed>_405EZ */ @@ -172,7 +172,7 @@ unsigned long get_tbclk(void)  	/*  	 * Read CPR_PRIMAD register  	 */ -	mfcpr(CPC0_PRIMAD, cpr_primad); +	mfcpr(CPR0_PRIMAD, cpr_primad);  	/*  	 * Determine CPU clock frequency diff --git a/board/amcc/bamboo/bamboo.c b/board/amcc/bamboo/bamboo.c index c90f86b8d..d4205e034 100644 --- a/board/amcc/bamboo/bamboo.c +++ b/board/amcc/bamboo/bamboo.c @@ -23,9 +23,9 @@  #include <common.h>  #include <asm/processor.h> -#include <asm/gpio.h> +#include <asm/ppc4xx-gpio.h>  #include <spd_sdram.h> -#include <ppc440.h> +#include <asm/ppc440.h>  #include "bamboo.h"  void ext_bus_cntlr_init(void); @@ -554,7 +554,7 @@ void ext_bus_cntlr_init(void)  	  |  	  +-------------------------------------------------------------------------*/  	/* Read Pin Strap Register in PPC440EP */ -	mfsdr(sdr_pstrp0, sdr0_pstrp0); +	mfsdr(SDR0_PINSTP, sdr0_pstrp0);  	bootstrap_settings = sdr0_pstrp0 & SDR0_PSTRP0_BOOTSTRAP_MASK;  	/*-------------------------------------------------------------------------+ diff --git a/board/amcc/bamboo/bamboo.h b/board/amcc/bamboo/bamboo.h index 447486297..f2b78a945 100644 --- a/board/amcc/bamboo/bamboo.h +++ b/board/amcc/bamboo/bamboo.h @@ -110,17 +110,6 @@  /*----------------------------------------------------------------------------+  | SDR Configuration registers  +----------------------------------------------------------------------------*/ -/* Serial Device Strap Reg 0 */ -#define SDR0_SDSTP0		     0x0020 -/* Serial Device Strap Reg 1 */ -#define SDR0_SDSTP1		     0x0021 -/* Serial Device Strap Reg 2 */ -#define SDR0_SDSTP2		     SDR0_STRP2 -/* Serial Device Strap Reg 3 */ -#define SDR0_SDSTP3		     SDR0_STRP3 - -#define sdr_pstrp0		     0x0040 -  #define	  SDR0_SDSTP1_EBC_ROM_BS_MASK  0x00006000  /* EBC Boot Size Mask */  #define	  SDR0_SDSTP1_EBC_ROM_BS_32BIT 0x00004000    /* EBC 32 bits */  #define	  SDR0_SDSTP1_EBC_ROM_BS_16BIT 0x00002000    /* EBC 16 Bits */ diff --git a/board/amcc/bamboo/flash.c b/board/amcc/bamboo/flash.c index 7bf877de8..07d185fd2 100644 --- a/board/amcc/bamboo/flash.c +++ b/board/amcc/bamboo/flash.c @@ -32,9 +32,9 @@   */  #include <common.h> -#include <ppc4xx.h> +#include <asm/ppc4xx.h>  #include <asm/processor.h> -#include <ppc440.h> +#include <asm/ppc440.h>  #include "bamboo.h"  #undef DEBUG @@ -86,7 +86,7 @@ unsigned long flash_init(void)  	unsigned long ebc_boot_size;  	unsigned long boot_selection; -	mfsdr(sdr_pstrp0, val); +	mfsdr(SDR0_PINSTP, val);  	index = (val & SDR0_PSTRP0_BOOTSTRAP_MASK) >> 29;  	if ((index == 5) || (index == 7)) { diff --git a/board/amcc/bubinga/flash.c b/board/amcc/bubinga/flash.c index baf89d548..4850fe121 100644 --- a/board/amcc/bubinga/flash.c +++ b/board/amcc/bubinga/flash.c @@ -29,7 +29,7 @@   */  #include <common.h> -#include <ppc4xx.h> +#include <asm/ppc4xx.h>  #include <asm/processor.h>  flash_info_t flash_info[CONFIG_SYS_MAX_FLASH_BANKS];	/* info for FLASH chips        */ diff --git a/board/amcc/canyonlands/canyonlands.c b/board/amcc/canyonlands/canyonlands.c index 158f7bb27..b26cadb6b 100644 --- a/board/amcc/canyonlands/canyonlands.c +++ b/board/amcc/canyonlands/canyonlands.c @@ -19,7 +19,7 @@   */  #include <common.h> -#include <ppc440.h> +#include <asm/ppc440.h>  #include <libfdt.h>  #include <fdt_support.h>  #include <i2c.h> @@ -27,7 +27,7 @@  #include <asm/io.h>  #include <asm/mmu.h>  #include <asm/4xx_pcie.h> -#include <asm/gpio.h> +#include <asm/ppc4xx-gpio.h>  #include <asm/errno.h>  extern flash_info_t flash_info[CONFIG_SYS_MAX_FLASH_BANKS]; /* info for FLASH chips */ diff --git a/board/amcc/canyonlands/config.mk b/board/amcc/canyonlands/config.mk index 7a5866550..3d6a6085c 100644 --- a/board/amcc/canyonlands/config.mk +++ b/board/amcc/canyonlands/config.mk @@ -27,7 +27,7 @@  sinclude $(OBJTREE)/board/$(BOARDDIR)/config.tmp  ifndef TEXT_BASE -TEXT_BASE = 0xFFFA0000 +TEXT_BASE = 0xFFF80000  endif  PLATFORM_CPPFLAGS += -DCONFIG_440=1 diff --git a/board/amcc/common/flash.c b/board/amcc/common/flash.c index 9aaf256c2..8f2337517 100644 --- a/board/amcc/common/flash.c +++ b/board/amcc/common/flash.c @@ -32,7 +32,7 @@   */  #include <common.h> -#include <ppc4xx.h> +#include <asm/ppc4xx.h>  #include <asm/processor.h>  flash_info_t flash_info[CONFIG_SYS_MAX_FLASH_BANKS];	/* info for FLASH chips */ diff --git a/board/amcc/ebony/flash.c b/board/amcc/ebony/flash.c index 79d2c4c30..df7716cd7 100644 --- a/board/amcc/ebony/flash.c +++ b/board/amcc/ebony/flash.c @@ -32,7 +32,7 @@   */  #include <common.h> -#include <ppc4xx.h> +#include <asm/ppc4xx.h>  #include <asm/processor.h>  #include <asm/io.h> diff --git a/board/amcc/ebony/init.S b/board/amcc/ebony/init.S index c91176367..08a0d11f9 100644 --- a/board/amcc/ebony/init.S +++ b/board/amcc/ebony/init.S @@ -23,6 +23,7 @@  #include <ppc_asm.tmpl>  #include <config.h>  #include <asm/mmu.h> +#include <asm/ppc4xx.h>  /**************************************************************************   * TLB TABLE diff --git a/board/amcc/katmai/init.S b/board/amcc/katmai/init.S index 59ccf2b6a..4a42f1fc4 100644 --- a/board/amcc/katmai/init.S +++ b/board/amcc/katmai/init.S @@ -26,6 +26,7 @@  #include <ppc_asm.tmpl>  #include <config.h>  #include <asm/mmu.h> +#include <asm/ppc4xx.h>  /**************************************************************************   * TLB TABLE diff --git a/board/amcc/katmai/katmai.c b/board/amcc/katmai/katmai.c index 0bbc75e7c..7301cd595 100644 --- a/board/amcc/katmai/katmai.c +++ b/board/amcc/katmai/katmai.c @@ -23,14 +23,14 @@   */  #include <common.h> -#include <ppc4xx.h> +#include <asm/ppc4xx.h>  #include <i2c.h>  #include <libfdt.h>  #include <fdt_support.h>  #include <netdev.h>  #include <asm/processor.h>  #include <asm/io.h> -#include <asm/gpio.h> +#include <asm/ppc4xx-gpio.h>  #include <asm/4xx_pcie.h>  #include <asm/errno.h> diff --git a/board/amcc/kilauea/kilauea.c b/board/amcc/kilauea/kilauea.c index 646f4311e..bd6550cd0 100644 --- a/board/amcc/kilauea/kilauea.c +++ b/board/amcc/kilauea/kilauea.c @@ -22,8 +22,8 @@   */  #include <common.h> -#include <ppc4xx.h> -#include <ppc405.h> +#include <asm/ppc4xx.h> +#include <asm/ppc405.h>  #include <libfdt.h>  #include <fdt_support.h>  #include <asm/processor.h> diff --git a/board/amcc/luan/config.mk b/board/amcc/luan/config.mk index cd02aab57..5e4182d5b 100644 --- a/board/amcc/luan/config.mk +++ b/board/amcc/luan/config.mk @@ -30,7 +30,7 @@  ifeq ($(ramsym),1)  TEXT_BASE = 0xFBD00000  else -TEXT_BASE = 0xFFFC0000 +TEXT_BASE = 0xFFFB0000  endif  PLATFORM_CPPFLAGS += -DCONFIG_440=1 diff --git a/board/amcc/luan/flash.c b/board/amcc/luan/flash.c index 2d3b15438..8088509fb 100644 --- a/board/amcc/luan/flash.c +++ b/board/amcc/luan/flash.c @@ -32,7 +32,7 @@   */  #include <common.h> -#include <ppc4xx.h> +#include <asm/ppc4xx.h>  #include <asm/processor.h>  #undef DEBUG diff --git a/board/amcc/luan/init.S b/board/amcc/luan/init.S index 06428d25c..7cca3191f 100644 --- a/board/amcc/luan/init.S +++ b/board/amcc/luan/init.S @@ -26,6 +26,7 @@  #include <ppc_asm.tmpl>  #include <config.h>  #include <asm/mmu.h> +#include <asm/ppc4xx.h>  /**************************************************************************   * TLB TABLE diff --git a/board/amcc/luan/luan.c b/board/amcc/luan/luan.c index c09d73088..b2595a8ec 100644 --- a/board/amcc/luan/luan.c +++ b/board/amcc/luan/luan.c @@ -23,7 +23,7 @@  #include <common.h>  #include <command.h> -#include <ppc4xx.h> +#include <asm/ppc4xx.h>  #include <asm/processor.h>  #include <asm/ppc4xx-isram.h>  #include <spd_sdram.h> diff --git a/board/amcc/makalu/makalu.c b/board/amcc/makalu/makalu.c index 4afe09166..483df6627 100644 --- a/board/amcc/makalu/makalu.c +++ b/board/amcc/makalu/makalu.c @@ -22,11 +22,11 @@   */  #include <common.h> -#include <ppc4xx.h> -#include <ppc405.h> +#include <asm/ppc4xx.h> +#include <asm/ppc405.h>  #include <libfdt.h>  #include <asm/processor.h> -#include <asm/gpio.h> +#include <asm/ppc4xx-gpio.h>  #include <asm/io.h>  #include <fdt_support.h>  #include <asm/errno.h> diff --git a/board/amcc/ocotea/flash.c b/board/amcc/ocotea/flash.c index a83f93afa..fbc552bf8 100644 --- a/board/amcc/ocotea/flash.c +++ b/board/amcc/ocotea/flash.c @@ -32,7 +32,7 @@   */  #include <common.h> -#include <ppc4xx.h> +#include <asm/ppc4xx.h>  #include <asm/processor.h>  #undef DEBUG diff --git a/board/amcc/ocotea/init.S b/board/amcc/ocotea/init.S index 2ef11ccb4..39f5a02db 100644 --- a/board/amcc/ocotea/init.S +++ b/board/amcc/ocotea/init.S @@ -23,6 +23,7 @@  #include <ppc_asm.tmpl>  #include <config.h>  #include <asm/mmu.h> +#include <asm/ppc4xx.h>  /**************************************************************************   * TLB TABLE diff --git a/board/amcc/ocotea/ocotea.c b/board/amcc/ocotea/ocotea.c index 7bffa3c40..bbb5331ef 100644 --- a/board/amcc/ocotea/ocotea.c +++ b/board/amcc/ocotea/ocotea.c @@ -28,7 +28,7 @@  #include "ocotea.h"  #include <asm/processor.h>  #include <spd_sdram.h> -#include <ppc4xx_enet.h> +#include <asm/ppc4xx-emac.h>  DECLARE_GLOBAL_DATA_PTR; diff --git a/board/amcc/redwood/init.S b/board/amcc/redwood/init.S index fb10520b8..47f700b70 100644 --- a/board/amcc/redwood/init.S +++ b/board/amcc/redwood/init.S @@ -24,6 +24,7 @@  #include <ppc_asm.tmpl>  #include <config.h>  #include <asm/mmu.h> +#include <asm/ppc4xx.h>  /**************************************************************************   * TLB TABLE diff --git a/board/amcc/redwood/redwood.c b/board/amcc/redwood/redwood.c index 32fb8c584..bb7565e2e 100644 --- a/board/amcc/redwood/redwood.c +++ b/board/amcc/redwood/redwood.c @@ -26,7 +26,7 @@  #include <common.h>  #include "redwood.h" -#include <ppc4xx.h> +#include <asm/ppc4xx.h>  #include <asm/processor.h>  #include <i2c.h>  #include <asm/io.h> diff --git a/board/amcc/sequoia/config.mk b/board/amcc/sequoia/config.mk index b57e473e4..c8e2dff21 100644 --- a/board/amcc/sequoia/config.mk +++ b/board/amcc/sequoia/config.mk @@ -27,11 +27,7 @@  sinclude $(OBJTREE)/board/$(BOARDDIR)/config.tmp  ifndef TEXT_BASE -TEXT_BASE = 0xFFFA0000 -# -# When defining CONFIG_VIDEO, TEXT_BASE needs to be 0xFFF80000 -# TEXT_BASE = 0xFFF80000 -# +TEXT_BASE = 0xFFF80000  endif  PLATFORM_CPPFLAGS += -DCONFIG_440=1 diff --git a/board/amcc/sequoia/sdram.c b/board/amcc/sequoia/sdram.c index cabeceb97..5c01deff9 100644 --- a/board/amcc/sequoia/sdram.c +++ b/board/amcc/sequoia/sdram.c @@ -31,7 +31,7 @@  #include <common.h>  #include <asm/processor.h>  #include <asm/io.h> -#include <ppc440.h> +#include <asm/ppc440.h>  /*-----------------------------------------------------------------------------+   * Prototypes diff --git a/board/amcc/sequoia/sequoia.c b/board/amcc/sequoia/sequoia.c index 6756a2723..c523bca1f 100644 --- a/board/amcc/sequoia/sequoia.c +++ b/board/amcc/sequoia/sequoia.c @@ -25,8 +25,8 @@  #include <common.h>  #include <libfdt.h>  #include <fdt_support.h> -#include <ppc4xx.h> -#include <asm/gpio.h> +#include <asm/ppc4xx.h> +#include <asm/ppc4xx-gpio.h>  #include <asm/processor.h>  #include <asm/io.h>  #include <asm/bitops.h> @@ -321,8 +321,8 @@ int misc_init_r(void)  	 * This fix will make the MAL burst disabling patch for the Linux  	 * EMAC driver obsolete.  	 */ -	reg = mfdcr(PLB4_ACR) & ~PLB4_ACR_WRP; -	mtdcr(PLB4_ACR, reg); +	reg = mfdcr(PLB4A0_ACR) & ~PLB4Ax_ACR_WRP_MASK; +	mtdcr(PLB4A0_ACR, reg);  	return 0;  } diff --git a/board/amcc/taihu/flash.c b/board/amcc/taihu/flash.c index 497fdb963..e9fbbb102 100644 --- a/board/amcc/taihu/flash.c +++ b/board/amcc/taihu/flash.c @@ -29,7 +29,7 @@   */  #include <common.h> -#include <ppc4xx.h> +#include <asm/ppc4xx.h>  #include <asm/processor.h>  flash_info_t flash_info[CONFIG_SYS_MAX_FLASH_BANKS];	/* info for FLASH chips        */ diff --git a/board/amcc/taihu/lcd.c b/board/amcc/taihu/lcd.c index 9b2afdabc..15cfcb0c8 100644 --- a/board/amcc/taihu/lcd.c +++ b/board/amcc/taihu/lcd.c @@ -22,7 +22,7 @@  #include <common.h>  #include <command.h>  #include <asm/io.h> -#include <asm/gpio.h> +#include <asm/ppc4xx-gpio.h>  #define LCD_CMD_ADDR	0x50100002  #define LCD_DATA_ADDR	0x50100003 diff --git a/board/amcc/taihu/taihu.c b/board/amcc/taihu/taihu.c index dd2aba546..87c9403e4 100644 --- a/board/amcc/taihu/taihu.c +++ b/board/amcc/taihu/taihu.c @@ -29,7 +29,7 @@  #include <asm/io.h>  #include <spi.h>  #include <netdev.h> -#include <asm/gpio.h> +#include <asm/ppc4xx-gpio.h>  extern int lcd_init(void); diff --git a/board/amcc/taishan/init.S b/board/amcc/taishan/init.S index ac4e95df0..6d4785105 100644 --- a/board/amcc/taishan/init.S +++ b/board/amcc/taishan/init.S @@ -24,6 +24,7 @@  #include <ppc_asm.tmpl>  #include <asm/mmu.h>  #include <config.h> +#include <asm/ppc4xx.h>  /**************************************************************************   * TLB TABLE diff --git a/board/amcc/taishan/taishan.c b/board/amcc/taishan/taishan.c index cac7a78d6..2957a7748 100644 --- a/board/amcc/taishan/taishan.c +++ b/board/amcc/taishan/taishan.c @@ -26,7 +26,7 @@  #include <common.h>  #include <asm/processor.h>  #include <spd_sdram.h> -#include <ppc4xx_enet.h> +#include <asm/ppc4xx-emac.h>  #include <netdev.h>  #ifdef CONFIG_SYS_INIT_SHOW_RESET_REG diff --git a/board/amcc/walnut/flash.c b/board/amcc/walnut/flash.c index 3dc6aabe1..f72e278b4 100644 --- a/board/amcc/walnut/flash.c +++ b/board/amcc/walnut/flash.c @@ -29,7 +29,7 @@   */  #include <common.h> -#include <ppc4xx.h> +#include <asm/ppc4xx.h>  #include <asm/processor.h>  #undef DEBUG diff --git a/board/amcc/yosemite/yosemite.c b/board/amcc/yosemite/yosemite.c index 98c1f3b81..aaeab6f5f 100644 --- a/board/amcc/yosemite/yosemite.c +++ b/board/amcc/yosemite/yosemite.c @@ -22,7 +22,7 @@   */  #include <common.h> -#include <ppc4xx.h> +#include <asm/ppc4xx.h>  #include <asm/processor.h>  #include <asm/io.h>  #include <spd_sdram.h> diff --git a/board/amcc/yucca/flash.c b/board/amcc/yucca/flash.c index 5fab7bb1d..20b6af9a6 100644 --- a/board/amcc/yucca/flash.c +++ b/board/amcc/yucca/flash.c @@ -32,9 +32,9 @@   */  #include <common.h> -#include <ppc4xx.h> +#include <asm/ppc4xx.h>  #include <asm/processor.h> -#include <ppc440.h> +#include <asm/ppc440.h>  #include "yucca.h"  #ifdef DEBUG diff --git a/board/amcc/yucca/init.S b/board/amcc/yucca/init.S index b2ac3ca4a..c63002b8a 100644 --- a/board/amcc/yucca/init.S +++ b/board/amcc/yucca/init.S @@ -26,6 +26,7 @@  #include <ppc_asm.tmpl>  #include <config.h>  #include <asm/mmu.h> +#include <asm/ppc4xx.h>  /**************************************************************************   * TLB TABLE diff --git a/board/amcc/yucca/yucca.c b/board/amcc/yucca/yucca.c index 0d2392990..b128e46c2 100644 --- a/board/amcc/yucca/yucca.c +++ b/board/amcc/yucca/yucca.c @@ -26,7 +26,7 @@   */  #include <common.h> -#include <ppc4xx.h> +#include <asm/ppc4xx.h>  #include <i2c.h>  #include <netdev.h>  #include <asm/processor.h> |