Changeset 699f3bc in mainline
- Timestamp:
- 2011-08-15T13:23:54Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 86a34d3e, 8d8eeb9
- Parents:
- 577fe9b6
- Location:
- boot/arch/ia64
- Files:
-
- 3 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
boot/arch/ia64/Makefile.inc
r577fe9b6 r699f3bc 47 47 arch/$(BARCH)/src/sal.c \ 48 48 arch/$(BARCH)/src/sal_asm.S \ 49 arch/$(BARCH)/src/pal.c \ 50 arch/$(BARCH)/src/pal_asm.S \ 49 51 arch/$(BARCH)/src/putchar.c \ 50 52 $(COMPS_C) \ -
boot/arch/ia64/src/main.c
r577fe9b6 r699f3bc 36 36 #include <genarch/efi.h> 37 37 #include <arch/sal.h> 38 #include <arch/pal.h> 38 39 #include <halt.h> 39 40 #include <printf.h> … … 121 122 { 122 123 if (bootpar) { 123 /* TODO: read the real value from PAL */ 124 bootinfo.freq_scale = DEFAULT_FREQ_SCALE; 124 bootinfo.freq_scale = pal_proc_freq_ratio(); 125 125 } else { 126 126 /* Configure default values for simulators. */ -
boot/arch/ia64/src/sal.c
r577fe9b6 r699f3bc 32 32 static sal_ap_wakeup_desc_t *sal_ap_wakeup; 33 33 34 uint64_t pal_proc = 0;34 extern uint64_t pal_proc; 35 35 36 36 uint64_t sal_proc = 0;
Note:
See TracChangeset
for help on using the changeset viewer.