Changeset ed0dd65 in mainline for arch/ia32/include/smp


Ignore:
Timestamp:
2005-04-30T16:47:17Z (21 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
30ef8ce
Parents:
10a2e22
Message:

More ACPI work.
Initial MADT table parsing.

SMP renaming and reorganization to reflect there are more ways to bring SMP up.

File:
1 moved

Legend:

Unmodified
Added
Removed
  • arch/ia32/include/smp/mps.h

    r10a2e22 red0dd65  
    2727 */
    2828
    29 #ifndef __MP_H__
    30 #define __MP_H__
     29#ifndef __MPS_H__
     30#define __MPS_H__
    3131
    3232#include <arch/types.h>
     
    3838#define CT_EXT_ENTRY_LEN                1
    3939
    40 struct __mpfs {
     40struct mps_fs {
    4141        __u32 signature;
    42         struct __mpct *configuration_table;
     42        struct mps_ct *configuration_table;
    4343        __u8 length;
    4444        __u8 revision;
     
    5151} __attribute__ ((packed));
    5252
    53 struct __mpct {
     53struct mps_ct {
    5454        __u32 signature;
    5555        __u16 base_table_length;
     
    118118extern waitq_t kmp_completion_wq;
    119119
    120 extern int mp_irq_to_pin(int irq);
     120extern int mps_irq_to_pin(int irq);
    121121
    122 extern void mp_init(void);
     122extern void mps_init(void);
    123123extern void kmp(void *arg);
    124124
Note: See TracChangeset for help on using the changeset viewer.