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

📄 swarm_init.s

📁 一个很好的嵌入式linux平台下的bootloader
💻 S
字号:
/*  *********************************************************************    *  SB1250 Board Support Package    *      *  Board-specific initialization		File: SWARM_INIT.S    *    *  This module contains the assembly-language part of the init    *  code for this board support package.  The routine    *  "board_earlyinit" lives here.    *      *  Author:  Mitch Lichtenberg    *      *********************************************************************      *    *  Copyright 2000,2001,2002,2003    *  Broadcom Corporation. All rights reserved.    *      *  This software is furnished under license and may be used and     *  copied only in accordance with the following terms and     *  conditions.  Subject to these conditions, you may download,     *  copy, install, use, modify and distribute modified or unmodified     *  copies of this software in source and/or binary form.  No title     *  or ownership is transferred hereby.    *      *  1) Any source code used, modified or distributed must reproduce     *     and retain this copyright notice and list of conditions     *     as they appear in the source file.    *      *  2) No right is granted to use any trade name, trademark, or     *     logo of Broadcom Corporation.  The "Broadcom Corporation"     *     name may not be used to endorse or promote products derived     *     from this software without the prior written permission of     *     Broadcom Corporation.    *      *  3) THIS SOFTWARE IS PROVIDED "AS-IS" AND ANY EXPRESS OR    *     IMPLIED WARRANTIES, INCLUDING BUT NOT LIMITED TO, ANY IMPLIED    *     WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR     *     PURPOSE, OR NON-INFRINGEMENT ARE DISCLAIMED. IN NO EVENT     *     SHALL BROADCOM BE LIABLE FOR ANY DAMAGES WHATSOEVER, AND IN     *     PARTICULAR, BROADCOM SHALL NOT BE LIABLE FOR DIRECT, INDIRECT,    *     INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES     *     (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE    *     GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR    *     BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY     *     OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR     *     TORT (INCLUDING NEGLIGENCE OR OTHERWISE), EVEN IF ADVISED OF     *     THE POSSIBILITY OF SUCH DAMAGE.    ********************************************************************* */#include "sbmips.h"#include "sb1250_genbus.h"#include "sb1250_regs.h"#include "sb1250_scd.h"#include "bsp_config.h"#include "cpu_config.h"#include "swarm.h"#include "mipsmacros.h"#include "sb1250_draminit.h"#include "jedec.h"		.text/*  *********************************************************************    *  Macros    ********************************************************************* *//* * Define this to send the LED messages to the serial port instead * of to the LEDs. *//*#define _SERIAL_PORT_LEDS_*/#include "sb1250_uart.h"		/* need this for serial defs */#if (CFG_UNIPROCESSOR_CPU0 && !CFG_MULTI_CPUS)/*  *********************************************************************    *  sb1250_switch_unicpu0    *      *  Switch the processor into uniprocessor CPU0 mode - this     *  effectively disables CPU1 and changes the CPU to look    *  like an 1125 with a big L2 cache (an 1150, if you will).    *      *  This routine will do one of two things:  If we are already in    *  uniprocessor mode, it just returns.  If we are not in uni    *  mode, we muck with the SCD to enable uni mode and do a    *  soft reset.  The processor will reset and eventuall wind    *  back here, where it will notice that the uni mode is turned    *  on and execution will continue.    *      *  Input parameters:     *  	   nothing    *  	       *  Return value:    *  	   nothing    *  	       *  Registers used:    *  	   t0,t1,t2,t3,t4    *  	   register s0 must be preserved, it contains the return address    ********************************************************************* */LEAF(sb1250_switch_unicpu0)	/*	 * If the CPU is a 1250 or hybrid, certain initialization has	 * to be done so that the chip can be used like an 112x.	 */	 	/* First, figure out what type of SOC we're on. */		ld	t0, PHYS_TO_K1(A_SCD_SYSTEM_REVISION)		and	t1, t0, M_SYS_PART		dsrl	t1, t1, S_SYS_PART	# part number now in t1		and	t2, t0, M_SYS_REVISION		dsrl	t2, t2, S_SYS_REVISION	# revision now in t2	/*	 * Calculating SOC type:	 *	soc_type = part & 0xf;	 *	if (system_revision <= PASS2	 *	    && (soc_type == 2 || soc_type == 5))	 *	  soc_type = 0;			# really a 1250.	 */	 	andi	t3, t1, 0xf		# soc_type (t3) = part & 0xf;		bgt	t2, K_SYS_REVISION_PASS2, soc_type_ok		beq	t3, 2, soc_type_bogus		beq	t3, 5, soc_type_bogus		b	soc_type_oksoc_type_bogus:	        move    t3, zerosoc_type_ok:	/*	 * We have a 1250 or hybrid.  Initialize registers as appropriate.	 */	/*	 * XXX TO DO:	 *	if pass2, disable half the cache so we look like an 1125.	 */	/*	 * If we're not already running as a uniprocessor, get us there.	 */	 	and	t3, t1, 0xf00		dsrl	t3, t3, 8		# t3 = numcpus		ld	t4, PHYS_TO_K1(A_SCD_SYSTEM_CFG)		or	t4, t4, M_SYS_SB_SOFTRES		xor	t4, t4, M_SYS_SB_SOFTRES		sd	t4, PHYS_TO_K1(A_SCD_SYSTEM_CFG)	/* clear soft reset */				beq	t3, 1, 2f		or	t4, t4, M_SYS_SB_SOFTRES | M_SYS_UNICPU0		sd	t4, PHYS_TO_K1(A_SCD_SYSTEM_CFG)	/* go unicpu */		sync1:		b	1b			# loop till reset sinks in2:		j	raEND(sb1250_switch_unicpu0)#endif/*  *********************************************************************    *  BOARD_EARLYINIT()    *      *  Initialize board registers.  This is the earliest     *  time the BSP gets control.  This routine cannot assume that    *  memory is operational, and therefore all code in this routine    *  must run from registers only.  The $ra register must not    *  be modified, as it contains the return address.    *    *  This routine will be called from uncached space, before    *  the caches are initialized.  If you want to make    *  subroutine calls from here, you must use the CALLKSEG1 macro.    *    *  Among other things, this is where the GPIO registers get     *  programmed to make on-board LEDs function, or other startup    *  that has to be done before anything will work.    *      *  Input parameters:     *  	   nothing    *  	       *  Return value:    *  	   nothing    ********************************************************************* */LEAF(board_earlyinit)	#	# If configured, switch the chip into uniprocessor mode	##if (CFG_UNIPROCESSOR_CPU0 && !CFG_MULTI_CPUS)		move	s0,ra			# need this to get out of here		bal	sb1250_switch_unicpu0	# might not return		move	ra,s0			# restore saved return address#endif	#	# Reprogram the SCD to make sure UART0 is enabled.	# Some CSWARM boards have the SER0 enable bit when	# they're not supposed to, which switches the UART	# into synchronous mode.  Kill off the SCD bit.	# XXX this should be investigated in hardware, as 	# XXX it is a strap option on the CPU.	#		li      t0,PHYS_TO_K1(A_SCD_SYSTEM_CFG)		ld	t1,0(t0)		dli	t2,~M_SYS_SER0_ENABLE		and	t1,t1,t2		sd	t1,0(t0)       #       # Configure the GPIOs       #		li	t0,PHYS_TO_K1(A_GPIO_DIRECTION)		li	t1,GPIO_OUTPUT_MASK		sd	t1,0(t0)		li	t0,PHYS_TO_K1(A_GPIO_INT_TYPE)		li	t1,GPIO_INTERRUPT_MASK		sd	t1,0(t0)       #       # Turn on the diagnostic LED and turn off the sturgeon NMI       #		li	t0,PHYS_TO_K1(A_GPIO_PIN_SET)		li	t1,M_GPIO_DEBUG_LED		sd	t1,0(t0)		li	t0,PHYS_TO_K1(A_GPIO_PIN_CLR)		li	t1,M_GPIO_STURGEON_NMI		sd	t1,0(t0)       #       # Configure the LEDs       #     		li	t0,PHYS_TO_K1(A_IO_EXT_CS_BASE(LEDS_CS))		li	t1,LEDS_PHYS >> S_IO_ADDRBASE		sd	t1,R_IO_EXT_START_ADDR(t0)		li	t1,LEDS_SIZE-1	/* Needs to be 1 smaller, se UM for details */		sd	t1,R_IO_EXT_MULT_SIZE(t0)		li	t1,LEDS_TIMING0		sd	t1,R_IO_EXT_TIME_CFG0(t0)		li	t1,LEDS_TIMING1		sd	t1,R_IO_EXT_TIME_CFG1(t0)		li	t1,LEDS_CONFIG		sd	t1,R_IO_EXT_CFG(t0)       #       # Configure the alternate boot ROM       #     		li	t0,PHYS_TO_K1(A_IO_EXT_CS_BASE(ALT_BOOTROM_CS))		li	t1,ALT_BOOTROM_PHYS >> S_IO_ADDRBASE		sd	t1,R_IO_EXT_START_ADDR(t0)		li	t1,ALT_BOOTROM_SIZE-1		sd	t1,R_IO_EXT_MULT_SIZE(t0)		li	t1,ALT_BOOTROM_TIMING0		sd	t1,R_IO_EXT_TIME_CFG0(t0)		li	t1,ALT_BOOTROM_TIMING1		sd	t1,R_IO_EXT_TIME_CFG1(t0)		li	t1,ALT_BOOTROM_CONFIG		sd	t1,R_IO_EXT_CFG(t0)       #       # Configure the IDE interface       #     		li	t0,PHYS_TO_K1(A_IO_EXT_CS_BASE(IDE_CS))		li	t1,IDE_PHYS >> S_IO_ADDRBASE		sd	t1,R_IO_EXT_START_ADDR(t0)		li	t1,IDE_SIZE-1		sd	t1,R_IO_EXT_MULT_SIZE(t0)		li	t1,IDE_TIMING0		sd	t1,R_IO_EXT_TIME_CFG0(t0)		li	t1,IDE_TIMING1		sd	t1,R_IO_EXT_TIME_CFG1(t0)		li	t1,IDE_CONFIG		sd	t1,R_IO_EXT_CFG(t0)       #       # Configure the PCMCIA       #     		li	t0,PHYS_TO_K1(A_IO_EXT_CS_BASE(PCMCIA_CS))		li	t1,PCMCIA_PHYS >> S_IO_ADDRBASE		sd	t1,R_IO_EXT_START_ADDR(t0)		li	t1,PCMCIA_SIZE-1		sd	t1,R_IO_EXT_MULT_SIZE(t0)		li	t1,PCMCIA_TIMING0		sd	t1,R_IO_EXT_TIME_CFG0(t0)		li	t1,PCMCIA_TIMING1		sd	t1,R_IO_EXT_TIME_CFG1(t0)		li	t1,PCMCIA_CONFIG		sd	t1,R_IO_EXT_CFG(t0)       /*        * Program UART0 (default console) to correct baud rate	* so we can output messages before CFE finishes starting.	*/	# Program the mode register for 8 bits/char, no parity		li	t0,PHYS_TO_K1(A_DUART_MODE_REG_1_A)			li	t1,V_DUART_BITS_PER_CHAR_8 | V_DUART_PARITY_MODE_NONE		sd	t1,(t0)	# Program the mode register for 1 stop bit, ignore CTS		li	t0,PHYS_TO_K1(A_DUART_MODE_REG_2_A)			li	t1,M_DUART_STOP_BIT_LEN_1		sd	t1,(t0)	# Program the baud rate to 115200		li	t0,PHYS_TO_K1(A_DUART_CLK_SEL_A)		li	t1,V_DUART_BAUD_RATE(CFG_SERIAL_BAUD_RATE)		sd	t1,(t0)	# Dont use any interrupts		li	t0,PHYS_TO_K1(A_DUART_IMR)		ld	t1,(t0)		and	t1,~M_DUART_IMR_ALL_A		sd	t1,(t0)	# Enable sending and receiving		li	t0,PHYS_TO_K1(A_DUART_CMD_A)		li	t1,M_DUART_RX_EN | M_DUART_TX_EN		sd	t1,(t0)		j	raEND(board_earlyinit)/*  *********************************************************************    *  BOARD_DRAMINFO    *      *  Return the address of the DRAM information table    *      *  Input parameters:     *  	   nothing    *  	       *  Return value:    *  	   v0 - DRAM info table, return 0 to use default table    ********************************************************************* */LEAF(board_draminfo)#ifdef _HARDWIRED_MEMORY_TABLE		la	v0,myinfo#else		move	v0,zero		# auto configure#endif		j	ramyinfo:	DRAM_GLOBALS(CFG_DRAM_INTERLEAVE)		/* 128MB on MC0 (SDRAM) */         DRAM_CHAN_CFG(MC_CHAN0, DRT10(8,0), JEDEC,CASCHECK, BLKSIZE32, CFG_DRAM_CSINTERLEAVE, CFG_DRAM_ECC, 0)	DRAM_CS_GEOM(MC_CS0, 12, 8, 2)	DRAM_CS_TIMING(DRT10(7,5), JEDEC_RFSH_64khz, JEDEC_CASLAT_25, 0,  45, DRT4(20,0), DRT4(15,0),  DRT4(20,0),  0, 0)	DRAM_EOTEND(board_draminfo)/*  *********************************************************************    *  BOARD_CONOUT    *      *  Transmit a single character via UART A    *      *  Input parameters:     *  	   a0 - character to transmit (low-order 8 bits)    *  	       *  Return value:    *  	   nothing    *  	       *  Registers used:    *  	   t0,t1    ********************************************************************* */LEAF(board_conout)_board_conout:	# Wait until there is space in the transmit buffer1:		li	t0,PHYS_TO_K1(A_DUART_STATUS_A)		ld	t1,(t0)			# Get status bits		and	t1,M_DUART_TX_RDY	# test for ready		beq	t1,0,1b			# keep going till ready	# Okay, now send the character.		li	t0,PHYS_TO_K1(A_DUART_TX_HOLD_A)		sd	a0,(t0)	# done!		j	raEND(board_conout)/*  *********************************************************************    *  BOARD_CONIN    *      *  Receive a character from UART A    *      *  Input parameters:     *      nothing    *  	       *  Return value:    *  	   v0 - received character, or -1 if no characters waiting    *  	       *  Registers used:    *  	   t0,t1    ********************************************************************* */LEAF(board_conin)		li	v0,-1		j	raEND(board_conin)/*  *********************************************************************    *  BOARD_SETLEDS(x)    *      *  Set LEDs for boot-time progress indication.  Not used if    *  the board does not have progress LEDs.  This routine    *  must not call any other routines, since it may be invoked    *  either from KSEG0 or KSEG1 and it may be invoked     *  whether or not the icache is operational.    *      *  Input parameters:     *  	   a0 - LED value (8 bits per character, 4 characters)    *  	       *  Return value:    *  	   nothing    *      *  Registers used:    *  	   t0,t1,t2,t3    ********************************************************************* */#define LED_CHAR0	(32+8*3)#define LED_CHAR1	(32+8*2)#define LED_CHAR2	(32+8*1)#define LED_CHAR3	(32+8*0)LEAF(board_setleds)#ifdef _SERIAL_PORT_LEDS_       /*        * Sending to serial port	*/		move	t3,ra		move	t2,a0		li	a0,'['		bal	_board_conout		move	a0,t2		rol	a0,8		bal	_board_conout		rol	a0,8		bal	_board_conout		rol	a0,8		bal	_board_conout		rol	a0,8		bal	_board_conout		li	a0,']'		bal	_board_conout		move	ra,t3		j	ra#else	/*	 * Sending to LEDs	 */		li	t0,PHYS_TO_K1(LEDS_PHYS)		rol	a0,a0,8		and	t1,a0,0xFF		sb	t1,LED_CHAR0(t0)		rol	a0,a0,8		and	t1,a0,0xFF		sb	t1,LED_CHAR1(t0)		rol	a0,a0,8		and	t1,a0,0xFF		sb	t1,LED_CHAR2(t0)		rol	a0,a0,8		and	t1,a0,0xFF		sb	t1,LED_CHAR3(t0)		j	ra#endifEND(board_setleds)

⌨️ 快捷键说明

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