Changeset 0d107f31 in mainline for kernel/arch/sparc64/src/sparc64.c


Ignore:
Timestamp:
2006-10-13T20:42:54Z (18 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
7dcf22a
Parents:
8ce8499
Message:

Prototypical implementation of new IRQ redirector in sparc64.
The new code can support shared IRQs in kernel (and multiple IRQs per device).
Userspace support is yet to be written.
The only architecture that uses this code is actually sparc64 only.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • kernel/arch/sparc64/src/sparc64.c

    r8ce8499 r0d107f31  
    4747#include <genarch/ofw/ofw_tree.h>
    4848#include <userspace.h>
     49#include <irq.h>
    4950
    5051bootinfo_t bootinfo;
     
    7778void arch_post_mm_init(void)
    7879{
    79         if (config.cpu_active == 1)
     80        if (config.cpu_active == 1) {
     81                irq_init(1<<11, 128);
    8082                standalone_sparc64_console_init();
     83        }
    8184}
    8285
Note: See TracChangeset for help on using the changeset viewer.