From mboxrd@z Thu Jan 1 00:00:00 1970 From: Jean-Christophe PLAGNIOL-VILLARD Date: Wed, 12 Mar 2008 23:15:19 +0100 Subject: [U-Boot-Users] [PATCH] sh: Add support Renesas Solutions R2D plus board In-Reply-To: <20080312154048.6a876a10.iwamatsu@nigauri.org> References: <20080312154048.6a876a10.iwamatsu@nigauri.org> Message-ID: <20080312221519.GD18968@game.jcrosoft.org> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de On 15:40 Wed 12 Mar , Nobuhiro Iwamatsu wrote: > R2D plus is SH reference board used with SH7751R. > This board has 266Mhz CPU, 64MB SDRAM, Cardbus, CF interface, > + > +#undef DEBUG > + > +#define CONFIG_SH 1 > +#define CONFIG_SH4 1 > +#define CONFIG_CPU_SH7751 1 > +#define CONFIG_CPU_SH_TYPE_R 1 > +#define CONFIG_R2DPLUS 1 > +/* OLD type R2D plus support*/ > +/* #define CONFIG_R2DPLUS_OLD 1 */ ^ Whitespace please remove and if no need remove it > +#define __LITTLE_ENDIAN__ 1 > + > +/* > + * Command line configuration. > + */ > +#include > + > +#define CONFIG_CMD_DFL > +#define CONFIG_CMD_CACHE > +#define CONFIG_CMD_FLASH > +#define CONFIG_CMD_PCI > +#define CONFIG_CMD_NET > +#define CONFIG_CMD_PING > +#define CONFIG_CMD_IDE > +#define CONFIG_CMD_EXT2 > +#define CONFIG_DOS_PARTITION > + > +/* SCIF */ > +#define CFG_SCIF_CONSOLE 1 > +#define CONFIG_BAUDRATE 115200 > +#define CONFIG_CONS_SCIF1 1 > +#define BOARD_LATE_INIT 1 > + > +#define CONFIG_BOOTDELAY -1 > +#define CONFIG_BOOTARGS "console=ttySC0,115200" ^^^^ Whitespace please remove > +#define CONFIG_ENV_OVERWRITE 1 > + > +/* Network setting */ > +#define CONFIG_NETMASK 255.0.0.0 > +#define CONFIG_IPADDR 10.0.192.51 > +#define CONFIG_SERVERIP 10.0.0.1 > +#define CONFIG_GATEWAYIP 10.0.0.1 > + > +/* SDRAM */ > +#define CFG_SDRAM_BASE (0x8C000000) > +#define CFG_SDRAM_SIZE (0x04000000) > + > +#define CFG_LONGHELP > + > +#else /* CONFIG_R2DPLUS_OLD */ > + > +#define CFG_FLASH_BASE (0xA0000000) > +#define CFG_FLASH_CFI_WIDTH 0x04 /* 32bit */ ^ Whitespace please remove > +#define CFG_MAX_FLASH_BANKS (2) > +#define CFG_MAX_FLASH_SECT 270 ^ Whitespace please remove > +#define CFG_FLASH_BANKS_LIST { CFG_FLASH_BASE,\ > + CFG_FLASH_BASE + 0x100000,\ > + CFG_FLASH_BASE + 0x400000,\ > + CFG_FLASH_BASE + 0x700000, } > +#endif /* CONFIG_R2DPLUS_OLD */ > + > +#define CFG_ENV_IS_IN_FLASH > +#define CFG_ENV_SECT_SIZE 0x20000 > +#define CFG_ENV_SIZE (CFG_ENV_SECT_SIZE) > +#define CFG_ENV_ADDR (CFG_MONITOR_BASE + CFG_MONITOR_LEN) > +#define CFG_FLASH_ERASE_TOUT 120000 ^^ Whitespace please remove > +#define CFG_FLASH_WRITE_TOUT 500 > + > +/* > + * SuperH Clock setting > + */ Best Regards, J.