Changeset bd55bbb in mainline for arch/mips32/src/mm/page.c


Ignore:
Timestamp:
2006-05-21T20:17:17Z (19 years ago)
Author:
Ondrej Palkovsky <ondrap@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
48c1ef9
Parents:
cf464d1
Message:

Fixed mips to compile with fb (missing hw_map).
Fixed mips hw virt/phys addresses of fb.
Moved fb_init to post_mm, because it needs malloc().

File:
1 edited

Legend:

Unmodified
Added
Removed
  • arch/mips32/src/mm/page.c

    rcf464d1 rbd55bbb  
    3535        page_mapping_operations = &pt_mapping_operations;
    3636}
     37
     38/** Map device into kernel space
     39 * - on mips, all devices are already mapped into kernel space,
     40 *   translate the physical address to uncached area
     41 */
     42__address hw_map(__address physaddr, size_t size)
     43{
     44        return physaddr + 0xa0000000;
     45}
Note: See TracChangeset for help on using the changeset viewer.