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

📄 setup.c

📁 一个2.4.21版本的嵌入式linux内核
💻 C
📖 第 1 页 / 共 2 页
字号:
/* * Copyright (C) 1999,2001-2002 Silicon Graphics, Inc. All rights reserved. *  * This program is free software; you can redistribute it and/or modify it  * under the terms of version 2 of the GNU General Public License  * as published by the Free Software Foundation. *  * This program is distributed in the hope that it would be useful, but  * WITHOUT ANY WARRANTY; without even the implied warranty of  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  *  * Further, this software is distributed without any warranty that it is  * free of the rightful claim of any third person regarding infringement  * or the like.  Any license provided herein, whether implied or  * otherwise, applies only to this software file.  Patent licenses, if  * any, provided herein do not apply to combinations of this program with  * other software, or any other product whatsoever. *  * You should have received a copy of the GNU General Public  * License along with this program; if not, write the Free Software  * Foundation, Inc., 59 Temple Place - Suite 330, Boston MA 02111-1307, USA. *  * Contact information:  Silicon Graphics, Inc., 1600 Amphitheatre Pkwy,  * Mountain View, CA  94043, or: *  * http://www.sgi.com  *  * For further information regarding this notice, see:  *  * http://oss.sgi.com/projects/GenInfo/NoticeExplan */#include <linux/config.h>#include <linux/init.h>#include <linux/delay.h>#include <linux/kernel.h>#include <linux/kdev_t.h>#include <linux/string.h>#include <linux/tty.h>#include <linux/console.h>#include <linux/timex.h>#include <linux/sched.h>#include <linux/ioport.h>#include <linux/mm.h>#include <linux/serial.h>#include <linux/irq.h>#include <linux/bootmem.h>#include <linux/mmzone.h>#include <linux/interrupt.h>#include <linux/acpi.h>#include <linux/compiler.h>#include <linux/sched.h>#include <asm/io.h>#include <asm/sal.h>#include <asm/machvec.h>#include <asm/system.h>#include <asm/processor.h>#include <asm/sn/sgi.h>#include <asm/sn/io.h>#include <asm/sn/arch.h>#include <asm/sn/addrs.h>#include <asm/sn/pda.h>#include <asm/sn/nodepda.h>#include <asm/sn/sn_cpuid.h>#include <asm/sn/sn_private.h>#include <asm/sn/simulator.h>#include <asm/sn/leds.h>#include <asm/sn/bte.h>#include <asm/sn/clksupport.h>#include <asm/sn/sn_sal.h>#ifdef CONFIG_IA64_SGI_SN2#include <asm/sn/sn2/shub.h>#endifextern void bte_init_node (nodepda_t *, cnodeid_t);extern void bte_init_cpu (void);unsigned long sn_rtc_cycles_per_second;   unsigned long sn_rtc_usec_per_cyc;partid_t sn_partid = -1;char sn_system_serial_number_string[128];u64 sn_partition_serial_number;/* * This is the address of the RRegs in the HSpace of the global * master.  It is used by a hack in serial.c (serial_[in|out], * printk.c (early_printk), and kdb_io.c to put console output on that * node's Bedrock UART.  It is initialized here to 0, so that * early_printk won't try to access the UART before * master_node_bedrock_address is properly calculated. */u64 master_node_bedrock_address = 0UL;static void sn_init_pdas(char **);extern struct irq_desc *_sn_irq_desc[];#if defined(CONFIG_IA64_SGI_SN1)extern synergy_da_t	*Synergy_da_indr[];#endifstatic nodepda_t	*nodepdaindr[MAX_COMPACT_NODES];#ifdef CONFIG_IA64_SGI_SN2irqpda_t		*irqpdaindr[NR_CPUS];#endif /* CONFIG_IA64_SGI_SN2 *//* * The format of "screen_info" is strange, and due to early i386-setup * code. This is just enough to make the console code think we're on a * VGA color display. */struct screen_info sn_screen_info = {	orig_x:			 0,	orig_y:			 0,	orig_video_mode:	 3,	orig_video_cols:	80,	orig_video_ega_bx:	 3,	orig_video_lines:	25,	orig_video_isVGA:	 1,	orig_video_points:	16};/* * This is here so we can use the CMOS detection in ide-probe.c to * determine what drives are present.  In theory, we don't need this * as the auto-detection could be done via ide-probe.c:do_probe() but * in practice that would be much slower, which is painful when * running in the simulator.  Note that passing zeroes in DRIVE_INFO * is sufficient (the IDE driver will autodetect the drive geometry). */char drive_info[4*16];/** * sn_map_nr - return the mem_map entry for a given kernel address * @addr: kernel address to query * * Finds the mem_map entry for the kernel address given.  Used by * virt_to_page() (asm-ia64/page.h), among other things. */unsigned longsn_map_nr (void *addr){	return MAP_NR_DISCONTIG(addr);}/** * early_sn_setup - early setup routine for SN platforms * * Sets up an intial console to aid debugging.  Intended primarily * for bringup, it's only called if %BRINGUP and %CONFIG_IA64_EARLY_PRINTK * are turned on.  See start_kernel() in init/main.c. */#if defined(CONFIG_IA64_EARLY_PRINTK)void __initearly_sn_setup(void){	void ia64_sal_handler_init (void *entry_point, void *gpval);	efi_system_table_t			*efi_systab;	efi_config_table_t 			*config_tables;	struct ia64_sal_systab			*sal_systab;	struct ia64_sal_desc_entry_point	*ep;	char					*p;	int					i;	/*	 * Parse enough of the SAL tables to locate the SAL entry point. Since, console	 * IO on SN2 is done via SAL calls, early_printk wont work without this.	 *	 * This code duplicates some of the ACPI table parsing that is in efi.c & sal.c.	 * Any changes to those file may have to be made hereas well.	 */	efi_systab = (efi_system_table_t*)__va(ia64_boot_param->efi_systab);	config_tables = __va(efi_systab->tables);	for (i = 0; i < efi_systab->nr_tables; i++) {		if (efi_guidcmp(config_tables[i].guid, SAL_SYSTEM_TABLE_GUID) == 0) {			sal_systab = __va(config_tables[i].table);			p = (char*)(sal_systab+1);			for (i = 0; i < sal_systab->entry_count; i++) {				if (*p == SAL_DESC_ENTRY_POINT) {					ep = (struct ia64_sal_desc_entry_point *) p;					ia64_sal_handler_init(__va(ep->sal_proc), __va(ep->gp));					break;				}				p += SAL_DESC_SIZE(*p);			}		}	}	if ( IS_RUNNING_ON_SIMULATOR() ) {#if defined(CONFIG_IA64_SGI_SN1)		master_node_bedrock_address = (u64)REMOTE_HSPEC_ADDR(get_nasid(), 0);#else		master_node_bedrock_address = (u64)REMOTE_HUB(get_nasid(), SH_JUNK_BUS_UART0);#endif		printk(KERN_DEBUG "early_sn_setup: setting master_node_bedrock_address to 0x%lx\n", master_node_bedrock_address);	}}#endif /* CONFIG_IA64_SGI_SN1 */#ifdef CONFIG_IA64_MCAextern int platform_intr_list[];#endifextern nasid_t master_nasid;/** * sn_setup - SN platform setup routine * @cmdline_p: kernel command line * * Handles platform setup for SN machines.  This includes determining * the RTC frequency (via a SAL call), initializing secondary CPUs, and * setting up per-node data areas.  The console is also initialized here. */void __initsn_setup(char **cmdline_p){	long status, ticks_per_sec, drift;	int i;	int major = sn_sal_rev_major(), minor = sn_sal_rev_minor();	printk("SGI SAL version %x.%02x\n", major, minor);	/*	 * Confirm the SAL we're running on is recent enough...	 */	if ((major < SN_SAL_MIN_MAJOR) || (major == SN_SAL_MIN_MAJOR &&					   minor < SN_SAL_MIN_MINOR)) {		printk(KERN_ERR "This kernel needs SGI SAL version >= "		       "%x.%02x\n", SN_SAL_MIN_MAJOR, SN_SAL_MIN_MINOR);		panic("PROM version too old\n");	}#ifdef CONFIG_IA64_SGI_SN2	{		extern void io_sh_swapper(int, int);		io_sh_swapper(get_nasid(), 0);	}#endif	master_nasid = get_nasid();	(void)get_console_nasid();#ifndef CONFIG_IA64_SGI_SN1	{		extern nasid_t get_master_baseio_nasid(void);		(void)get_master_baseio_nasid();	}#endif	status = ia64_sal_freq_base(SAL_FREQ_BASE_REALTIME_CLOCK, &ticks_per_sec, &drift);	if (status != 0 || ticks_per_sec < 100000) {		printk(KERN_WARNING "unable to determine platform RTC clock frequency, guessing.\n");		/* PROM gives wrong value for clock freq. so guess */		sn_rtc_cycles_per_second = 1000000000000UL/30000UL;	}	else		sn_rtc_cycles_per_second = ticks_per_sec;#ifdef CONFIG_IA64_SGI_SN1	/* PROM has wrong value on SN1 */	sn_rtc_cycles_per_second = 990177;#endif	sn_rtc_usec_per_cyc = ((1000000UL<<IA64_USEC_PER_CYC_SHIFT)			       + sn_rtc_cycles_per_second/2) / sn_rtc_cycles_per_second;			for (i=0;i<NR_CPUS;i++)		_sn_irq_desc[i] = _irq_desc;	platform_intr_list[ACPI_INTERRUPT_CPEI] = IA64_PCE_VECTOR;	if ( IS_RUNNING_ON_SIMULATOR() )	{#ifdef CONFIG_IA64_SGI_SN2		master_node_bedrock_address = (u64)REMOTE_HUB(get_nasid(), SH_JUNK_BUS_UART0);#else		master_node_bedrock_address = (u64)REMOTE_HSPEC_ADDR(get_nasid(), 0);#endif		printk(KERN_DEBUG "sn_setup: setting master_node_bedrock_address to 0x%lx\n",		       master_node_bedrock_address);	}	/*	 * we set the default root device to /dev/hda	 * to make simulation easy	 */	ROOT_DEV = to_kdev_t(0x0301);	/*	 * Create the PDAs and NODEPDAs for all the cpus.	 */	sn_init_pdas(cmdline_p);	/* 	 * For the bootcpu, we do this here. All other cpus will make the	 * call as part of cpu_init in slave cpu initialization.	 */	sn_cpu_init();#ifdef CONFIG_SMP	init_smp_config();#endif	screen_info = sn_screen_info;	/*	 * Turn off "floating-point assist fault" warnings by default.	 */	current->thread.flags |= IA64_THREAD_FPEMU_NOPRINT;}/** * sn_init_pdas - setup node data areas * * One time setup for Node Data Area.  Called by sn_setup(). */voidsn_init_pdas(char **cmdline_p){	cnodeid_t	cnode;	/*	 * Make sure that the PDA fits entirely in the same page as the 	 * cpu_data area.	 */	if ((PDAADDR&~PAGE_MASK)+sizeof(pda_t) > PAGE_SIZE)		panic("overflow of cpu_data page");        /*         * Allocate & initalize the nodepda for each node.         */        for (cnode=0; cnode < numnodes; cnode++) {		nodepdaindr[cnode] = alloc_bootmem_node(NODE_DATA(cnode), sizeof(nodepda_t));		memset(nodepdaindr[cnode], 0, sizeof(nodepda_t));#if defined(CONFIG_IA64_SGI_SN1)		Synergy_da_indr[cnode * 2] = (synergy_da_t *) alloc_bootmem_node(NODE_DATA(cnode), sizeof(synergy_da_t));		Synergy_da_indr[cnode * 2 + 1] = (synergy_da_t *) alloc_bootmem_node(NODE_DATA(cnode), sizeof(synergy_da_t));		memset(Synergy_da_indr[cnode * 2], 0, sizeof(synergy_da_t));		memset(Synergy_da_indr[cnode * 2 + 1], 0, sizeof(synergy_da_t));#endif        }

⌨️ 快捷键说明

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