mirror of
				https://github.com/smaeul/u-boot.git
				synced 2025-10-31 03:58:17 +00:00 
			
		
		
		
	Fixed rarp boot method for IA32 and other little-endian CPUs. * Patch by Marc Singer, 28 May 2003: Added port I/O commands. * Patch by Matthew McClintock, 28 May 2003 - cpu/mpc824x/start.S: fix relocation code when booting from RAM - minor patches for utx8245 * Patch by Daniel Engström, 28 May 2003: x86 update * Patch by Dave Ellis, 9 May 2003 + 27 May 2003: add nand flash support to SXNI855T configuration fix/extend nand flash support: - fix 'nand erase' command so does not erase bad blocks - fix 'nand write' command so does not write to bad blocks - fix nand_probe() so handles no flash detected properly - add doc/README.nand - add .jffs2 and .oob options to nand read/write - add 'nand bad' command to list bad blocks - add 'clean' option to 'nand erase' to write JFFS2 clean markers - make NAND read/write faster * Patch by Rune Torgersen, 23 May 2003: Update for MPC8266ADS board
		
			
				
	
	
		
			77 lines
		
	
	
		
			2.8 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			77 lines
		
	
	
		
			2.8 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
| /*
 | |
|  * (C) Copyright 2002 ELTEC Elektronik AG
 | |
|  * Frank Gottschling <fgottschling@eltec.de>
 | |
|  *
 | |
|  * See file CREDITS for list of people who contributed to this
 | |
|  * project.
 | |
|  *
 | |
|  * This program is free software; you can redistribute it and/or
 | |
|  * modify it under the terms of the GNU General Public License as
 | |
|  * published by the Free Software Foundation; either version 2 of
 | |
|  * the License, or (at your option) any later version.
 | |
|  *
 | |
|  * This program is distributed in the hope that 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
 | |
|  */
 | |
| 
 | |
| /* i8042.h - Intel 8042 keyboard driver header */
 | |
| 
 | |
| #ifndef _I8042_H_
 | |
| #define _I8042_H_
 | |
| 
 | |
| #ifdef __I386__
 | |
| #include <common.h>
 | |
| #include <asm/io.h>
 | |
| #define in8(p) inb(p)
 | |
| #define out8(p,v) outb(v,p)
 | |
| #endif
 | |
| 
 | |
| /* defines */
 | |
| 
 | |
| #define I8042_DATA_REG      (CFG_ISA_IO + 0x0060)    /* keyboard i/o buffer */
 | |
| #define I8042_STATUS_REG    (CFG_ISA_IO + 0x0064)    /* keyboard status read */
 | |
| #define I8042_COMMAND_REG   (CFG_ISA_IO + 0x0064)    /* keyboard ctrl write */
 | |
| 
 | |
| #define KBD_US              0        /* default US layout */
 | |
| #define KBD_GER             1        /* german layout */
 | |
| 
 | |
| #define KBD_TIMEOUT         1000     /* 1 sec */
 | |
| #define KBD_RESET_TRIES     3
 | |
| 
 | |
| #define AS                  0        /* normal character index */
 | |
| #define SH                  1        /* shift index */
 | |
| #define CN                  2        /* control index */
 | |
| #define NM                  3        /* numeric lock index */
 | |
| #define AK                  4        /* right alt key */
 | |
| #define CP                  5        /* capslock index */
 | |
| #define ST                  6        /* stop output index */
 | |
| #define EX                  7        /* extended code index */
 | |
| #define ES                  8        /* escape and extended code index */
 | |
| 
 | |
| #define NORMAL              0x0000    /* normal key */
 | |
| #define STP                 0x0001    /* scroll lock stop output*/
 | |
| #define NUM                 0x0002    /* numeric lock */
 | |
| #define CAPS                0x0004    /* capslock */
 | |
| #define SHIFT               0x0008    /* shift */
 | |
| #define CTRL                0x0010    /* control*/
 | |
| #define EXT                 0x0020    /* extended scan code 0xe0 */
 | |
| #define ESC                 0x0040    /* escape key press */
 | |
| #define E1                  0x0080    /* extended scan code 0xe1 */
 | |
| #define BRK                 0x0100    /* make break flag for keyboard */
 | |
| #define ALT                 0x0200    /* right alt */
 | |
| 
 | |
| /* exports */
 | |
| 
 | |
| int i8042_kbd_init(void);
 | |
| int i8042_tstc(void);
 | |
| int i8042_getc(void);
 | |
| 
 | |
| #endif /* _I8042_H_ */
 |