diff options
| author | Linus Torvalds <torvalds@g5.osdl.org> | 2006-11-06 12:06:53 -0500 |
|---|---|---|
| committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-11-06 12:06:53 -0500 |
| commit | bee42f626e2fee83cb7b51be9dc658c4f4046e77 (patch) | |
| tree | a1abdfc1067ea4ae655f5832545b778a1608a881 /arch/s390/kernel | |
| parent | 64cb104e9d52f60cc18b9ed0d17edb34110a46b2 (diff) | |
| parent | c4972f33169e3e1ce06ad00917ddaf2c3b49b36a (diff) | |
Merge branch 'for-linus' of git://git390.osdl.marist.edu/pub/scm/linux-2.6
* 'for-linus' of git://git390.osdl.marist.edu/pub/scm/linux-2.6:
[S390] IRQs too early enabled.
[S390] revert add_active_range() usage patch.
Diffstat (limited to 'arch/s390/kernel')
| -rw-r--r-- | arch/s390/kernel/setup.c | 55 |
1 files changed, 42 insertions, 13 deletions
diff --git a/arch/s390/kernel/setup.c b/arch/s390/kernel/setup.c index 49f2b68e32b1..2aa13e8e000a 100644 --- a/arch/s390/kernel/setup.c +++ b/arch/s390/kernel/setup.c | |||
| @@ -70,6 +70,7 @@ struct { | |||
| 70 | #define CHUNK_READ_WRITE 0 | 70 | #define CHUNK_READ_WRITE 0 |
| 71 | #define CHUNK_READ_ONLY 1 | 71 | #define CHUNK_READ_ONLY 1 |
| 72 | volatile int __cpu_logical_map[NR_CPUS]; /* logical cpu to cpu address */ | 72 | volatile int __cpu_logical_map[NR_CPUS]; /* logical cpu to cpu address */ |
| 73 | unsigned long __initdata zholes_size[MAX_NR_ZONES]; | ||
| 73 | static unsigned long __initdata memory_end; | 74 | static unsigned long __initdata memory_end; |
| 74 | 75 | ||
| 75 | /* | 76 | /* |
| @@ -357,6 +358,21 @@ void machine_power_off(void) | |||
| 357 | */ | 358 | */ |
| 358 | void (*pm_power_off)(void) = machine_power_off; | 359 | void (*pm_power_off)(void) = machine_power_off; |
| 359 | 360 | ||
| 361 | static void __init | ||
| 362 | add_memory_hole(unsigned long start, unsigned long end) | ||
| 363 | { | ||
| 364 | unsigned long dma_pfn = MAX_DMA_ADDRESS >> PAGE_SHIFT; | ||
| 365 | |||
| 366 | if (end <= dma_pfn) | ||
| 367 | zholes_size[ZONE_DMA] += end - start + 1; | ||
| 368 | else if (start > dma_pfn) | ||
| 369 | zholes_size[ZONE_NORMAL] += end - start + 1; | ||
| 370 | else { | ||
| 371 | zholes_size[ZONE_DMA] += dma_pfn - start + 1; | ||
| 372 | zholes_size[ZONE_NORMAL] += end - dma_pfn; | ||
| 373 | } | ||
| 374 | } | ||
| 375 | |||
| 360 | static int __init early_parse_mem(char *p) | 376 | static int __init early_parse_mem(char *p) |
| 361 | { | 377 | { |
| 362 | memory_end = memparse(p, &p); | 378 | memory_end = memparse(p, &p); |
| @@ -434,7 +450,7 @@ setup_lowcore(void) | |||
| 434 | lc->extended_save_area_addr = (__u32) | 450 | lc->extended_save_area_addr = (__u32) |
| 435 | __alloc_bootmem(PAGE_SIZE, PAGE_SIZE, 0); | 451 | __alloc_bootmem(PAGE_SIZE, PAGE_SIZE, 0); |
| 436 | /* enable extended save area */ | 452 | /* enable extended save area */ |
| 437 | ctl_set_bit(14, 29); | 453 | __ctl_set_bit(14, 29); |
| 438 | } | 454 | } |
| 439 | #endif | 455 | #endif |
| 440 | set_prefix((u32)(unsigned long) lc); | 456 | set_prefix((u32)(unsigned long) lc); |
| @@ -478,6 +494,7 @@ setup_memory(void) | |||
| 478 | { | 494 | { |
| 479 | unsigned long bootmap_size; | 495 | unsigned long bootmap_size; |
| 480 | unsigned long start_pfn, end_pfn, init_pfn; | 496 | unsigned long start_pfn, end_pfn, init_pfn; |
| 497 | unsigned long last_rw_end; | ||
| 481 | int i; | 498 | int i; |
| 482 | 499 | ||
| 483 | /* | 500 | /* |
| @@ -533,27 +550,39 @@ setup_memory(void) | |||
| 533 | /* | 550 | /* |
| 534 | * Register RAM areas with the bootmem allocator. | 551 | * Register RAM areas with the bootmem allocator. |
| 535 | */ | 552 | */ |
| 553 | last_rw_end = start_pfn; | ||
| 536 | 554 | ||
| 537 | for (i = 0; i < MEMORY_CHUNKS && memory_chunk[i].size > 0; i++) { | 555 | for (i = 0; i < MEMORY_CHUNKS && memory_chunk[i].size > 0; i++) { |
| 538 | unsigned long start_chunk, end_chunk, pfn; | 556 | unsigned long start_chunk, end_chunk; |
| 539 | 557 | ||
| 540 | if (memory_chunk[i].type != CHUNK_READ_WRITE) | 558 | if (memory_chunk[i].type != CHUNK_READ_WRITE) |
| 541 | continue; | 559 | continue; |
| 542 | start_chunk = PFN_DOWN(memory_chunk[i].addr); | 560 | start_chunk = (memory_chunk[i].addr + PAGE_SIZE - 1); |
| 543 | end_chunk = start_chunk + PFN_DOWN(memory_chunk[i].size) - 1; | 561 | start_chunk >>= PAGE_SHIFT; |
| 544 | end_chunk = min(end_chunk, end_pfn); | 562 | end_chunk = (memory_chunk[i].addr + memory_chunk[i].size); |
| 545 | if (start_chunk >= end_chunk) | 563 | end_chunk >>= PAGE_SHIFT; |
| 546 | continue; | 564 | if (start_chunk < start_pfn) |
| 547 | add_active_range(0, start_chunk, end_chunk); | 565 | start_chunk = start_pfn; |
| 548 | pfn = max(start_chunk, start_pfn); | 566 | if (end_chunk > end_pfn) |
| 549 | for (; pfn <= end_chunk; pfn++) | 567 | end_chunk = end_pfn; |
| 550 | page_set_storage_key(PFN_PHYS(pfn), PAGE_DEFAULT_KEY); | 568 | if (start_chunk < end_chunk) { |
| 569 | /* Initialize storage key for RAM pages */ | ||
| 570 | for (init_pfn = start_chunk ; init_pfn < end_chunk; | ||
| 571 | init_pfn++) | ||
| 572 | page_set_storage_key(init_pfn << PAGE_SHIFT, | ||
| 573 | PAGE_DEFAULT_KEY); | ||
| 574 | free_bootmem(start_chunk << PAGE_SHIFT, | ||
| 575 | (end_chunk - start_chunk) << PAGE_SHIFT); | ||
| 576 | if (last_rw_end < start_chunk) | ||
| 577 | add_memory_hole(last_rw_end, start_chunk - 1); | ||
| 578 | last_rw_end = end_chunk; | ||
| 579 | } | ||
| 551 | } | 580 | } |
| 552 | 581 | ||
| 553 | psw_set_key(PAGE_DEFAULT_KEY); | 582 | psw_set_key(PAGE_DEFAULT_KEY); |
| 554 | 583 | ||
| 555 | free_bootmem_with_active_regions(0, max_pfn); | 584 | if (last_rw_end < end_pfn - 1) |
| 556 | reserve_bootmem(0, PFN_PHYS(start_pfn)); | 585 | add_memory_hole(last_rw_end, end_pfn - 1); |
| 557 | 586 | ||
| 558 | /* | 587 | /* |
| 559 | * Reserve the bootmem bitmap itself as well. We do this in two | 588 | * Reserve the bootmem bitmap itself as well. We do this in two |
