Changeset bd55bbb in mainline
- Timestamp:
- 2006-05-21T20:17:17Z (19 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 48c1ef9
- Parents:
- cf464d1
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
arch/mips32/src/console.c
rcf464d1 rbd55bbb 32 32 #include <arch/drivers/serial.h> 33 33 #include <arch/drivers/msim.h> 34 #include <genarch/fb/fb.h>35 34 36 35 void console_init(void) … … 42 41 } else { 43 42 msim_console(); 44 #ifdef CONFIG_FB45 fb_init(0xb2000000, 640, 480, 24, 1920); // gxemul framebuffer46 #endif47 43 } 48 44 } -
arch/mips32/src/mips32.c
rcf464d1 rbd55bbb 46 46 #include <console/chardev.h> 47 47 #include <arch/debugger.h> 48 #include <genarch/fb/fb.h> 48 49 49 50 #include <arch/asm/regname.h> … … 112 113 void arch_post_mm_init(void) 113 114 { 115 #ifdef CONFIG_FB 116 fb_init(0x12000000, 640, 480, 24, 1920); // gxemul framebuffer 117 #endif 114 118 } 115 119 -
arch/mips32/src/mm/page.c
rcf464d1 rbd55bbb 35 35 page_mapping_operations = &pt_mapping_operations; 36 36 } 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 } -
generic/src/ipc/sysipc.c
rcf464d1 rbd55bbb 514 514 /* Include phone address('id') of the caller in the request, 515 515 * copy whole call->data, not only call->data.args */ 516 STRUCT_TO_USPACE(calldata, &call->data); 516 if (STRUCT_TO_USPACE(calldata, &call->data)) { 517 return 0; 518 } 517 519 return (__native)call; 518 520 }
Note:
See TracChangeset
for help on using the changeset viewer.