Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • kernel/arch/mips32/src/mm/frame.c

    r42f60375 r933cadf  
    131131}
    132132
    133 static void frame_add_region(pfn_t start_frame, pfn_t end_frame, bool low)
    134 {
    135         if (end_frame <= start_frame)
    136                 return;
    137 
    138         uintptr_t base = start_frame << ZERO_PAGE_WIDTH;
    139         size_t size = (end_frame - start_frame) << ZERO_PAGE_WIDTH;
    140 
    141         if (!frame_adjust_zone_bounds(low, &base, &size))
    142                 return;
    143 
    144         pfn_t first = ADDR2PFN(base);
    145         size_t count = SIZE2FRAMES(size);
    146         pfn_t conf_frame;
    147 
    148         if (low) {
     133static void frame_add_region(pfn_t start_frame, pfn_t end_frame)
     134{
     135        if (end_frame > start_frame) {
     136                /* Convert 1M frames to 16K frames */
     137                pfn_t first = ADDR2PFN(start_frame << ZERO_PAGE_WIDTH);
     138                pfn_t count = ADDR2PFN((end_frame - start_frame) << ZERO_PAGE_WIDTH);
     139               
    149140                /* Interrupt vector frame is blacklisted */
     141                pfn_t conf_frame;
    150142                if (first == 0)
    151143                        conf_frame = 1;
    152144                else
    153145                        conf_frame = first;
    154                 zone_create(first, count, conf_frame,
    155                     ZONE_AVAILABLE | ZONE_LOWMEM);
    156         } else {
    157                 conf_frame = zone_external_conf_alloc(count);
    158                 zone_create(first, count, conf_frame,
    159                     ZONE_AVAILABLE | ZONE_HIGHMEM);
    160         }
    161                
    162                
    163         if (phys_regions_count < MAX_REGIONS) {
    164                 phys_regions[phys_regions_count].start = first;
    165                 phys_regions[phys_regions_count].count = count;
    166                 phys_regions_count++;
     146               
     147                zone_create(first, count, conf_frame, 0);
     148               
     149                if (phys_regions_count < MAX_REGIONS) {
     150                        phys_regions[phys_regions_count].start = first;
     151                        phys_regions[phys_regions_count].count = count;
     152                        phys_regions_count++;
     153                }
    167154        }
    168155}
     
    178165 *
    179166 */
    180 void frame_low_arch_init(void)
     167void frame_arch_init(void)
    181168{
    182169        ipl_t ipl = interrupts_disable();
     
    237224               
    238225                if (!avail) {
    239                         frame_add_region(start_frame, frame, true);
     226                        frame_add_region(start_frame, frame);
    240227                        start_frame = frame + 1;
    241228                        avail = true;
     
    243230        }
    244231       
    245         frame_add_region(start_frame, frame, true);
     232        frame_add_region(start_frame, frame);
    246233       
    247234        /* Blacklist interrupt vector frame */
     
    259246}
    260247
    261 void frame_high_arch_init(void)
    262 {
    263 }
    264248
    265249void physmem_print(void)
Note: See TracChangeset for help on using the changeset viewer.