📄 arch.c
字号:
/* * linux/arch/arm/mach-sa1100/arch.c * * Architecture specific fixups. This is where any * parameters in the params struct are fixed up, or * any additional architecture specific information * is pulled from the params struct. */#include <linux/config.h>#include <linux/tty.h>#include <linux/delay.h>#include <linux/pm.h>#include <linux/init.h>#include <asm/elf.h>#include <asm/hardware.h>#include <asm/setup.h>#include <asm/mach-types.h>#include <asm/mach/arch.h>extern void setup_initrd(unsigned int start, unsigned int size);extern void setup_ramdisk(int doload, int prompt, int start, unsigned int rd_sz);static void victor_power_off(void){ /* switch off power supply */ mdelay(2000); GPCR = GPIO_GPIO23; while (1);}static void xp860_power_off(void){ GPDR |= GPIO_GPIO20; GPSR = GPIO_GPIO20; mdelay(1000); GPCR = GPIO_GPIO20; while(1);}extern void __init sa1100_map_io(void);#define SET_BANK(__nr,__start,__size) \ mi->bank[__nr].start = (__start), \ mi->bank[__nr].size = (__size), \ mi->bank[__nr].node = (((unsigned)(__start) - PHYS_OFFSET) >> 27)static void __initfixup_sa1100(struct machine_desc *desc, struct param_struct *params, char **cmdline, struct meminfo *mi){ if (machine_is_assabet()) { /* * On Assabet, we must probe for the Neponset board *before* * paging_init() has occured to actually determine the amount * of RAM available. */ extern void map_sa1100_gpio_regs(void); extern void get_assabet_scr(void); map_sa1100_gpio_regs(); get_assabet_scr(); SET_BANK( 0, 0xc0000000, 32*1024*1024 ); mi->nr_banks = 1; if (machine_has_neponset()) { printk("Neponset expansion board detected\n"); /* * Note that Neponset RAM is slower... * and still untested. * This would be a candidate for * _real_ NUMA support. */ //SET_BANK( 1, 0xd0000000, 32*1024*1024 ); //mi->nr_banks = 2; } ROOT_DEV = MKDEV(RAMDISK_MAJOR,0); setup_ramdisk( 1, 0, 0, 8192 ); setup_initrd( 0xc0800000, 3*1024*1024 ); } else if (machine_is_brutus()) { SET_BANK( 0, 0xc0000000, 4*1024*1024 ); SET_BANK( 1, 0xc8000000, 4*1024*1024 ); SET_BANK( 2, 0xd0000000, 4*1024*1024 ); SET_BANK( 3, 0xd8000000, 4*1024*1024 ); mi->nr_banks = 4; ROOT_DEV = MKDEV(RAMDISK_MAJOR,0); setup_ramdisk( 1, 0, 0, 8192 ); setup_initrd( __phys_to_virt(0xd8000000), 3*1024*1024 ); } else if (machine_is_cerf()) { // 16Meg Ram. SET_BANK( 0, 0xc0000000, 8*1024*1024 ); SET_BANK( 1, 0xc8000000, 8*1024*1024 ); // comment this out for 8MB Cerfs mi->nr_banks = 2; ROOT_DEV = MKDEV(RAMDISK_MAJOR,0); setup_ramdisk(1, 0, 0, 8192); // Save 2Meg for RAMDisk setup_initrd(0xc0500000, 3*1024*1024); } else if (machine_is_empeg()) { SET_BANK( 0, 0xc0000000, 4*1024*1024 ); SET_BANK( 1, 0xc8000000, 4*1024*1024 ); mi->nr_banks = 2; ROOT_DEV = MKDEV( 3, 1 ); /* /dev/hda1 */ setup_ramdisk( 1, 0, 0, 4096 ); setup_initrd( 0xd0000000+((1024-320)*1024), (320*1024) ); } else if (machine_is_lart()) { /* * Note that LART is a special case - it doesn't use physical * address line A23 on the DRAM, so we effectively have 4 * 8MB * in two SA1100 banks. */ SET_BANK( 0, 0xc0000000, 8*1024*1024 ); SET_BANK( 1, 0xc1000000, 8*1024*1024 ); SET_BANK( 2, 0xc8000000, 8*1024*1024 ); SET_BANK( 3, 0xc9000000, 8*1024*1024 ); mi->nr_banks = 4; ROOT_DEV = MKDEV(RAMDISK_MAJOR,0); setup_ramdisk(1, 0, 0, 8192); setup_initrd(0xc0400000, 4*1024*1024); } else if (machine_is_thinclient() || machine_is_graphicsclient()) { SET_BANK( 0, 0xc0000000, 16*1024*1024 ); mi->nr_banks = 1; ROOT_DEV = MKDEV(RAMDISK_MAJOR,0); setup_ramdisk( 1, 0, 0, 8192 ); setup_initrd( __phys_to_virt(0xc0800000), 4*1024*1024 ); } else if (machine_is_nanoengine()) { SET_BANK( 0, 0xc0000000, 32*1024*1024 ); mi->nr_banks = 1; ROOT_DEV = MKDEV(RAMDISK_MAJOR,0); setup_ramdisk( 1, 0, 0, 8192 ); setup_initrd( __phys_to_virt(0xc0800000), 4*1024*1024 ); /* Get command line parameters passed from the loader (if any) */ if( *((char*)0xc0000100) ) *cmdline = ((char *)0xc0000100); } else if (machine_is_tifon()) { SET_BANK( 0, 0xc0000000, 16*1024*1024 ); SET_BANK( 1, 0xc8000000, 16*1024*1024 ); mi->nr_banks = 2; ROOT_DEV = MKDEV(UNNAMED_MAJOR, 0); setup_ramdisk(1, 0, 0, 4096); setup_initrd( 0xd0000000 + 0x1100004, 0x140000 ); } else if (machine_is_victor()) { SET_BANK( 0, 0xc0000000, 4*1024*1024 ); mi->nr_banks = 1; ROOT_DEV = MKDEV( 60, 2 ); /* Get command line parameters passed from the loader (if any) */ if( *((char*)0xc0000000) ) strcpy( *cmdline, ((char *)0xc0000000) ); /* power off if any problem */ strcat( *cmdline, " panic=1" ); pm_power_off = victor_power_off; } else if (machine_is_xp860()) { SET_BANK( 0, 0xc0000000, 32*1024*1024 ); mi->nr_banks = 1; pm_power_off = xp860_power_off; }}#ifdef CONFIG_SA1100_ASSABETMACHINE_START(ASSABET, "Intel-Assabet") BOOT_MEM(0xc0000000, 0x80000000, 0xf8000000) FIXUP(fixup_sa1100) MAPIO(sa1100_map_io)MACHINE_END#endif#ifdef CONFIG_SA1100_BITSYMACHINE_START(BITSY, "Compaq Bitsy") BOOT_MEM(0xc0000000, 0x80000000, 0xf8000000) BOOT_PARAMS(0xc0000100) FIXUP(fixup_sa1100) MAPIO(sa1100_map_io)MACHINE_END#endif#ifdef CONFIG_SA1100_BRUTUSMACHINE_START(BRUTUS, "Intel Brutus (SA1100 eval board)") BOOT_MEM(0xc0000000, 0x80000000, 0xf8000000) FIXUP(fixup_sa1100) MAPIO(sa1100_map_io)MACHINE_END#endif#ifdef CONFIG_SA1100_CERFMACHINE_START(CERF, "Intrinsyc CerfBoard") MAINTAINER("Pieter Truter") BOOT_MEM(0xc0000000, 0x80000000, 0xf8000000) FIXUP(fixup_sa1100) MAPIO(sa1100_map_io)MACHINE_END#endif#ifdef CONFIG_SA1100_EMPEGMACHINE_START(EMPEG, "empeg MP3 Car Audio Player") BOOT_MEM(0xc0000000, 0x80000000, 0xf8000000) FIXUP(fixup_sa1100) MAPIO(sa1100_map_io)MACHINE_END#endif#ifdef CONFIG_SA1100_GRAPHICSCLIENTMACHINE_START(GRAPHICSCLIENT, "ADS GraphicsClient") BOOT_MEM(0xc0000000, 0x80000000, 0xf8000000) FIXUP(fixup_sa1100) MAPIO(sa1100_map_io)MACHINE_END#endif#ifdef CONFIG_SA1100_ITSYMACHINE_START(ITSY, "Compaq Itsy") BOOT_MEM(0xc0000000, 0x80000000, 0xf8000000) BOOT_PARAMS(0xc0000100 FIXUP(fixup_sa1100) MAPIO(sa1100_map_io)MACHINE_END#endif#ifdef CONFIG_SA1100_LARTMACHINE_START(LART, "LART") BOOT_MEM(0xc0000000, 0x80000000, 0xf8000000) FIXUP(fixup_sa1100) MAPIO(sa1100_map_io)MACHINE_END#endif#ifdef CONFIG_SA1100_NANOENGINEMACHINE_START(NANOENGINE, "BSE nanoEngine") BOOT_MEM(0xc0000000, 0x80000000, 0xf8000000) FIXUP(fixup_sa1100) MAPIO(sa1100_map_io)MACHINE_END#endif#ifdef CONFIG_SA1100_PLEBMACHINE_START(PLEB, "PLEB") BOOT_MEM(0xc0000000, 0x80000000, 0xf8000000) FIXUP(fixup_sa1100) MAPIO(sa1100_map_io)MACHINE_END#endif#ifdef CONFIG_SA1100_THINCLIENTMACHINE_START(THINCLIENT, "ADS ThinClient") BOOT_MEM(0xc0000000, 0x80000000, 0xf8000000) FIXUP(fixup_sa1100) MAPIO(sa1100_map_io)MACHINE_END#endif#ifdef CONFIG_SA1100_TIFONMACHINE_START(TIFON, "Tifon") BOOT_MEM(0xc0000000, 0x80000000, 0xf8000000) FIXUP(fixup_sa1100) MAPIO(sa1100_map_io)MACHINE_END#endif#ifdef CONFIG_SA1100_VICTORMACHINE_START(VICTOR, "VisuAide Victor") BOOT_MEM(0xc0000000, 0x80000000, 0xf8000000) FIXUP(fixup_sa1100) MAPIO(sa1100_map_io)MACHINE_END#endif#ifdef CONFIG_SA1100_XP860MACHINE_START(XP860, "XP860") BOOT_MEM(0xc0000000, 0x80000000, 0xf8000000) FIXUP(fixup_sa1100) MAPIO(sa1100_map_io)MACHINE_END#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -