Changeset 9970a5a in mainline for kernel/arch/ia64/src/ia64.c
- Timestamp:
- 2012-01-27T23:24:27Z (13 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 7b3b571, fe56c08a
- Parents:
- d81eaf94 (diff), 221c9ec (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/arch/ia64/src/ia64.c
rd81eaf94 r9970a5a 53 53 #include <genarch/srln/srln.h> 54 54 #include <mm/page.h> 55 #include <mm/km.h> 55 56 56 57 #ifdef MACHINE_ski … … 69 70 void arch_pre_main(void) 70 71 { 71 init.cnt = min3(bootinfo->taskmap.cnt, TASKMAP_MAX_RECORDS, CONFIG_INIT_TASKS); 72 init.cnt = min3(bootinfo->taskmap.cnt, TASKMAP_MAX_RECORDS, 73 CONFIG_INIT_TASKS); 72 74 size_t i; 75 73 76 for (i = 0; i < init.cnt; i++) { 74 init.tasks[i].addr = 75 ((unsigned long) bootinfo->taskmap.tasks[i].addr) | 76 VRN_MASK; 77 init.tasks[i].paddr = 78 (uintptr_t) bootinfo->taskmap.tasks[i].addr; 77 79 init.tasks[i].size = bootinfo->taskmap.tasks[i].size; 78 80 str_cpy(init.tasks[i].name, CONFIG_TASK_NAME_BUFLEN, … … 87 89 static void iosapic_init(void) 88 90 { 89 uintptr_t IOSAPIC = hw_map(iosapic_base, PAGE_SIZE); 91 uintptr_t IOSAPIC = km_map(iosapic_base, PAGE_SIZE, 92 PAGE_WRITE | PAGE_NOT_CACHEABLE); 90 93 int i; 91 94 … … 115 118 if (config.cpu_active == 1) { 116 119 /* Map the page with legacy I/O. */ 117 legacyio_virt_base = hw_map(LEGACYIO_PHYS_BASE, LEGACYIO_SIZE); 120 legacyio_virt_base = km_map(LEGACYIO_PHYS_BASE, LEGACYIO_SIZE, 121 PAGE_WRITE | PAGE_NOT_CACHEABLE); 118 122 119 123 iosapic_init();
Note:
See TracChangeset
for help on using the changeset viewer.