pcs440ep.c

来自「U-boot源码 ARM7启动代码」· C语言 代码 · 共 918 行 · 第 1/2 页

C
918
字号
/* * (C) Copyright 2006 * Stefan Roese, DENX Software Engineering, sr@denx.de. * * See file CREDITS for list of people who contributed to this * project. * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License as * published by the Free Software Foundation; either version 2 of * the License, or (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.	 See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, * MA 02111-1307 USA */#include <common.h>#include <ppc4xx.h>#include <malloc.h>#include <command.h>#include <crc.h>#include <asm/processor.h>#include <spd_sdram.h>#include <status_led.h>#include <sha1.h>#include <asm/io.h>DECLARE_GLOBAL_DATA_PTR;extern flash_info_t flash_info[CFG_MAX_FLASH_BANKS]; /* info for FLASH chips	*/unsigned char	sha1_checksum[SHA1_SUM_LEN];/* swap 4 Bits (Bit0 = Bit3, Bit1 = Bit2, Bit2 = Bit1 and Bit3 = Bit0) */unsigned char swapbits[16] = {0x0, 0x8, 0x4, 0xc, 0x2, 0xa, 0x6, 0xe,			      0x1, 0x9, 0x5, 0xd, 0x3, 0xb, 0x7, 0xf};static void set_leds (int val){	out32(GPIO0_OR, (in32 (GPIO0_OR) & ~0x78000000) | (val << 27));}#define GET_LEDS ((in32 (GPIO0_OR) & 0x78000000) >> 27)void __led_init (led_id_t mask, int state){	int	val = GET_LEDS;	if (state == STATUS_LED_ON)		val |= mask;	else		val &= ~mask;	set_leds (val);}void __led_set (led_id_t mask, int state){	int	val = GET_LEDS;	if (state == STATUS_LED_ON)		val |= mask;	else if (state == STATUS_LED_OFF)		val &= ~mask;	set_leds (val);}void __led_toggle (led_id_t mask){	int	val = GET_LEDS;	val ^= mask;	set_leds (val);}static void status_led_blink (void){	int	i;	int	val = GET_LEDS;	/* set all LED which are on, to state BLINKING */	for (i = 0; i < 4; i++) {		if (val & 0x01) status_led_set (3 - i, STATUS_LED_BLINKING);		else status_led_set (3 - i, STATUS_LED_OFF);		val = val >> 1;	}}#if defined(CONFIG_SHOW_BOOT_PROGRESS)void show_boot_progress (int val){	/* find all valid Codes for val in README */	if (val == -30) return;	if (val < 0) {		/* smthing goes wrong */		status_led_blink ();		return;	}	switch (val) {		case 1:			/* validating Image */			status_led_set (0, STATUS_LED_OFF);			status_led_set (1, STATUS_LED_ON);			status_led_set (2, STATUS_LED_ON);			break;		case 15:			/* booting */			status_led_set (0, STATUS_LED_ON);			status_led_set (1, STATUS_LED_ON);			status_led_set (2, STATUS_LED_ON);			break;#if 0		case 64:			/* starting Ethernet configuration */			status_led_set (0, STATUS_LED_OFF);			status_led_set (1, STATUS_LED_OFF);			status_led_set (2, STATUS_LED_ON);			break;#endif		case 80:			/* loading Image */			status_led_set (0, STATUS_LED_ON);			status_led_set (1, STATUS_LED_OFF);			status_led_set (2, STATUS_LED_ON);			break;	}}#endifint board_early_init_f(void){	register uint reg;	set_leds(0);			/* display boot info counter */	/*--------------------------------------------------------------------	 * Setup the external bus controller/chip selects	 *-------------------------------------------------------------------*/	mtdcr(ebccfga, xbcfg);	reg = mfdcr(ebccfgd);	mtdcr(ebccfgd, reg | 0x04000000);	/* Set ATC */	/*--------------------------------------------------------------------	 * GPIO's are alreay setup in cpu/ppc4xx/cpu_init.c	 * via define from board config file.	 *-------------------------------------------------------------------*/	/*--------------------------------------------------------------------	 * Setup the interrupt controller polarities, triggers, etc.	 *-------------------------------------------------------------------*/	mtdcr(uic0sr, 0xffffffff);	/* clear all */	mtdcr(uic0er, 0x00000000);	/* disable all */	mtdcr(uic0cr, 0x00000001);	/* UIC1 crit is critical */	mtdcr(uic0pr, 0xfffffe1f);	/* per ref-board manual */	mtdcr(uic0tr, 0x01c00000);	/* per ref-board manual */	mtdcr(uic0vr, 0x00000001);	/* int31 highest, base=0x000 */	mtdcr(uic0sr, 0xffffffff);	/* clear all */	mtdcr(uic1sr, 0xffffffff);	/* clear all */	mtdcr(uic1er, 0x00000000);	/* disable all */	mtdcr(uic1cr, 0x00000000);	/* all non-critical */	mtdcr(uic1pr, 0xffffe0ff);	/* per ref-board manual */	mtdcr(uic1tr, 0x00ffc000);	/* per ref-board manual */	mtdcr(uic1vr, 0x00000001);	/* int31 highest, base=0x000 */	mtdcr(uic1sr, 0xffffffff);	/* clear all */	/*--------------------------------------------------------------------	 * Setup other serial configuration	 *-------------------------------------------------------------------*/	mfsdr(sdr_pci0, reg);	mtsdr(sdr_pci0, 0x80000000 | reg);	/* PCI arbiter enabled */	mtsdr(sdr_pfc0, 0x00000100);	/* Pin function: enable GPIO49-63 */	mtsdr(sdr_pfc1, 0x00048000);	/* Pin function: UART0 has 4 pins, select IRQ5 */	return 0;}#define EEPROM_LEN	256void load_sernum_ethaddr (void){	int	ret;	char	buf[EEPROM_LEN];	char	mac[32];	char	*use_eeprom;	u16	checksumcrc16 = 0;	/* read the MACs from EEprom */	status_led_set (0, STATUS_LED_ON);	status_led_set (1, STATUS_LED_ON);	ret = eeprom_read (CFG_I2C_EEPROM_ADDR, 0, (uchar *)buf, EEPROM_LEN);	if (ret == 0) {		checksumcrc16 = cyg_crc16 ((uchar *)buf, EEPROM_LEN - 2);		/* check, if the EEprom is programmed:		 * - The Prefix(Byte 0,1,2) is equal to "ATR"		 * - The checksum, stored in the last 2 Bytes, is correct		 */		if ((strncmp (buf,"ATR",3) != 0) ||		    ((checksumcrc16 >> 8) != buf[EEPROM_LEN - 2]) ||		    ((checksumcrc16 & 0xff) != buf[EEPROM_LEN - 1])) {			/* EEprom is not programmed */			printf("%s: EEPROM Checksum not OK\n", __FUNCTION__);		} else {			/* get the MACs */			sprintf (mac, "%02x:%02x:%02x:%02x:%02x:%02x",				buf[3],				buf[4],				buf[5],				buf[6],				buf[7],				buf[8]);			setenv ("ethaddr", (char *) mac);			sprintf (mac, "%02x:%02x:%02x:%02x:%02x:%02x",				buf[9],				buf[10],				buf[11],				buf[12],				buf[13],				buf[14]);			setenv ("eth1addr", (char *) mac);			return;		}	}	/* some error reading the EEprom */	if ((use_eeprom = getenv ("use_eeprom_ethaddr")) == NULL) {		/* dont use bootcmd */		setenv("bootdelay", "-1");		return;	}	/* == default ? use standard */	if (strncmp (use_eeprom, "default", 7) == 0) {		return;	}	/* Env doesnt exist -> hang */	status_led_blink ();	/* here we do this "handy" because we have no interrupts	   at this time */	puts ("### EEPROM ERROR ### Please RESET the board ###\n");	for (;;) {		__led_toggle (12);		udelay (100000);	}	return;}#ifdef CONFIG_PREBOOTstatic uchar kbd_magic_prefix[]		= "key_magic";static uchar kbd_command_prefix[]	= "key_cmd";struct kbd_data_t {	char s1;	char s2;};struct kbd_data_t* get_keys (struct kbd_data_t *kbd_data){	char *val;	unsigned long tmp;	/* use the DIPs for some bootoptions */	val = getenv (ENV_NAME_DIP);	tmp = simple_strtoul (val, NULL, 16);	kbd_data->s2 = (tmp & 0x0f);	kbd_data->s1 = (tmp & 0xf0) >> 4;	return kbd_data;}static int compare_magic (const struct kbd_data_t *kbd_data, char *str){	char s1 = str[0];	if (s1 >= '0' && s1 <= '9')		s1 -= '0';	else if (s1 >= 'a' && s1 <= 'f')		s1 = s1 - 'a' + 10;	else if (s1 >= 'A' && s1 <= 'F')		s1 = s1 - 'A' + 10;	else		return -1;	if (s1 != kbd_data->s1) return -1;	s1 = str[1];	if (s1 >= '0' && s1 <= '9')		s1 -= '0';	else if (s1 >= 'a' && s1 <= 'f')		s1 = s1 - 'a' + 10;	else if (s1 >= 'A' && s1 <= 'F')		s1 = s1 - 'A' + 10;	else		return -1;	if (s1 != kbd_data->s2) return -1;	return 0;}static char *key_match (const struct kbd_data_t *kbd_data){	char magic[sizeof (kbd_magic_prefix) + 1];	char *suffix;	char *kbd_magic_keys;	/*	 * The following string defines the characters that can be appended	 * to "key_magic" to form the names of environment variables that	 * hold "magic" key codes, i. e. such key codes that can cause	 * pre-boot actions. If the string is empty (""), then only	 * "key_magic" is checked (old behaviour); the string "125" causes	 * checks for "key_magic1", "key_magic2" and "key_magic5", etc.	 */	if ((kbd_magic_keys = getenv ("magic_keys")) == NULL)		kbd_magic_keys = "";	/* loop over all magic keys;	 * use '\0' suffix in case of empty string	 */	for (suffix = kbd_magic_keys; *suffix ||		     suffix == kbd_magic_keys; ++suffix) {		sprintf (magic, "%s%c", kbd_magic_prefix, *suffix);		if (compare_magic (kbd_data, getenv (magic)) == 0) {			char cmd_name[sizeof (kbd_command_prefix) + 1];			char *cmd;			sprintf (cmd_name, "%s%c", kbd_command_prefix, *suffix);			cmd = getenv (cmd_name);			return (cmd);		}	}	return (NULL);}#endif /* CONFIG_PREBOOT */static int pcs440ep_readinputs (void){	int	i;	char	value[20];	/* read the inputs and set the Envvars */	/* Revision Level Bit 26 - 29 */	i = ((in32 (GPIO0_IR) & 0x0000003c) >> 2);	i = swapbits[i];	sprintf (value, "%02x", i);	setenv (ENV_NAME_REVLEV, value);	/* Solder Switch Bit 30 - 33 */	i = (in32 (GPIO0_IR) & 0x00000003) << 2;	i += (in32 (GPIO1_IR) & 0xc0000000) >> 30;	i = swapbits[i];	sprintf (value, "%02x", i);	setenv (ENV_NAME_SOLDER, value);	/* DIP Switch Bit 49 - 56 */	i = ((in32 (GPIO1_IR) & 0x00007f80) >> 7);	i = (swapbits[i & 0x0f] << 4) + swapbits[(i & 0xf0) >> 4];	sprintf (value, "%02x", i);	setenv (ENV_NAME_DIP, value);	return 0;}#if defined(CONFIG_SHA1_CHECK_UB_IMG)/************************************************************************* * calculate a SHA1 sum for the U-Boot image in Flash. * ************************************************************************/static int pcs440ep_sha1 (int docheck){	unsigned char *data;	unsigned char *ptroff;	unsigned char output[20];	unsigned char org[20];	int	i, len = CONFIG_SHA1_LEN;	memcpy ((char *)CFG_LOAD_ADDR, (char *)CONFIG_SHA1_START, len);	data = (unsigned char *)CFG_LOAD_ADDR;	ptroff = &data[len + SHA1_SUM_POS];	for (i = 0; i < SHA1_SUM_LEN; i++) {		org[i] = ptroff[i];		ptroff[i] = 0;	}	sha1_csum ((unsigned char *) data, len, (unsigned char *)output);	if (docheck == 2) {		for (i = 0; i < 20 ; i++) {			printf("%02X ", output[i]);		}		printf("\n");	}	if (docheck == 1) {		for (i = 0; i < 20 ; i++) {			if (org[i] != output[i]) return 1;		}	}	return 0;}/************************************************************************* * do some checks after the SHA1 checksum from the U-Boot Image was * calculated. * ************************************************************************/static void pcs440ep_checksha1 (void){	int	ret;	char	*cs_test;	status_led_set (0, STATUS_LED_OFF);	status_led_set (1, STATUS_LED_OFF);	status_led_set (2, STATUS_LED_ON);	ret = pcs440ep_sha1 (1);	if (ret == 0) return;	if ((cs_test = getenv ("cs_test")) == NULL) {		/* Env doesnt exist -> hang */		status_led_blink ();		/* here we do this "handy" because we have no interrupts		   at this time */		puts ("### SHA1 ERROR ### Please RESET the board ###\n");		for (;;) {			__led_toggle (2);			udelay (100000);		}	}	if (strncmp (cs_test, "off", 3) == 0) {		printf ("SHA1 U-Boot sum NOT ok!\n");		setenv ("bootdelay", "-1");	}}#elsestatic __inline__ void pcs440ep_checksha1 (void) { do {} while (0);}#endifint misc_init_r (void){	uint pbcr;	int size_val = 0;	/* Re-do sizing to get full correct info */	mtdcr(ebccfga, pb0cr);	pbcr = mfdcr(ebccfgd);	switch (gd->bd->bi_flashsize) {	case 1 << 20:		size_val = 0;		break;	case 2 << 20:		size_val = 1;		break;	case 4 << 20:

⌨️ 快捷键说明

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