From: James S. <jsi...@us...> - 2002-11-23 00:55:52
|
Update of /cvsroot/linuxconsole/ruby/linux/arch/ppc/syslib In directory sc8-pr-cvs1:/tmp/cvs-serv1514/linux/arch/ppc/syslib Added Files: ppc4xx_setup.c Log Message: Synced to 2.5.49 console BK tree. --- NEW FILE: ppc4xx_setup.c --- /* * * Copyright (c) 1999-2000 Grant Erickson <gr...@lc...> * * Copyright 2000-2001 MontaVista Software Inc. * Completed implementation. * Author: MontaVista Software, Inc. <so...@mv...> * Frank Rowand <fra...@mv...> * Debbie Chu <deb...@mv...> * * Module name: ppc4xx_setup.c * * Description: * Architecture- / platform-specific boot-time initialization code for * IBM PowerPC 4xx based boards. Adapted from original * code by Gary Thomas, Cort Dougan <co...@fs...>, and Dan Malek * <da...@ne...>. * * History: 11/09/2001 - armin * rename board_setup_nvram_access to board_init. board_init is * used for all other board specific instructions needed during * platform_init. * moved RTC to board.c files * moved VT/FB to board.c files * moved r/w4 ide to redwood.c * */ #include <linux/config.h> #include <linux/init.h> #include <linux/smp.h> #include <linux/threads.h> #include <linux/spinlock.h> #include <linux/irq.h> #include <linux/reboot.h> #include <linux/param.h> #include <linux/string.h> #include <linux/blk.h> #include <linux/pci.h> #include <linux/rtc.h> #include <linux/ide.h> #include <linux/serial_reg.h> #include <linux/seq_file.h> #include <asm/system.h> #include <asm/processor.h> #include <asm/machdep.h> #include <asm/page.h> #include <asm/kgdb.h> #include <asm/ibm4xx.h> #include <asm/time.h> #include <asm/todc.h> #include <asm/ppc4xx_pic.h> #include <asm/pci-bridge.h> #include <asm/bootinfo.h> /* Function Prototypes */ extern void abort(void); extern void ppc4xx_find_bridges(void); extern void ppc4xx_wdt_heartbeat(void); extern int wdt_enable; extern unsigned long wdt_period; /* Board specific functions */ extern void board_setup_arch(void); extern void board_io_mapping(void); extern void board_setup_irq(void); extern void board_init(void); /* Global Variables */ unsigned char __res[sizeof (bd_t)]; static void __init ppc4xx_setup_arch(void) { /* Setup PCI host bridges */ #ifdef CONFIG_PCI ppc4xx_find_bridges(); #endif board_setup_arch(); } /* * This routine pretty-prints the platform's internal CPU clock * frequencies into the buffer for usage in /proc/cpuinfo. */ static int ppc4xx_show_percpuinfo(struct seq_file *m, int i) { bd_t *bip = (bd_t *) __res; seq_printf(m, "clock\t\t: %ldMHz\n", (long) bip->bi_intfreq / 1000000); return 0; } /* * This routine pretty-prints the platform's internal bus clock * frequencies into the buffer for usage in /proc/cpuinfo. */ static int ppc4xx_show_cpuinfo(struct seq_file *m) { bd_t *bip = (bd_t *) __res; seq_printf(m, "machine\t\t: %s\n", PPC4xx_MACHINE_NAME); seq_printf(m, "plb bus clock\t: %ldMHz\n", (long) bip->bi_busfreq / 1000000); #ifdef CONFIG_PCI seq_printf(m, "pci bus clock\t: %dMHz\n", bip->bi_pci_busfreq / 1000000); #endif return 0; } /* * Return the virtual address representing the top of physical RAM. */ static unsigned long __init ppc4xx_find_end_of_memory(void) { bd_t *bip = (bd_t *) __res; return ((unsigned long) bip->bi_memsize); } static void __init m4xx_map_io(void) { io_block_mapping(PPC4xx_ONB_IO_VADDR, PPC4xx_ONB_IO_PADDR, PPC4xx_ONB_IO_SIZE, _PAGE_IO); #ifdef CONFIG_PCI io_block_mapping(PPC4xx_PCI_IO_VADDR, PPC4xx_PCI_IO_PADDR, PPC4xx_PCI_IO_SIZE, _PAGE_IO); io_block_mapping(PPC4xx_PCI_CFG_VADDR, PPC4xx_PCI_CFG_PADDR, PPC4xx_PCI_CFG_SIZE, _PAGE_IO); io_block_mapping(PPC4xx_PCI_LCFG_VADDR, PPC4xx_PCI_LCFG_PADDR, PPC4xx_PCI_LCFG_SIZE, _PAGE_IO); #endif board_io_mapping(); } static void __init ppc4xx_init_IRQ(void) { int i; ppc4xx_pic_init(); for (i = 0; i < NR_IRQS; i++) irq_desc[i].handler = ppc4xx_pic; /* give board specific code a chance to setup things */ board_setup_irq(); return; } static void ppc4xx_restart(char *cmd) { printk("%s\n", cmd); abort(); } static void ppc4xx_power_off(void) { printk("System Halted\n"); local_irq_disable(); while (1) ; } static void ppc4xx_halt(void) { printk("System Halted\n"); local_irq_disable(); while (1) ; } /* * This routine retrieves the internal processor frequency from the board * information structure, sets up the kernel timer decrementer based on * that value, enables the 4xx programmable interval timer (PIT) and sets * it up for auto-reload. */ static void __init ppc4xx_calibrate_decr(void) { unsigned int freq; bd_t *bip = (bd_t *) __res; #if defined(CONFIG_WALNUT) || defined(CONFIG_CEDER) /* Walnut boot rom sets DCR CHCR1 (aka CPC0_CR1) bit CETE to 1 */ mtdcr(DCRN_CHCR1, mfdcr(DCRN_CHCR1) & ~CHR1_CETE); #endif #ifdef CONFIG_REDWOOD_5 freq = bip->bi_tbfreq; #else freq = bip->bi_intfreq; #endif tb_ticks_per_jiffy = freq / HZ; tb_to_us = mulhwu_scale_factor(freq, 1000000); /* Set the time base to zero. ** At 200 Mhz, time base will rollover in ~2925 years. */ mtspr(SPRN_TBWL, 0); mtspr(SPRN_TBWU, 0); /* Clear any pending timer interrupts */ mtspr(SPRN_TSR, TSR_ENW | TSR_WIS | TSR_PIS | TSR_FIS); mtspr(SPRN_TCR, TCR_PIE | TCR_ARE); /* Set the PIT reload value and just let it run. */ mtspr(SPRN_PIT, tb_ticks_per_jiffy); } #ifdef CONFIG_DEBUG_TEXT static void ppc4xx_progress(char *s, unsigned short hex) { printk("%s\n\r", s); } #endif /* * IDE stuff. * should be generic for every IDE PCI chipset */ #ifdef CONFIG_PCI static void ppc4xx_ide_init_hwif_ports(hw_regs_t * hw, ide_ioreg_t data_port, ide_ioreg_t ctrl_port, int *irq) { int i; for (i = IDE_DATA_OFFSET; i <= IDE_STATUS_OFFSET; ++i) hw->io_ports[i] = data_port + i - IDE_DATA_OFFSET; hw->io_ports[IDE_CONTROL_OFFSET] = ctrl_port; } #endif TODC_ALLOC(); /* * Input(s): * r3 - Optional pointer to a board information structure. * r4 - Optional pointer to the physical starting address of the init RAM * disk. * r5 - Optional pointer to the physical ending address of the init RAM * disk. * r6 - Optional pointer to the physical starting address of any kernel * command-line parameters. * r7 - Optional pointer to the physical ending address of any kernel * command-line parameters. */ void __init platform_init(unsigned long r3, unsigned long r4, unsigned long r5, unsigned long r6, unsigned long r7) { parse_bootinfo(find_bootinfo()); /* * If we were passed in a board information, copy it into the * residual data area. */ if (r3) { memcpy((void *) __res, (void *) (r3 + KERNELBASE), sizeof (bd_t)); } #if defined(CONFIG_BLK_DEV_INITRD) /* * If the init RAM disk has been configured in, and there's a valid * starting address for it, set it up. */ if (r4) { initrd_start = r4 + KERNELBASE; initrd_end = r5 + KERNELBASE; } #endif /* CONFIG_BLK_DEV_INITRD */ /* Copy the kernel command line arguments to a safe place. */ if (r6) { *(char *) (r7 + KERNELBASE) = 0; strcpy(cmd_line, (char *) (r6 + KERNELBASE)); } #if defined(CONFIG_PPC405_WDT) /* Look for wdt= option on command line */ if (strstr(cmd_line, "wdt=")) { int valid_wdt = 0; char *p, *q; for (q = cmd_line; (p = strstr(q, "wdt=")) != 0;) { q = p + 4; if (p > cmd_line && p[-1] != ' ') continue; wdt_period = simple_strtoul(q, &q, 0); valid_wdt = 1; ++q; } wdt_enable = valid_wdt; } #endif /* Initialize machine-dependency vectors */ ppc_md.setup_arch = ppc4xx_setup_arch; ppc_md.show_percpuinfo = ppc4xx_show_percpuinfo; ppc_md.show_cpuinfo = ppc4xx_show_cpuinfo; ppc_md.init_IRQ = ppc4xx_init_IRQ; ppc_md.restart = ppc4xx_restart; ppc_md.power_off = ppc4xx_power_off; ppc_md.halt = ppc4xx_halt; ppc_md.calibrate_decr = ppc4xx_calibrate_decr; #ifdef CONFIG_PPC405_WDT ppc_md.heartbeat = ppc4xx_wdt_heartbeat; #endif ppc_md.heartbeat_count = 0; ppc_md.find_end_of_memory = ppc4xx_find_end_of_memory; ppc_md.setup_io_mappings = m4xx_map_io; #ifdef CONFIG_DEBUG_TEXT ppc_md.progress = ppc4xx_progress; #endif /* ** m8xx_setup.c, prep_setup.c use ** defined(CONFIG_BLK_DEV_IDE) || defined(CONFIG_BLK_DEV_IDE_MODULE) */ #ifdef CONFIG_IDE # ifdef CONFIG_PCI ppc_ide_md.ide_init_hwif = ppc4xx_ide_init_hwif_ports; # endif #endif board_init(); return; } |