Changeset ff685c9 in mainline for kernel/arch/ia32/src/ia32.c


Ignore:
Timestamp:
2009-03-03T23:00:33Z (16 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
150385b9
Parents:
9cd98796
Message:

Make the kbd port drivers platform neutral by using PIO functions.
The kernel now supplies the physical address and the kernel virtual address.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • kernel/arch/ia32/src/ia32.c

    r9cd98796 rff685c9  
    158158        sysinfo_set_item_val("kbd.devno", NULL, devno);
    159159        sysinfo_set_item_val("kbd.inr", NULL, IRQ_KBD);
     160        sysinfo_set_item_val("kbd.address.physical", NULL,
     161            (uintptr_t) I8042_BASE);
     162        sysinfo_set_item_val("kbd.address.kernel", NULL,
     163            (uintptr_t) I8042_BASE);
    160164}
    161165
Note: See TracChangeset for help on using the changeset viewer.