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


Ignore:
Timestamp:
2009-03-03T23:00:33Z (15 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/amd64/src/amd64.c

    r9cd98796 rff685c9  
    200200        sysinfo_set_item_val("kbd.devno", NULL, devno);
    201201        sysinfo_set_item_val("kbd.inr", NULL, IRQ_KBD);
     202        sysinfo_set_item_val("kbd.address.physical", NULL,
     203            (uintptr_t) I8042_BASE);
     204        sysinfo_set_item_val("kbd.address.kernel", NULL,
     205            (uintptr_t) I8042_BASE);
    202206}
    203207
Note: See TracChangeset for help on using the changeset viewer.