Changeset 5d684e4 in mainline for kernel/arch
- Timestamp:
- 2006-09-23T13:12:10Z (19 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 6ff1f1e
- Parents:
- 28ecadb
- Location:
- kernel/arch/sparc64
- Files:
-
- 2 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/arch/sparc64/Makefile.inc
r28ecadb r5d684e4 96 96 arch/$(ARCH)/src/ddi/ddi.c \ 97 97 arch/$(ARCH)/src/drivers/tick.c \ 98 arch/$(ARCH)/src/drivers/kbd.c 98 arch/$(ARCH)/src/drivers/kbd.c \ 99 arch/$(ARCH)/src/drivers/scr.c 99 100 100 101 ifeq ($(CONFIG_TSB),y) -
kernel/arch/sparc64/include/boot/boot.h
r28ecadb r5d684e4 72 72 73 73 typedef struct { 74 uintptr_t addr;75 uint32_t width;76 uint32_t height;77 uint32_t bpp;78 uint32_t scanline;79 } screen_t;80 81 typedef struct {82 74 uint32_t clock_frequency; 83 75 } processor_t; … … 90 82 taskmap_t taskmap; 91 83 memmap_t memmap; 92 screen_t screen;93 84 processor_t processor; 94 85 ballocs_t ballocs; -
kernel/arch/sparc64/src/console.c
r28ecadb r5d684e4 36 36 #include <arch/types.h> 37 37 #include <typedefs.h> 38 #include <genarch/fb/fb.h>39 #include <arch/drivers/fb.h>40 38 39 #include <arch/drivers/scr.h> 41 40 #include <arch/drivers/kbd.h> 41 42 42 #ifdef CONFIG_Z8530 43 43 #include <genarch/kbd/z8530.h> … … 53 53 #include <proc/thread.h> 54 54 #include <arch/mm/tlb.h> 55 #include <arch/boot/boot.h>56 55 #include <genarch/ofw/ofw_tree.h> 57 56 #include <arch.h> … … 84 83 panic("Can't find %s\n", prop->value); 85 84 86 fb_init(bootinfo.screen.addr, bootinfo.screen.width, bootinfo.screen.height, 87 bootinfo.screen.bpp, bootinfo.screen.scanline, true); 88 85 scr_init(screen); 86 89 87 prop = ofw_tree_getprop(aliases, "keyboard"); 90 88 if (!prop)
Note:
See TracChangeset
for help on using the changeset viewer.