Changeset dfbc229 in mainline
- Timestamp:
- 2005-08-30T12:05:06Z (20 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 288a204
- Parents:
- bcdd9aa
- Location:
- arch
- Files:
-
- 1 deleted
- 6 edited
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
arch/ia32/src/asm.S
rbcdd9aa rdfbc229 35 35 .text 36 36 37 .global cpu_halt38 .global cpu_sleep39 37 .global paging_on 40 38 .global enable_l_apic_in_msr -
arch/ppc/Makefile.inc
rbcdd9aa rdfbc229 23 23 arch/mm/frame.c \ 24 24 arch/mm/page.c \ 25 arch/drivers/ vga.c25 arch/drivers/ofw.c -
arch/ppc/include/ppc.h
rbcdd9aa rdfbc229 27 27 */ 28 28 29 #ifndef __ VGA_H__30 #define __ VGA_H__29 #ifndef __ppc_PPC_H__ 30 #define __ppc_PPC_H__ 31 31 32 #define ROW 80 33 #define ROWS 25 34 #define SCREEN (ROW*ROWS) 35 36 extern void vga_init(void); 37 extern void vga_putchar(const char ch); 38 39 static void vga_check_cursor(void); 40 static void vga_display_char(char ch); 32 extern void early_init(int r3, int r4, int r5); 41 33 42 34 #endif -
arch/ppc/src/asm.s
rbcdd9aa rdfbc229 30 30 31 31 .global cpu_halt 32 .global cpu_sleep 33 32 34 cpu_halt: 33 35 b cpu_halt 34 36 37 cpu_sleep: 38 b cpu_sleep -
arch/ppc/src/dummy.s
rbcdd9aa rdfbc229 42 42 .global cpu_identify 43 43 .global cpu_arch_init 44 .global cpu_sleep45 44 .global cpu_print_report 46 45 .global get_memory_size … … 67 66 cpu_identify: 68 67 cpu_arch_init: 69 cpu_sleep:70 68 cpu_print_report: 71 69 get_memory_size: … … 77 75 dummy: 78 76 0: 79 b l0b77 b 0b -
arch/ppc/src/ppc.c
rbcdd9aa rdfbc229 1 1 /* 2 * Copyright (C) 200 1-2004 Jakub Jermar2 * Copyright (C) 2005 Martin Decky 3 3 * All rights reserved. 4 4 * … … 27 27 */ 28 28 29 #include <arch.h> 30 #include <arch/ppc.h> 31 #include <arch/drivers/ofw.h> 32 33 void early_init(int r3, int r4, int r5) 34 { 35 ofw = (ofw_entry) r5; 36 ofw_init(); 37 } -
arch/ppc/src/start.S
rbcdd9aa rdfbc229 32 32 33 33 kernel_image_start: 34 bl early_init 35 34 36 b main_bsp
Note:
See TracChangeset
for help on using the changeset viewer.