Changeset 91825d90 in mainline
- Timestamp:
- 2009-02-19T22:21:58Z (16 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- d1eece6
- Parents:
- 4544884
- Location:
- kernel
- Files:
-
- 1 deleted
- 4 edited
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
kernel/arch/amd64/src/amd64.c
r4544884 r91825d90 40 40 41 41 #include <proc/thread.h> 42 #include < arch/drivers/ega.h>42 #include <genarch/drivers/legacy/ia32/io.h> 43 43 #include <genarch/drivers/ega/ega.h> 44 44 #include <arch/drivers/vesa.h> -
kernel/arch/ia32/src/ia32.c
r4544884 r91825d90 39 39 #include <arch/pm.h> 40 40 41 #include < arch/drivers/ega.h>41 #include <genarch/drivers/legacy/ia32/io.h> 42 42 #include <genarch/drivers/ega/ega.h> 43 43 #include <arch/drivers/vesa.h> -
kernel/arch/ia64/src/ia64.c
r4544884 r91825d90 53 53 #include <ddi/device.h> 54 54 #include <arch/bootinfo.h> 55 #include < arch/drivers/ega.h>55 #include <genarch/drivers/legacy/ia32/io.h> 56 56 #include <genarch/drivers/ega/ega.h> 57 57 #include <genarch/kbd/i8042.h> -
kernel/genarch/include/drivers/legacy/ia32/io.h
r4544884 r91825d90 1 1 /* 2 * Copyright (c) 200 8Jakub Jermar2 * Copyright (c) 2009 Jakub Jermar 3 3 * All rights reserved. 4 4 * … … 31 31 */ 32 32 /** @file 33 * @brief This file contains definitions used by architectures with the 34 * ia32 legacy I/O space (i.e. ia32, amd64 and ia64). 33 35 */ 34 36 35 #ifndef KERN_ia32_EGA_H 36 #define KERN_ia32_EGA_H 37 #ifndef KERN_LEGACY_IA32_IO_H 38 #define KERN_LEGACY_IA32_IO_H 39 40 #include <arch/types.h> 41 42 #define i8042_BASE ((ioport8_t *)0x60) 37 43 38 44 #define EGA_VIDEORAM 0xb8000 -
kernel/genarch/src/kbd/i8042.c
r4544884 r91825d90 42 42 #include <genarch/kbd/scanc.h> 43 43 #include <genarch/kbd/scanc_pc.h> 44 #include <genarch/drivers/legacy/ia32/io.h> 44 45 #include <cpu.h> 45 46 #include <arch/asm.h> … … 52 53 53 54 i8042_instance_t lgcy_i8042_instance = { 54 .i8042 = (i8042_t *) 0x60,55 .i8042 = (i8042_t *) i8042_BASE, 55 56 }; 56 57
Note:
See TracChangeset
for help on using the changeset viewer.