From: James S. <jsi...@us...> - 2001-11-26 19:57:44
|
Update of /cvsroot/linux-mips/linux/arch/mips/mips-boards/generic In directory usw-pr-cvs1:/tmp/cvs-serv3172/arch/mips/mips-boards/generic Added Files: init.c printf.c Log Message: Cleanup of include/asm-mips/io.h. Now looks neat and harmless. --- NEW FILE: init.c --- /* * Carsten Langgaard, car...@mi... * Copyright (C) 1999,2000 MIPS Technologies, Inc. All rights reserved. * * This program is free software; you can distribute it and/or modify it * under the terms of the GNU General Public License (Version 2) as * published by the Free Software Foundation. * * This program is distributed in the hope 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. * * PROM library initialisation code. */ #include <linux/config.h> #include <linux/init.h> #include <linux/string.h> #include <linux/kernel.h> #include <asm/io.h> #include <asm/mips-boards/prom.h> #include <asm/mips-boards/generic.h> #include <asm/gt64120.h> #include <asm/mips-boards/malta.h> /* Environment variable */ typedef struct { char *name; char *val; } t_env_var; int prom_argc; char **prom_argv, **prom_envp; int init_debug = 0; char *prom_getenv(char *envname) { /* * Return a pointer to the given environment variable. */ t_env_var *env = (t_env_var *)prom_envp; int i; i = strlen(envname); while(env->name) { if(strncmp(envname, env->name, i) == 0) { return(env->val); } env++; } return(NULL); } static inline unsigned char str2hexnum(unsigned char c) { if(c >= '0' && c <= '9') return c - '0'; if(c >= 'a' && c <= 'f') return c - 'a' + 10; return 0; /* foo */ } static inline void str2eaddr(unsigned char *ea, unsigned char *str) { int i; for(i = 0; i < 6; i++) { unsigned char num; if((*str == '.') || (*str == ':')) str++; num = str2hexnum(*str++) << 4; num |= (str2hexnum(*str++)); ea[i] = num; } } int get_ethernet_addr(char *ethernet_addr) { char *ethaddr_str; ethaddr_str = prom_getenv("ethaddr"); if (!ethaddr_str) { printk("ethaddr not set in boot prom\n"); return -1; } str2eaddr(ethernet_addr, ethaddr_str); if (init_debug > 1) { int i; printk("get_ethernet_addr: "); for (i=0; i<5; i++) printk("%02x:", (unsigned char)*(ethernet_addr+i)); printk("%02x\n", *(ethernet_addr+i)); } return 0; } int __init prom_init(int argc, char **argv, char **envp) { prom_argc = argc; prom_argv = argv; prom_envp = envp; mips_display_message("LINUX"); /* * Setup the North bridge to do Master byte-lane swapping when * running in bigendian. */ #if defined(__MIPSEL__) GT_WRITE(GT_PCI0_CMD_OFS, GT_PCI0_CMD_MBYTESWAP_BIT | GT_PCI0_CMD_SBYTESWAP_BIT); #else GT_WRITE(GT_PCI0_CMD_OFS, 0); #endif #if defined(CONFIG_MIPS_MALTA) set_io_port_base(MALTA_PORT_BASE); #else set_io_port_base(KSEG1); #endif setup_prom_printf(0); prom_printf("\nLINUX started...\n"); prom_init_cmdline(); prom_meminit(); return 0; } --- NEW FILE: printf.c --- /* * Carsten Langgaard, car...@mi... * Copyright (C) 1999,2000 MIPS Technologies, Inc. All rights reserved. * * ######################################################################## * * This program is free software; you can distribute it and/or modify it * under the terms of the GNU General Public License (Version 2) as * published by the Free Software Foundation. * * This program is distributed in the hope 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. * * ######################################################################## * * Putting things on the screen/serial line using YAMONs facilities. * */ #include <linux/config.h> #include <linux/init.h> #include <linux/kernel.h> #include <linux/serialP.h> #include <linux/serial_reg.h> #include <asm/system.h> #include <asm/io.h> #include <asm/serial.h> #ifdef CONFIG_MIPS_ATLAS /* * Atlas registers are memory mapped on 64-bit aligned boundaries and * only word access are allowed. * When reading the UART 8 bit registers only the LSB are valid. */ unsigned int atlas_serial_in(struct async_struct *info, int offset) { return inl(info->port + offset*8) & 0xff; } void atlas_serial_out(struct async_struct *info, int offset, int value) { outl(value, info->port + offset*8); } #define serial_in atlas_serial_in #define serial_out atlas_serial_out #else static unsigned int serial_in(struct async_struct *info, int offset) { return inb(info->port + offset); } static void serial_out(struct async_struct *info, int offset, int value) { outb(value, info->port + offset); } #endif static struct serial_state rs_table[] = { SERIAL_PORT_DFNS /* Defined in serial.h */ }; /* * Hooks to fake "prom" console I/O before devices * are fully initialized. */ static struct async_struct prom_port_info = {0}; void __init setup_prom_printf(int tty_no) { struct serial_state *ser = &rs_table[tty_no]; prom_port_info.state = ser; prom_port_info.magic = SERIAL_MAGIC; prom_port_info.port = ser->port; prom_port_info.flags = ser->flags; /* No setup of UART - assume YAMON left in sane state */ } int putPromChar(char c) { if (!prom_port_info.state) { /* need to init device first */ return 0; } while ((serial_in(&prom_port_info, UART_LSR) & UART_LSR_THRE) == 0) ; serial_out(&prom_port_info, UART_TX, c); return 1; } char getPromChar(void) { if (!prom_port_info.state) { /* need to init device first */ return 0; } while (!(serial_in(&prom_port_info, UART_LSR) & 1)) ; return(serial_in(&prom_port_info, UART_RX)); } static char buf[1024]; void __init prom_printf(char *fmt, ...) { va_list args; int l; char *p, *buf_end; long flags; int putPromChar(char); /* Low level, brute force, not SMP safe... */ save_and_cli(flags); va_start(args, fmt); l = vsprintf(buf, fmt, args); /* hopefully i < sizeof(buf) */ va_end(args); buf_end = buf + l; for (p = buf; p < buf_end; p++) { /* Crude cr/nl handling is better than none */ if(*p == '\n')putPromChar('\r'); putPromChar(*p); } restore_flags(flags); } |