Changeset f8ddd17 in mainline for uspace/fb/fb.c


Ignore:
Timestamp:
2006-12-09T20:20:50Z (18 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
b82a13c
Parents:
9ab9c2ec
Message:

Rework support for virtually indexed cache.
Instead of repeatedly flushing the data cache, which was a huge overkill, refuse to create an illegal address alias
in the kernel (again) and allocate appropriate page color in userspace instead. Extend the detection also to
SYS_PHYSMEM_MAP syscall.

Add support for tracking physical memory areas mappable by SYS_PHYSMEM_MAP.

Lots of coding style changes.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/fb/fb.c

    r9ab9c2ec rf8ddd17  
    705705                /* We accept one area for data interchange */
    706706                if (IPC_GET_ARG1(*call) == shm_id) {
    707                         void *dest = as_get_mappable_page(IPC_GET_ARG2(*call));
     707                        void *dest = as_get_mappable_page(IPC_GET_ARG2(*call),
     708                                PAGE_COLOR(IPC_GET_ARG1(*call)));
    708709                        shm_size = IPC_GET_ARG2(*call);
    709                         if (!ipc_answer_fast(callid, 0, (sysarg_t)dest, 0))
     710                        if (!ipc_answer_fast(callid, 0, (sysarg_t) dest, 0))
    710711                                shm = dest;
    711712                        else
     
    717718                } else {
    718719                        intersize = IPC_GET_ARG2(*call);
    719                         receive_comm_area(callid,call,(void *)&interbuffer);
     720                        receive_comm_area(callid, call, (void *) &interbuffer);
    720721                }
    721722                return 1;
     
    12831284
    12841285        asz = fb_scanline * fb_height;
    1285         fb_addr = as_get_mappable_page(asz);
     1286        fb_addr = as_get_mappable_page(asz, (int) sysinfo_value("fb.address.color"));
    12861287       
    12871288        physmem_map(fb_ph_addr, fb_addr, ALIGN_UP(asz, PAGE_SIZE) >> PAGE_WIDTH,
    12881289                    AS_AREA_READ | AS_AREA_WRITE);
    12891290
    1290         if (screen_init(fb_addr, fb_width, fb_height, fb_scanline, fb_visual, fb_invert_colors))
     1291        if (screen_init(fb_addr, fb_width, fb_height, fb_scanline, fb_visual,
     1292                fb_invert_colors))
    12911293                return 0;
    12921294       
Note: See TracChangeset for help on using the changeset viewer.