Changeset 8424198 in mainline for arch/ppc32


Ignore:
Timestamp:
2006-05-18T21:45:16Z (19 years ago)
Author:
Martin Decky <martin@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
35f3b8c
Parents:
59477e3
Message:

unify the framebuffer API
use physical address as the base address for the framebuffer

Location:
arch/ppc32
Files:
1 deleted
3 edited

Legend:

Unmodified
Added
Removed
  • arch/ppc32/Makefile.inc

    r59477e3 r8424198  
    6262
    6363ARCH_SOURCES = \
    64         arch/$(ARCH)/src/console.c \
    6564        arch/$(ARCH)/src/context.S \
    6665        arch/$(ARCH)/src/debug/panic.s \
  • arch/ppc32/include/exception.h

    r59477e3 r8424198  
    7979static inline void istate_set_retaddr(istate_t *istate, __address retaddr)
    8080{
    81         /* TODO */
     81        istate->pc = retaddr;
    8282}
    8383
  • arch/ppc32/src/ppc32.c

    r59477e3 r8424198  
    5858        /* Start decrementer */
    5959        start_decrementer();
    60 
    61         ppc32_console_init();
    6260        cuda_init();
    6361}
     
    6664{
    6765        if (config.cpu_active == 1) {
     66                fb_init(bootinfo.screen.addr, bootinfo.screen.width, bootinfo.screen.height, bootinfo.screen.bpp, bootinfo.screen.scanline);   
     67       
    6868                /* Merge all zones to 1 big zone */
    6969                zone_merge_all();
Note: See TracChangeset for help on using the changeset viewer.