Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 186957
b: refs/heads/master
c: ef35486
h: refs/heads/master
i:
  186955: c976ab2
v: v3
  • Loading branch information
Jacob Pan authored and H. Peter Anvin committed Feb 20, 2010
1 parent 98b2832 commit fc81fdb
Show file tree
Hide file tree
Showing 3 changed files with 57 additions and 1 deletion.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 35f720c5930f689647d51ad77e2a8d6f0abf66c8
refs/heads/master: ef3548668c02cc8c3922f4423f32b53e662811c6
13 changes: 13 additions & 0 deletions trunk/arch/x86/include/asm/i8259.h
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,19 @@ static inline void outb_pic(unsigned char value, unsigned int port)

extern struct irq_chip i8259A_chip;

struct legacy_pic {
int nr_legacy_irqs;
struct irq_chip *chip;
void (*mask_all)(void);
void (*restore_mask)(void);
void (*init)(int auto_eoi);
int (*irq_pending)(unsigned int irq);
void (*make_irq)(unsigned int irq);
};

extern struct legacy_pic *legacy_pic;
extern struct legacy_pic null_legacy_pic;

extern void mask_8259A(void);
extern void unmask_8259A(void);

Expand Down
43 changes: 43 additions & 0 deletions trunk/arch/x86/kernel/i8259.c
Original file line number Diff line number Diff line change
Expand Up @@ -358,3 +358,46 @@ void init_8259A(int auto_eoi)

spin_unlock_irqrestore(&i8259A_lock, flags);
}
/*
* make i8259 a driver so that we can select pic functions at run time. the goal
* is to make x86 binary compatible among pc compatible and non-pc compatible
* platforms, such as x86 MID.
*/

static void __init legacy_pic_noop(void) { };
static void __init legacy_pic_uint_noop(unsigned int unused) { };
static void __init legacy_pic_int_noop(int unused) { };

static struct irq_chip dummy_pic_chip = {
.name = "dummy pic",
.mask = legacy_pic_uint_noop,
.unmask = legacy_pic_uint_noop,
.disable = legacy_pic_uint_noop,
.mask_ack = legacy_pic_uint_noop,
};
static int legacy_pic_irq_pending_noop(unsigned int irq)
{
return 0;
}

struct legacy_pic null_legacy_pic = {
.nr_legacy_irqs = 0,
.chip = &dummy_pic_chip,
.mask_all = legacy_pic_noop,
.restore_mask = legacy_pic_noop,
.init = legacy_pic_int_noop,
.irq_pending = legacy_pic_irq_pending_noop,
.make_irq = legacy_pic_uint_noop,
};

struct legacy_pic default_legacy_pic = {
.nr_legacy_irqs = NR_IRQS_LEGACY,
.chip = &i8259A_chip,
.mask_all = mask_8259A,
.restore_mask = unmask_8259A,
.init = init_8259A,
.irq_pending = i8259A_irq_pending,
.make_irq = make_8259A_irq,
};

struct legacy_pic *legacy_pic = &default_legacy_pic;

0 comments on commit fc81fdb

Please sign in to comment.