x86: Add pic_unmask_irq() helper

This patch implements the pic_unmask_irq() helper and uses it where
applicable. This function zeros the corresponding bit from the IRQ
number in IMR register.

This patch doesn't implement the pic_mask_irq() helper since it is not
useful at this moment.
This commit is contained in:
Andre Guedes 2015-07-02 17:46:47 -03:00 committed by Jesus Sanchez-Palencia
parent b8056b9c97
commit 826ff7cb29
5 changed files with 55 additions and 5 deletions

View file

@ -30,6 +30,7 @@
#include <math.h>
#include "drivers/pic.h"
#include "pit.h"
#include "helpers.h"
#include "interrupt.h"
@ -75,6 +76,5 @@ pit_init(uint32_t ticks_rate, pit_int_callback cb)
outb(PIT_COUNTER0_PORT, divisor & 0xFF); /* Write least significant bytes first. */
outb(PIT_COUNTER0_PORT, (divisor >> 8) & 0xFF);
/* FIXME: Unmask IRQ0 from Master PIC. Add a pic_set_mask() or similar and call it here. */
outb(0x21, 0xfa);
pic_unmask_irq(0);
}