Ignore:
Timestamp:
2006-09-12T13:03:55Z (19 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
6eabb6e6
Parents:
7bb6b06
Message:

sparc64 work:

  • find a CPU node and read its clock_frequency attribute
  • implement asm_delay_loop()
  • set TICK_COMPARE register according to processor frequency
  • small improvements at random places

OpenFirmware work:

  • two new functions for walking the device tree

Generic boot loader work:

  • added basic string functions

Usual pile of indentation and formatting fixes.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • kernel/arch/sparc64/include/boot/boot.h

    r7bb6b06 r9a5b556  
    8484
    8585typedef struct {
     86        uint32_t clock_frequency;
     87} processor_t;
     88
     89typedef struct {
    8690        taskmap_t taskmap;
    8791        memmap_t memmap;
    8892        screen_t screen;
    8993        keyboard_t keyboard;
     94        processor_t processor;
    9095} bootinfo_t;
    9196
Note: See TracChangeset for help on using the changeset viewer.